@wix/app-extensions 1.0.22 → 1.0.24
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 +58 -14
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +55 -14
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +269 -173
- package/build/trusted/cjs/index.js +58 -14
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +269 -173
- package/build/trusted/es/index.mjs +55 -14
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.mjs
CHANGED
|
@@ -1527,20 +1527,20 @@ var AppointmentFormat = /* @__PURE__ */ ((AppointmentFormat2) => {
|
|
|
1527
1527
|
AppointmentFormat2["PHONE"] = "PHONE";
|
|
1528
1528
|
return AppointmentFormat2;
|
|
1529
1529
|
})(AppointmentFormat || {});
|
|
1530
|
-
var
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
return
|
|
1543
|
-
})(
|
|
1530
|
+
var InputFieldInputType = /* @__PURE__ */ ((InputFieldInputType2) => {
|
|
1531
|
+
InputFieldInputType2["UNKNOWN_INPUT_TYPE"] = "UNKNOWN_INPUT_TYPE";
|
|
1532
|
+
InputFieldInputType2["STRING"] = "STRING";
|
|
1533
|
+
InputFieldInputType2["NUMBER"] = "NUMBER";
|
|
1534
|
+
InputFieldInputType2["BOOLEAN"] = "BOOLEAN";
|
|
1535
|
+
InputFieldInputType2["ARRAY"] = "ARRAY";
|
|
1536
|
+
InputFieldInputType2["OBJECT"] = "OBJECT";
|
|
1537
|
+
InputFieldInputType2["WIX_FILE"] = "WIX_FILE";
|
|
1538
|
+
InputFieldInputType2["PAYMENT"] = "PAYMENT";
|
|
1539
|
+
InputFieldInputType2["MULTILINE_ADDRESS"] = "MULTILINE_ADDRESS";
|
|
1540
|
+
InputFieldInputType2["SCHEDULING"] = "SCHEDULING";
|
|
1541
|
+
InputFieldInputType2["ADDRESS"] = "ADDRESS";
|
|
1542
|
+
return InputFieldInputType2;
|
|
1543
|
+
})(InputFieldInputType || {});
|
|
1544
1544
|
var EmailInfoTag = /* @__PURE__ */ ((EmailInfoTag2) => {
|
|
1545
1545
|
EmailInfoTag2["UNTAGGED"] = "UNTAGGED";
|
|
1546
1546
|
EmailInfoTag2["MAIN"] = "MAIN";
|
|
@@ -1845,6 +1845,8 @@ var DataType = /* @__PURE__ */ ((DataType2) => {
|
|
|
1845
1845
|
DataType2["onKeyPress"] = "onKeyPress";
|
|
1846
1846
|
DataType2["onKeyUp"] = "onKeyUp";
|
|
1847
1847
|
DataType2["onSubmit"] = "onSubmit";
|
|
1848
|
+
DataType2["filter"] = "filter";
|
|
1849
|
+
DataType2["sort"] = "sort";
|
|
1848
1850
|
return DataType2;
|
|
1849
1851
|
})(DataType || {});
|
|
1850
1852
|
var A11yAttributes = /* @__PURE__ */ ((A11yAttributes2) => {
|
|
@@ -1963,6 +1965,41 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
|
|
|
1963
1965
|
VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
1964
1966
|
return VectorArtCategoryTypes2;
|
|
1965
1967
|
})(VectorArtCategoryTypes || {});
|
|
1968
|
+
var DomEventType = /* @__PURE__ */ ((DomEventType2) => {
|
|
1969
|
+
DomEventType2["UNKNOWN_DomEventType"] = "UNKNOWN_DomEventType";
|
|
1970
|
+
DomEventType2["CHANGE"] = "CHANGE";
|
|
1971
|
+
DomEventType2["POINTER"] = "POINTER";
|
|
1972
|
+
DomEventType2["KEYBOARD"] = "KEYBOARD";
|
|
1973
|
+
DomEventType2["FOCUS"] = "FOCUS";
|
|
1974
|
+
DomEventType2["SUBMIT"] = "SUBMIT";
|
|
1975
|
+
return DomEventType2;
|
|
1976
|
+
})(DomEventType || {});
|
|
1977
|
+
var InputType = /* @__PURE__ */ ((InputType2) => {
|
|
1978
|
+
InputType2["UNKNOWN_InputType"] = "UNKNOWN_InputType";
|
|
1979
|
+
InputType2["text"] = "text";
|
|
1980
|
+
InputType2["checkbox"] = "checkbox";
|
|
1981
|
+
InputType2["number"] = "number";
|
|
1982
|
+
InputType2["date"] = "date";
|
|
1983
|
+
return InputType2;
|
|
1984
|
+
})(InputType || {});
|
|
1985
|
+
var FilterOperator = /* @__PURE__ */ ((FilterOperator2) => {
|
|
1986
|
+
FilterOperator2["UNKNOWN_FilterOperator"] = "UNKNOWN_FilterOperator";
|
|
1987
|
+
FilterOperator2["eq"] = "eq";
|
|
1988
|
+
FilterOperator2["ne"] = "ne";
|
|
1989
|
+
FilterOperator2["lt"] = "lt";
|
|
1990
|
+
FilterOperator2["lte"] = "lte";
|
|
1991
|
+
FilterOperator2["gt"] = "gt";
|
|
1992
|
+
FilterOperator2["gte"] = "gte";
|
|
1993
|
+
FilterOperator2["in"] = "in";
|
|
1994
|
+
FilterOperator2["nin"] = "nin";
|
|
1995
|
+
FilterOperator2["exists"] = "exists";
|
|
1996
|
+
FilterOperator2["isEmpty"] = "isEmpty";
|
|
1997
|
+
FilterOperator2["startsWith"] = "startsWith";
|
|
1998
|
+
FilterOperator2["hasAll"] = "hasAll";
|
|
1999
|
+
FilterOperator2["hasSome"] = "hasSome";
|
|
2000
|
+
FilterOperator2["matchItems"] = "matchItems";
|
|
2001
|
+
return FilterOperator2;
|
|
2002
|
+
})(FilterOperator || {});
|
|
1966
2003
|
var ElementType = /* @__PURE__ */ ((ElementType2) => {
|
|
1967
2004
|
ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
1968
2005
|
ElementType2["inlineElement"] = "inlineElement";
|
|
@@ -2384,6 +2421,7 @@ var GroupType = /* @__PURE__ */ ((GroupType2) => {
|
|
|
2384
2421
|
GroupType2["presets"] = "presets";
|
|
2385
2422
|
GroupType2["cssCustomProperties"] = "cssCustomProperties";
|
|
2386
2423
|
GroupType2["displayGroups"] = "displayGroups";
|
|
2424
|
+
GroupType2["elements"] = "elements";
|
|
2387
2425
|
GroupType2["background"] = "background";
|
|
2388
2426
|
GroupType2["margin"] = "margin";
|
|
2389
2427
|
GroupType2["padding"] = "padding";
|
|
@@ -5494,6 +5532,7 @@ export {
|
|
|
5494
5532
|
DisplayValueEnumDisplayValue,
|
|
5495
5533
|
DividerDataAlignment,
|
|
5496
5534
|
DividerDataWidth,
|
|
5535
|
+
DomEventType,
|
|
5497
5536
|
Domain,
|
|
5498
5537
|
DtsDefinitionType,
|
|
5499
5538
|
EditableProperties,
|
|
@@ -5517,6 +5556,7 @@ export {
|
|
|
5517
5556
|
FieldType,
|
|
5518
5557
|
FileMediaType,
|
|
5519
5558
|
FilterFunction,
|
|
5559
|
+
FilterOperator,
|
|
5520
5560
|
FilterOptionsType,
|
|
5521
5561
|
FilterSelectionType,
|
|
5522
5562
|
FilterValueDefinitionMode,
|
|
@@ -5547,6 +5587,7 @@ export {
|
|
|
5547
5587
|
InitDirection,
|
|
5548
5588
|
InitialExpandedItems,
|
|
5549
5589
|
InitiatorType,
|
|
5590
|
+
InputFieldInputType,
|
|
5550
5591
|
InputType,
|
|
5551
5592
|
InstallPage,
|
|
5552
5593
|
IntegrationType,
|