@tamagui/form 1.88.0 → 1.88.2
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.js +0 -8
- package/dist/cjs/index.js +0 -4
- package/dist/esm/Form.native.js +35 -13
- package/dist/esm/Form.native.js.map +1 -1
- package/dist/esm/index.native.js +19 -1
- package/dist/esm/index.native.js.map +1 -1
- package/dist/jsx/Form.js +12 -7
- package/dist/jsx/Form.js.map +1 -1
- package/dist/jsx/Form.native.js +43 -16
- package/dist/jsx/Form.native.js.map +1 -1
- package/dist/jsx/index.native.js +19 -1
- package/dist/jsx/index.native.js.map +1 -1
- package/package.json +10 -10
package/dist/cjs/Form.js
CHANGED
|
@@ -49,12 +49,4 @@ const FORM_NAME = "Form", FormFrame = (0, import_core.styled)(import_core.Stack,
|
|
|
49
49
|
}), Form2 = (0, import_helpers.withStaticProperties)(FormComponent, {
|
|
50
50
|
Trigger: FormTrigger
|
|
51
51
|
});
|
|
52
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
-
0 && (module.exports = {
|
|
54
|
-
Form,
|
|
55
|
-
FormFrame,
|
|
56
|
-
FormProvider,
|
|
57
|
-
FormTrigger,
|
|
58
|
-
useFormContext
|
|
59
|
-
});
|
|
60
52
|
//# sourceMappingURL=Form.js.map
|
package/dist/cjs/index.js
CHANGED
|
@@ -12,8 +12,4 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0
|
|
|
12
12
|
var src_exports = {};
|
|
13
13
|
module.exports = __toCommonJS(src_exports);
|
|
14
14
|
__reExport(src_exports, require("./Form"), module.exports);
|
|
15
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
16
|
-
0 && (module.exports = {
|
|
17
|
-
...require("./Form")
|
|
18
|
-
});
|
|
19
15
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/Form.native.js
CHANGED
|
@@ -1,22 +1,43 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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 Form_exports = {};
|
|
17
|
+
__export(Form_exports, {
|
|
18
|
+
Form: () => Form2,
|
|
19
|
+
FormFrame: () => FormFrame,
|
|
20
|
+
FormProvider: () => FormProvider,
|
|
21
|
+
FormTrigger: () => FormTrigger,
|
|
22
|
+
useFormContext: () => useFormContext
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(Form_exports);
|
|
25
|
+
var import_core = require("@tamagui/core"), import_create_context = require("@tamagui/create-context"), import_helpers = require("@tamagui/helpers"), import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
const FORM_NAME = "Form", FormFrame = (0, import_core.styled)(import_core.Stack, {
|
|
6
27
|
name: FORM_NAME,
|
|
7
28
|
tag: "form"
|
|
8
|
-
}), [createFormContext] = createContextScope(FORM_NAME), [FormProvider, useFormContext] = createFormContext(FORM_NAME), TRIGGER_NAME = "FormTrigger", FormTriggerFrame = styled(View, {
|
|
29
|
+
}), [createFormContext] = (0, import_create_context.createContextScope)(FORM_NAME), [FormProvider, useFormContext] = createFormContext(FORM_NAME), TRIGGER_NAME = "FormTrigger", FormTriggerFrame = (0, import_core.styled)(import_core.View, {
|
|
9
30
|
name: TRIGGER_NAME
|
|
10
31
|
}), FormTrigger = FormTriggerFrame.styleable(
|
|
11
32
|
(props, forwardedRef) => {
|
|
12
33
|
const { __scopeForm, children, onPress, ...triggerProps } = props, context = useFormContext(TRIGGER_NAME, __scopeForm);
|
|
13
|
-
return /* @__PURE__ */ jsx(
|
|
34
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
14
35
|
FormTriggerFrame,
|
|
15
36
|
{
|
|
16
37
|
tag: "button",
|
|
17
38
|
...triggerProps,
|
|
18
39
|
ref: forwardedRef,
|
|
19
|
-
onPress: composeEventHandlers(onPress, context.onSubmit),
|
|
40
|
+
onPress: (0, import_helpers.composeEventHandlers)(onPress, context.onSubmit),
|
|
20
41
|
children
|
|
21
42
|
}
|
|
22
43
|
);
|
|
@@ -25,15 +46,16 @@ const FORM_NAME = "Form", FormFrame = styled(Stack, {
|
|
|
25
46
|
onSubmit,
|
|
26
47
|
...props
|
|
27
48
|
}) {
|
|
28
|
-
return /* @__PURE__ */ jsx(FormProvider, { scope: props.__scopeForm, onSubmit, children: /* @__PURE__ */ jsx(FormFrame, { ...props, onSubmit: (e) => e.preventDefault() }) });
|
|
29
|
-
}), Form2 = withStaticProperties(FormComponent, {
|
|
49
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(FormProvider, { scope: props.__scopeForm, onSubmit, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(FormFrame, { ...props, onSubmit: (e) => e.preventDefault() }) });
|
|
50
|
+
}), Form2 = (0, import_helpers.withStaticProperties)(FormComponent, {
|
|
30
51
|
Trigger: FormTrigger
|
|
31
52
|
});
|
|
32
|
-
export
|
|
33
|
-
|
|
53
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
54
|
+
0 && (module.exports = {
|
|
55
|
+
Form,
|
|
34
56
|
FormFrame,
|
|
35
57
|
FormProvider,
|
|
36
58
|
FormTrigger,
|
|
37
59
|
useFormContext
|
|
38
|
-
};
|
|
60
|
+
});
|
|
39
61
|
//# sourceMappingURL=Form.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Form.tsx"],
|
|
4
|
-
"mappings": "AAAA,
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,cAAAA;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAAgD,0BAChD,wBAA0C,oCAC1C,iBAA2D,6BA6CrD;AA3CN,MAAM,YAAY,QAEL,gBAAY,oBAAO,mBAAO;AAAA,EACrC,MAAM;AAAA,EACN,KAAK;AACP,CAAC,GAOK,CAAC,iBAAiB,QAAI,0CAAmB,SAAS,GAM3C,CAAC,cAAc,cAAc,IACxC,kBAAoC,SAAS,GAUzC,eAAe,eAEf,uBAAmB,oBAAO,kBAAM;AAAA,EACpC,MAAM;AACR,CAAC,GAIY,cAAc,iBAAiB;AAAA,EAC1C,CAAC,OAAsC,iBAAiB;AACtD,UAAM,EAAE,aAAa,UAAU,SAAS,GAAG,aAAa,IAAI,OACtD,UAAU,eAAe,cAAc,WAAW;AAExD,WACE;AAAA,MAAC;AAAA;AAAA,QACC,KAAI;AAAA,QACH,GAAI;AAAA,QACL,KAAK;AAAA,QACL,aAAS,qCAAqB,SAAgB,QAAQ,QAAQ;AAAA,QAE7D;AAAA;AAAA,IACH;AAAA,EAEJ;AACF,GAMM,gBAAgB,UAAU,YAAY,SAAc;AAAA,EACxD;AAAA,EACA,GAAG;AACL,GAA2B;AACzB,SACE,4CAAC,gBAAa,OAAO,MAAM,aAAa,UACtC,sDAAC,aAAW,GAAI,OAAe,UAAU,CAAC,MAAW,EAAE,eAAe,GAAG,GAC3E;AAEJ,CAAC,GAEYA,YAAO,qCAAqB,eAAe;AAAA,EACtD,SAAS;AACX,CAAC;",
|
|
5
5
|
"names": ["Form"]
|
|
6
6
|
}
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1,2 +1,20 @@
|
|
|
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
|
+
}, __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("./Form"), module.exports);
|
|
16
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
17
|
+
0 && (module.exports = {
|
|
18
|
+
...require("./Form")
|
|
19
|
+
});
|
|
2
20
|
//# sourceMappingURL=index.js.map
|
package/dist/jsx/Form.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Stack, View, styled } from "@tamagui/core";
|
|
2
2
|
import { createContextScope } from "@tamagui/create-context";
|
|
3
3
|
import { composeEventHandlers, withStaticProperties } from "@tamagui/helpers";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
5
|
const FORM_NAME = "Form", FormFrame = styled(Stack, {
|
|
5
6
|
name: FORM_NAME,
|
|
6
7
|
tag: "form"
|
|
@@ -9,18 +10,22 @@ const FORM_NAME = "Form", FormFrame = styled(Stack, {
|
|
|
9
10
|
}), FormTrigger = FormTriggerFrame.styleable(
|
|
10
11
|
(props, forwardedRef) => {
|
|
11
12
|
const { __scopeForm, children, onPress, ...triggerProps } = props, context = useFormContext(TRIGGER_NAME, __scopeForm);
|
|
12
|
-
return
|
|
13
|
-
|
|
14
|
-
{
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
return /* @__PURE__ */ jsx(
|
|
14
|
+
FormTriggerFrame,
|
|
15
|
+
{
|
|
16
|
+
tag: "button",
|
|
17
|
+
...triggerProps,
|
|
18
|
+
ref: forwardedRef,
|
|
19
|
+
onPress: composeEventHandlers(onPress, context.onSubmit),
|
|
20
|
+
children
|
|
21
|
+
}
|
|
22
|
+
);
|
|
18
23
|
}
|
|
19
24
|
), FormComponent = FormFrame.extractable(function({
|
|
20
25
|
onSubmit,
|
|
21
26
|
...props
|
|
22
27
|
}) {
|
|
23
|
-
return
|
|
28
|
+
return /* @__PURE__ */ jsx(FormProvider, { scope: props.__scopeForm, onSubmit, children: /* @__PURE__ */ jsx(FormFrame, { ...props, onSubmit: (e) => e.preventDefault() }) });
|
|
24
29
|
}), Form2 = withStaticProperties(FormComponent, {
|
|
25
30
|
Trigger: FormTrigger
|
|
26
31
|
});
|
package/dist/jsx/Form.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Form.tsx"],
|
|
4
|
-
"mappings": "AAAA,SAAS,OAAmB,MAAM,cAAc;AAChD,SAAgB,0BAA0B;AAC1C,SAAS,sBAAsB,4BAA4B;
|
|
4
|
+
"mappings": "AAAA,SAAS,OAAmB,MAAM,cAAc;AAChD,SAAgB,0BAA0B;AAC1C,SAAS,sBAAsB,4BAA4B;AA6CrD;AA3CN,MAAM,YAAY,QAEL,YAAY,OAAO,OAAO;AAAA,EACrC,MAAM;AAAA,EACN,KAAK;AACP,CAAC,GAOK,CAAC,iBAAiB,IAAI,mBAAmB,SAAS,GAM3C,CAAC,cAAc,cAAc,IACxC,kBAAoC,SAAS,GAUzC,eAAe,eAEf,mBAAmB,OAAO,MAAM;AAAA,EACpC,MAAM;AACR,CAAC,GAIY,cAAc,iBAAiB;AAAA,EAC1C,CAAC,OAAsC,iBAAiB;AACtD,UAAM,EAAE,aAAa,UAAU,SAAS,GAAG,aAAa,IAAI,OACtD,UAAU,eAAe,cAAc,WAAW;AAExD,WACE;AAAA,MAAC;AAAA;AAAA,QACC,KAAI;AAAA,QACH,GAAI;AAAA,QACL,KAAK;AAAA,QACL,SAAS,qBAAqB,SAAgB,QAAQ,QAAQ;AAAA,QAE7D;AAAA;AAAA,IACH;AAAA,EAEJ;AACF,GAMM,gBAAgB,UAAU,YAAY,SAAc;AAAA,EACxD;AAAA,EACA,GAAG;AACL,GAA2B;AACzB,SACE,oBAAC,gBAAa,OAAO,MAAM,aAAa,UACtC,8BAAC,aAAW,GAAI,OAAe,UAAU,CAAC,MAAW,EAAE,eAAe,GAAG,GAC3E;AAEJ,CAAC,GAEYA,QAAO,qBAAqB,eAAe;AAAA,EACtD,SAAS;AACX,CAAC;",
|
|
5
5
|
"names": ["Form"]
|
|
6
6
|
}
|
package/dist/jsx/Form.native.js
CHANGED
|
@@ -1,34 +1,61 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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 Form_exports = {};
|
|
17
|
+
__export(Form_exports, {
|
|
18
|
+
Form: () => Form2,
|
|
19
|
+
FormFrame: () => FormFrame,
|
|
20
|
+
FormProvider: () => FormProvider,
|
|
21
|
+
FormTrigger: () => FormTrigger,
|
|
22
|
+
useFormContext: () => useFormContext
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(Form_exports);
|
|
25
|
+
var import_core = require("@tamagui/core"), import_create_context = require("@tamagui/create-context"), import_helpers = require("@tamagui/helpers"), import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
const FORM_NAME = "Form", FormFrame = (0, import_core.styled)(import_core.Stack, {
|
|
5
27
|
name: FORM_NAME,
|
|
6
28
|
tag: "form"
|
|
7
|
-
}), [createFormContext] = createContextScope(FORM_NAME), [FormProvider, useFormContext] = createFormContext(FORM_NAME), TRIGGER_NAME = "FormTrigger", FormTriggerFrame = styled(View, {
|
|
29
|
+
}), [createFormContext] = (0, import_create_context.createContextScope)(FORM_NAME), [FormProvider, useFormContext] = createFormContext(FORM_NAME), TRIGGER_NAME = "FormTrigger", FormTriggerFrame = (0, import_core.styled)(import_core.View, {
|
|
8
30
|
name: TRIGGER_NAME
|
|
9
31
|
}), FormTrigger = FormTriggerFrame.styleable(
|
|
10
32
|
(props, forwardedRef) => {
|
|
11
33
|
const { __scopeForm, children, onPress, ...triggerProps } = props, context = useFormContext(TRIGGER_NAME, __scopeForm);
|
|
12
|
-
return
|
|
13
|
-
|
|
14
|
-
{
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
34
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
35
|
+
FormTriggerFrame,
|
|
36
|
+
{
|
|
37
|
+
tag: "button",
|
|
38
|
+
...triggerProps,
|
|
39
|
+
ref: forwardedRef,
|
|
40
|
+
onPress: (0, import_helpers.composeEventHandlers)(onPress, context.onSubmit),
|
|
41
|
+
children
|
|
42
|
+
}
|
|
43
|
+
);
|
|
18
44
|
}
|
|
19
45
|
), FormComponent = FormFrame.extractable(function({
|
|
20
46
|
onSubmit,
|
|
21
47
|
...props
|
|
22
48
|
}) {
|
|
23
|
-
return
|
|
24
|
-
}), Form2 = withStaticProperties(FormComponent, {
|
|
49
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(FormProvider, { scope: props.__scopeForm, onSubmit, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(FormFrame, { ...props, onSubmit: (e) => e.preventDefault() }) });
|
|
50
|
+
}), Form2 = (0, import_helpers.withStaticProperties)(FormComponent, {
|
|
25
51
|
Trigger: FormTrigger
|
|
26
52
|
});
|
|
27
|
-
export
|
|
28
|
-
|
|
53
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
54
|
+
0 && (module.exports = {
|
|
55
|
+
Form,
|
|
29
56
|
FormFrame,
|
|
30
57
|
FormProvider,
|
|
31
58
|
FormTrigger,
|
|
32
59
|
useFormContext
|
|
33
|
-
};
|
|
60
|
+
});
|
|
34
61
|
//# sourceMappingURL=Form.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Form.tsx"],
|
|
4
|
-
"mappings": "AAAA,
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,cAAAA;AAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAAgD,0BAChD,wBAA0C,oCAC1C,iBAA2D,6BA6CrD;AA3CN,MAAM,YAAY,QAEL,gBAAY,oBAAO,mBAAO;AAAA,EACrC,MAAM;AAAA,EACN,KAAK;AACP,CAAC,GAOK,CAAC,iBAAiB,QAAI,0CAAmB,SAAS,GAM3C,CAAC,cAAc,cAAc,IACxC,kBAAoC,SAAS,GAUzC,eAAe,eAEf,uBAAmB,oBAAO,kBAAM;AAAA,EACpC,MAAM;AACR,CAAC,GAIY,cAAc,iBAAiB;AAAA,EAC1C,CAAC,OAAsC,iBAAiB;AACtD,UAAM,EAAE,aAAa,UAAU,SAAS,GAAG,aAAa,IAAI,OACtD,UAAU,eAAe,cAAc,WAAW;AAExD,WACE;AAAA,MAAC;AAAA;AAAA,QACC,KAAI;AAAA,QACH,GAAI;AAAA,QACL,KAAK;AAAA,QACL,aAAS,qCAAqB,SAAgB,QAAQ,QAAQ;AAAA,QAE7D;AAAA;AAAA,IACH;AAAA,EAEJ;AACF,GAMM,gBAAgB,UAAU,YAAY,SAAc;AAAA,EACxD;AAAA,EACA,GAAG;AACL,GAA2B;AACzB,SACE,4CAAC,gBAAa,OAAO,MAAM,aAAa,UACtC,sDAAC,aAAW,GAAI,OAAe,UAAU,CAAC,MAAW,EAAE,eAAe,GAAG,GAC3E;AAEJ,CAAC,GAEYA,YAAO,qCAAqB,eAAe;AAAA,EACtD,SAAS;AACX,CAAC;",
|
|
5
5
|
"names": ["Form"]
|
|
6
6
|
}
|
package/dist/jsx/index.native.js
CHANGED
|
@@ -1,2 +1,20 @@
|
|
|
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
|
+
}, __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("./Form"), module.exports);
|
|
16
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
17
|
+
0 && (module.exports = {
|
|
18
|
+
...require("./Form")
|
|
19
|
+
});
|
|
2
20
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/form",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.2",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/compose-refs": "1.88.
|
|
36
|
-
"@tamagui/core": "1.88.
|
|
37
|
-
"@tamagui/create-context": "1.88.
|
|
38
|
-
"@tamagui/focusable": "1.88.
|
|
39
|
-
"@tamagui/get-button-sized": "1.88.
|
|
40
|
-
"@tamagui/get-font-sized": "1.88.
|
|
41
|
-
"@tamagui/helpers": "1.88.
|
|
42
|
-
"@tamagui/text": "1.88.
|
|
35
|
+
"@tamagui/compose-refs": "1.88.2",
|
|
36
|
+
"@tamagui/core": "1.88.2",
|
|
37
|
+
"@tamagui/create-context": "1.88.2",
|
|
38
|
+
"@tamagui/focusable": "1.88.2",
|
|
39
|
+
"@tamagui/get-button-sized": "1.88.2",
|
|
40
|
+
"@tamagui/get-font-sized": "1.88.2",
|
|
41
|
+
"@tamagui/helpers": "1.88.2",
|
|
42
|
+
"@tamagui/text": "1.88.2"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"react": "*"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@tamagui/build": "1.88.
|
|
48
|
+
"@tamagui/build": "1.88.2",
|
|
49
49
|
"react": "^18.2.0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|