@tamagui/constants 1.74.3 → 1.74.5
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/dist/cjs/constants.android.js +47 -0
- package/dist/cjs/constants.android.js.map +6 -0
- package/dist/cjs/constants.ios.js +47 -0
- package/dist/cjs/constants.ios.js.map +6 -0
- package/dist/cjs/constants.js +46 -0
- package/dist/cjs/constants.js.map +6 -0
- package/dist/cjs/constants.native.js +47 -0
- package/dist/cjs/constants.native.js.map +6 -0
- package/dist/cjs/index.js +4 -31
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/index.native.js +7 -34
- package/dist/cjs/index.native.js.map +2 -2
- package/dist/esm/constants.android.js +16 -0
- package/dist/esm/constants.android.js.map +6 -0
- package/dist/esm/constants.ios.js +16 -0
- package/dist/esm/constants.ios.js.map +6 -0
- package/dist/esm/constants.js +16 -0
- package/dist/esm/constants.js.map +6 -0
- package/dist/esm/constants.native.js +16 -0
- package/dist/esm/constants.native.js.map +6 -0
- package/dist/esm/index.android.js +16 -0
- package/dist/esm/index.android.js.map +6 -0
- package/dist/esm/index.ios.js +16 -0
- package/dist/esm/index.ios.js.map +6 -0
- package/dist/esm/index.js +1 -15
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.native.js +2 -0
- package/dist/esm/index.native.js.map +6 -0
- package/package.json +2 -2
- package/src/constants.ts +19 -0
- package/src/index.ts +1 -19
- package/types/constants.android.d.ts +13 -0
- package/types/constants.android.d.ts.map +1 -0
- package/types/{index.ios.d.ts → constants.d.ts} +1 -1
- package/types/constants.d.ts.map +1 -0
- package/types/{index.native.d.ts → constants.ios.d.ts} +1 -1
- package/types/{index.android.d.ts.map → constants.ios.d.ts.map} +1 -1
- package/types/{index.android.d.ts → constants.native.d.ts} +1 -1
- package/types/constants.native.d.ts.map +1 -0
- package/types/index.d.ts +1 -12
- package/types/index.d.ts.map +1 -1
- package/types/index.ios.d.ts.map +0 -1
- package/types/index.native.d.ts.map +0 -1
- /package/src/{index.android.ts → constants.android.ts} +0 -0
- /package/src/{index.ios.ts → constants.ios.ts} +0 -0
- /package/src/{index.native.ts → constants.native.ts} +0 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
+
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
16
|
+
var constants_android_exports = {};
|
|
17
|
+
__export(constants_android_exports, {
|
|
18
|
+
currentPlatform: () => currentPlatform,
|
|
19
|
+
isAndroid: () => isAndroid,
|
|
20
|
+
isChrome: () => isChrome,
|
|
21
|
+
isClient: () => isClient,
|
|
22
|
+
isIos: () => isIos,
|
|
23
|
+
isServer: () => isServer,
|
|
24
|
+
isTouchable: () => isTouchable,
|
|
25
|
+
isWeb: () => isWeb,
|
|
26
|
+
isWebTouchable: () => isWebTouchable,
|
|
27
|
+
isWindowDefined: () => isWindowDefined,
|
|
28
|
+
useIsomorphicLayoutEffect: () => useIsomorphicLayoutEffect
|
|
29
|
+
});
|
|
30
|
+
module.exports = __toCommonJS(constants_android_exports);
|
|
31
|
+
var import_react = require("react");
|
|
32
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = import_react.useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !0, isIos = !1, currentPlatform = "android";
|
|
33
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
+
0 && (module.exports = {
|
|
35
|
+
currentPlatform,
|
|
36
|
+
isAndroid,
|
|
37
|
+
isChrome,
|
|
38
|
+
isClient,
|
|
39
|
+
isIos,
|
|
40
|
+
isServer,
|
|
41
|
+
isTouchable,
|
|
42
|
+
isWeb,
|
|
43
|
+
isWebTouchable,
|
|
44
|
+
isWindowDefined,
|
|
45
|
+
useIsomorphicLayoutEffect
|
|
46
|
+
});
|
|
47
|
+
//# sourceMappingURL=constants.android.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/constants.android.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAgC;AAEzB,MAAM,QAAiB,IACjB,kBAA2B,IAC3B,WAAoB,IACpB,WAAoB,IACpB,4BAA4B,8BAC5B,WAAoB,IACpB,iBAA0B,IAC1B,cAAuB,IACvB,YAAqB,IACrB,QAAiB,IACjB,kBAAwD;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
+
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
16
|
+
var constants_ios_exports = {};
|
|
17
|
+
__export(constants_ios_exports, {
|
|
18
|
+
currentPlatform: () => currentPlatform,
|
|
19
|
+
isAndroid: () => isAndroid,
|
|
20
|
+
isChrome: () => isChrome,
|
|
21
|
+
isClient: () => isClient,
|
|
22
|
+
isIos: () => isIos,
|
|
23
|
+
isServer: () => isServer,
|
|
24
|
+
isTouchable: () => isTouchable,
|
|
25
|
+
isWeb: () => isWeb,
|
|
26
|
+
isWebTouchable: () => isWebTouchable,
|
|
27
|
+
isWindowDefined: () => isWindowDefined,
|
|
28
|
+
useIsomorphicLayoutEffect: () => useIsomorphicLayoutEffect
|
|
29
|
+
});
|
|
30
|
+
module.exports = __toCommonJS(constants_ios_exports);
|
|
31
|
+
var import_react = require("react");
|
|
32
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = import_react.useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !1, isIos = !0, currentPlatform = "ios";
|
|
33
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
+
0 && (module.exports = {
|
|
35
|
+
currentPlatform,
|
|
36
|
+
isAndroid,
|
|
37
|
+
isChrome,
|
|
38
|
+
isClient,
|
|
39
|
+
isIos,
|
|
40
|
+
isServer,
|
|
41
|
+
isTouchable,
|
|
42
|
+
isWeb,
|
|
43
|
+
isWebTouchable,
|
|
44
|
+
isWindowDefined,
|
|
45
|
+
useIsomorphicLayoutEffect
|
|
46
|
+
});
|
|
47
|
+
//# sourceMappingURL=constants.ios.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/constants.ios.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAgC;AAEzB,MAAM,QAAiB,IACjB,kBAA2B,IAC3B,WAAoB,IACpB,WAAoB,IACpB,4BAA4B,8BAC5B,WAAoB,IACpB,iBAA0B,IAC1B,cAAuB,IACvB,YAAqB,IACrB,QAAiB,IACjB,kBAAwD;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
+
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
+
for (let key of __getOwnPropNames(from))
|
|
11
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
+
var constants_exports = {};
|
|
16
|
+
__export(constants_exports, {
|
|
17
|
+
currentPlatform: () => currentPlatform,
|
|
18
|
+
isAndroid: () => isAndroid,
|
|
19
|
+
isChrome: () => isChrome,
|
|
20
|
+
isClient: () => isClient,
|
|
21
|
+
isIos: () => isIos,
|
|
22
|
+
isServer: () => isServer,
|
|
23
|
+
isTouchable: () => isTouchable,
|
|
24
|
+
isWeb: () => isWeb,
|
|
25
|
+
isWebTouchable: () => isWebTouchable,
|
|
26
|
+
isWindowDefined: () => isWindowDefined,
|
|
27
|
+
useIsomorphicLayoutEffect: () => useIsomorphicLayoutEffect
|
|
28
|
+
});
|
|
29
|
+
module.exports = __toCommonJS(constants_exports);
|
|
30
|
+
var import_react = require("react");
|
|
31
|
+
const isWeb = !0, isWindowDefined = typeof window < "u", isServer = isWeb && !isWindowDefined, isClient = isWeb && isWindowDefined, useIsomorphicLayoutEffect = isServer ? import_react.useEffect : import_react.useLayoutEffect, isChrome = typeof navigator < "u" && /Chrome/.test(navigator.userAgent || ""), isWebTouchable = isClient && ("ontouchstart" in window || navigator.maxTouchPoints > 0), isTouchable = !isWeb || isWebTouchable, isAndroid = !1, isIos = !1, currentPlatform = "web";
|
|
32
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
33
|
+
0 && (module.exports = {
|
|
34
|
+
currentPlatform,
|
|
35
|
+
isAndroid,
|
|
36
|
+
isChrome,
|
|
37
|
+
isClient,
|
|
38
|
+
isIos,
|
|
39
|
+
isServer,
|
|
40
|
+
isTouchable,
|
|
41
|
+
isWeb,
|
|
42
|
+
isWebTouchable,
|
|
43
|
+
isWindowDefined,
|
|
44
|
+
useIsomorphicLayoutEffect
|
|
45
|
+
});
|
|
46
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/constants.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAA2C;AAEpC,MAAM,QAAiB,IACjB,kBAAkB,OAAO,SAAW,KACpC,WAAW,SAAS,CAAC,iBACrB,WAAW,SAAS,iBAEpB,4BAA4B,WAAW,yBAAY,8BACnD,WACX,OAAO,YAAc,OAAe,SAAS,KAAK,UAAU,aAAa,EAAE,GAEhE,iBACX,aAAa,kBAAkB,UAAU,UAAU,iBAAiB,IAEzD,cAAc,CAAC,SAAS,gBAExB,YAAqB,IACrB,QAAiB,IACjB,kBAAwD;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
+
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
16
|
+
var constants_native_exports = {};
|
|
17
|
+
__export(constants_native_exports, {
|
|
18
|
+
currentPlatform: () => currentPlatform,
|
|
19
|
+
isAndroid: () => isAndroid,
|
|
20
|
+
isChrome: () => isChrome,
|
|
21
|
+
isClient: () => isClient,
|
|
22
|
+
isIos: () => isIos,
|
|
23
|
+
isServer: () => isServer,
|
|
24
|
+
isTouchable: () => isTouchable,
|
|
25
|
+
isWeb: () => isWeb,
|
|
26
|
+
isWebTouchable: () => isWebTouchable,
|
|
27
|
+
isWindowDefined: () => isWindowDefined,
|
|
28
|
+
useIsomorphicLayoutEffect: () => useIsomorphicLayoutEffect
|
|
29
|
+
});
|
|
30
|
+
module.exports = __toCommonJS(constants_native_exports);
|
|
31
|
+
var import_react = require("react");
|
|
32
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = import_react.useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !1, isIos = !1, currentPlatform = "native";
|
|
33
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
+
0 && (module.exports = {
|
|
35
|
+
currentPlatform,
|
|
36
|
+
isAndroid,
|
|
37
|
+
isChrome,
|
|
38
|
+
isClient,
|
|
39
|
+
isIos,
|
|
40
|
+
isServer,
|
|
41
|
+
isTouchable,
|
|
42
|
+
isWeb,
|
|
43
|
+
isWebTouchable,
|
|
44
|
+
isWindowDefined,
|
|
45
|
+
useIsomorphicLayoutEffect
|
|
46
|
+
});
|
|
47
|
+
//# sourceMappingURL=constants.native.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/constants.native.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAgC;AAEzB,MAAM,QAAiB,IACjB,kBAA2B,IAC3B,WAAoB,IACpB,WAAoB,IACpB,4BAA4B,8BAC5B,WAAoB,IACpB,iBAA0B,IAC1B,cAAuB,IACvB,YAAqB,IACrB,QAAiB,IACjB,kBAAwD;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
package/dist/cjs/index.js
CHANGED
|
@@ -2,45 +2,18 @@ var __defProp = Object.defineProperty;
|
|
|
2
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
5
|
+
var __copyProps = (to, from, except, desc) => {
|
|
9
6
|
if (from && typeof from == "object" || typeof from == "function")
|
|
10
7
|
for (let key of __getOwnPropNames(from))
|
|
11
8
|
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
9
|
return to;
|
|
13
|
-
};
|
|
10
|
+
}, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
14
11
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
12
|
var src_exports = {};
|
|
16
|
-
__export(src_exports, {
|
|
17
|
-
currentPlatform: () => currentPlatform,
|
|
18
|
-
isAndroid: () => isAndroid,
|
|
19
|
-
isChrome: () => isChrome,
|
|
20
|
-
isClient: () => isClient,
|
|
21
|
-
isIos: () => isIos,
|
|
22
|
-
isServer: () => isServer,
|
|
23
|
-
isTouchable: () => isTouchable,
|
|
24
|
-
isWeb: () => isWeb,
|
|
25
|
-
isWebTouchable: () => isWebTouchable,
|
|
26
|
-
isWindowDefined: () => isWindowDefined,
|
|
27
|
-
useIsomorphicLayoutEffect: () => useIsomorphicLayoutEffect
|
|
28
|
-
});
|
|
29
13
|
module.exports = __toCommonJS(src_exports);
|
|
30
|
-
|
|
31
|
-
const isWeb = !0, isWindowDefined = typeof window < "u", isServer = isWeb && !isWindowDefined, isClient = isWeb && isWindowDefined, useIsomorphicLayoutEffect = isServer ? import_react.useEffect : import_react.useLayoutEffect, isChrome = typeof navigator < "u" && /Chrome/.test(navigator.userAgent || ""), isWebTouchable = isClient && ("ontouchstart" in window || navigator.maxTouchPoints > 0), isTouchable = !isWeb || isWebTouchable, isAndroid = !1, isIos = !1, currentPlatform = "web";
|
|
14
|
+
__reExport(src_exports, require("./constants"), module.exports);
|
|
32
15
|
// Annotate the CommonJS export names for ESM import in node:
|
|
33
16
|
0 && (module.exports = {
|
|
34
|
-
|
|
35
|
-
isAndroid,
|
|
36
|
-
isChrome,
|
|
37
|
-
isClient,
|
|
38
|
-
isIos,
|
|
39
|
-
isServer,
|
|
40
|
-
isTouchable,
|
|
41
|
-
isWeb,
|
|
42
|
-
isWebTouchable,
|
|
43
|
-
isWindowDefined,
|
|
44
|
-
useIsomorphicLayoutEffect
|
|
17
|
+
...require("./constants")
|
|
45
18
|
});
|
|
46
19
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": ";;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,wBAAd;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/dist/cjs/index.native.js
CHANGED
|
@@ -3,45 +3,18 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
7
|
if (from && typeof from == "object" || typeof from == "function")
|
|
11
8
|
for (let key of __getOwnPropNames(from))
|
|
12
9
|
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
10
|
return to;
|
|
14
|
-
};
|
|
11
|
+
}, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
12
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
16
|
-
var
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
isAndroid: () => isAndroid,
|
|
20
|
-
isChrome: () => isChrome,
|
|
21
|
-
isClient: () => isClient,
|
|
22
|
-
isIos: () => isIos,
|
|
23
|
-
isServer: () => isServer,
|
|
24
|
-
isTouchable: () => isTouchable,
|
|
25
|
-
isWeb: () => isWeb,
|
|
26
|
-
isWebTouchable: () => isWebTouchable,
|
|
27
|
-
isWindowDefined: () => isWindowDefined,
|
|
28
|
-
useIsomorphicLayoutEffect: () => useIsomorphicLayoutEffect
|
|
29
|
-
});
|
|
30
|
-
module.exports = __toCommonJS(index_native_exports);
|
|
31
|
-
var import_react = require("react");
|
|
32
|
-
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = import_react.useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !1, isIos = !1, currentPlatform = "native";
|
|
13
|
+
var src_exports = {};
|
|
14
|
+
module.exports = __toCommonJS(src_exports);
|
|
15
|
+
__reExport(src_exports, require("./constants"), module.exports);
|
|
33
16
|
// Annotate the CommonJS export names for ESM import in node:
|
|
34
17
|
0 && (module.exports = {
|
|
35
|
-
|
|
36
|
-
isAndroid,
|
|
37
|
-
isChrome,
|
|
38
|
-
isClient,
|
|
39
|
-
isIos,
|
|
40
|
-
isServer,
|
|
41
|
-
isTouchable,
|
|
42
|
-
isWeb,
|
|
43
|
-
isWebTouchable,
|
|
44
|
-
isWindowDefined,
|
|
45
|
-
useIsomorphicLayoutEffect
|
|
18
|
+
...require("./constants")
|
|
46
19
|
});
|
|
47
|
-
//# sourceMappingURL=index.
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.
|
|
4
|
-
"mappings": "
|
|
3
|
+
"sources": ["../../src/index.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,wBAAd;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useLayoutEffect } from "react";
|
|
2
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !0, isIos = !1, currentPlatform = "android";
|
|
3
|
+
export {
|
|
4
|
+
currentPlatform,
|
|
5
|
+
isAndroid,
|
|
6
|
+
isChrome,
|
|
7
|
+
isClient,
|
|
8
|
+
isIos,
|
|
9
|
+
isServer,
|
|
10
|
+
isTouchable,
|
|
11
|
+
isWeb,
|
|
12
|
+
isWebTouchable,
|
|
13
|
+
isWindowDefined,
|
|
14
|
+
useIsomorphicLayoutEffect
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=constants.android.js.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useLayoutEffect } from "react";
|
|
2
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !1, isIos = !0, currentPlatform = "ios";
|
|
3
|
+
export {
|
|
4
|
+
currentPlatform,
|
|
5
|
+
isAndroid,
|
|
6
|
+
isChrome,
|
|
7
|
+
isClient,
|
|
8
|
+
isIos,
|
|
9
|
+
isServer,
|
|
10
|
+
isTouchable,
|
|
11
|
+
isWeb,
|
|
12
|
+
isWebTouchable,
|
|
13
|
+
isWindowDefined,
|
|
14
|
+
useIsomorphicLayoutEffect
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=constants.ios.js.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useEffect, useLayoutEffect } from "react";
|
|
2
|
+
const isWeb = !0, isWindowDefined = typeof window < "u", isServer = isWeb && !isWindowDefined, isClient = isWeb && isWindowDefined, useIsomorphicLayoutEffect = isServer ? useEffect : useLayoutEffect, isChrome = typeof navigator < "u" && /Chrome/.test(navigator.userAgent || ""), isWebTouchable = isClient && ("ontouchstart" in window || navigator.maxTouchPoints > 0), isTouchable = !isWeb || isWebTouchable, isAndroid = !1, isIos = !1, currentPlatform = "web";
|
|
3
|
+
export {
|
|
4
|
+
currentPlatform,
|
|
5
|
+
isAndroid,
|
|
6
|
+
isChrome,
|
|
7
|
+
isClient,
|
|
8
|
+
isIos,
|
|
9
|
+
isServer,
|
|
10
|
+
isTouchable,
|
|
11
|
+
isWeb,
|
|
12
|
+
isWebTouchable,
|
|
13
|
+
isWindowDefined,
|
|
14
|
+
useIsomorphicLayoutEffect
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/constants.ts"],
|
|
4
|
+
"mappings": "AAAA,SAAS,WAAW,uBAAuB;AAEpC,MAAM,QAAiB,IACjB,kBAAkB,OAAO,SAAW,KACpC,WAAW,SAAS,CAAC,iBACrB,WAAW,SAAS,iBAEpB,4BAA4B,WAAW,YAAY,iBACnD,WACX,OAAO,YAAc,OAAe,SAAS,KAAK,UAAU,aAAa,EAAE,GAEhE,iBACX,aAAa,kBAAkB,UAAU,UAAU,iBAAiB,IAEzD,cAAc,CAAC,SAAS,gBAExB,YAAqB,IACrB,QAAiB,IACjB,kBAAwD;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useLayoutEffect } from "react";
|
|
2
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !1, isIos = !1, currentPlatform = "native";
|
|
3
|
+
export {
|
|
4
|
+
currentPlatform,
|
|
5
|
+
isAndroid,
|
|
6
|
+
isChrome,
|
|
7
|
+
isClient,
|
|
8
|
+
isIos,
|
|
9
|
+
isServer,
|
|
10
|
+
isTouchable,
|
|
11
|
+
isWeb,
|
|
12
|
+
isWebTouchable,
|
|
13
|
+
isWindowDefined,
|
|
14
|
+
useIsomorphicLayoutEffect
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=constants.native.js.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useLayoutEffect } from "react";
|
|
2
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !0, isIos = !1, currentPlatform = "android";
|
|
3
|
+
export {
|
|
4
|
+
currentPlatform,
|
|
5
|
+
isAndroid,
|
|
6
|
+
isChrome,
|
|
7
|
+
isClient,
|
|
8
|
+
isIos,
|
|
9
|
+
isServer,
|
|
10
|
+
isTouchable,
|
|
11
|
+
isWeb,
|
|
12
|
+
isWebTouchable,
|
|
13
|
+
isWindowDefined,
|
|
14
|
+
useIsomorphicLayoutEffect
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=index.android.js.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useLayoutEffect } from "react";
|
|
2
|
+
const isWeb = !1, isWindowDefined = !1, isServer = !1, isClient = !1, useIsomorphicLayoutEffect = useLayoutEffect, isChrome = !1, isWebTouchable = !1, isTouchable = !0, isAndroid = !1, isIos = !0, currentPlatform = "ios";
|
|
3
|
+
export {
|
|
4
|
+
currentPlatform,
|
|
5
|
+
isAndroid,
|
|
6
|
+
isChrome,
|
|
7
|
+
isClient,
|
|
8
|
+
isIos,
|
|
9
|
+
isServer,
|
|
10
|
+
isTouchable,
|
|
11
|
+
isWeb,
|
|
12
|
+
isWebTouchable,
|
|
13
|
+
isWindowDefined,
|
|
14
|
+
useIsomorphicLayoutEffect
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=index.ios.js.map
|
package/dist/esm/index.js
CHANGED
|
@@ -1,16 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
const isWeb = !0, isWindowDefined = typeof window < "u", isServer = isWeb && !isWindowDefined, isClient = isWeb && isWindowDefined, useIsomorphicLayoutEffect = isServer ? useEffect : useLayoutEffect, isChrome = typeof navigator < "u" && /Chrome/.test(navigator.userAgent || ""), isWebTouchable = isClient && ("ontouchstart" in window || navigator.maxTouchPoints > 0), isTouchable = !isWeb || isWebTouchable, isAndroid = !1, isIos = !1, currentPlatform = "web";
|
|
3
|
-
export {
|
|
4
|
-
currentPlatform,
|
|
5
|
-
isAndroid,
|
|
6
|
-
isChrome,
|
|
7
|
-
isClient,
|
|
8
|
-
isIos,
|
|
9
|
-
isServer,
|
|
10
|
-
isTouchable,
|
|
11
|
-
isWeb,
|
|
12
|
-
isWebTouchable,
|
|
13
|
-
isWindowDefined,
|
|
14
|
-
useIsomorphicLayoutEffect
|
|
15
|
-
};
|
|
1
|
+
export * from "./constants";
|
|
16
2
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": "AAAA,
|
|
4
|
+
"mappings": "AAAA,cAAc;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/constants",
|
|
3
|
-
"version": "1.74.
|
|
3
|
+
"version": "1.74.5",
|
|
4
4
|
"types": "./types/index.d.ts",
|
|
5
5
|
"main": "dist/cjs",
|
|
6
6
|
"module": "dist/esm",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"clean:build": "tamagui-build clean:build"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@tamagui/build": "1.74.
|
|
21
|
+
"@tamagui/build": "1.74.5",
|
|
22
22
|
"react": "^18.2.0"
|
|
23
23
|
},
|
|
24
24
|
"exports": {
|
package/src/constants.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useEffect, useLayoutEffect } from 'react'
|
|
2
|
+
|
|
3
|
+
export const isWeb: boolean = true
|
|
4
|
+
export const isWindowDefined = typeof window !== 'undefined'
|
|
5
|
+
export const isServer = isWeb && !isWindowDefined
|
|
6
|
+
export const isClient = isWeb && isWindowDefined
|
|
7
|
+
|
|
8
|
+
export const useIsomorphicLayoutEffect = isServer ? useEffect : useLayoutEffect
|
|
9
|
+
export const isChrome =
|
|
10
|
+
typeof navigator !== 'undefined' && /Chrome/.test(navigator.userAgent || '')
|
|
11
|
+
|
|
12
|
+
export const isWebTouchable =
|
|
13
|
+
isClient && ('ontouchstart' in window || navigator.maxTouchPoints > 0)
|
|
14
|
+
|
|
15
|
+
export const isTouchable = !isWeb || isWebTouchable
|
|
16
|
+
// set :boolean to avoid inferring type to false
|
|
17
|
+
export const isAndroid: boolean = false
|
|
18
|
+
export const isIos: boolean = false
|
|
19
|
+
export const currentPlatform: 'web' | 'ios' | 'native' | 'android' = 'web'
|
package/src/index.ts
CHANGED
|
@@ -1,19 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export const isWeb: boolean = true
|
|
4
|
-
export const isWindowDefined = typeof window !== 'undefined'
|
|
5
|
-
export const isServer = isWeb && !isWindowDefined
|
|
6
|
-
export const isClient = isWeb && isWindowDefined
|
|
7
|
-
|
|
8
|
-
export const useIsomorphicLayoutEffect = isServer ? useEffect : useLayoutEffect
|
|
9
|
-
export const isChrome =
|
|
10
|
-
typeof navigator !== 'undefined' && /Chrome/.test(navigator.userAgent || '')
|
|
11
|
-
|
|
12
|
-
export const isWebTouchable =
|
|
13
|
-
isClient && ('ontouchstart' in window || navigator.maxTouchPoints > 0)
|
|
14
|
-
|
|
15
|
-
export const isTouchable = !isWeb || isWebTouchable
|
|
16
|
-
// set :boolean to avoid inferring type to false
|
|
17
|
-
export const isAndroid: boolean = false
|
|
18
|
-
export const isIos: boolean = false
|
|
19
|
-
export const currentPlatform: 'web' | 'ios' | 'native' | 'android' = 'web'
|
|
1
|
+
export * from './constants'
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { useLayoutEffect } from 'react';
|
|
2
|
+
export declare const isWeb: boolean;
|
|
3
|
+
export declare const isWindowDefined: boolean;
|
|
4
|
+
export declare const isServer: boolean;
|
|
5
|
+
export declare const isClient: boolean;
|
|
6
|
+
export declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
|
|
7
|
+
export declare const isChrome: boolean;
|
|
8
|
+
export declare const isWebTouchable: boolean;
|
|
9
|
+
export declare const isTouchable: boolean;
|
|
10
|
+
export declare const isAndroid: boolean;
|
|
11
|
+
export declare const isIos: boolean;
|
|
12
|
+
export declare const currentPlatform: 'web' | 'ios' | 'native' | 'android';
|
|
13
|
+
//# sourceMappingURL=constants.android.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.android.d.ts","sourceRoot":"","sources":["../src/constants.android.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,OAAO,CAAA;AAEvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,OAAe,CAAA;AAC7C,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,yBAAyB,wBAAkB,CAAA;AACxD,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,cAAc,EAAE,OAAe,CAAA;AAC5C,eAAO,MAAM,WAAW,EAAE,OAAc,CAAA;AACxC,eAAO,MAAM,SAAS,EAAE,OAAc,CAAA;AACtC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAqB,CAAA"}
|
|
@@ -10,4 +10,4 @@ export declare const isTouchable: boolean;
|
|
|
10
10
|
export declare const isAndroid: boolean;
|
|
11
11
|
export declare const isIos: boolean;
|
|
12
12
|
export declare const currentPlatform: 'web' | 'ios' | 'native' | 'android';
|
|
13
|
-
//# sourceMappingURL=
|
|
13
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,eAAe,EAAE,MAAM,OAAO,CAAA;AAElD,eAAO,MAAM,KAAK,EAAE,OAAc,CAAA;AAClC,eAAO,MAAM,eAAe,SAAgC,CAAA;AAC5D,eAAO,MAAM,QAAQ,SAA4B,CAAA;AACjD,eAAO,MAAM,QAAQ,SAA2B,CAAA;AAEhD,eAAO,MAAM,yBAAyB,wBAAyC,CAAA;AAC/E,eAAO,MAAM,QAAQ,SACyD,CAAA;AAE9E,eAAO,MAAM,cAAc,SAC6C,CAAA;AAExE,eAAO,MAAM,WAAW,SAA2B,CAAA;AAEnD,eAAO,MAAM,SAAS,EAAE,OAAe,CAAA;AACvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAiB,CAAA"}
|
|
@@ -10,4 +10,4 @@ export declare const isTouchable: boolean;
|
|
|
10
10
|
export declare const isAndroid: boolean;
|
|
11
11
|
export declare const isIos: boolean;
|
|
12
12
|
export declare const currentPlatform: 'web' | 'ios' | 'native' | 'android';
|
|
13
|
-
//# sourceMappingURL=
|
|
13
|
+
//# sourceMappingURL=constants.ios.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"constants.ios.d.ts","sourceRoot":"","sources":["../src/constants.ios.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,OAAO,CAAA;AAEvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,OAAe,CAAA;AAC7C,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,yBAAyB,wBAAkB,CAAA;AACxD,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,cAAc,EAAE,OAAe,CAAA;AAC5C,eAAO,MAAM,WAAW,EAAE,OAAc,CAAA;AACxC,eAAO,MAAM,SAAS,EAAE,OAAe,CAAA;AACvC,eAAO,MAAM,KAAK,EAAE,OAAc,CAAA;AAClC,eAAO,MAAM,eAAe,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAiB,CAAA"}
|
|
@@ -10,4 +10,4 @@ export declare const isTouchable: boolean;
|
|
|
10
10
|
export declare const isAndroid: boolean;
|
|
11
11
|
export declare const isIos: boolean;
|
|
12
12
|
export declare const currentPlatform: 'web' | 'ios' | 'native' | 'android';
|
|
13
|
-
//# sourceMappingURL=
|
|
13
|
+
//# sourceMappingURL=constants.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.native.d.ts","sourceRoot":"","sources":["../src/constants.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,OAAO,CAAA;AAEvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,OAAe,CAAA;AAC7C,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,yBAAyB,wBAAkB,CAAA;AACxD,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,cAAc,EAAE,OAAe,CAAA;AAC5C,eAAO,MAAM,WAAW,EAAE,OAAc,CAAA;AACxC,eAAO,MAAM,SAAS,EAAE,OAAe,CAAA;AACvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAoB,CAAA"}
|
package/types/index.d.ts
CHANGED
|
@@ -1,13 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const isWeb: boolean;
|
|
3
|
-
export declare const isWindowDefined: boolean;
|
|
4
|
-
export declare const isServer: boolean;
|
|
5
|
-
export declare const isClient: boolean;
|
|
6
|
-
export declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
|
|
7
|
-
export declare const isChrome: boolean;
|
|
8
|
-
export declare const isWebTouchable: boolean;
|
|
9
|
-
export declare const isTouchable: boolean;
|
|
10
|
-
export declare const isAndroid: boolean;
|
|
11
|
-
export declare const isIos: boolean;
|
|
12
|
-
export declare const currentPlatform: 'web' | 'ios' | 'native' | 'android';
|
|
1
|
+
export * from './constants';
|
|
13
2
|
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA"}
|
package/types/index.ios.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.ios.d.ts","sourceRoot":"","sources":["../src/index.ios.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,OAAO,CAAA;AAEvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,OAAe,CAAA;AAC7C,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,yBAAyB,wBAAkB,CAAA;AACxD,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,cAAc,EAAE,OAAe,CAAA;AAC5C,eAAO,MAAM,WAAW,EAAE,OAAc,CAAA;AACxC,eAAO,MAAM,SAAS,EAAE,OAAe,CAAA;AACvC,eAAO,MAAM,KAAK,EAAE,OAAc,CAAA;AAClC,eAAO,MAAM,eAAe,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAiB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../src/index.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,OAAO,CAAA;AAEvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,OAAe,CAAA;AAC7C,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,yBAAyB,wBAAkB,CAAA;AACxD,eAAO,MAAM,QAAQ,EAAE,OAAe,CAAA;AACtC,eAAO,MAAM,cAAc,EAAE,OAAe,CAAA;AAC5C,eAAO,MAAM,WAAW,EAAE,OAAc,CAAA;AACxC,eAAO,MAAM,SAAS,EAAE,OAAe,CAAA;AACvC,eAAO,MAAM,KAAK,EAAE,OAAe,CAAA;AACnC,eAAO,MAAM,eAAe,EAAE,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAoB,CAAA"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|