@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.
@@ -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,
@@ -109,6 +110,7 @@ __export(index_exports, {
109
110
  FieldType: () => FieldType,
110
111
  FileMediaType: () => FileMediaType,
111
112
  FilterFunction: () => FilterFunction,
113
+ FilterOperator: () => FilterOperator,
112
114
  FilterOptionsType: () => FilterOptionsType,
113
115
  FilterSelectionType: () => FilterSelectionType,
114
116
  FilterValueDefinitionMode: () => FilterValueDefinitionMode,
@@ -139,6 +141,7 @@ __export(index_exports, {
139
141
  InitDirection: () => InitDirection,
140
142
  InitialExpandedItems: () => InitialExpandedItems,
141
143
  InitiatorType: () => InitiatorType,
144
+ InputFieldInputType: () => InputFieldInputType,
142
145
  InputType: () => InputType,
143
146
  InstallPage: () => InstallPage,
144
147
  IntegrationType: () => IntegrationType,
@@ -2041,20 +2044,20 @@ var AppointmentFormat = /* @__PURE__ */ ((AppointmentFormat2) => {
2041
2044
  AppointmentFormat2["PHONE"] = "PHONE";
2042
2045
  return AppointmentFormat2;
2043
2046
  })(AppointmentFormat || {});
2044
- var InputType = /* @__PURE__ */ ((InputType2) => {
2045
- InputType2["UNKNOWN_INPUT_TYPE"] = "UNKNOWN_INPUT_TYPE";
2046
- InputType2["STRING"] = "STRING";
2047
- InputType2["NUMBER"] = "NUMBER";
2048
- InputType2["BOOLEAN"] = "BOOLEAN";
2049
- InputType2["ARRAY"] = "ARRAY";
2050
- InputType2["OBJECT"] = "OBJECT";
2051
- InputType2["WIX_FILE"] = "WIX_FILE";
2052
- InputType2["PAYMENT"] = "PAYMENT";
2053
- InputType2["MULTILINE_ADDRESS"] = "MULTILINE_ADDRESS";
2054
- InputType2["SCHEDULING"] = "SCHEDULING";
2055
- InputType2["ADDRESS"] = "ADDRESS";
2056
- return InputType2;
2057
- })(InputType || {});
2047
+ var InputFieldInputType = /* @__PURE__ */ ((InputFieldInputType2) => {
2048
+ InputFieldInputType2["UNKNOWN_INPUT_TYPE"] = "UNKNOWN_INPUT_TYPE";
2049
+ InputFieldInputType2["STRING"] = "STRING";
2050
+ InputFieldInputType2["NUMBER"] = "NUMBER";
2051
+ InputFieldInputType2["BOOLEAN"] = "BOOLEAN";
2052
+ InputFieldInputType2["ARRAY"] = "ARRAY";
2053
+ InputFieldInputType2["OBJECT"] = "OBJECT";
2054
+ InputFieldInputType2["WIX_FILE"] = "WIX_FILE";
2055
+ InputFieldInputType2["PAYMENT"] = "PAYMENT";
2056
+ InputFieldInputType2["MULTILINE_ADDRESS"] = "MULTILINE_ADDRESS";
2057
+ InputFieldInputType2["SCHEDULING"] = "SCHEDULING";
2058
+ InputFieldInputType2["ADDRESS"] = "ADDRESS";
2059
+ return InputFieldInputType2;
2060
+ })(InputFieldInputType || {});
2058
2061
  var EmailInfoTag = /* @__PURE__ */ ((EmailInfoTag2) => {
2059
2062
  EmailInfoTag2["UNTAGGED"] = "UNTAGGED";
2060
2063
  EmailInfoTag2["MAIN"] = "MAIN";
@@ -2359,6 +2362,8 @@ var DataType = /* @__PURE__ */ ((DataType2) => {
2359
2362
  DataType2["onKeyPress"] = "onKeyPress";
2360
2363
  DataType2["onKeyUp"] = "onKeyUp";
2361
2364
  DataType2["onSubmit"] = "onSubmit";
2365
+ DataType2["filter"] = "filter";
2366
+ DataType2["sort"] = "sort";
2362
2367
  return DataType2;
2363
2368
  })(DataType || {});
2364
2369
  var A11yAttributes = /* @__PURE__ */ ((A11yAttributes2) => {
@@ -2477,6 +2482,41 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
2477
2482
  VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
2478
2483
  return VectorArtCategoryTypes2;
2479
2484
  })(VectorArtCategoryTypes || {});
2485
+ var DomEventType = /* @__PURE__ */ ((DomEventType2) => {
2486
+ DomEventType2["UNKNOWN_DomEventType"] = "UNKNOWN_DomEventType";
2487
+ DomEventType2["CHANGE"] = "CHANGE";
2488
+ DomEventType2["POINTER"] = "POINTER";
2489
+ DomEventType2["KEYBOARD"] = "KEYBOARD";
2490
+ DomEventType2["FOCUS"] = "FOCUS";
2491
+ DomEventType2["SUBMIT"] = "SUBMIT";
2492
+ return DomEventType2;
2493
+ })(DomEventType || {});
2494
+ var InputType = /* @__PURE__ */ ((InputType2) => {
2495
+ InputType2["UNKNOWN_InputType"] = "UNKNOWN_InputType";
2496
+ InputType2["text"] = "text";
2497
+ InputType2["checkbox"] = "checkbox";
2498
+ InputType2["number"] = "number";
2499
+ InputType2["date"] = "date";
2500
+ return InputType2;
2501
+ })(InputType || {});
2502
+ var FilterOperator = /* @__PURE__ */ ((FilterOperator2) => {
2503
+ FilterOperator2["UNKNOWN_FilterOperator"] = "UNKNOWN_FilterOperator";
2504
+ FilterOperator2["eq"] = "eq";
2505
+ FilterOperator2["ne"] = "ne";
2506
+ FilterOperator2["lt"] = "lt";
2507
+ FilterOperator2["lte"] = "lte";
2508
+ FilterOperator2["gt"] = "gt";
2509
+ FilterOperator2["gte"] = "gte";
2510
+ FilterOperator2["in"] = "in";
2511
+ FilterOperator2["nin"] = "nin";
2512
+ FilterOperator2["exists"] = "exists";
2513
+ FilterOperator2["isEmpty"] = "isEmpty";
2514
+ FilterOperator2["startsWith"] = "startsWith";
2515
+ FilterOperator2["hasAll"] = "hasAll";
2516
+ FilterOperator2["hasSome"] = "hasSome";
2517
+ FilterOperator2["matchItems"] = "matchItems";
2518
+ return FilterOperator2;
2519
+ })(FilterOperator || {});
2480
2520
  var ElementType = /* @__PURE__ */ ((ElementType2) => {
2481
2521
  ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
2482
2522
  ElementType2["inlineElement"] = "inlineElement";
@@ -2898,6 +2938,7 @@ var GroupType = /* @__PURE__ */ ((GroupType2) => {
2898
2938
  GroupType2["presets"] = "presets";
2899
2939
  GroupType2["cssCustomProperties"] = "cssCustomProperties";
2900
2940
  GroupType2["displayGroups"] = "displayGroups";
2941
+ GroupType2["elements"] = "elements";
2901
2942
  GroupType2["background"] = "background";
2902
2943
  GroupType2["margin"] = "margin";
2903
2944
  GroupType2["padding"] = "padding";
@@ -6009,6 +6050,7 @@ function loyaltyPointsAdjustment({
6009
6050
  DisplayValueEnumDisplayValue,
6010
6051
  DividerDataAlignment,
6011
6052
  DividerDataWidth,
6053
+ DomEventType,
6012
6054
  Domain,
6013
6055
  DtsDefinitionType,
6014
6056
  EditableProperties,
@@ -6032,6 +6074,7 @@ function loyaltyPointsAdjustment({
6032
6074
  FieldType,
6033
6075
  FileMediaType,
6034
6076
  FilterFunction,
6077
+ FilterOperator,
6035
6078
  FilterOptionsType,
6036
6079
  FilterSelectionType,
6037
6080
  FilterValueDefinitionMode,
@@ -6062,6 +6105,7 @@ function loyaltyPointsAdjustment({
6062
6105
  InitDirection,
6063
6106
  InitialExpandedItems,
6064
6107
  InitiatorType,
6108
+ InputFieldInputType,
6065
6109
  InputType,
6066
6110
  InstallPage,
6067
6111
  IntegrationType,