@wix/auto_sdk_events_forms 1.0.86 → 1.0.87
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 +5 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +12 -2
- package/build/cjs/index.typings.js +5 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -4
- package/build/cjs/meta.js +5 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +5 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +12 -2
- package/build/es/index.typings.mjs +5 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -4
- package/build/es/meta.mjs +5 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +5 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +12 -2
- package/build/internal/cjs/index.typings.js +5 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -4
- package/build/internal/cjs/meta.js +5 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +5 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +12 -2
- package/build/internal/es/index.typings.mjs +5 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -4
- package/build/internal/es/meta.mjs +5 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3691,10 +3691,20 @@ declare enum SmartBlockDataType {
|
|
|
3691
3691
|
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
3692
3692
|
PROCESS_STEPS = "PROCESS_STEPS",
|
|
3693
3693
|
/** Statistics with bar visual elements. */
|
|
3694
|
-
BAR_STATS = "BAR_STATS"
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3694
|
+
BAR_STATS = "BAR_STATS",
|
|
3695
|
+
/** Timeline layout with numbered chips on a connecting line; cells alternate around the line. */
|
|
3696
|
+
TIMELINE = "TIMELINE",
|
|
3697
|
+
/** Timeline layout with plain dot indicators; no numbers or shapes; cells alternate around the line. */
|
|
3698
|
+
MINIMAL_TIMELINE = "MINIMAL_TIMELINE",
|
|
3699
|
+
/** Numbered pill-shaped labels (stadium chips) with text content; supports HORIZONTAL (pill on top) and VERTICAL (pill on left) orientations. */
|
|
3700
|
+
PILLS = "PILLS",
|
|
3701
|
+
/** Star rating display with stars and a numeric value per cell. */
|
|
3702
|
+
STAR_RATING = "STAR_RATING",
|
|
3703
|
+
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
3704
|
+
QUOTE_BOXES = "QUOTE_BOXES"
|
|
3705
|
+
}
|
|
3706
|
+
/** @enumType */
|
|
3707
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
3698
3708
|
/** Column size controlling how many cells appear per row. */
|
|
3699
3709
|
declare enum ColumnSize {
|
|
3700
3710
|
/** Up to 4 cells in a row. */
|
|
@@ -1208,6 +1208,11 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1208
1208
|
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1209
1209
|
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1210
1210
|
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1211
|
+
SmartBlockDataType2["TIMELINE"] = "TIMELINE";
|
|
1212
|
+
SmartBlockDataType2["MINIMAL_TIMELINE"] = "MINIMAL_TIMELINE";
|
|
1213
|
+
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1214
|
+
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1215
|
+
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1211
1216
|
return SmartBlockDataType2;
|
|
1212
1217
|
})(SmartBlockDataType || {});
|
|
1213
1218
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|