@wix/form-public 0.54.0 → 0.55.0
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/_tsup-dts-rollup.d.cts +122 -1692
- package/dist/_tsup-dts-rollup.d.ts +122 -1692
- package/dist/index.cjs +471 -255
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +472 -257
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { FieldMap } from './_tsup-dts-rollup.cjs';
|
|
2
2
|
export { FormError } from './_tsup-dts-rollup.cjs';
|
|
3
3
|
export { FormValues } from './_tsup-dts-rollup.cjs';
|
|
4
|
-
export { CallingCountryCode } from './_tsup-dts-rollup.cjs';
|
|
5
4
|
export { useForm } from './_tsup-dts-rollup.cjs';
|
|
6
5
|
export { FormProvider } from './_tsup-dts-rollup.cjs';
|
|
7
6
|
export { Currency } from './_tsup-dts-rollup.cjs';
|
|
8
|
-
export {
|
|
7
|
+
export { useFieldProps } from './_tsup-dts-rollup.cjs';
|
|
9
8
|
export { MultilineAddressProps } from './_tsup-dts-rollup.cjs';
|
|
9
|
+
export { PhoneInputProps } from './_tsup-dts-rollup.cjs';
|
|
10
10
|
export { TextAreaProps } from './_tsup-dts-rollup.cjs';
|
|
11
11
|
export { TextInputProps } from './_tsup-dts-rollup.cjs';
|
|
12
12
|
export { NumberInputProps } from './_tsup-dts-rollup.cjs';
|
|
@@ -30,3 +30,4 @@ export { PaymentInputProps } from './_tsup-dts-rollup.cjs';
|
|
|
30
30
|
export { DonationProps } from './_tsup-dts-rollup.cjs';
|
|
31
31
|
export { AppointmentProps } from './_tsup-dts-rollup.cjs';
|
|
32
32
|
export { ProductListProps } from './_tsup-dts-rollup.cjs';
|
|
33
|
+
export { FieldsProps } from './_tsup-dts-rollup.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { FieldMap } from './_tsup-dts-rollup.js';
|
|
2
2
|
export { FormError } from './_tsup-dts-rollup.js';
|
|
3
3
|
export { FormValues } from './_tsup-dts-rollup.js';
|
|
4
|
-
export { CallingCountryCode } from './_tsup-dts-rollup.js';
|
|
5
4
|
export { useForm } from './_tsup-dts-rollup.js';
|
|
6
5
|
export { FormProvider } from './_tsup-dts-rollup.js';
|
|
7
6
|
export { Currency } from './_tsup-dts-rollup.js';
|
|
8
|
-
export {
|
|
7
|
+
export { useFieldProps } from './_tsup-dts-rollup.js';
|
|
9
8
|
export { MultilineAddressProps } from './_tsup-dts-rollup.js';
|
|
9
|
+
export { PhoneInputProps } from './_tsup-dts-rollup.js';
|
|
10
10
|
export { TextAreaProps } from './_tsup-dts-rollup.js';
|
|
11
11
|
export { TextInputProps } from './_tsup-dts-rollup.js';
|
|
12
12
|
export { NumberInputProps } from './_tsup-dts-rollup.js';
|
|
@@ -30,3 +30,4 @@ export { PaymentInputProps } from './_tsup-dts-rollup.js';
|
|
|
30
30
|
export { DonationProps } from './_tsup-dts-rollup.js';
|
|
31
31
|
export { AppointmentProps } from './_tsup-dts-rollup.js';
|
|
32
32
|
export { ProductListProps } from './_tsup-dts-rollup.js';
|
|
33
|
+
export { FieldsProps } from './_tsup-dts-rollup.js';
|