@tamagui/form 1.125.6 → 1.125.7

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.
@@ -2,40 +2,51 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { Stack, View, styled } from "@tamagui/core";
3
3
  import { createContextScope } from "@tamagui/create-context";
4
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
5
+ var FORM_NAME = "Form",
6
+ FormFrame = styled(Stack, {
7
+ name: FORM_NAME,
8
+ tag: "form"
9
+ }),
10
+ [createFormContext] = createContextScope(FORM_NAME),
11
+ [FormProvider, useFormContext] = createFormContext(FORM_NAME),
12
+ TRIGGER_NAME = "FormTrigger",
13
+ FormTriggerFrame = styled(View, {
14
+ name: TRIGGER_NAME
15
+ }),
16
+ FormTrigger = FormTriggerFrame.styleable(function (props, forwardedRef) {
17
+ var {
18
+ __scopeForm,
19
+ children,
20
+ onPress,
21
+ ...triggerProps
22
+ } = props,
23
+ context = useFormContext(TRIGGER_NAME, __scopeForm);
24
+ return /* @__PURE__ */_jsx(FormTriggerFrame, {
25
+ tag: "button",
26
+ ...triggerProps,
27
+ ref: forwardedRef,
28
+ onPress: composeEventHandlers(onPress, context.onSubmit),
29
+ children
30
+ });
31
+ }),
32
+ FormComponent = FormFrame.extractable(function (param) {
33
+ var {
34
+ onSubmit,
35
+ ...props
36
+ } = param;
37
+ return /* @__PURE__ */_jsx(FormProvider, {
38
+ scope: props.__scopeForm,
39
+ onSubmit,
40
+ children: /* @__PURE__ */_jsx(FormFrame, {
41
+ ...props,
42
+ onSubmit: function (e) {
43
+ return e.preventDefault();
44
+ }
45
+ })
46
+ });
47
+ }),
48
+ Form2 = withStaticProperties(FormComponent, {
49
+ Trigger: FormTrigger
18
50
  });
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
- })
30
- });
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
51
+ export { Form2 as Form, FormFrame, FormProvider, FormTrigger, useFormContext };
52
+ //# sourceMappingURL=Form.native.js.map
@@ -1,6 +1 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/Users/n8/tamagui/code/ui/form/src/Form.tsx"],
4
- "mappings": ";AACA,SAASA,OAAOC,MAAMC,cAAc;AAEpC,SAASC,0BAA0B;AACnC,SAASC,sBAAsBC,4BAA4B;AAE3D,IAAMC,YAAY,QAELC,YAAYL,OAAOF,OAAO;EACrCQ,MAAMF;EACNG,KAAK;AACP,CAAA,GAOM,CAACC,iBAAAA,IAAqBP,mBAAmBG,SAAAA,GAMlC,CAACK,cAAcC,cAAAA,IAC1BF,kBAAoCJ,SAAAA,GAUhCO,eAAe,eAEfC,mBAAmBZ,OAAOD,MAAM;EACpCO,MAAMK;AACR,CAAA,GAIaE,cAAcD,iBAAiBE,UAC1C,SAACC,OAAsCC,cAAAA;AACrC,MAAM,EAAEC,aAAaC,UAAUC,SAAS,GAAGC,aAAAA,IAAiBL,OACtDM,UAAUX,eAAeC,cAAcM,WAAAA;AAE7C,SACE,qBAACL,kBAAAA;IACCL,KAAI;IACH,GAAIa;IACLE,KAAKN;IACLG,SAASjB,qBAAqBiB,SAAgBE,QAAQE,QAAQ;;;AAKpE,CAAA,GAOIC,gBAAgBnB,UAAUoB,YAAY,SAAc,OAGjC;MAHiC,EACxDF,UACA,GAAGR,MAAAA,IAFqD;AAIxD,SACE,qBAACN,cAAAA;IAAaiB,OAAOX,MAAME;IAAaM;cACtC,qBAAClB,WAAAA;MAAW,GAAIU;MAAeQ,UAAU,SAACI,GAAAA;eAAWA,EAAEC,eAAc;;;;AAG3E,CAAA,GAEaC,QAAO1B,qBAAqBqB,eAAe;EACtDM,SAASjB;AACX,CAAA;",
5
- "names": ["Stack", "View", "styled", "createContextScope", "composeEventHandlers", "withStaticProperties", "FORM_NAME", "FormFrame", "name", "tag", "createFormContext", "FormProvider", "useFormContext", "TRIGGER_NAME", "FormTriggerFrame", "FormTrigger", "styleable", "props", "forwardedRef", "__scopeForm", "children", "onPress", "triggerProps", "context", "ref", "onSubmit", "FormComponent", "extractable", "scope", "e", "preventDefault", "Form", "Trigger"]
6
- }
1
+ {"version":3,"names":["jsx","_jsx","Stack","View","styled","createContextScope","composeEventHandlers","withStaticProperties","FORM_NAME","FormFrame","name","tag","createFormContext","FormProvider","useFormContext","TRIGGER_NAME","FormTriggerFrame","FormTrigger","styleable","props","forwardedRef","__scopeForm","children","onPress","triggerProps","context","ref","onSubmit","FormComponent","extractable","param","scope","e","preventDefault","Form2"],"sources":["../../src/Form.tsx"],"sourcesContent":[null],"mappings":"AACA,SAASA,GAAA,IAAOC,IAAA,QAAM,mBAAc;AAEpC,SAASC,KAAA,EAAAC,IAAA,EAAAC,MAAA,QAA0B;AACnC,SAASC,kBAAA,QAAsB,yBAA4B;AA6CrD,SAAAC,oBAAA,EAAAC,oBAAA;AA3CN,IAAAC,SAAM,SAAY;EAAAC,SAEL,GAAAL,MAAY,CAAAF,KAAO;IAC9BQ,IAAA,EAAMF,SAAA;IACNG,GAAA,EAAK;EACP,CAAC;EAOK,CAACC,iBAAiB,IAAIP,kBAAA,CAAmBG,SAAS;EAM3C,CAACK,YAAA,EAAcC,cAAc,IACxCF,iBAAA,CAAoCJ,SAAS;EAUzCO,YAAA,GAAe;EAEfC,gBAAA,GAAmBZ,MAAA,CAAOD,IAAA,EAAM;IACpCO,IAAA,EAAMK;EACR,CAAC;EAIYE,WAAA,GAAcD,gBAAA,CAAiBE,SAAA,WAAAC,KAAA,EAAAC,YAAA;IAC1C,IAAC;QAAAC,WAAsC;QAAAC,QAAiB;QAAAC,OAAA;QAAA,GAAAC;MAAA,IAAAL,KAAA;MAAAM,OAAA,GAAAX,cAAA,CAAAC,YAAA,EAAAM,WAAA;IACtD,sBAAqBpB,IAAA,CAAAe,gBAAmB,EAAG;MAG3CL,GAAA,UACE;MAAA,GAACa,YAAA;MAAAE,GAAA,EAAAN,YAAA;MAAAG,OACC,EAAIjB,oBAAA,CAAAiB,OAAA,EAAAE,OAAA,CAAAE,QAAA;MAAAL;IACC;EACA;EAAAM,aACI,GAAAnB,SAAA,CAAAoB,WAAqB,WAAgBC,KAAQ;IAAQ;MAE7DH,QAAA;MAAA,GAAAR;IAAA,IAAAW,KAAA;IAAA,sBAAA7B,IAAA,CAAAY,YAAA;MACHkB,KAAA,EAAAZ,KAAA,CAAAE,WAAA;MAEJM,QAAA;MAOIL,QAAA,iBAA0BrB,IAAA,CAAAQ,SAAY;QAC1C,GAAAU,KAAA;QACGQ,QAAA,WAAAA,CAAAK,CAAA;UACsB,OAAAA,CAAA,CAAAC,cAAA;QACzB;MAOW;IACX;EACF,CAAC;EAAAC,KAAA,GAAA3B,oBAAA,CAAAqB,aAAA","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- export * from "./Form";
2
- //# sourceMappingURL=index.js.map
1
+ export * from "./Form.native.js";
2
+ //# sourceMappingURL=index.native.js.map
@@ -1,6 +1 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/Users/n8/tamagui/code/ui/form/src/index.ts"],
4
- "mappings": "AAAA,cAAc;",
5
- "names": []
6
- }
1
+ {"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,cAAc","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/form",
3
- "version": "1.125.6",
3
+ "version": "1.125.7",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -36,17 +36,17 @@
36
36
  }
37
37
  },
38
38
  "dependencies": {
39
- "@tamagui/compose-refs": "1.125.6",
40
- "@tamagui/core": "1.125.6",
41
- "@tamagui/create-context": "1.125.6",
42
- "@tamagui/focusable": "1.125.6",
43
- "@tamagui/get-button-sized": "1.125.6",
44
- "@tamagui/get-font-sized": "1.125.6",
45
- "@tamagui/helpers": "1.125.6",
46
- "@tamagui/text": "1.125.6"
39
+ "@tamagui/compose-refs": "1.125.7",
40
+ "@tamagui/core": "1.125.7",
41
+ "@tamagui/create-context": "1.125.7",
42
+ "@tamagui/focusable": "1.125.7",
43
+ "@tamagui/get-button-sized": "1.125.7",
44
+ "@tamagui/get-font-sized": "1.125.7",
45
+ "@tamagui/helpers": "1.125.7",
46
+ "@tamagui/text": "1.125.7"
47
47
  },
48
48
  "devDependencies": {
49
- "@tamagui/build": "1.125.6",
49
+ "@tamagui/build": "1.125.7",
50
50
  "react": "*"
51
51
  },
52
52
  "publishConfig": {