@wix/forms 1.0.162 → 1.0.163
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.163",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@wix/forms_form-spam-submission-reports": "1.0.20",
|
|
23
23
|
"@wix/forms_form-submissions": "1.0.28",
|
|
24
|
-
"@wix/forms_forms": "1.0.
|
|
25
|
-
"@wix/forms_submissions": "1.0.
|
|
24
|
+
"@wix/forms_forms": "1.0.36",
|
|
25
|
+
"@wix/forms_submissions": "1.0.69"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"glob": "^10.4.1",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "8ef037afe42a36ba98134d6894f1acae36b7bad52c106f9da1a85823"
|
|
51
51
|
}
|
|
@@ -553,6 +553,8 @@ interface Form$1 {
|
|
|
553
553
|
submitSettings?: SubmitSettings$1;
|
|
554
554
|
/** Settings for field groups */
|
|
555
555
|
fieldGroups?: FieldGroup$1[];
|
|
556
|
+
/** Message shown when the form is disabled */
|
|
557
|
+
disabledFormMessage?: RichContent$1;
|
|
556
558
|
}
|
|
557
559
|
declare enum RequiredIndicator$1 {
|
|
558
560
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -4821,6 +4823,7 @@ interface FormNonNullableFields {
|
|
|
4821
4823
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
|
|
4822
4824
|
submitSettings?: SubmitSettingsNonNullableFields;
|
|
4823
4825
|
fieldGroups: FieldGroupNonNullableFields[];
|
|
4826
|
+
disabledFormMessage?: RichContentNonNullableFields;
|
|
4824
4827
|
}
|
|
4825
4828
|
interface CreateFormResponseNonNullableFields {
|
|
4826
4829
|
form?: FormNonNullableFields;
|
|
@@ -4986,6 +4989,8 @@ interface UpdateForm {
|
|
|
4986
4989
|
submitSettings?: SubmitSettings$1;
|
|
4987
4990
|
/** Settings for field groups */
|
|
4988
4991
|
fieldGroups?: FieldGroup$1[];
|
|
4992
|
+
/** Message shown when the form is disabled */
|
|
4993
|
+
disabledFormMessage?: RichContent$1;
|
|
4989
4994
|
}
|
|
4990
4995
|
interface DeleteFormOptions {
|
|
4991
4996
|
/**
|
|
@@ -6556,6 +6561,8 @@ interface Form {
|
|
|
6556
6561
|
submitSettings?: SubmitSettings;
|
|
6557
6562
|
/** Settings for field groups */
|
|
6558
6563
|
fieldGroups?: FieldGroup[];
|
|
6564
|
+
/** Message shown when the form is disabled */
|
|
6565
|
+
disabledFormMessage?: RichContent;
|
|
6559
6566
|
}
|
|
6560
6567
|
declare enum RequiredIndicator {
|
|
6561
6568
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -553,6 +553,8 @@ interface Form$1 {
|
|
|
553
553
|
submitSettings?: SubmitSettings$1;
|
|
554
554
|
/** Settings for field groups */
|
|
555
555
|
fieldGroups?: FieldGroup$1[];
|
|
556
|
+
/** Message shown when the form is disabled */
|
|
557
|
+
disabledFormMessage?: RichContent$1;
|
|
556
558
|
}
|
|
557
559
|
declare enum RequiredIndicator$1 {
|
|
558
560
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -4821,6 +4823,7 @@ interface FormNonNullableFields {
|
|
|
4821
4823
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
|
|
4822
4824
|
submitSettings?: SubmitSettingsNonNullableFields;
|
|
4823
4825
|
fieldGroups: FieldGroupNonNullableFields[];
|
|
4826
|
+
disabledFormMessage?: RichContentNonNullableFields;
|
|
4824
4827
|
}
|
|
4825
4828
|
interface CreateFormResponseNonNullableFields {
|
|
4826
4829
|
form?: FormNonNullableFields;
|
|
@@ -4986,6 +4989,8 @@ interface UpdateForm {
|
|
|
4986
4989
|
submitSettings?: SubmitSettings$1;
|
|
4987
4990
|
/** Settings for field groups */
|
|
4988
4991
|
fieldGroups?: FieldGroup$1[];
|
|
4992
|
+
/** Message shown when the form is disabled */
|
|
4993
|
+
disabledFormMessage?: RichContent$1;
|
|
4989
4994
|
}
|
|
4990
4995
|
interface DeleteFormOptions {
|
|
4991
4996
|
/**
|
|
@@ -6556,6 +6561,8 @@ interface Form {
|
|
|
6556
6561
|
submitSettings?: SubmitSettings;
|
|
6557
6562
|
/** Settings for field groups */
|
|
6558
6563
|
fieldGroups?: FieldGroup[];
|
|
6564
|
+
/** Message shown when the form is disabled */
|
|
6565
|
+
disabledFormMessage?: RichContent;
|
|
6559
6566
|
}
|
|
6560
6567
|
declare enum RequiredIndicator {
|
|
6561
6568
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -75,6 +75,8 @@ interface Form$1 {
|
|
|
75
75
|
submitSettings?: SubmitSettings$1;
|
|
76
76
|
/** Settings for field groups */
|
|
77
77
|
fieldGroups?: FieldGroup$1[];
|
|
78
|
+
/** Message shown when the form is disabled */
|
|
79
|
+
disabledFormMessage?: RichContent$1;
|
|
78
80
|
}
|
|
79
81
|
declare enum RequiredIndicator$1 {
|
|
80
82
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -4167,6 +4169,7 @@ interface FormNonNullableFields$1 {
|
|
|
4167
4169
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields$1;
|
|
4168
4170
|
submitSettings?: SubmitSettingsNonNullableFields$1;
|
|
4169
4171
|
fieldGroups: FieldGroupNonNullableFields$1[];
|
|
4172
|
+
disabledFormMessage?: RichContentNonNullableFields$1;
|
|
4170
4173
|
}
|
|
4171
4174
|
interface CreateFormResponseNonNullableFields$1 {
|
|
4172
4175
|
form?: FormNonNullableFields$1;
|
|
@@ -4319,6 +4322,8 @@ interface Form {
|
|
|
4319
4322
|
submitSettings?: SubmitSettings;
|
|
4320
4323
|
/** Settings for field groups */
|
|
4321
4324
|
fieldGroups?: FieldGroup[];
|
|
4325
|
+
/** Message shown when the form is disabled */
|
|
4326
|
+
disabledFormMessage?: RichContent;
|
|
4322
4327
|
}
|
|
4323
4328
|
declare enum RequiredIndicator {
|
|
4324
4329
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -8382,6 +8387,7 @@ interface FormNonNullableFields {
|
|
|
8382
8387
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
|
|
8383
8388
|
submitSettings?: SubmitSettingsNonNullableFields;
|
|
8384
8389
|
fieldGroups: FieldGroupNonNullableFields[];
|
|
8390
|
+
disabledFormMessage?: RichContentNonNullableFields;
|
|
8385
8391
|
}
|
|
8386
8392
|
interface CreateFormResponseNonNullableFields {
|
|
8387
8393
|
form?: FormNonNullableFields;
|