@tamagui/use-force-update 1.0.0-alpha.31 → 1.0.0-alpha.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/use-force-update",
3
- "version": "1.0.0-alpha.31",
3
+ "version": "1.0.0-alpha.38",
4
4
  "typings": "types",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -14,7 +14,7 @@
14
14
  "watch": "tamagui-build --watch"
15
15
  },
16
16
  "devDependencies": {
17
- "@tamagui/build": "^1.0.0-alpha.31"
17
+ "@tamagui/build": "^1.0.0-alpha.38"
18
18
  },
19
19
  "dependencies": {
20
20
  "react": "*"
@@ -22,5 +22,5 @@
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
- "gitHead": "3593d13742ae284776db7fbe0486d622312c7c15"
25
+ "gitHead": "155f989a05a70b2a9181cf820363f170a293f78b"
26
26
  }
package/dist/cjs/index.js DELETED
@@ -1,50 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
9
- var __export = (target, all) => {
10
- __markAsModule(target);
11
- for (var name in all)
12
- __defProp(target, name, { get: all[name], enumerable: true });
13
- };
14
- var __reExport = (target, module2, desc) => {
15
- if (module2 && typeof module2 === "object" || typeof module2 === "function") {
16
- for (let key of __getOwnPropNames(module2))
17
- if (!__hasOwnProp.call(target, key) && key !== "default")
18
- __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
19
- }
20
- return target;
21
- };
22
- var __toModule = (module2) => {
23
- return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
24
- };
25
- __export(exports, {
26
- useForceUpdate: () => useForceUpdate
27
- });
28
- var import_react = __toModule(require("react"));
29
- function useForceUpdate() {
30
- const setState = (0, import_react.useState)(0)[1];
31
- const internal = (0, import_react.useRef)();
32
- if (!internal.current) {
33
- internal.current = {
34
- isMounted: true,
35
- update: () => {
36
- if (internal.current.isMounted) {
37
- setState(Math.random());
38
- }
39
- }
40
- };
41
- }
42
- (0, import_react.useEffect)(() => {
43
- return () => {
44
- internal.current.isMounted = false;
45
- };
46
- }, []);
47
- return internal.current.update;
48
- }
49
- __name(useForceUpdate, "useForceUpdate");
50
- //# sourceMappingURL=index.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/index.ts"],
4
- "sourcesContent": ["import { useEffect, useRef, useState } from 'react'\n\n// ensures no updates after unmount\n\nexport function useForceUpdate() {\n const setState = useState(0)[1]\n const internal = useRef<{ update: Function; isMounted: boolean }>()\n if (!internal.current) {\n internal.current = {\n isMounted: true,\n update: () => {\n if (internal.current!.isMounted) {\n setState(Math.random())\n }\n },\n }\n }\n\n useEffect(() => {\n return () => {\n internal.current!.isMounted = false\n }\n }, [])\n\n return internal.current.update\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA,mBAA4C;AAIrC,0BAA0B;AAC/B,QAAM,WAAW,2BAAS,GAAG;AAC7B,QAAM,WAAW;AACjB,MAAI,CAAC,SAAS,SAAS;AACrB,aAAS,UAAU;AAAA,MACjB,WAAW;AAAA,MACX,QAAQ,MAAM;AACZ,YAAI,SAAS,QAAS,WAAW;AAC/B,mBAAS,KAAK;AAAA;AAAA;AAAA;AAAA;AAMtB,8BAAU,MAAM;AACd,WAAO,MAAM;AACX,eAAS,QAAS,YAAY;AAAA;AAAA,KAE/B;AAEH,SAAO,SAAS,QAAQ;AAAA;AApBV;",
6
- "names": []
7
- }
package/dist/esm/index.js DELETED
@@ -1,28 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
- import { useEffect, useRef, useState } from "react";
4
- function useForceUpdate() {
5
- const setState = useState(0)[1];
6
- const internal = useRef();
7
- if (!internal.current) {
8
- internal.current = {
9
- isMounted: true,
10
- update: () => {
11
- if (internal.current.isMounted) {
12
- setState(Math.random());
13
- }
14
- }
15
- };
16
- }
17
- useEffect(() => {
18
- return () => {
19
- internal.current.isMounted = false;
20
- };
21
- }, []);
22
- return internal.current.update;
23
- }
24
- __name(useForceUpdate, "useForceUpdate");
25
- export {
26
- useForceUpdate
27
- };
28
- //# sourceMappingURL=index.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/index.ts"],
4
- "sourcesContent": ["import { useEffect, useRef, useState } from 'react'\n\n// ensures no updates after unmount\n\nexport function useForceUpdate() {\n const setState = useState(0)[1]\n const internal = useRef<{ update: Function; isMounted: boolean }>()\n if (!internal.current) {\n internal.current = {\n isMounted: true,\n update: () => {\n if (internal.current!.isMounted) {\n setState(Math.random())\n }\n },\n }\n }\n\n useEffect(() => {\n return () => {\n internal.current!.isMounted = false\n }\n }, [])\n\n return internal.current.update\n}\n"],
5
- "mappings": ";;AAAA;AAIO,0BAA0B;AAC/B,QAAM,WAAW,SAAS,GAAG;AAC7B,QAAM,WAAW;AACjB,MAAI,CAAC,SAAS,SAAS;AACrB,aAAS,UAAU;AAAA,MACjB,WAAW;AAAA,MACX,QAAQ,MAAM;AACZ,YAAI,SAAS,QAAS,WAAW;AAC/B,mBAAS,KAAK;AAAA;AAAA;AAAA;AAAA;AAMtB,YAAU,MAAM;AACd,WAAO,MAAM;AACX,eAAS,QAAS,YAAY;AAAA;AAAA,KAE/B;AAEH,SAAO,SAAS,QAAQ;AAAA;AApBV;",
6
- "names": []
7
- }
package/dist/index.cjs DELETED
@@ -1,52 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
9
- var __export = (target, all) => {
10
- __markAsModule(target);
11
- for (var name in all)
12
- __defProp(target, name, { get: all[name], enumerable: true });
13
- };
14
- var __reExport = (target, module2, desc) => {
15
- if (module2 && typeof module2 === "object" || typeof module2 === "function") {
16
- for (let key of __getOwnPropNames(module2))
17
- if (!__hasOwnProp.call(target, key) && key !== "default")
18
- __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
19
- }
20
- return target;
21
- };
22
- var __toModule = (module2) => {
23
- return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
24
- };
25
-
26
- // src/index.ts
27
- __export(exports, {
28
- useForceUpdate: () => useForceUpdate
29
- });
30
- var import_react = __toModule(require("react"));
31
- function useForceUpdate() {
32
- const setState = (0, import_react.useState)(0)[1];
33
- const internal = (0, import_react.useRef)();
34
- if (!internal.current) {
35
- internal.current = {
36
- isMounted: true,
37
- update: () => {
38
- if (internal.current.isMounted) {
39
- setState(Math.random());
40
- }
41
- }
42
- };
43
- }
44
- (0, import_react.useEffect)(() => {
45
- return () => {
46
- internal.current.isMounted = false;
47
- };
48
- }, []);
49
- return internal.current.update;
50
- }
51
- __name(useForceUpdate, "useForceUpdate");
52
- //# sourceMappingURL=index.cjs.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/index.ts"],
4
- "sourcesContent": ["import { useEffect, useRef, useState } from 'react'\n\n// ensures no updates after unmount\n\nexport function useForceUpdate() {\n const setState = useState(0)[1]\n const internal = useRef<{ update: Function; isMounted: boolean }>()\n if (!internal.current) {\n internal.current = {\n isMounted: true,\n update: () => {\n if (internal.current!.isMounted) {\n setState(Math.random())\n }\n },\n }\n }\n\n useEffect(() => {\n return () => {\n internal.current!.isMounted = false\n }\n }, [])\n\n return internal.current.update\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA,mBAA4C;AAIrC,0BAA0B;AAC/B,QAAM,WAAW,2BAAS,GAAG;AAC7B,QAAM,WAAW;AACjB,MAAI,CAAC,SAAS,SAAS;AACrB,aAAS,UAAU;AAAA,MACjB,WAAW;AAAA,MACX,QAAQ,MAAM;AACZ,YAAI,SAAS,QAAS,WAAW;AAC/B,mBAAS,KAAK;AAAA;AAAA;AAAA;AAAA;AAMtB,8BAAU,MAAM;AACd,WAAO,MAAM;AACX,eAAS,QAAS,YAAY;AAAA;AAAA,KAE/B;AAEH,SAAO,SAAS,QAAQ;AAAA;AApBV;",
6
- "names": []
7
- }
package/dist/index.js DELETED
@@ -1,28 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
- import { useEffect, useRef, useState } from "react";
4
- function useForceUpdate() {
5
- const setState = useState(0)[1];
6
- const internal = useRef();
7
- if (!internal.current) {
8
- internal.current = {
9
- isMounted: true,
10
- update: () => {
11
- if (internal.current.isMounted) {
12
- setState(Math.random());
13
- }
14
- }
15
- };
16
- }
17
- useEffect(() => {
18
- return () => {
19
- internal.current.isMounted = false;
20
- };
21
- }, []);
22
- return internal.current.update;
23
- }
24
- __name(useForceUpdate, "useForceUpdate");
25
- export {
26
- useForceUpdate
27
- };
28
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/index.ts"],
4
- "sourcesContent": ["import { useEffect, useRef, useState } from 'react'\n\n// ensures no updates after unmount\n\nexport function useForceUpdate() {\n const setState = useState(0)[1]\n const internal = useRef<{ update: Function; isMounted: boolean }>()\n if (!internal.current) {\n internal.current = {\n isMounted: true,\n update: () => {\n if (internal.current!.isMounted) {\n setState(Math.random())\n }\n },\n }\n }\n\n useEffect(() => {\n return () => {\n internal.current!.isMounted = false\n }\n }, [])\n\n return internal.current.update\n}\n"],
5
- "mappings": ";;AAAA;AAIO,0BAA0B;AAC/B,QAAM,WAAW,SAAS,GAAG;AAC7B,QAAM,WAAW;AACjB,MAAI,CAAC,SAAS,SAAS;AACrB,aAAS,UAAU;AAAA,MACjB,WAAW;AAAA,MACX,QAAQ,MAAM;AACZ,YAAI,SAAS,QAAS,WAAW;AAC/B,mBAAS,KAAK;AAAA;AAAA;AAAA;AAAA;AAMtB,YAAU,MAAM;AACd,WAAO,MAAM;AACX,eAAS,QAAS,YAAY;AAAA;AAAA,KAE/B;AAEH,SAAO,SAAS,QAAQ;AAAA;AApBV;",
6
- "names": []
7
- }
package/dist/jsx/index.js DELETED
@@ -1,27 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
- import { useEffect, useRef, useState } from "react";
4
- function useForceUpdate() {
5
- const setState = useState(0)[1];
6
- const internal = useRef();
7
- if (!internal.current) {
8
- internal.current = {
9
- isMounted: true,
10
- update: () => {
11
- if (internal.current.isMounted) {
12
- setState(Math.random());
13
- }
14
- }
15
- };
16
- }
17
- useEffect(() => {
18
- return () => {
19
- internal.current.isMounted = false;
20
- };
21
- }, []);
22
- return internal.current.update;
23
- }
24
- __name(useForceUpdate, "useForceUpdate");
25
- export {
26
- useForceUpdate
27
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,wBAAgB,cAAc,aAqB7B"}