@tamagui/use-force-update 1.0.0-alpha.8 → 1.0.0-beta.147

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.
@@ -0,0 +1,30 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var src_exports = {};
20
+ __export(src_exports, {
21
+ useForceUpdate: () => useForceUpdate
22
+ });
23
+ module.exports = __toCommonJS(src_exports);
24
+ var import_react = require("react");
25
+ function useForceUpdate() {
26
+ const [_, forceUpdate] = (0, import_react.useReducer)((x) => x + 1, 0);
27
+ return forceUpdate;
28
+ }
29
+ __name(useForceUpdate, "useForceUpdate");
30
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.ts"],
4
+ "sourcesContent": ["import { useReducer } from 'react'\n\nexport function useForceUpdate() {\n const [_, forceUpdate] = useReducer((x) => x + 1, 0)\n return forceUpdate\n}\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAA2B;AAEpB,0BAA0B;AAC/B,QAAM,CAAC,GAAG,eAAe,6BAAW,CAAC,MAAM,IAAI,GAAG,CAAC;AACnD,SAAO;AACT;AAHgB;",
6
+ "names": []
7
+ }
@@ -0,0 +1,12 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
+ import { useReducer } from "react";
4
+ function useForceUpdate() {
5
+ const [_, forceUpdate] = useReducer((x) => x + 1, 0);
6
+ return forceUpdate;
7
+ }
8
+ __name(useForceUpdate, "useForceUpdate");
9
+ export {
10
+ useForceUpdate
11
+ };
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.ts"],
4
+ "sourcesContent": ["import { useReducer } from 'react'\n\nexport function useForceUpdate() {\n const [_, forceUpdate] = useReducer((x) => x + 1, 0)\n return forceUpdate\n}\n"],
5
+ "mappings": ";;AAAA;AAEO,0BAA0B;AAC/B,QAAM,CAAC,GAAG,eAAe,WAAW,CAAC,MAAM,IAAI,GAAG,CAAC;AACnD,SAAO;AACT;AAHgB;",
6
+ "names": []
7
+ }
@@ -0,0 +1,11 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
+ import { useReducer } from "react";
4
+ function useForceUpdate() {
5
+ const [_, forceUpdate] = useReducer((x) => x + 1, 0);
6
+ return forceUpdate;
7
+ }
8
+ __name(useForceUpdate, "useForceUpdate");
9
+ export {
10
+ useForceUpdate
11
+ };
package/package.json CHANGED
@@ -1,27 +1,28 @@
1
1
  {
2
2
  "name": "@tamagui/use-force-update",
3
- "version": "1.0.0-alpha.8",
4
- "source": "src/index.ts",
5
- "main": "dist/index.cjs",
6
- "module": "dist/index.js",
7
- "typings": "types.d.ts",
3
+ "version": "1.0.0-beta.147+6d63af55",
4
+ "typings": "types",
5
+ "main": "dist/cjs",
6
+ "module": "dist/esm",
7
+ "module:jsx": "dist/jsx",
8
8
  "files": [
9
- "types.d.ts",
10
- "dist",
11
- "src"
9
+ "types",
10
+ "dist"
12
11
  ],
13
12
  "scripts": {
14
13
  "build": "tamagui-build",
15
- "watch": "tamagui-build --watch"
14
+ "watch": "tamagui-build --watch",
15
+ "clean": "tamagui-build clean",
16
+ "clean:build": "tamagui-build clean:build"
16
17
  },
17
18
  "devDependencies": {
18
- "@tamagui/build": "^1.0.0-alpha.8"
19
+ "@tamagui/build": "^1.0.0-beta.147+6d63af55"
19
20
  },
20
- "peerDependencies": {
21
+ "dependencies": {
21
22
  "react": "*"
22
23
  },
23
24
  "publishConfig": {
24
25
  "access": "public"
25
26
  },
26
- "gitHead": "ecb0afe6782276b1f2ece90320fd2748f2f05c93"
27
+ "gitHead": "6d63af55317e3c878ea0b61995728fa480776ffc"
27
28
  }
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare function useForceUpdate(): import("react").DispatchWithoutAction;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,wBAAgB,cAAc,0CAG7B"}
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/src/index.ts DELETED
@@ -1,26 +0,0 @@
1
- import { useEffect, useRef, useState } from 'react'
2
-
3
- // ensures no updates after unmount
4
-
5
- export function useForceUpdate() {
6
- const setState = useState(0)[1]
7
- const internal = useRef<{ update: Function; isMounted: boolean }>()
8
- if (!internal.current) {
9
- internal.current = {
10
- isMounted: true,
11
- update: () => {
12
- if (internal.current!.isMounted) {
13
- setState(Math.random())
14
- }
15
- },
16
- }
17
- }
18
-
19
- useEffect(() => {
20
- return () => {
21
- internal.current!.isMounted = false
22
- }
23
- }, [])
24
-
25
- return internal.current.update
26
- }
package/types.d.ts DELETED
@@ -1,5 +0,0 @@
1
- // Generated by dts-bundle-generator v5.9.0
2
-
3
- export declare function useForceUpdate(): Function;
4
-
5
- export {};