@wix/auto_sdk_quick-pages_contents 1.0.21 → 1.0.22
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 +1 -1
- package/build/cjs/index.js +5 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +34 -7
- package/build/cjs/index.typings.js +5 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +34 -7
- package/build/cjs/meta.js +5 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +5 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +34 -7
- package/build/es/index.typings.mjs +5 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +34 -7
- package/build/es/meta.mjs +5 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +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 +34 -7
- 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 +34 -7
- package/build/internal/cjs/meta.js +5 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +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 +34 -7
- 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 +34 -7
- package/build/internal/es/meta.mjs +5 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -585,6 +585,10 @@ interface Node extends NodeDataOneOf {
|
|
|
585
585
|
smartBlockData?: SmartBlockData;
|
|
586
586
|
/** Data for a smart block cell node. */
|
|
587
587
|
smartBlockCellData?: SmartBlockCellData;
|
|
588
|
+
/** Data for a checkbox list node. */
|
|
589
|
+
checkboxListData?: CheckboxListData;
|
|
590
|
+
/** Data for a list item node. */
|
|
591
|
+
listItemData?: ListItemNodeData;
|
|
588
592
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
589
593
|
type?: NodeTypeWithLiterals;
|
|
590
594
|
/** Node ID. */
|
|
@@ -662,6 +666,10 @@ interface NodeDataOneOf {
|
|
|
662
666
|
smartBlockData?: SmartBlockData;
|
|
663
667
|
/** Data for a smart block cell node. */
|
|
664
668
|
smartBlockCellData?: SmartBlockCellData;
|
|
669
|
+
/** Data for a checkbox list node. */
|
|
670
|
+
checkboxListData?: CheckboxListData;
|
|
671
|
+
/** Data for a list item node. */
|
|
672
|
+
listItemData?: ListItemNodeData;
|
|
665
673
|
}
|
|
666
674
|
declare enum NodeType {
|
|
667
675
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -702,10 +710,11 @@ declare enum NodeType {
|
|
|
702
710
|
CARD = "CARD",
|
|
703
711
|
TOC = "TOC",
|
|
704
712
|
SMART_BLOCK = "SMART_BLOCK",
|
|
705
|
-
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
713
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
|
|
714
|
+
CHECKBOX_LIST = "CHECKBOX_LIST"
|
|
706
715
|
}
|
|
707
716
|
/** @enumType */
|
|
708
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
717
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL' | 'CHECKBOX_LIST';
|
|
709
718
|
interface NodeStyle {
|
|
710
719
|
/** The top padding value in pixels. */
|
|
711
720
|
paddingTop?: string | null;
|
|
@@ -2708,10 +2717,18 @@ declare enum SmartBlockDataType {
|
|
|
2708
2717
|
/** Star rating display with stars and a numeric value per cell. */
|
|
2709
2718
|
STAR_RATING = "STAR_RATING",
|
|
2710
2719
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2711
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2720
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
2721
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
2722
|
+
CIRCLE = "CIRCLE",
|
|
2723
|
+
/** Hierarchical pyramid where each cell renders as a horizontal slice (apex at top, base at bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the pyramid. */
|
|
2724
|
+
PYRAMID = "PYRAMID",
|
|
2725
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
2726
|
+
STAIRCASE = "STAIRCASE",
|
|
2727
|
+
/** Hierarchical funnel where each cell renders as a horizontal slice (wide at top, narrowing toward the bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the funnel. */
|
|
2728
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
2729
|
+
}
|
|
2730
|
+
/** @enumType */
|
|
2731
|
+
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' | 'CIRCLE' | 'PYRAMID' | 'STAIRCASE' | 'VERTICAL_FUNNEL';
|
|
2715
2732
|
/** Column size controlling how many cells appear per row. */
|
|
2716
2733
|
declare enum ColumnSize {
|
|
2717
2734
|
/** Up to 4 cells in a row. */
|
|
@@ -2758,6 +2775,16 @@ interface SmartBlockCellData {
|
|
|
2758
2775
|
*/
|
|
2759
2776
|
shapeColor?: string | null;
|
|
2760
2777
|
}
|
|
2778
|
+
interface CheckboxListData {
|
|
2779
|
+
/** Indentation level from 0-4. */
|
|
2780
|
+
indentation?: number;
|
|
2781
|
+
/** Offset level from 0-4. */
|
|
2782
|
+
offset?: number | null;
|
|
2783
|
+
}
|
|
2784
|
+
interface ListItemNodeData {
|
|
2785
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
2786
|
+
checked?: boolean | null;
|
|
2787
|
+
}
|
|
2761
2788
|
interface Metadata {
|
|
2762
2789
|
/** Schema version. */
|
|
2763
2790
|
version?: number;
|
|
@@ -3325,4 +3352,4 @@ declare const utils: {
|
|
|
3325
3352
|
};
|
|
3326
3353
|
};
|
|
3327
3354
|
|
|
3328
|
-
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent, typedQueryContents, utils };
|
|
3355
|
+
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent, typedQueryContents, utils };
|
|
@@ -1260,6 +1260,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1260
1260
|
NodeType2["TOC"] = "TOC";
|
|
1261
1261
|
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1262
1262
|
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1263
|
+
NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
|
|
1263
1264
|
return NodeType2;
|
|
1264
1265
|
})(NodeType || {});
|
|
1265
1266
|
var StylesBackgroundType = /* @__PURE__ */ ((StylesBackgroundType2) => {
|
|
@@ -1612,6 +1613,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1612
1613
|
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1613
1614
|
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1614
1615
|
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1616
|
+
SmartBlockDataType2["CIRCLE"] = "CIRCLE";
|
|
1617
|
+
SmartBlockDataType2["PYRAMID"] = "PYRAMID";
|
|
1618
|
+
SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
|
|
1619
|
+
SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
|
|
1615
1620
|
return SmartBlockDataType2;
|
|
1616
1621
|
})(SmartBlockDataType || {});
|
|
1617
1622
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|