@wix/app-extensions 1.0.131 → 1.0.133
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 +26 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -2
- package/build/es/index.mjs +24 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +184 -15
- package/build/trusted/cjs/index.js +26 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +184 -15
- package/build/trusted/es/index.mjs +24 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1287,6 +1287,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1287
1287
|
ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
|
|
1288
1288
|
ComponentType2["APP_TOOLS"] = "APP_TOOLS";
|
|
1289
1289
|
ComponentType2["ECOM_PURCHASE_RECOMMENDATIONS"] = "ECOM_PURCHASE_RECOMMENDATIONS";
|
|
1290
|
+
ComponentType2["COMPONENTS_DELETION_HOOK_PROVIDER"] = "COMPONENTS_DELETION_HOOK_PROVIDER";
|
|
1290
1291
|
return ComponentType2;
|
|
1291
1292
|
})(ComponentType || {});
|
|
1292
1293
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -2202,6 +2203,7 @@ var ElementType = /* @__PURE__ */ ((ElementType2) => {
|
|
|
2202
2203
|
ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
2203
2204
|
ElementType2["inlineElement"] = "inlineElement";
|
|
2204
2205
|
ElementType2["refElement"] = "refElement";
|
|
2206
|
+
ElementType2["partElement"] = "partElement";
|
|
2205
2207
|
return ElementType2;
|
|
2206
2208
|
})(ElementType || {});
|
|
2207
2209
|
var CssPropertyTypeEnumCssPropertyType = /* @__PURE__ */ ((CssPropertyTypeEnumCssPropertyType2) => {
|
|
@@ -2782,6 +2784,14 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
2782
2784
|
CssPropertyType2["maskComposite"] = "maskComposite";
|
|
2783
2785
|
return CssPropertyType2;
|
|
2784
2786
|
})(CssPropertyType || {});
|
|
2787
|
+
var PartType = /* @__PURE__ */ ((PartType2) => {
|
|
2788
|
+
PartType2["UNKNOWN_PartType"] = "UNKNOWN_PartType";
|
|
2789
|
+
PartType2["text"] = "text";
|
|
2790
|
+
PartType2["svg"] = "svg";
|
|
2791
|
+
PartType2["media"] = "media";
|
|
2792
|
+
PartType2["container"] = "container";
|
|
2793
|
+
return PartType2;
|
|
2794
|
+
})(PartType || {});
|
|
2785
2795
|
var Trigger = /* @__PURE__ */ ((Trigger2) => {
|
|
2786
2796
|
Trigger2["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
2787
2797
|
Trigger2["hover"] = "hover";
|
|
@@ -6005,6 +6015,18 @@ function appTools({
|
|
|
6005
6015
|
compData: { appTools: data }
|
|
6006
6016
|
};
|
|
6007
6017
|
}
|
|
6018
|
+
function componentsDeletionHookProvider({
|
|
6019
|
+
id,
|
|
6020
|
+
data,
|
|
6021
|
+
name
|
|
6022
|
+
}) {
|
|
6023
|
+
return {
|
|
6024
|
+
compId: id,
|
|
6025
|
+
compName: name,
|
|
6026
|
+
compType: "COMPONENTS_DELETION_HOOK_PROVIDER" /* COMPONENTS_DELETION_HOOK_PROVIDER */,
|
|
6027
|
+
compData: { componentsDeletionHookProvider: data }
|
|
6028
|
+
};
|
|
6029
|
+
}
|
|
6008
6030
|
export {
|
|
6009
6031
|
A11yAttributes,
|
|
6010
6032
|
AcceptedDirectMessageType,
|
|
@@ -6201,6 +6223,7 @@ export {
|
|
|
6201
6223
|
PanelMode,
|
|
6202
6224
|
PanelType,
|
|
6203
6225
|
ParameterType,
|
|
6226
|
+
PartType,
|
|
6204
6227
|
PartialPaymentRestriction,
|
|
6205
6228
|
ParticipantType,
|
|
6206
6229
|
PaymentComponentType,
|
|
@@ -6376,6 +6399,7 @@ export {
|
|
|
6376
6399
|
communicationChannelProvider,
|
|
6377
6400
|
componentEnricherProvider,
|
|
6378
6401
|
componentReferenceDataProvider,
|
|
6402
|
+
componentsDeletionHookProvider,
|
|
6379
6403
|
componentsTranslationsAdditionalFieldsProvider,
|
|
6380
6404
|
componentsValidatorProvider,
|
|
6381
6405
|
connectorConfig,
|