@wix/app-extensions 1.0.38 → 1.0.40
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.d.ts +3 -2
- package/build/cjs/index.js +32 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -2
- package/build/es/index.mjs +29 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +295 -58
- package/build/trusted/cjs/index.js +32 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +295 -58
- package/build/trusted/es/index.mjs +29 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1153,6 +1153,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1153
1153
|
ComponentType2["LOYALTY_EARN_POINTS_LIMIT"] = "LOYALTY_EARN_POINTS_LIMIT";
|
|
1154
1154
|
ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
|
|
1155
1155
|
ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
|
|
1156
|
+
ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
|
|
1156
1157
|
return ComponentType2;
|
|
1157
1158
|
})(ComponentType || {});
|
|
1158
1159
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -2670,6 +2671,12 @@ var SidebarEntityType = /* @__PURE__ */ ((SidebarEntityType2) => {
|
|
|
2670
2671
|
SidebarEntityType2["APP"] = "APP";
|
|
2671
2672
|
return SidebarEntityType2;
|
|
2672
2673
|
})(SidebarEntityType || {});
|
|
2674
|
+
var ComponentToViewOption = /* @__PURE__ */ ((ComponentToViewOption2) => {
|
|
2675
|
+
ComponentToViewOption2["UNKNOWN_COMPONENT_TO_VIEW_OPTION"] = "UNKNOWN_COMPONENT_TO_VIEW_OPTION";
|
|
2676
|
+
ComponentToViewOption2["BY_TYPES"] = "BY_TYPES";
|
|
2677
|
+
ComponentToViewOption2["EXISTING_VERSION_OF_COMPONENTS_TO_ENRICH"] = "EXISTING_VERSION_OF_COMPONENTS_TO_ENRICH";
|
|
2678
|
+
return ComponentToViewOption2;
|
|
2679
|
+
})(ComponentToViewOption || {});
|
|
2673
2680
|
var UpdateMode = /* @__PURE__ */ ((UpdateMode2) => {
|
|
2674
2681
|
UpdateMode2["UNKNOWN_UPDATE_MODE"] = "UNKNOWN_UPDATE_MODE";
|
|
2675
2682
|
UpdateMode2["FULL"] = "FULL";
|
|
@@ -2816,6 +2823,13 @@ var ScopeType = /* @__PURE__ */ ((ScopeType2) => {
|
|
|
2816
2823
|
ScopeType2["AUTOMATION_ACTION"] = "AUTOMATION_ACTION";
|
|
2817
2824
|
return ScopeType2;
|
|
2818
2825
|
})(ScopeType || {});
|
|
2826
|
+
var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
2827
|
+
EditorType2["UNKNOWN_EDITOR_TYPE"] = "UNKNOWN_EDITOR_TYPE";
|
|
2828
|
+
EditorType2["CLASSIC_EDITOR_TYPE"] = "CLASSIC_EDITOR_TYPE";
|
|
2829
|
+
EditorType2["STUDIO_EDITOR_TYPE"] = "STUDIO_EDITOR_TYPE";
|
|
2830
|
+
EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
|
|
2831
|
+
return EditorType2;
|
|
2832
|
+
})(EditorType || {});
|
|
2819
2833
|
var Exposure = /* @__PURE__ */ ((Exposure2) => {
|
|
2820
2834
|
Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
|
|
2821
2835
|
Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
|
|
@@ -5532,6 +5546,18 @@ function calendarSearchProvider({
|
|
|
5532
5546
|
compData: { calendarSearchProvider: data }
|
|
5533
5547
|
};
|
|
5534
5548
|
}
|
|
5549
|
+
function editorInstallation({
|
|
5550
|
+
id,
|
|
5551
|
+
data,
|
|
5552
|
+
name
|
|
5553
|
+
}) {
|
|
5554
|
+
return {
|
|
5555
|
+
compId: id,
|
|
5556
|
+
compName: name,
|
|
5557
|
+
compType: "EDITOR_INSTALLATION" /* EDITOR_INSTALLATION */,
|
|
5558
|
+
compData: { editorInstallation: data }
|
|
5559
|
+
};
|
|
5560
|
+
}
|
|
5535
5561
|
export {
|
|
5536
5562
|
A11yAttributes,
|
|
5537
5563
|
AcceptedDirectMessageType,
|
|
@@ -5574,6 +5600,7 @@ export {
|
|
|
5574
5600
|
ChannelType,
|
|
5575
5601
|
ColumnSize,
|
|
5576
5602
|
ComponentPresent,
|
|
5603
|
+
ComponentToViewOption,
|
|
5577
5604
|
ComponentType,
|
|
5578
5605
|
ConfirmationLevel,
|
|
5579
5606
|
ConnectMethod,
|
|
@@ -5604,6 +5631,7 @@ export {
|
|
|
5604
5631
|
Domain,
|
|
5605
5632
|
DtsDefinitionType,
|
|
5606
5633
|
EditableProperties,
|
|
5634
|
+
EditorType,
|
|
5607
5635
|
EffectGroup,
|
|
5608
5636
|
ElementDisplayOption,
|
|
5609
5637
|
ElementType,
|
|
@@ -5901,6 +5929,7 @@ export {
|
|
|
5901
5929
|
editorAppPreviewsPoc,
|
|
5902
5930
|
editorContextProvider,
|
|
5903
5931
|
editorFunctionLibrary,
|
|
5932
|
+
editorInstallation,
|
|
5904
5933
|
editorReactComponent,
|
|
5905
5934
|
embeddedScript,
|
|
5906
5935
|
eventTimeSlotsConfigurationProvider,
|