@tamagui/form 1.135.4-1761749240853 → 1.135.4
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/Form.native.js +46 -66
- package/dist/cjs/Form.native.js.map +6 -1
- package/dist/cjs/index.native.js +12 -13
- package/dist/cjs/index.native.js.map +6 -1
- package/dist/jsx/Form.native.js +40 -81
- package/dist/jsx/Form.native.js.map +6 -1
- package/dist/jsx/index.native.js +2 -21
- package/dist/jsx/index.native.js.map +6 -1
- package/package.json +10 -11
package/dist/cjs/Form.native.js
CHANGED
|
@@ -1,25 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
6
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
});
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
21
|
-
value: !0
|
|
22
|
-
}), mod);
|
|
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);
|
|
23
16
|
var Form_exports = {};
|
|
24
17
|
__export(Form_exports, {
|
|
25
18
|
Form: () => Form2,
|
|
@@ -29,54 +22,41 @@ __export(Form_exports, {
|
|
|
29
22
|
useFormContext: () => useFormContext
|
|
30
23
|
});
|
|
31
24
|
module.exports = __toCommonJS(Form_exports);
|
|
32
|
-
var import_jsx_runtime = require("react/jsx-runtime"),
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
name: TRIGGER_NAME
|
|
46
|
-
}),
|
|
47
|
-
FormTrigger = FormTriggerFrame.styleable(function (props, forwardedRef) {
|
|
48
|
-
var {
|
|
49
|
-
__scopeForm,
|
|
50
|
-
children,
|
|
51
|
-
onPress,
|
|
52
|
-
...triggerProps
|
|
53
|
-
} = props,
|
|
54
|
-
context = useFormContext(TRIGGER_NAME, __scopeForm);
|
|
55
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(FormTriggerFrame, {
|
|
56
|
-
tag: "button",
|
|
57
|
-
...triggerProps,
|
|
58
|
-
ref: forwardedRef,
|
|
59
|
-
onPress: (0, import_helpers.composeEventHandlers)(onPress, context.onSubmit),
|
|
60
|
-
children
|
|
61
|
-
});
|
|
62
|
-
}),
|
|
63
|
-
FormComponent = FormFrame.extractable(function (param) {
|
|
64
|
-
var {
|
|
65
|
-
onSubmit,
|
|
66
|
-
...props
|
|
67
|
-
} = param;
|
|
68
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(FormProvider, {
|
|
69
|
-
scope: props.__scopeForm,
|
|
70
|
-
onSubmit,
|
|
71
|
-
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(FormFrame, {
|
|
72
|
-
...props,
|
|
73
|
-
onSubmit: function (e) {
|
|
74
|
-
return e.preventDefault();
|
|
75
|
-
}
|
|
76
|
-
})
|
|
77
|
-
});
|
|
78
|
-
}),
|
|
79
|
-
Form2 = (0, import_helpers.withStaticProperties)(FormComponent, {
|
|
80
|
-
Trigger: FormTrigger
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime"), import_core = require("@tamagui/core"), import_create_context = require("@tamagui/create-context"), import_helpers = require("@tamagui/helpers"), FORM_NAME = "Form", FormFrame = (0, import_core.styled)(import_core.Stack, {
|
|
26
|
+
name: FORM_NAME,
|
|
27
|
+
tag: "form"
|
|
28
|
+
}), [createFormContext] = (0, import_create_context.createContextScope)(FORM_NAME), [FormProvider, useFormContext] = createFormContext(FORM_NAME), TRIGGER_NAME = "FormTrigger", FormTriggerFrame = (0, import_core.styled)(import_core.View, {
|
|
29
|
+
name: TRIGGER_NAME
|
|
30
|
+
}), FormTrigger = FormTriggerFrame.styleable(function(props, forwardedRef) {
|
|
31
|
+
var { __scopeForm, children, onPress, ...triggerProps } = props, context = useFormContext(TRIGGER_NAME, __scopeForm);
|
|
32
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(FormTriggerFrame, {
|
|
33
|
+
tag: "button",
|
|
34
|
+
...triggerProps,
|
|
35
|
+
ref: forwardedRef,
|
|
36
|
+
onPress: (0, import_helpers.composeEventHandlers)(onPress, context.onSubmit),
|
|
37
|
+
children
|
|
81
38
|
});
|
|
82
|
-
|
|
39
|
+
}), FormComponent = FormFrame.extractable(function(param) {
|
|
40
|
+
var { onSubmit, ...props } = param;
|
|
41
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(FormProvider, {
|
|
42
|
+
scope: props.__scopeForm,
|
|
43
|
+
onSubmit,
|
|
44
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(FormFrame, {
|
|
45
|
+
...props,
|
|
46
|
+
onSubmit: function(e) {
|
|
47
|
+
return e.preventDefault();
|
|
48
|
+
}
|
|
49
|
+
})
|
|
50
|
+
});
|
|
51
|
+
}), Form2 = (0, import_helpers.withStaticProperties)(FormComponent, {
|
|
52
|
+
Trigger: FormTrigger
|
|
53
|
+
});
|
|
54
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
55
|
+
0 && (module.exports = {
|
|
56
|
+
Form,
|
|
57
|
+
FormFrame,
|
|
58
|
+
FormProvider,
|
|
59
|
+
FormTrigger,
|
|
60
|
+
useFormContext
|
|
61
|
+
});
|
|
62
|
+
//# sourceMappingURL=Form.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Form.tsx"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,cAAAA;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,yBAA4B,8BAC5B,cAAoC,0BACpC,wBAAmC,oCACnC,iBAA2D,6BACvD,YAAY,QACL,gBAAY,oBAAO,mBAAO;AAAA,EACjC,MAAM;AAAA,EACN,KAAK;AACT,CAAC,GAGwG,CAAC,iBAAiB,QAAI,0CAAmB,SAAS,GAChJ,CAAC,cAAc,cAAc,IAAI,kBAAkB,SAAS,GAGkC,eAAe,eACpH,uBAAmB,oBAAO,kBAAM;AAAA,EAChC,MAAM;AACV,CAAC,GACU,cAAc,iBAAiB,UAAU,SAAS,OAAO,cAAc;AAC9E,MAAI,EAAE,aAAa,UAAU,SAAS,GAAG,aAAa,IAAI,OACtD,UAAU,eAAe,cAAc,WAAW;AACtD,SAAqB,uCAAAC,KAAK,kBAAkB;AAAA,IACxC,KAAK;AAAA,IACL,GAAG;AAAA,IACH,KAAK;AAAA,IACL,aAAS,qCAAqB,SAAS,QAAQ,QAAQ;AAAA,IACvD;AAAA,EACJ,CAAC;AACL,CAAC,GAGwG,gBAAgB,UAAU,YAAY,SAAc,OAAO;AAChK,MAAI,EAAE,UAAU,GAAG,MAAM,IAAI;AAC7B,SAAqB,uCAAAA,KAAK,cAAc;AAAA,IACpC,OAAO,MAAM;AAAA,IACb;AAAA,IACA,UAAwB,uCAAAA,KAAK,WAAW;AAAA,MACpC,GAAG;AAAA,MACH,UAAU,SAAS,GAAG;AAClB,eAAO,EAAE,eAAe;AAAA,MAC5B;AAAA,IACJ,CAAC;AAAA,EACL,CAAC;AACL,CAAC,GACUD,YAAO,qCAAqB,eAAe;AAAA,EAClD,SAAS;AACb,CAAC;",
|
|
5
|
+
"names": ["Form", "_jsx"]
|
|
6
|
+
}
|
package/dist/cjs/index.native.js
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
6
|
var __copyProps = (to, from, except, desc) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
__reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
16
|
-
value: !0
|
|
17
|
-
}), mod);
|
|
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
|
+
}, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
12
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
18
13
|
var index_exports = {};
|
|
19
14
|
module.exports = __toCommonJS(index_exports);
|
|
20
|
-
__reExport(index_exports, require("./Form
|
|
21
|
-
|
|
15
|
+
__reExport(index_exports, require("./Form"), module.exports);
|
|
16
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
17
|
+
0 && (module.exports = {
|
|
18
|
+
...require("./Form")
|
|
19
|
+
});
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/index.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;AAAA;AAAA;AAAA,0BAAc,mBAAd;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
package/dist/jsx/Form.native.js
CHANGED
|
@@ -1,82 +1,41 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
var
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
});
|
|
31
|
-
module.exports = __toCommonJS(Form_exports);
|
|
32
|
-
var import_jsx_runtime = require("react/jsx-runtime"),
|
|
33
|
-
import_core = require("@tamagui/core"),
|
|
34
|
-
import_create_context = require("@tamagui/create-context"),
|
|
35
|
-
import_helpers = require("@tamagui/helpers"),
|
|
36
|
-
FORM_NAME = "Form",
|
|
37
|
-
FormFrame = (0, import_core.styled)(import_core.Stack, {
|
|
38
|
-
name: FORM_NAME,
|
|
39
|
-
tag: "form"
|
|
40
|
-
}),
|
|
41
|
-
[createFormContext] = (0, import_create_context.createContextScope)(FORM_NAME),
|
|
42
|
-
[FormProvider, useFormContext] = createFormContext(FORM_NAME),
|
|
43
|
-
TRIGGER_NAME = "FormTrigger",
|
|
44
|
-
FormTriggerFrame = (0, import_core.styled)(import_core.View, {
|
|
45
|
-
name: TRIGGER_NAME
|
|
46
|
-
}),
|
|
47
|
-
FormTrigger = FormTriggerFrame.styleable(function (props, forwardedRef) {
|
|
48
|
-
var {
|
|
49
|
-
__scopeForm,
|
|
50
|
-
children,
|
|
51
|
-
onPress,
|
|
52
|
-
...triggerProps
|
|
53
|
-
} = props,
|
|
54
|
-
context = useFormContext(TRIGGER_NAME, __scopeForm);
|
|
55
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(FormTriggerFrame, {
|
|
56
|
-
tag: "button",
|
|
57
|
-
...triggerProps,
|
|
58
|
-
ref: forwardedRef,
|
|
59
|
-
onPress: (0, import_helpers.composeEventHandlers)(onPress, context.onSubmit),
|
|
60
|
-
children
|
|
61
|
-
});
|
|
62
|
-
}),
|
|
63
|
-
FormComponent = FormFrame.extractable(function (param) {
|
|
64
|
-
var {
|
|
65
|
-
onSubmit,
|
|
66
|
-
...props
|
|
67
|
-
} = param;
|
|
68
|
-
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(FormProvider, {
|
|
69
|
-
scope: props.__scopeForm,
|
|
70
|
-
onSubmit,
|
|
71
|
-
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(FormFrame, {
|
|
72
|
-
...props,
|
|
73
|
-
onSubmit: function (e) {
|
|
74
|
-
return e.preventDefault();
|
|
75
|
-
}
|
|
76
|
-
})
|
|
77
|
-
});
|
|
78
|
-
}),
|
|
79
|
-
Form2 = (0, import_helpers.withStaticProperties)(FormComponent, {
|
|
80
|
-
Trigger: FormTrigger
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Stack, View, styled } from "@tamagui/core";
|
|
3
|
+
import { createContextScope } from "@tamagui/create-context";
|
|
4
|
+
import { composeEventHandlers, withStaticProperties } from "@tamagui/helpers";
|
|
5
|
+
var FORM_NAME = "Form", FormFrame = styled(Stack, {
|
|
6
|
+
name: FORM_NAME,
|
|
7
|
+
tag: "form"
|
|
8
|
+
}), [createFormContext] = createContextScope(FORM_NAME), [FormProvider, useFormContext] = createFormContext(FORM_NAME), TRIGGER_NAME = "FormTrigger", FormTriggerFrame = styled(View, {
|
|
9
|
+
name: TRIGGER_NAME
|
|
10
|
+
}), FormTrigger = FormTriggerFrame.styleable(function(props, forwardedRef) {
|
|
11
|
+
var { __scopeForm, children, onPress, ...triggerProps } = props, context = useFormContext(TRIGGER_NAME, __scopeForm);
|
|
12
|
+
return /* @__PURE__ */ _jsx(FormTriggerFrame, {
|
|
13
|
+
tag: "button",
|
|
14
|
+
...triggerProps,
|
|
15
|
+
ref: forwardedRef,
|
|
16
|
+
onPress: composeEventHandlers(onPress, context.onSubmit),
|
|
17
|
+
children
|
|
18
|
+
});
|
|
19
|
+
}), FormComponent = FormFrame.extractable(function(param) {
|
|
20
|
+
var { onSubmit, ...props } = param;
|
|
21
|
+
return /* @__PURE__ */ _jsx(FormProvider, {
|
|
22
|
+
scope: props.__scopeForm,
|
|
23
|
+
onSubmit,
|
|
24
|
+
children: /* @__PURE__ */ _jsx(FormFrame, {
|
|
25
|
+
...props,
|
|
26
|
+
onSubmit: function(e) {
|
|
27
|
+
return e.preventDefault();
|
|
28
|
+
}
|
|
29
|
+
})
|
|
81
30
|
});
|
|
82
|
-
|
|
31
|
+
}), Form2 = withStaticProperties(FormComponent, {
|
|
32
|
+
Trigger: FormTrigger
|
|
33
|
+
});
|
|
34
|
+
export {
|
|
35
|
+
Form2 as Form,
|
|
36
|
+
FormFrame,
|
|
37
|
+
FormProvider,
|
|
38
|
+
FormTrigger,
|
|
39
|
+
useFormContext
|
|
40
|
+
};
|
|
41
|
+
//# sourceMappingURL=Form.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Form.tsx"],
|
|
4
|
+
"mappings": "AAAA,SAAS,OAAO,YAAY;AAC5B,SAAS,OAAO,MAAM,cAAc;AACpC,SAAS,0BAA0B;AACnC,SAAS,sBAAsB,4BAA4B;AAC3D,IAAI,YAAY,QACL,YAAY,OAAO,OAAO;AAAA,EACjC,MAAM;AAAA,EACN,KAAK;AACT,CAAC,GAGwG,CAAC,iBAAiB,IAAI,mBAAmB,SAAS,GAChJ,CAAC,cAAc,cAAc,IAAI,kBAAkB,SAAS,GAGkC,eAAe,eACpH,mBAAmB,OAAO,MAAM;AAAA,EAChC,MAAM;AACV,CAAC,GACU,cAAc,iBAAiB,UAAU,SAAS,OAAO,cAAc;AAC9E,MAAI,EAAE,aAAa,UAAU,SAAS,GAAG,aAAa,IAAI,OACtD,UAAU,eAAe,cAAc,WAAW;AACtD,SAAqB,qBAAK,kBAAkB;AAAA,IACxC,KAAK;AAAA,IACL,GAAG;AAAA,IACH,KAAK;AAAA,IACL,SAAS,qBAAqB,SAAS,QAAQ,QAAQ;AAAA,IACvD;AAAA,EACJ,CAAC;AACL,CAAC,GAGwG,gBAAgB,UAAU,YAAY,SAAc,OAAO;AAChK,MAAI,EAAE,UAAU,GAAG,MAAM,IAAI;AAC7B,SAAqB,qBAAK,cAAc;AAAA,IACpC,OAAO,MAAM;AAAA,IACb;AAAA,IACA,UAAwB,qBAAK,WAAW;AAAA,MACpC,GAAG;AAAA,MACH,UAAU,SAAS,GAAG;AAClB,eAAO,EAAE,eAAe;AAAA,MAC5B;AAAA,IACJ,CAAC;AAAA,EACL,CAAC;AACL,CAAC,GACUA,QAAO,qBAAqB,eAAe;AAAA,EAClD,SAAS;AACb,CAAC;",
|
|
5
|
+
"names": ["Form"]
|
|
6
|
+
}
|
package/dist/jsx/index.native.js
CHANGED
|
@@ -1,21 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __copyProps = (to, from, except, desc) => {
|
|
8
|
-
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
9
|
-
get: () => from[key],
|
|
10
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
11
|
-
});
|
|
12
|
-
return to;
|
|
13
|
-
},
|
|
14
|
-
__reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
16
|
-
value: !0
|
|
17
|
-
}), mod);
|
|
18
|
-
var index_exports = {};
|
|
19
|
-
module.exports = __toCommonJS(index_exports);
|
|
20
|
-
__reExport(index_exports, require("./Form.native.js"), module.exports);
|
|
21
|
-
//# sourceMappingURL=index.native.js.map
|
|
1
|
+
export * from "./Form";
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/form",
|
|
3
|
-
"version": "1.135.4
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "1.135.4",
|
|
5
4
|
"sideEffects": [
|
|
6
5
|
"*.css"
|
|
7
6
|
],
|
|
@@ -37,17 +36,17 @@
|
|
|
37
36
|
}
|
|
38
37
|
},
|
|
39
38
|
"dependencies": {
|
|
40
|
-
"@tamagui/compose-refs": "1.135.4
|
|
41
|
-
"@tamagui/core": "1.135.4
|
|
42
|
-
"@tamagui/create-context": "1.135.4
|
|
43
|
-
"@tamagui/focusable": "1.135.4
|
|
44
|
-
"@tamagui/get-button-sized": "1.135.4
|
|
45
|
-
"@tamagui/get-font-sized": "1.135.4
|
|
46
|
-
"@tamagui/helpers": "1.135.4
|
|
47
|
-
"@tamagui/text": "1.135.4
|
|
39
|
+
"@tamagui/compose-refs": "1.135.4",
|
|
40
|
+
"@tamagui/core": "1.135.4",
|
|
41
|
+
"@tamagui/create-context": "1.135.4",
|
|
42
|
+
"@tamagui/focusable": "1.135.4",
|
|
43
|
+
"@tamagui/get-button-sized": "1.135.4",
|
|
44
|
+
"@tamagui/get-font-sized": "1.135.4",
|
|
45
|
+
"@tamagui/helpers": "1.135.4",
|
|
46
|
+
"@tamagui/text": "1.135.4"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@tamagui/build": "1.135.4
|
|
49
|
+
"@tamagui/build": "1.135.4",
|
|
51
50
|
"react": "*"
|
|
52
51
|
},
|
|
53
52
|
"publishConfig": {
|