@wix/forms 1.0.168 → 1.0.169
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.169",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@wix/forms_form-spam-submission-reports": "1.0.23",
|
|
26
26
|
"@wix/forms_form-submissions": "1.0.30",
|
|
27
|
-
"@wix/forms_forms": "1.0.
|
|
28
|
-
"@wix/forms_submissions": "1.0.
|
|
27
|
+
"@wix/forms_forms": "1.0.40",
|
|
28
|
+
"@wix/forms_submissions": "1.0.73"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"glob": "^10.4.1",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "4ba279f6474c7663ffa6bd02abce512b7fef233db6d6ee195c355b19"
|
|
54
54
|
}
|
|
@@ -587,6 +587,11 @@ interface FormField$1 {
|
|
|
587
587
|
view?: Record<string, any> | null;
|
|
588
588
|
/** Details identifying field, which is extension of other entity */
|
|
589
589
|
dataExtensionsDetails?: DataExtensionsDetails$1;
|
|
590
|
+
/**
|
|
591
|
+
* Whether the field is read only.
|
|
592
|
+
* Default: false
|
|
593
|
+
*/
|
|
594
|
+
readOnly?: boolean;
|
|
590
595
|
}
|
|
591
596
|
interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
|
|
592
597
|
/** DATE format options */
|
|
@@ -3287,6 +3292,11 @@ interface InputField$1 extends InputFieldInputTypeOptionsOneOf$1 {
|
|
|
3287
3292
|
inputType?: InputType$1;
|
|
3288
3293
|
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
3289
3294
|
contactMapping?: FormFieldContactInfo$1;
|
|
3295
|
+
/**
|
|
3296
|
+
* Whether the field is read only.
|
|
3297
|
+
* Default: false
|
|
3298
|
+
*/
|
|
3299
|
+
readOnly?: boolean;
|
|
3290
3300
|
}
|
|
3291
3301
|
/** @oneof */
|
|
3292
3302
|
interface InputFieldInputTypeOptionsOneOf$1 {
|
|
@@ -4179,6 +4189,7 @@ interface FormFieldNonNullableFields {
|
|
|
4179
4189
|
pii: boolean;
|
|
4180
4190
|
hidden: boolean;
|
|
4181
4191
|
dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields;
|
|
4192
|
+
readOnly: boolean;
|
|
4182
4193
|
}
|
|
4183
4194
|
interface PluginContainerDataWidthNonNullableFields {
|
|
4184
4195
|
size: WidthType$1;
|
|
@@ -4648,6 +4659,7 @@ interface InputFieldNonNullableFields {
|
|
|
4648
4659
|
required: boolean;
|
|
4649
4660
|
inputType: InputType$1;
|
|
4650
4661
|
contactMapping?: FormFieldContactInfoNonNullableFields;
|
|
4662
|
+
readOnly: boolean;
|
|
4651
4663
|
}
|
|
4652
4664
|
interface HeaderNonNullableFields {
|
|
4653
4665
|
content?: RichContentNonNullableFields;
|
|
@@ -6598,6 +6610,11 @@ interface FormField {
|
|
|
6598
6610
|
view?: Record<string, any> | null;
|
|
6599
6611
|
/** Details identifying field, which is extension of other entity */
|
|
6600
6612
|
dataExtensionsDetails?: DataExtensionsDetails;
|
|
6613
|
+
/**
|
|
6614
|
+
* Whether the field is read only.
|
|
6615
|
+
* Default: false
|
|
6616
|
+
*/
|
|
6617
|
+
readOnly?: boolean;
|
|
6601
6618
|
}
|
|
6602
6619
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
6603
6620
|
/** DATE format options */
|
|
@@ -9298,6 +9315,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
9298
9315
|
inputType?: InputType;
|
|
9299
9316
|
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
9300
9317
|
contactMapping?: FormFieldContactInfo;
|
|
9318
|
+
/**
|
|
9319
|
+
* Whether the field is read only.
|
|
9320
|
+
* Default: false
|
|
9321
|
+
*/
|
|
9322
|
+
readOnly?: boolean;
|
|
9301
9323
|
}
|
|
9302
9324
|
/** @oneof */
|
|
9303
9325
|
interface InputFieldInputTypeOptionsOneOf {
|
|
@@ -587,6 +587,11 @@ interface FormField$1 {
|
|
|
587
587
|
view?: Record<string, any> | null;
|
|
588
588
|
/** Details identifying field, which is extension of other entity */
|
|
589
589
|
dataExtensionsDetails?: DataExtensionsDetails$1;
|
|
590
|
+
/**
|
|
591
|
+
* Whether the field is read only.
|
|
592
|
+
* Default: false
|
|
593
|
+
*/
|
|
594
|
+
readOnly?: boolean;
|
|
590
595
|
}
|
|
591
596
|
interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
|
|
592
597
|
/** DATE format options */
|
|
@@ -3287,6 +3292,11 @@ interface InputField$1 extends InputFieldInputTypeOptionsOneOf$1 {
|
|
|
3287
3292
|
inputType?: InputType$1;
|
|
3288
3293
|
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
3289
3294
|
contactMapping?: FormFieldContactInfo$1;
|
|
3295
|
+
/**
|
|
3296
|
+
* Whether the field is read only.
|
|
3297
|
+
* Default: false
|
|
3298
|
+
*/
|
|
3299
|
+
readOnly?: boolean;
|
|
3290
3300
|
}
|
|
3291
3301
|
/** @oneof */
|
|
3292
3302
|
interface InputFieldInputTypeOptionsOneOf$1 {
|
|
@@ -4179,6 +4189,7 @@ interface FormFieldNonNullableFields {
|
|
|
4179
4189
|
pii: boolean;
|
|
4180
4190
|
hidden: boolean;
|
|
4181
4191
|
dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields;
|
|
4192
|
+
readOnly: boolean;
|
|
4182
4193
|
}
|
|
4183
4194
|
interface PluginContainerDataWidthNonNullableFields {
|
|
4184
4195
|
size: WidthType$1;
|
|
@@ -4648,6 +4659,7 @@ interface InputFieldNonNullableFields {
|
|
|
4648
4659
|
required: boolean;
|
|
4649
4660
|
inputType: InputType$1;
|
|
4650
4661
|
contactMapping?: FormFieldContactInfoNonNullableFields;
|
|
4662
|
+
readOnly: boolean;
|
|
4651
4663
|
}
|
|
4652
4664
|
interface HeaderNonNullableFields {
|
|
4653
4665
|
content?: RichContentNonNullableFields;
|
|
@@ -6598,6 +6610,11 @@ interface FormField {
|
|
|
6598
6610
|
view?: Record<string, any> | null;
|
|
6599
6611
|
/** Details identifying field, which is extension of other entity */
|
|
6600
6612
|
dataExtensionsDetails?: DataExtensionsDetails;
|
|
6613
|
+
/**
|
|
6614
|
+
* Whether the field is read only.
|
|
6615
|
+
* Default: false
|
|
6616
|
+
*/
|
|
6617
|
+
readOnly?: boolean;
|
|
6601
6618
|
}
|
|
6602
6619
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
6603
6620
|
/** DATE format options */
|
|
@@ -9298,6 +9315,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
9298
9315
|
inputType?: InputType;
|
|
9299
9316
|
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
9300
9317
|
contactMapping?: FormFieldContactInfo;
|
|
9318
|
+
/**
|
|
9319
|
+
* Whether the field is read only.
|
|
9320
|
+
* Default: false
|
|
9321
|
+
*/
|
|
9322
|
+
readOnly?: boolean;
|
|
9301
9323
|
}
|
|
9302
9324
|
/** @oneof */
|
|
9303
9325
|
interface InputFieldInputTypeOptionsOneOf {
|
|
@@ -109,6 +109,11 @@ interface FormField$1 {
|
|
|
109
109
|
view?: Record<string, any> | null;
|
|
110
110
|
/** Details identifying field, which is extension of other entity */
|
|
111
111
|
dataExtensionsDetails?: DataExtensionsDetails$1;
|
|
112
|
+
/**
|
|
113
|
+
* Whether the field is read only.
|
|
114
|
+
* Default: false
|
|
115
|
+
*/
|
|
116
|
+
readOnly?: boolean;
|
|
112
117
|
}
|
|
113
118
|
interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
|
|
114
119
|
/** DATE format options */
|
|
@@ -2803,6 +2808,11 @@ interface InputField$1 extends InputFieldInputTypeOptionsOneOf$1 {
|
|
|
2803
2808
|
inputType?: InputType$1;
|
|
2804
2809
|
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
2805
2810
|
contactMapping?: FormFieldContactInfo$1;
|
|
2811
|
+
/**
|
|
2812
|
+
* Whether the field is read only.
|
|
2813
|
+
* Default: false
|
|
2814
|
+
*/
|
|
2815
|
+
readOnly?: boolean;
|
|
2806
2816
|
}
|
|
2807
2817
|
/** @oneof */
|
|
2808
2818
|
interface InputFieldInputTypeOptionsOneOf$1 {
|
|
@@ -3519,6 +3529,7 @@ interface FormFieldNonNullableFields$1 {
|
|
|
3519
3529
|
pii: boolean;
|
|
3520
3530
|
hidden: boolean;
|
|
3521
3531
|
dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields$1;
|
|
3532
|
+
readOnly: boolean;
|
|
3522
3533
|
}
|
|
3523
3534
|
interface PluginContainerDataWidthNonNullableFields$1 {
|
|
3524
3535
|
size: WidthType$1;
|
|
@@ -3994,6 +4005,7 @@ interface InputFieldNonNullableFields$1 {
|
|
|
3994
4005
|
required: boolean;
|
|
3995
4006
|
inputType: InputType$1;
|
|
3996
4007
|
contactMapping?: FormFieldContactInfoNonNullableFields$1;
|
|
4008
|
+
readOnly: boolean;
|
|
3997
4009
|
}
|
|
3998
4010
|
interface HeaderNonNullableFields$1 {
|
|
3999
4011
|
content?: RichContentNonNullableFields$1;
|
|
@@ -4290,6 +4302,11 @@ interface FormField {
|
|
|
4290
4302
|
view?: Record<string, any> | null;
|
|
4291
4303
|
/** Details identifying field, which is extension of other entity */
|
|
4292
4304
|
dataExtensionsDetails?: DataExtensionsDetails;
|
|
4305
|
+
/**
|
|
4306
|
+
* Whether the field is read only.
|
|
4307
|
+
* Default: false
|
|
4308
|
+
*/
|
|
4309
|
+
readOnly?: boolean;
|
|
4293
4310
|
}
|
|
4294
4311
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
4295
4312
|
/** DATE format options */
|
|
@@ -6961,6 +6978,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
6961
6978
|
inputType?: InputType;
|
|
6962
6979
|
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
6963
6980
|
contactMapping?: FormFieldContactInfo;
|
|
6981
|
+
/**
|
|
6982
|
+
* Whether the field is read only.
|
|
6983
|
+
* Default: false
|
|
6984
|
+
*/
|
|
6985
|
+
readOnly?: boolean;
|
|
6964
6986
|
}
|
|
6965
6987
|
/** @oneof */
|
|
6966
6988
|
interface InputFieldInputTypeOptionsOneOf {
|
|
@@ -7677,6 +7699,7 @@ interface FormFieldNonNullableFields {
|
|
|
7677
7699
|
pii: boolean;
|
|
7678
7700
|
hidden: boolean;
|
|
7679
7701
|
dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields;
|
|
7702
|
+
readOnly: boolean;
|
|
7680
7703
|
}
|
|
7681
7704
|
interface PluginContainerDataWidthNonNullableFields {
|
|
7682
7705
|
size: WidthType;
|
|
@@ -8146,6 +8169,7 @@ interface InputFieldNonNullableFields {
|
|
|
8146
8169
|
required: boolean;
|
|
8147
8170
|
inputType: InputType;
|
|
8148
8171
|
contactMapping?: FormFieldContactInfoNonNullableFields;
|
|
8172
|
+
readOnly: boolean;
|
|
8149
8173
|
}
|
|
8150
8174
|
interface HeaderNonNullableFields {
|
|
8151
8175
|
content?: RichContentNonNullableFields;
|