@wix/app-extensions 1.0.22 → 1.0.23
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/build/cjs/index.js +35 -14
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +33 -14
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +58 -10
- package/build/trusted/cjs/index.js +35 -14
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +58 -10
- package/build/trusted/es/index.mjs +33 -14
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -86,6 +86,7 @@ __export(index_exports, {
|
|
|
86
86
|
DisplayValueEnumDisplayValue: () => DisplayValueEnumDisplayValue,
|
|
87
87
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
88
88
|
DividerDataWidth: () => DividerDataWidth,
|
|
89
|
+
DomEventType: () => DomEventType,
|
|
89
90
|
Domain: () => Domain,
|
|
90
91
|
DtsDefinitionType: () => DtsDefinitionType,
|
|
91
92
|
EditableProperties: () => EditableProperties,
|
|
@@ -139,6 +140,7 @@ __export(index_exports, {
|
|
|
139
140
|
InitDirection: () => InitDirection,
|
|
140
141
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
141
142
|
InitiatorType: () => InitiatorType,
|
|
143
|
+
InputFieldInputType: () => InputFieldInputType,
|
|
142
144
|
InputType: () => InputType,
|
|
143
145
|
InstallPage: () => InstallPage,
|
|
144
146
|
IntegrationType: () => IntegrationType,
|
|
@@ -2041,20 +2043,20 @@ var AppointmentFormat = /* @__PURE__ */ ((AppointmentFormat2) => {
|
|
|
2041
2043
|
AppointmentFormat2["PHONE"] = "PHONE";
|
|
2042
2044
|
return AppointmentFormat2;
|
|
2043
2045
|
})(AppointmentFormat || {});
|
|
2044
|
-
var
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
return
|
|
2057
|
-
})(
|
|
2046
|
+
var InputFieldInputType = /* @__PURE__ */ ((InputFieldInputType2) => {
|
|
2047
|
+
InputFieldInputType2["UNKNOWN_INPUT_TYPE"] = "UNKNOWN_INPUT_TYPE";
|
|
2048
|
+
InputFieldInputType2["STRING"] = "STRING";
|
|
2049
|
+
InputFieldInputType2["NUMBER"] = "NUMBER";
|
|
2050
|
+
InputFieldInputType2["BOOLEAN"] = "BOOLEAN";
|
|
2051
|
+
InputFieldInputType2["ARRAY"] = "ARRAY";
|
|
2052
|
+
InputFieldInputType2["OBJECT"] = "OBJECT";
|
|
2053
|
+
InputFieldInputType2["WIX_FILE"] = "WIX_FILE";
|
|
2054
|
+
InputFieldInputType2["PAYMENT"] = "PAYMENT";
|
|
2055
|
+
InputFieldInputType2["MULTILINE_ADDRESS"] = "MULTILINE_ADDRESS";
|
|
2056
|
+
InputFieldInputType2["SCHEDULING"] = "SCHEDULING";
|
|
2057
|
+
InputFieldInputType2["ADDRESS"] = "ADDRESS";
|
|
2058
|
+
return InputFieldInputType2;
|
|
2059
|
+
})(InputFieldInputType || {});
|
|
2058
2060
|
var EmailInfoTag = /* @__PURE__ */ ((EmailInfoTag2) => {
|
|
2059
2061
|
EmailInfoTag2["UNTAGGED"] = "UNTAGGED";
|
|
2060
2062
|
EmailInfoTag2["MAIN"] = "MAIN";
|
|
@@ -2477,6 +2479,23 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
|
|
|
2477
2479
|
VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
2478
2480
|
return VectorArtCategoryTypes2;
|
|
2479
2481
|
})(VectorArtCategoryTypes || {});
|
|
2482
|
+
var DomEventType = /* @__PURE__ */ ((DomEventType2) => {
|
|
2483
|
+
DomEventType2["UNKNOWN_DomEventType"] = "UNKNOWN_DomEventType";
|
|
2484
|
+
DomEventType2["CHANGE"] = "CHANGE";
|
|
2485
|
+
DomEventType2["POINTER"] = "POINTER";
|
|
2486
|
+
DomEventType2["KEYBOARD"] = "KEYBOARD";
|
|
2487
|
+
DomEventType2["FOCUS"] = "FOCUS";
|
|
2488
|
+
DomEventType2["SUBMIT"] = "SUBMIT";
|
|
2489
|
+
return DomEventType2;
|
|
2490
|
+
})(DomEventType || {});
|
|
2491
|
+
var InputType = /* @__PURE__ */ ((InputType2) => {
|
|
2492
|
+
InputType2["UNKNOWN_InputType"] = "UNKNOWN_InputType";
|
|
2493
|
+
InputType2["text"] = "text";
|
|
2494
|
+
InputType2["checkbox"] = "checkbox";
|
|
2495
|
+
InputType2["number"] = "number";
|
|
2496
|
+
InputType2["date"] = "date";
|
|
2497
|
+
return InputType2;
|
|
2498
|
+
})(InputType || {});
|
|
2480
2499
|
var ElementType = /* @__PURE__ */ ((ElementType2) => {
|
|
2481
2500
|
ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
2482
2501
|
ElementType2["inlineElement"] = "inlineElement";
|
|
@@ -6009,6 +6028,7 @@ function loyaltyPointsAdjustment({
|
|
|
6009
6028
|
DisplayValueEnumDisplayValue,
|
|
6010
6029
|
DividerDataAlignment,
|
|
6011
6030
|
DividerDataWidth,
|
|
6031
|
+
DomEventType,
|
|
6012
6032
|
Domain,
|
|
6013
6033
|
DtsDefinitionType,
|
|
6014
6034
|
EditableProperties,
|
|
@@ -6062,6 +6082,7 @@ function loyaltyPointsAdjustment({
|
|
|
6062
6082
|
InitDirection,
|
|
6063
6083
|
InitialExpandedItems,
|
|
6064
6084
|
InitiatorType,
|
|
6085
|
+
InputFieldInputType,
|
|
6065
6086
|
InputType,
|
|
6066
6087
|
InstallPage,
|
|
6067
6088
|
IntegrationType,
|