@wix/form-public 0.118.0 → 0.119.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 +6 -0
- package/dist/_tsup-dts-rollup.d.ts +6 -0
- package/dist/index.cjs +1723 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1722 -64
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -7,6 +7,7 @@ import { DateTimeInput } from '@wix/form-fields/headless';
|
|
|
7
7
|
import { Dropdown } from '@wix/form-fields/headless';
|
|
8
8
|
import { ErrorType } from '@wix/ambassador-forms-v1-validation-result/types';
|
|
9
9
|
import { FileUpload } from '@wix/form-fields/headless';
|
|
10
|
+
import { FixedPayment } from '@wix/form-fields/headless';
|
|
10
11
|
import { Form } from '@wix/ambassador-forms-v4-form/types';
|
|
11
12
|
import { FormHandle } from '@wix/form-viewer';
|
|
12
13
|
import type { i18n } from '@wix/fe-essentials/i18n';
|
|
@@ -16,6 +17,7 @@ import { LoginBar } from '@wix/form-fields/headless';
|
|
|
16
17
|
import { MultilineAddress } from '@wix/form-fields/headless';
|
|
17
18
|
import { NumberInput } from '@wix/form-fields/headless';
|
|
18
19
|
import { PhoneInput } from '@wix/form-fields/headless';
|
|
20
|
+
import { ProductList } from '@wix/form-fields/headless';
|
|
19
21
|
import { PublicAppointmentProps } from '@wix/form-fields';
|
|
20
22
|
import { PublicCheckboxGroupProps } from '@wix/form-fields';
|
|
21
23
|
import { PublicCheckboxProps } from '@wix/form-fields';
|
|
@@ -130,6 +132,8 @@ export declare interface FileDescriptor {
|
|
|
130
132
|
|
|
131
133
|
export { FileUpload }
|
|
132
134
|
|
|
135
|
+
export { FixedPayment }
|
|
136
|
+
|
|
133
137
|
export declare const FORM_VIEWER_NAMESPACE = "form-viewer";
|
|
134
138
|
|
|
135
139
|
declare interface FormError {
|
|
@@ -185,6 +189,8 @@ declare type PossibleValues = ValueType | {
|
|
|
185
189
|
[target: string]: ValueType;
|
|
186
190
|
} | FormValues[];
|
|
187
191
|
|
|
192
|
+
export { ProductList }
|
|
193
|
+
|
|
188
194
|
declare type ProductListValue = ProductValue[];
|
|
189
195
|
|
|
190
196
|
declare type ProductValue = {
|
|
@@ -7,6 +7,7 @@ import { DateTimeInput } from '@wix/form-fields/headless';
|
|
|
7
7
|
import { Dropdown } from '@wix/form-fields/headless';
|
|
8
8
|
import { ErrorType } from '@wix/ambassador-forms-v1-validation-result/types';
|
|
9
9
|
import { FileUpload } from '@wix/form-fields/headless';
|
|
10
|
+
import { FixedPayment } from '@wix/form-fields/headless';
|
|
10
11
|
import { Form } from '@wix/ambassador-forms-v4-form/types';
|
|
11
12
|
import { FormHandle } from '@wix/form-viewer';
|
|
12
13
|
import type { i18n } from '@wix/fe-essentials/i18n';
|
|
@@ -16,6 +17,7 @@ import { LoginBar } from '@wix/form-fields/headless';
|
|
|
16
17
|
import { MultilineAddress } from '@wix/form-fields/headless';
|
|
17
18
|
import { NumberInput } from '@wix/form-fields/headless';
|
|
18
19
|
import { PhoneInput } from '@wix/form-fields/headless';
|
|
20
|
+
import { ProductList } from '@wix/form-fields/headless';
|
|
19
21
|
import { PublicAppointmentProps } from '@wix/form-fields';
|
|
20
22
|
import { PublicCheckboxGroupProps } from '@wix/form-fields';
|
|
21
23
|
import { PublicCheckboxProps } from '@wix/form-fields';
|
|
@@ -130,6 +132,8 @@ export declare interface FileDescriptor {
|
|
|
130
132
|
|
|
131
133
|
export { FileUpload }
|
|
132
134
|
|
|
135
|
+
export { FixedPayment }
|
|
136
|
+
|
|
133
137
|
export declare const FORM_VIEWER_NAMESPACE = "form-viewer";
|
|
134
138
|
|
|
135
139
|
declare interface FormError {
|
|
@@ -185,6 +189,8 @@ declare type PossibleValues = ValueType | {
|
|
|
185
189
|
[target: string]: ValueType;
|
|
186
190
|
} | FormValues[];
|
|
187
191
|
|
|
192
|
+
export { ProductList }
|
|
193
|
+
|
|
188
194
|
declare type ProductListValue = ProductValue[];
|
|
189
195
|
|
|
190
196
|
declare type ProductValue = {
|