@wix/app-extensions 1.0.23 → 1.0.25
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 +23 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +22 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +317 -239
- package/build/trusted/cjs/index.js +23 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +317 -239
- package/build/trusted/es/index.mjs +22 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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) => {
|
|
@@ -1980,6 +1982,24 @@ var InputType = /* @__PURE__ */ ((InputType2) => {
|
|
|
1980
1982
|
InputType2["date"] = "date";
|
|
1981
1983
|
return InputType2;
|
|
1982
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 || {});
|
|
1983
2003
|
var ElementType = /* @__PURE__ */ ((ElementType2) => {
|
|
1984
2004
|
ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
1985
2005
|
ElementType2["inlineElement"] = "inlineElement";
|
|
@@ -2401,6 +2421,7 @@ var GroupType = /* @__PURE__ */ ((GroupType2) => {
|
|
|
2401
2421
|
GroupType2["presets"] = "presets";
|
|
2402
2422
|
GroupType2["cssCustomProperties"] = "cssCustomProperties";
|
|
2403
2423
|
GroupType2["displayGroups"] = "displayGroups";
|
|
2424
|
+
GroupType2["elements"] = "elements";
|
|
2404
2425
|
GroupType2["background"] = "background";
|
|
2405
2426
|
GroupType2["margin"] = "margin";
|
|
2406
2427
|
GroupType2["padding"] = "padding";
|
|
@@ -5535,6 +5556,7 @@ export {
|
|
|
5535
5556
|
FieldType,
|
|
5536
5557
|
FileMediaType,
|
|
5537
5558
|
FilterFunction,
|
|
5559
|
+
FilterOperator,
|
|
5538
5560
|
FilterOptionsType,
|
|
5539
5561
|
FilterSelectionType,
|
|
5540
5562
|
FilterValueDefinitionMode,
|