@tamagui/helpers 1.88.21 → 1.88.23
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/esm/clamp.native.js +2 -23
- package/dist/esm/clamp.native.js.map +1 -1
- package/dist/esm/composeEventHandlers.native.js +2 -23
- package/dist/esm/composeEventHandlers.native.js.map +1 -1
- package/dist/esm/concatClassName.native.js +2 -23
- package/dist/esm/concatClassName.native.js.map +1 -1
- package/dist/esm/index.native.js +7 -31
- package/dist/esm/index.native.js.map +1 -1
- package/dist/esm/types.native.js +0 -14
- package/dist/esm/types.native.js.map +2 -2
- package/dist/esm/validStyleProps.native.js +4 -35
- package/dist/esm/validStyleProps.native.js.map +1 -1
- package/dist/esm/withStaticProperties.native.js +5 -26
- package/dist/esm/withStaticProperties.native.js.map +1 -1
- package/package.json +4 -4
package/dist/esm/clamp.native.js
CHANGED
|
@@ -1,28 +1,7 @@
|
|
|
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 clamp_exports = {};
|
|
17
|
-
__export(clamp_exports, {
|
|
18
|
-
clamp: () => clamp
|
|
19
|
-
});
|
|
20
|
-
module.exports = __toCommonJS(clamp_exports);
|
|
21
1
|
function clamp(value, [min, max]) {
|
|
22
2
|
return Math.min(max, Math.max(min, value));
|
|
23
3
|
}
|
|
24
|
-
|
|
25
|
-
0 && (module.exports = {
|
|
4
|
+
export {
|
|
26
5
|
clamp
|
|
27
|
-
}
|
|
6
|
+
};
|
|
28
7
|
//# sourceMappingURL=clamp.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/clamp.ts"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAAO,SAAS,MAAM,OAAe,CAAC,KAAK,GAAG,GAA6B;AACzE,SAAO,KAAK,IAAI,KAAK,KAAK,IAAI,KAAK,KAAK,CAAC;AAC3C;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -1,23 +1,3 @@
|
|
|
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 composeEventHandlers_exports = {};
|
|
17
|
-
__export(composeEventHandlers_exports, {
|
|
18
|
-
composeEventHandlers: () => composeEventHandlers
|
|
19
|
-
});
|
|
20
|
-
module.exports = __toCommonJS(composeEventHandlers_exports);
|
|
21
1
|
function composeEventHandlers(og, next, { checkDefaultPrevented = !0 } = {}) {
|
|
22
2
|
return !og || !next ? next || og || void 0 : (event) => {
|
|
23
3
|
if (og == null || og(event), !event || !(checkDefaultPrevented && "defaultPrevented" in event) || // @ts-ignore
|
|
@@ -25,8 +5,7 @@ function composeEventHandlers(og, next, { checkDefaultPrevented = !0 } = {}) {
|
|
|
25
5
|
return next == null ? void 0 : next(event);
|
|
26
6
|
};
|
|
27
7
|
}
|
|
28
|
-
|
|
29
|
-
0 && (module.exports = {
|
|
8
|
+
export {
|
|
30
9
|
composeEventHandlers
|
|
31
|
-
}
|
|
10
|
+
};
|
|
32
11
|
//# sourceMappingURL=composeEventHandlers.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/composeEventHandlers.ts"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAIO,SAAS,qBACd,IACA,MACA,EAAE,wBAAwB,GAAK,IAAI,CAAC,GACpC;AACA,SAAI,CAAC,MAAM,CAAC,OACH,QAAQ,MAAM,SAEhB,CAAC,UAAa;AAEnB,QADA,iBAAK,QAEH,CAAC,SACD,EAAE,yBAAyB,sBAAsB;AAAA,IAEhD,sBAAsB,SAAS,CAAC,MAAM;AAEvC,aAAO,6BAAO;AAAA,EAElB;AACF;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -1,23 +1,3 @@
|
|
|
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 concatClassName_exports = {};
|
|
17
|
-
__export(concatClassName_exports, {
|
|
18
|
-
concatClassName: () => concatClassName
|
|
19
|
-
});
|
|
20
|
-
module.exports = __toCommonJS(concatClassName_exports);
|
|
21
1
|
function concatClassName(_cn) {
|
|
22
2
|
const args = arguments, usedPrefixes = [];
|
|
23
3
|
let final = "";
|
|
@@ -66,8 +46,7 @@ const pseudoInvert = {
|
|
|
66
46
|
focus: "focusStyle",
|
|
67
47
|
press: "pressStyle"
|
|
68
48
|
};
|
|
69
|
-
|
|
70
|
-
0 && (module.exports = {
|
|
49
|
+
export {
|
|
71
50
|
concatClassName
|
|
72
|
-
}
|
|
51
|
+
};
|
|
73
52
|
//# sourceMappingURL=concatClassName.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/concatClassName.ts"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAUO,SAAS,gBAAgB,KAAqD;AACnF,QAAM,OAAO,WACP,eAAyB,CAAC;AAChC,MAAI,QAAQ;AAEZ,QAAM,MAAM,KAAK;AACjB,MAAI,cAAmB;AACvB,WAAS,IAAI,KAAK,KAAK,GAAG,KAAK;AAC7B,UAAM,MAAM,KAAK,CAAC;AAElB,QAAI,CAAC;AAAK;AACV,QAAI,CAAC,MAAM,QAAQ,GAAG,KAAK,OAAO,OAAQ,UAAU;AAElD,oBAAc,eAAe,CAAC,GAC9B,YAAY,KAAK,GAAG;AACpB;AAAA,IACF;AAEA,UAAM,QAAQ,MAAM,QAAQ,GAAG,IAAI,MAAM,IAAI,MAAM,GAAG,GAChD,WAAW,MAAM;AACvB,aAAS,IAAI,WAAW,GAAG,KAAK,GAAG,KAAK;AACtC,YAAM,OAAO,MAAM,CAAC;AAEpB,UAAI,CAAC,QAAQ,SAAS;AAAK;AAC3B,UAAI,KAAK,CAAC,MAAM,KAAK;AAEnB,gBAAQ,OAAO,MAAM;AACrB;AAAA,MACF;AAEA,YAAM,aAAa,KAAK,QAAQ,GAAG;AACnC,UAAI,aAAa,GAAG;AAClB,gBAAQ,OAAO,MAAM;AAErB;AAAA,MACF;AAKA,YAAM,eAHW,KAAK,aAAa,CAAC,MAGF,KAK5B,WAAW,KAAK,MAAM,GAAG,KAAK,YAAY,GAAG,CAAC,GAE9C,WAAW,eAAe,KAAK,MAAM,aAAa,GAAG,aAAa,CAAC,IAAI,MACvE,MAAM,WAAW,WAAW,WAAW;AAG7C,UAAI,aAAa,QAAQ,GAAG,IAAI;AAE9B;AAEF,mBAAa,KAAK,GAAG;AAGrB,YAAM,WAAW;AACjB,MAAI,YAAY,eAEZ,YAAY,KAAK,CAAC,OAAO;AACvB,YAAI,UAAU;AACZ,gBAAM,UAAU,aAAa,QAAQ;AACrC,iBAAO,MAAM,GAAG,OAAO,KAAK,YAAY,GAAG,OAAO,KAAK,GAAG,OAAO,MAAM;AAAA,QACzE;AAEA,eADY,MAAM,YAAY,MAAM,GAAG,QAAQ,MAAM;AAAA,MAEvD,CAAC,MAOL,QAAQ,OAAO,MAAM;AAAA,IACvB;AAAA,EACF;AAEA,SAAO;AACT;AAEA,MAAM,eAAe;AAAA,EACnB,OAAO;AAAA,EACP,OAAO;AAAA,EACP,OAAO;AACT;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
-
return to;
|
|
11
|
-
}, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
12
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
13
|
-
var src_exports = {};
|
|
14
|
-
module.exports = __toCommonJS(src_exports);
|
|
15
|
-
__reExport(src_exports, require("@tamagui/simple-hash"), module.exports);
|
|
16
|
-
__reExport(src_exports, require("./clamp"), module.exports);
|
|
17
|
-
__reExport(src_exports, require("./composeEventHandlers"), module.exports);
|
|
18
|
-
__reExport(src_exports, require("./concatClassName"), module.exports);
|
|
19
|
-
__reExport(src_exports, require("./types"), module.exports);
|
|
20
|
-
__reExport(src_exports, require("./validStyleProps"), module.exports);
|
|
21
|
-
__reExport(src_exports, require("./withStaticProperties"), module.exports);
|
|
22
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
23
|
-
0 && (module.exports = {
|
|
24
|
-
...require("@tamagui/simple-hash"),
|
|
25
|
-
...require("./clamp"),
|
|
26
|
-
...require("./composeEventHandlers"),
|
|
27
|
-
...require("./concatClassName"),
|
|
28
|
-
...require("./types"),
|
|
29
|
-
...require("./validStyleProps"),
|
|
30
|
-
...require("./withStaticProperties")
|
|
31
|
-
});
|
|
1
|
+
export * from "@tamagui/simple-hash";
|
|
2
|
+
export * from "./clamp";
|
|
3
|
+
export * from "./composeEventHandlers";
|
|
4
|
+
export * from "./concatClassName";
|
|
5
|
+
export * from "./types";
|
|
6
|
+
export * from "./validStyleProps";
|
|
7
|
+
export * from "./withStaticProperties";
|
|
32
8
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/dist/esm/types.native.js
CHANGED
|
@@ -1,15 +1 @@
|
|
|
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 __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
-
return to;
|
|
11
|
-
};
|
|
12
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
13
|
-
var types_exports = {};
|
|
14
|
-
module.exports = __toCommonJS(types_exports);
|
|
15
1
|
//# sourceMappingURL=types.js.map
|
|
@@ -1,34 +1,4 @@
|
|
|
1
|
-
|
|
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 validStyleProps_exports = {};
|
|
17
|
-
__export(validStyleProps_exports, {
|
|
18
|
-
stylePropsAll: () => stylePropsAll,
|
|
19
|
-
stylePropsFont: () => stylePropsFont,
|
|
20
|
-
stylePropsText: () => stylePropsText,
|
|
21
|
-
stylePropsTextOnly: () => stylePropsTextOnly,
|
|
22
|
-
stylePropsTransform: () => stylePropsTransform,
|
|
23
|
-
stylePropsUnitless: () => stylePropsUnitless,
|
|
24
|
-
stylePropsView: () => stylePropsView,
|
|
25
|
-
tokenCategories: () => tokenCategories,
|
|
26
|
-
validPseudoKeys: () => validPseudoKeys,
|
|
27
|
-
validStyles: () => validStyles,
|
|
28
|
-
validStylesOnBaseProps: () => validStylesOnBaseProps
|
|
29
|
-
});
|
|
30
|
-
module.exports = __toCommonJS(validStyleProps_exports);
|
|
31
|
-
var import_constants = require("@tamagui/constants");
|
|
1
|
+
import { isAndroid } from "@tamagui/constants";
|
|
32
2
|
const placeHolderTextColors = {
|
|
33
3
|
placeholderTextColor: !0
|
|
34
4
|
}, validStylesOnBaseProps = {
|
|
@@ -200,7 +170,7 @@ const placeHolderTextColors = {
|
|
|
200
170
|
...validStylesOnBaseProps,
|
|
201
171
|
...stylePropsTransform,
|
|
202
172
|
...stylePropsUnitless,
|
|
203
|
-
...
|
|
173
|
+
...isAndroid ? { elevationAndroid: !0 } : {}
|
|
204
174
|
}, stylePropsFont = {
|
|
205
175
|
fontFamily: !0,
|
|
206
176
|
fontSize: !0,
|
|
@@ -230,8 +200,7 @@ const placeHolderTextColors = {
|
|
|
230
200
|
...validPseudoKeys,
|
|
231
201
|
...stylePropsView
|
|
232
202
|
};
|
|
233
|
-
|
|
234
|
-
0 && (module.exports = {
|
|
203
|
+
export {
|
|
235
204
|
stylePropsAll,
|
|
236
205
|
stylePropsFont,
|
|
237
206
|
stylePropsText,
|
|
@@ -243,5 +212,5 @@ const placeHolderTextColors = {
|
|
|
243
212
|
validPseudoKeys,
|
|
244
213
|
validStyles,
|
|
245
214
|
validStylesOnBaseProps
|
|
246
|
-
}
|
|
215
|
+
};
|
|
247
216
|
//# sourceMappingURL=validStyleProps.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/validStyleProps.ts"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "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",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -1,29 +1,9 @@
|
|
|
1
|
-
|
|
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 withStaticProperties_exports = {};
|
|
17
|
-
__export(withStaticProperties_exports, {
|
|
18
|
-
withStaticProperties: () => withStaticProperties
|
|
19
|
-
});
|
|
20
|
-
module.exports = __toCommonJS(withStaticProperties_exports);
|
|
21
|
-
var import_react = require("react");
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
22
2
|
const Decorated = Symbol(), withStaticProperties = (component, staticProps) => {
|
|
23
3
|
const next = (() => {
|
|
24
4
|
if (component[Decorated]) {
|
|
25
|
-
const _ =
|
|
26
|
-
(props, ref) =>
|
|
5
|
+
const _ = forwardRef(
|
|
6
|
+
(props, ref) => createElement(component, { ...props, ref })
|
|
27
7
|
);
|
|
28
8
|
for (const key in component) {
|
|
29
9
|
const v = component[key];
|
|
@@ -34,8 +14,7 @@ const Decorated = Symbol(), withStaticProperties = (component, staticProps) => {
|
|
|
34
14
|
})();
|
|
35
15
|
return Object.assign(next, staticProps), next[Decorated] = !0, next;
|
|
36
16
|
};
|
|
37
|
-
|
|
38
|
-
0 && (module.exports = {
|
|
17
|
+
export {
|
|
39
18
|
withStaticProperties
|
|
40
|
-
}
|
|
19
|
+
};
|
|
41
20
|
//# sourceMappingURL=withStaticProperties.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/withStaticProperties.tsx"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAAA,SAAS,eAAe,kBAAkB;AAE1C,MAAM,YAAY,OAAO,GAIZ,uBAAuB,CAClC,WACA,gBACmB;AAEnB,QAAM,QAAQ,MAAM;AAClB,QAAI,UAAU,SAAS,GAAG;AACxB,YAAM,IAAI;AAAA,QAAW,CAAC,OAAO,QAC3B,cAAc,WAAkB,EAAE,GAAG,OAAO,IAAI,CAAC;AAAA,MACnD;AAEA,iBAAW,OAAO,WAAW;AAC3B,cAAM,IAAI,UAAU,GAAG;AAEvB,UAAE,GAAG,IAAI,KAAK,OAAO,KAAM,WAAW,EAAE,GAAG,EAAE,IAAI;AAAA,MACnD;AAAA,IACF;AACA,WAAO;AAAA,EACT,GAAG;AAGH,gBAAO,OAAO,MAAM,WAAW,GAC/B,KAAK,SAAS,IAAI,IAEX;AACT;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/helpers",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.23",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"main": "dist/cjs",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"clean:build": "tamagui-build clean:build"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@tamagui/constants": "1.88.
|
|
23
|
-
"@tamagui/simple-hash": "1.88.
|
|
22
|
+
"@tamagui/constants": "1.88.23",
|
|
23
|
+
"@tamagui/simple-hash": "1.88.23"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@tamagui/build": "1.88.
|
|
26
|
+
"@tamagui/build": "1.88.23"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|