@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
|
@@ -215,6 +215,7 @@ __export(index_exports, {
|
|
|
215
215
|
PanelMode: () => PanelMode,
|
|
216
216
|
PanelType: () => PanelType,
|
|
217
217
|
ParameterType: () => ParameterType,
|
|
218
|
+
PartType: () => PartType,
|
|
218
219
|
PartialPaymentRestriction: () => PartialPaymentRestriction,
|
|
219
220
|
ParticipantType: () => ParticipantType,
|
|
220
221
|
PaymentComponentType: () => PaymentComponentType,
|
|
@@ -390,6 +391,7 @@ __export(index_exports, {
|
|
|
390
391
|
communicationChannelProvider: () => communicationChannelProvider,
|
|
391
392
|
componentEnricherProvider: () => componentEnricherProvider,
|
|
392
393
|
componentReferenceDataProvider: () => componentReferenceDataProvider,
|
|
394
|
+
componentsDeletionHookProvider: () => componentsDeletionHookProvider,
|
|
393
395
|
componentsTranslationsAdditionalFieldsProvider: () => componentsTranslationsAdditionalFieldsProvider,
|
|
394
396
|
componentsValidatorProvider: () => componentsValidatorProvider,
|
|
395
397
|
connectorConfig: () => connectorConfig,
|
|
@@ -1858,6 +1860,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1858
1860
|
ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
|
|
1859
1861
|
ComponentType2["APP_TOOLS"] = "APP_TOOLS";
|
|
1860
1862
|
ComponentType2["ECOM_PURCHASE_RECOMMENDATIONS"] = "ECOM_PURCHASE_RECOMMENDATIONS";
|
|
1863
|
+
ComponentType2["COMPONENTS_DELETION_HOOK_PROVIDER"] = "COMPONENTS_DELETION_HOOK_PROVIDER";
|
|
1861
1864
|
return ComponentType2;
|
|
1862
1865
|
})(ComponentType || {});
|
|
1863
1866
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -2773,6 +2776,7 @@ var ElementType = /* @__PURE__ */ ((ElementType2) => {
|
|
|
2773
2776
|
ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
2774
2777
|
ElementType2["inlineElement"] = "inlineElement";
|
|
2775
2778
|
ElementType2["refElement"] = "refElement";
|
|
2779
|
+
ElementType2["partElement"] = "partElement";
|
|
2776
2780
|
return ElementType2;
|
|
2777
2781
|
})(ElementType || {});
|
|
2778
2782
|
var CssPropertyTypeEnumCssPropertyType = /* @__PURE__ */ ((CssPropertyTypeEnumCssPropertyType2) => {
|
|
@@ -3353,6 +3357,14 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
3353
3357
|
CssPropertyType2["maskComposite"] = "maskComposite";
|
|
3354
3358
|
return CssPropertyType2;
|
|
3355
3359
|
})(CssPropertyType || {});
|
|
3360
|
+
var PartType = /* @__PURE__ */ ((PartType2) => {
|
|
3361
|
+
PartType2["UNKNOWN_PartType"] = "UNKNOWN_PartType";
|
|
3362
|
+
PartType2["text"] = "text";
|
|
3363
|
+
PartType2["svg"] = "svg";
|
|
3364
|
+
PartType2["media"] = "media";
|
|
3365
|
+
PartType2["container"] = "container";
|
|
3366
|
+
return PartType2;
|
|
3367
|
+
})(PartType || {});
|
|
3356
3368
|
var Trigger = /* @__PURE__ */ ((Trigger2) => {
|
|
3357
3369
|
Trigger2["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
3358
3370
|
Trigger2["hover"] = "hover";
|
|
@@ -6576,6 +6588,18 @@ function appTools({
|
|
|
6576
6588
|
compData: { appTools: data }
|
|
6577
6589
|
};
|
|
6578
6590
|
}
|
|
6591
|
+
function componentsDeletionHookProvider({
|
|
6592
|
+
id,
|
|
6593
|
+
data,
|
|
6594
|
+
name
|
|
6595
|
+
}) {
|
|
6596
|
+
return {
|
|
6597
|
+
compId: id,
|
|
6598
|
+
compName: name,
|
|
6599
|
+
compType: "COMPONENTS_DELETION_HOOK_PROVIDER" /* COMPONENTS_DELETION_HOOK_PROVIDER */,
|
|
6600
|
+
compData: { componentsDeletionHookProvider: data }
|
|
6601
|
+
};
|
|
6602
|
+
}
|
|
6579
6603
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6580
6604
|
0 && (module.exports = {
|
|
6581
6605
|
A11yAttributes,
|
|
@@ -6773,6 +6797,7 @@ function appTools({
|
|
|
6773
6797
|
PanelMode,
|
|
6774
6798
|
PanelType,
|
|
6775
6799
|
ParameterType,
|
|
6800
|
+
PartType,
|
|
6776
6801
|
PartialPaymentRestriction,
|
|
6777
6802
|
ParticipantType,
|
|
6778
6803
|
PaymentComponentType,
|
|
@@ -6948,6 +6973,7 @@ function appTools({
|
|
|
6948
6973
|
communicationChannelProvider,
|
|
6949
6974
|
componentEnricherProvider,
|
|
6950
6975
|
componentReferenceDataProvider,
|
|
6976
|
+
componentsDeletionHookProvider,
|
|
6951
6977
|
componentsTranslationsAdditionalFieldsProvider,
|
|
6952
6978
|
componentsValidatorProvider,
|
|
6953
6979
|
connectorConfig,
|