@wix/app-extensions 1.0.41 → 1.0.42
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 +12 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +11 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +26 -4
- package/build/trusted/cjs/index.js +12 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +26 -4
- package/build/trusted/es/index.mjs +11 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -46,6 +46,7 @@ __export(index_exports, {
|
|
|
46
46
|
BackdropType: () => BackdropType,
|
|
47
47
|
BackgroundModeEnum: () => BackgroundModeEnum,
|
|
48
48
|
BackgroundType: () => BackgroundType,
|
|
49
|
+
BannerPosition: () => BannerPosition,
|
|
49
50
|
BarAlignmentSelected: () => BarAlignmentSelected,
|
|
50
51
|
BlockType: () => BlockType,
|
|
51
52
|
BooleanComponentType: () => BooleanComponentType,
|
|
@@ -1357,6 +1358,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1357
1358
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1358
1359
|
return Origin2;
|
|
1359
1360
|
})(Origin || {});
|
|
1361
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
1362
|
+
BannerPosition2["TOP"] = "TOP";
|
|
1363
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
1364
|
+
return BannerPosition2;
|
|
1365
|
+
})(BannerPosition || {});
|
|
1360
1366
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1361
1367
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1362
1368
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1436,6 +1442,11 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1436
1442
|
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1437
1443
|
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1438
1444
|
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1445
|
+
SmartBlockDataType2["TIMELINE"] = "TIMELINE";
|
|
1446
|
+
SmartBlockDataType2["MINIMAL_TIMELINE"] = "MINIMAL_TIMELINE";
|
|
1447
|
+
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1448
|
+
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1449
|
+
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1439
1450
|
return SmartBlockDataType2;
|
|
1440
1451
|
})(SmartBlockDataType || {});
|
|
1441
1452
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
@@ -6111,6 +6122,7 @@ function editorInstallation({
|
|
|
6111
6122
|
BackdropType,
|
|
6112
6123
|
BackgroundModeEnum,
|
|
6113
6124
|
BackgroundType,
|
|
6125
|
+
BannerPosition,
|
|
6114
6126
|
BarAlignmentSelected,
|
|
6115
6127
|
BlockType,
|
|
6116
6128
|
BooleanComponentType,
|