@sc-360-v2/storefront-cms-library 0.2.93 → 0.2.94

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.
@@ -52,6 +52,7 @@ export interface FormComponentConfig {
52
52
  state: boolean;
53
53
  };
54
54
  required: boolean;
55
+ isMultiple?: boolean;
55
56
  placeholder: {
56
57
  value: string;
57
58
  state: boolean;
@@ -73,11 +74,20 @@ export interface FormComponentConfig {
73
74
  captionsSrc?: string;
74
75
  href?: string;
75
76
  html?: string;
77
+ showElementProperties: ElementSettingEnum[];
76
78
  type: FormComponentTypeEnum;
77
79
  fieldType: FormElementTypeEnum;
78
80
  w: number;
79
81
  h: number;
80
82
  }
83
+ export declare enum ElementSettingEnum {
84
+ LABEL = 1,
85
+ REQUIRED = 2,
86
+ PLACEHOLDER = 3,
87
+ DESCRIPTION = 4,
88
+ LIMIT_CHARACTER = 5,
89
+ MULTI_TOGGLE = 6
90
+ }
81
91
  export interface SidebarElementItem extends FormComponentConfig {
82
92
  categoryId?: number;
83
93
  subcategoryId?: number;
@@ -0,0 +1,40 @@
1
+ import { CMSHTMLAttributes } from "../../../global/attributes";
2
+ import { CommonStyleProperties } from "../../../global/style-properties";
3
+ import { DisplayValue, ResponsiveBehaviourTypes } from "../../../global/types";
4
+ import { BuilderAttributes } from "../common";
5
+ export interface IconListStyleProperties extends CommonStyleProperties {
6
+ minHeight: string;
7
+ minWidth: string;
8
+ maxWidth: string;
9
+ maxHeight: string;
10
+ gridArea: string;
11
+ display: DisplayValue;
12
+ boxSizing: string;
13
+ }
14
+ export declare const getDefaultStyles: () => IconListStyleProperties;
15
+ export interface CommonContainerElementAttributes extends CMSHTMLAttributes {
16
+ role?: string;
17
+ ariaLabel?: string;
18
+ ariaDescribedBy?: string;
19
+ id?: string;
20
+ className?: string;
21
+ lang?: string;
22
+ dataMeta?: string;
23
+ }
24
+ export interface IconListElementInterface {
25
+ id?: string | number;
26
+ uniqueKey?: string | number;
27
+ attributes?: {
28
+ BUILDER?: Pick<BuilderAttributes, "dataDivType" | "dataType" | "dataElementType" | "dataDropElement">;
29
+ HTML?: CommonContainerElementAttributes;
30
+ CUSTOM?: any;
31
+ };
32
+ styles?: IconListStyleProperties;
33
+ editedStyles?: CommonStyleProperties;
34
+ responsiveBehaviour: ResponsiveBehaviourTypes;
35
+ children: any;
36
+ childIds: any[];
37
+ previewImage?: string;
38
+ parentKey?: any;
39
+ childIdsV2?: any[];
40
+ }
@@ -65,7 +65,8 @@ export declare enum CMSToolIdTypes {
65
65
  lightBox = "cms_lt_bx_mn",
66
66
  lightBoxV2Wrapper = "cms-light-box-wrapper",
67
67
  marchandiserSetsWrapper = "cms-marchandiser-sets-wrapper",
68
- spotlightWrapper = "cms-spotlight-wrapper"
68
+ spotlightWrapper = "cms-spotlight-wrapper",
69
+ TEXTELEMENTDOBLECLICK = "data-cms-tt-ee-dbl-clkd"
69
70
  }
70
71
  export declare enum CMSElementSelectors {
71
72
  iframeSelector = "iframe[data-title='iframe__playground']",
@@ -303,6 +304,7 @@ export declare const CMSElementsListEnum: {
303
304
  SPOTLIGHT: string;
304
305
  BUNDLE_DETAILS: string;
305
306
  PRODUCT_CUSTOMIZATIONS: string;
307
+ ICON_LIST: string;
306
308
  };
307
309
  export declare enum CMSResponsiveModeEnums {
308
310
  DESKTOP = "desktop",
@@ -325,6 +327,10 @@ export declare enum CMSRepeaterSliderControlTypes {
325
327
  DOTS = "Dots",
326
328
  NONE = "None"
327
329
  }
330
+ export declare enum CMSRepeaterViewTypes {
331
+ GRID = "grid",
332
+ LIST = "list"
333
+ }
328
334
  export declare enum FliterTypes {
329
335
  BRAND_FILTER = 1,
330
336
  CATEGORY_FILTER = 2,
@@ -359,7 +365,8 @@ export declare enum CMSCustomEventsListEnums {
359
365
  TEXTELEMENTCODEVIEW = "textElementCodeView",
360
366
  PRODUCT_DETAILS_STATE = "productDetailsState",
361
367
  IMAGE_CROP = "imageCrop",
362
- IMAGE_CROP_TEMP_DATA = "imageCropTempData"
368
+ IMAGE_CROP_TEMP_DATA = "imageCropTempData",
369
+ FORM_BUILDR_STATE = "formBuilderState"
363
370
  }
364
371
  export declare enum FlexAppVersionEnums {
365
372
  NESTEDJSON = 1,
@@ -403,3 +410,7 @@ export declare enum PageTypeEnums {
403
410
  BRAND_PRODUCTS = 16,
404
411
  Allocation = 17
405
412
  }
413
+ export declare enum FlexRepeaterControlDragType {
414
+ SLIDER_CONTROL = 1,
415
+ GRID_TOGGLE = 2
416
+ }
@@ -70,4 +70,5 @@ import * as buyForTabsContainerSchema from "./elements/buy-for-tab-container/ind
70
70
  import * as toasterSchema from "./elements/toaster/index";
71
71
  import * as spotlightSchema from "./elements/spotlight";
72
72
  import * as productCustomizationsSchema from "./elements/product-customizations/index";
73
- export { ElementEditSchema, amountEstimatorSchema, bulkVariantPickerSchema, buttonSchema, cmsTypes, codeSchema, commonFunctions, containerSchema, countdownSchema, embedSchema, enums, faqSchema, gallerySliderSchema, gridSchema, imageHotspotSchema, imageSchema, interfaces, mapSchema, paymentMethodsSchema, pickupLocationsSchema, priceSchema, productActionsSchema, productHighlightsSchema, productImageSchema, productInventorySchema, productPromotionsSchema, quantitySelectorSchema, scrollSchema, sectionSchema, shippingEstimatorSchema, socialIconsSchema, stackSchema, storeLocationsSchema, tabSchema, tableSchema, textSchema, uomSelectorSchema, variantPickerSchema, videoSChema, volumePricingSchema, lightboxSchema, cartSchema, profileSchema, productSchema, repeaterSchema, brandSchema, bundleSchema, brandImageSchema, lightBoxV2Schema, searchSchema, layouterSchema, layouterItemSchema, categoryDetailsSchema, contactUsSchema, loginSchema, createFormSchema, resetPasswordSchema, searchResultsHeadingSchema, itemStockSchema, lineItemSchema, tabsV2Schema, tabsContainerSchema, marchandiserSetsSchema, formBuilder, quickLinksSchema, addOrderSchema, buyForTabsSchema, buyForTabsContainerSchema, checkoutSchema, toasterSchema, spotlightSchema, productCustomizationsSchema, };
73
+ import * as iconListSchema from "./elements/icon-list/index";
74
+ export { ElementEditSchema, amountEstimatorSchema, bulkVariantPickerSchema, buttonSchema, cmsTypes, codeSchema, commonFunctions, containerSchema, countdownSchema, embedSchema, enums, faqSchema, gallerySliderSchema, gridSchema, imageHotspotSchema, imageSchema, interfaces, mapSchema, paymentMethodsSchema, pickupLocationsSchema, priceSchema, productActionsSchema, productHighlightsSchema, productImageSchema, productInventorySchema, productPromotionsSchema, quantitySelectorSchema, scrollSchema, sectionSchema, shippingEstimatorSchema, socialIconsSchema, stackSchema, storeLocationsSchema, tabSchema, tableSchema, textSchema, uomSelectorSchema, variantPickerSchema, videoSChema, volumePricingSchema, lightboxSchema, cartSchema, profileSchema, productSchema, repeaterSchema, brandSchema, bundleSchema, brandImageSchema, lightBoxV2Schema, searchSchema, layouterSchema, layouterItemSchema, categoryDetailsSchema, contactUsSchema, loginSchema, createFormSchema, resetPasswordSchema, searchResultsHeadingSchema, itemStockSchema, lineItemSchema, tabsV2Schema, tabsContainerSchema, marchandiserSetsSchema, formBuilder, quickLinksSchema, addOrderSchema, buyForTabsSchema, buyForTabsContainerSchema, checkoutSchema, toasterSchema, spotlightSchema, productCustomizationsSchema, iconListSchema, };
@@ -77,6 +77,7 @@ export interface CMSElementEditPopupDesignInterface {
77
77
  iconSize: CMSIBSizeInterface;
78
78
  iconColor: CMSIBCommonInterface;
79
79
  showIcon?: CMSIBCommonInterface;
80
+ showDivider?: CMSIBCommonInterface;
80
81
  dividerWidth: CMSIBSizeInterface;
81
82
  overlayColor: CMSIBCommonInterface;
82
83
  textPosition: CMSIBCommonInterface;
@@ -0,0 +1,164 @@
1
+ import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
2
+ import { CMSIBCommonInterface } from "../../interfaces/global";
3
+ declare enum SelectorKeysEnum {
4
+ LAYOUT = "layout",
5
+ CONTENT = "content",
6
+ DESIGN = "design",
7
+ DEFAULT_STATE = "defaultState",
8
+ HOVER_STATE = "hoverState",
9
+ LIST = "list",
10
+ ICON = "icon",
11
+ TEXT = "text"
12
+ }
13
+ export declare const getDefaultData: () => {
14
+ layout: {
15
+ selectorKey: SelectorKeysEnum;
16
+ width: {
17
+ [key: string]: any;
18
+ } | undefined;
19
+ height: import("../../interfaces/global").CMSIBSizeInterface | undefined;
20
+ margin: import("../../interfaces/global").CSSPaddingValues | undefined;
21
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
22
+ overflowContent: CMSIBCommonInterface | undefined;
23
+ scrollDirection: CMSIBCommonInterface | undefined;
24
+ displayScrollbar: CMSIBCommonInterface | undefined;
25
+ positionType: CMSIBCommonInterface | undefined;
26
+ pinTo: CMSIBCommonInterface | undefined;
27
+ };
28
+ design: {
29
+ selectorKey: SelectorKeysEnum;
30
+ list: {
31
+ listGap: {
32
+ value: number;
33
+ unit: CMSCSSUnitTypesEnums;
34
+ property: string;
35
+ propertyType: CMSElementEditTypes;
36
+ };
37
+ showDivider: {
38
+ value: boolean;
39
+ parentRef: string;
40
+ property?: any;
41
+ propertyType?: any;
42
+ isReadOnly?: boolean | undefined;
43
+ };
44
+ dividerStyle: {
45
+ property: string;
46
+ value?: any;
47
+ propertyType?: any;
48
+ isReadOnly?: boolean | undefined;
49
+ parentRef?: string | undefined;
50
+ };
51
+ dividerWidth: {
52
+ value: string;
53
+ property: string;
54
+ unit: CMSCSSUnitTypesEnums;
55
+ propertyType: CMSElementEditTypes;
56
+ };
57
+ dividerWeight: {
58
+ value: string;
59
+ property: string;
60
+ unit: CMSCSSUnitTypesEnums;
61
+ propertyType: CMSElementEditTypes;
62
+ };
63
+ dividerColor: {
64
+ property: string;
65
+ value: null;
66
+ parentRef: string;
67
+ propertyType?: any;
68
+ isReadOnly?: boolean | undefined;
69
+ };
70
+ borderColor: CMSIBCommonInterface;
71
+ borderStyle: CMSIBCommonInterface;
72
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
73
+ showBorder: CMSIBCommonInterface;
74
+ backgroundColor: CMSIBCommonInterface;
75
+ showShadow: CMSIBCommonInterface;
76
+ shadowColor: CMSIBCommonInterface;
77
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
78
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
79
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
80
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
81
+ selectorKey: SelectorKeysEnum;
82
+ };
83
+ icon: {
84
+ selectorKey: SelectorKeysEnum;
85
+ defaultState: {
86
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
87
+ showIcon: {
88
+ value: null;
89
+ parentRef: string;
90
+ property?: any;
91
+ propertyType?: any;
92
+ isReadOnly?: boolean | undefined;
93
+ };
94
+ iconSize: {
95
+ value: null;
96
+ parentRef: string;
97
+ unit?: string | number | undefined;
98
+ property?: any;
99
+ propertyType?: any;
100
+ isReadOnly?: boolean | undefined;
101
+ };
102
+ iconColor: {
103
+ value: null;
104
+ parentRef: string;
105
+ property?: any;
106
+ propertyType?: any;
107
+ isReadOnly?: boolean | undefined;
108
+ };
109
+ verticalAlignment: {
110
+ value: string;
111
+ property: string;
112
+ propertyType: CMSElementEditTypes;
113
+ };
114
+ iconGap: {
115
+ value: number;
116
+ unit: CMSCSSUnitTypesEnums;
117
+ property: string;
118
+ propertyType: CMSElementEditTypes;
119
+ };
120
+ selectorKey: SelectorKeysEnum;
121
+ };
122
+ hoverState: {
123
+ selectorKey: SelectorKeysEnum;
124
+ };
125
+ };
126
+ text: {
127
+ selectorKey: SelectorKeysEnum;
128
+ defaultState: {
129
+ theme: CMSIBCommonInterface;
130
+ font: CMSIBCommonInterface;
131
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
132
+ textColor: CMSIBCommonInterface;
133
+ bold: CMSIBCommonInterface;
134
+ italic: CMSIBCommonInterface;
135
+ linethrough: CMSIBCommonInterface;
136
+ underline: CMSIBCommonInterface;
137
+ textAlign: CMSIBCommonInterface;
138
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
139
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
140
+ selectorKey: SelectorKeysEnum;
141
+ };
142
+ hoverState: {
143
+ selectorKey: SelectorKeysEnum;
144
+ };
145
+ };
146
+ };
147
+ content: {
148
+ selectorKey: SelectorKeysEnum;
149
+ listContent: {
150
+ value: {
151
+ title: string;
152
+ contentSource: {
153
+ title: string;
154
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
155
+ content: {};
156
+ };
157
+ key: string;
158
+ }[];
159
+ property: string;
160
+ propertyType: CMSElementEditTypes;
161
+ };
162
+ };
163
+ };
164
+ export {};
@@ -85,4 +85,5 @@ import * as buyForTabsContainer from "./buyForTabContainer";
85
85
  import * as toaster from "./toaster";
86
86
  import * as spotlight from "./spotlight";
87
87
  import * as productCustomizations from "./productCustomizations";
88
- export { amountEstimator, bulkVariantPicker, button, code, staticText, common, container, countdown, embed, faq, gallerySlider, grid, image, imageHotspot, map, paymentMethods, pickupLocations, price, productActions, productHighlights, productImage, productInventory, productPromotions, quantitySelector, scroll, section, shippingEstimator, slideShowLayouter, social, stack, storeLocations, table, tabs, text, uomSelector, variantPicker, video, volumePricing, lightbox, cart, profile, repeater, repeaterItem, product, menu, productOptions, productDetails, category, subCategory, brand, bundle, brandImage, filters, sort, pastOrders, quotes, rfqs, lightBoxV2, allocations, search, layouter, layouterItem, categoryDetails, contactUs, login, resetPassword, breadcrumbs, iconLibrary, searchResultsHeading, itemStock, cartDetails, cartSummary, checkout, allocationDetails, line, tabsV2, tabContainer, marchandiserSets, createForm, quickLinks, addOrder, buyForWithTabs, buyForTabsContainer, toaster, spotlight, bundleDetails, productCustomizations, };
88
+ import * as iconList from "./icon-list";
89
+ export { amountEstimator, bulkVariantPicker, button, code, staticText, common, container, countdown, embed, faq, gallerySlider, grid, image, imageHotspot, map, paymentMethods, pickupLocations, price, productActions, productHighlights, productImage, productInventory, productPromotions, quantitySelector, scroll, section, shippingEstimator, slideShowLayouter, social, stack, storeLocations, table, tabs, text, uomSelector, variantPicker, video, volumePricing, lightbox, cart, profile, repeater, repeaterItem, product, menu, productOptions, productDetails, category, subCategory, brand, bundle, brandImage, filters, sort, pastOrders, quotes, rfqs, lightBoxV2, allocations, search, layouter, layouterItem, categoryDetails, contactUs, login, resetPassword, breadcrumbs, iconLibrary, searchResultsHeading, itemStock, cartDetails, cartSummary, checkout, allocationDetails, line, tabsV2, tabContainer, marchandiserSets, createForm, quickLinks, addOrder, buyForWithTabs, buyForTabsContainer, toaster, spotlight, bundleDetails, productCustomizations, iconList, };
@@ -2,6 +2,7 @@ import { CMSIBCommonInterface, CMSIBSizeInterface } from "../../interfaces/globa
2
2
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
3
  interface selfLayoutInterface {
4
4
  selectorKey: string;
5
+ zoomType: CMSIBCommonInterface;
5
6
  displayStyle: CMSIBCommonInterface;
6
7
  scrollDirection: CMSIBCommonInterface;
7
8
  noOfItemsToLoad: CMSIBCommonInterface;
@@ -8,6 +8,7 @@ interface selfLayoutInterface {
8
8
  value: RepeaterDisplayStyleType;
9
9
  };
10
10
  itemGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
11
+ itemGapList: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
11
12
  justifyContent: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
12
13
  value: JustifyContentValue;
13
14
  };
@@ -26,6 +27,10 @@ interface selfLayoutInterface {
26
27
  value: string | number | any;
27
28
  unit: CMSCSSUnitTypesEnums;
28
29
  };
30
+ rowMinHeightList: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
31
+ value: string | number | any;
32
+ unit: CMSCSSUnitTypesEnums;
33
+ };
29
34
  setItemsPerSlide: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
30
35
  value: string | number | any;
31
36
  };
@@ -47,6 +52,8 @@ interface selfLayoutInterface {
47
52
  stopOnMouseEnter: CMSIBCommonInterface;
48
53
  stopOnInteraction: CMSIBCommonInterface;
49
54
  displayAds: CMSIBCommonInterface;
55
+ activeView: CMSIBCommonInterface;
56
+ enableListView: CMSIBCommonInterface;
50
57
  loadMoreItemsOn: CMSIBCommonInterface;
51
58
  }
52
59
  export interface selfDesignInterface {
@@ -1,9 +1,60 @@
1
- import { CMSIBCommonInterface } from "../../interfaces/global";
1
+ import { CMSIBCommonInterface, CMSIBSizeInterface } from "../../interfaces/global";
2
2
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ import { SpotlightSectionType, RepeaterSliderControlTypes, StackDirectionType, SpotlightLineDisplayType, SpotlightLineType, SpotlightDisplayStyleType } from "../../../global/types";
3
4
  interface selfLayoutInterface {
4
5
  selectorKey: string;
5
- spotlightText: CMSIBCommonInterface;
6
6
  showSpotlightText: CMSIBCommonInterface;
7
+ spotlightSectionTypeControl: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
8
+ value: SpotlightSectionType;
9
+ };
10
+ spotlightSectionType: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
11
+ value: SpotlightDisplayStyleType;
12
+ };
13
+ direction: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
14
+ value: StackDirectionType;
15
+ };
16
+ hotspotTypeControl: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
17
+ value: SpotlightSectionType;
18
+ };
19
+ hotspotLineDisplayControl: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
20
+ value: SpotlightLineDisplayType;
21
+ };
22
+ hotspotLineTypeControl: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
23
+ value: SpotlightLineType;
24
+ };
25
+ sliderControl: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
26
+ value: RepeaterSliderControlTypes;
27
+ };
28
+ showThumbnailSliderControls: CMSIBCommonInterface;
29
+ showSliderNavigationControls: CMSIBCommonInterface;
30
+ sliderNavigationControlsSize: CMSIBSizeInterface;
31
+ showPaginationDots: CMSIBCommonInterface;
32
+ paginationDotsSize: CMSIBSizeInterface;
33
+ hotspotXAndYCoordinates: CMSIBCommonInterface;
34
+ showHotspotIcon: CMSIBCommonInterface;
35
+ hotspotIconSize: CMSIBSizeInterface;
36
+ hotspotLineDirection: CMSIBCommonInterface;
37
+ lineThickness: CMSIBSizeInterface;
38
+ hotspotLineBendDirection: CMSIBCommonInterface;
39
+ beforBendLineDistance: CMSIBSizeInterface;
40
+ afterBendLineDistance: CMSIBSizeInterface;
41
+ showDataConnectorIcons: CMSIBCommonInterface;
42
+ startIconSize: CMSIBSizeInterface;
43
+ endIconSize: CMSIBSizeInterface;
44
+ spotlightType: CMSIBCommonInterface;
45
+ spotlightItemPlacement: CMSIBCommonInterface;
46
+ spotlightItemAlignment: CMSIBCommonInterface;
47
+ spotlightBoxPadding: CMSIBSizeInterface;
48
+ spotlightItemSpacing: CMSIBSizeInterface;
49
+ spotlightIconSize: CMSIBSizeInterface;
50
+ spotlightIconPadding: CMSIBSizeInterface;
51
+ spotlightTextFontSize: CMSIBSizeInterface;
52
+ spotlightTextLineHeight: CMSIBSizeInterface;
53
+ spotlightTextLetterSpacing: CMSIBSizeInterface;
54
+ spotlightTextPadding: CMSIBSizeInterface;
55
+ showSpotlightProductData: CMSIBCommonInterface;
56
+ spotlightProductItemSpacing: CMSIBSizeInterface;
57
+ spotlightProductPadding: CMSIBSizeInterface;
7
58
  }
8
59
  export interface selfDesignInterface {
9
60
  selectorKey: string;
@@ -25,8 +76,9 @@ export interface selfDesignInterface {
25
76
  export declare enum spotlightSelectorKeysEnum {
26
77
  LAYOUT = "layout",
27
78
  DESIGN = "design",
79
+ CONTENT = "content",
28
80
  DATA_CONNECTOR = "dataConnector",
29
81
  SPOTLIGHT_TEXT = "spotlightText"
30
82
  }
31
- export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
83
+ export declare const getDefaultData: (contentWidth?: any) => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
32
84
  export {};
@@ -40,3 +40,7 @@ export type RepeaterSliderControlTypes = "Arrows & Dots" | "Arrows" | "Dots" | "
40
40
  export type DeviceVisibilityByOptionsType = "HTML" | "CSS" | "NONE";
41
41
  export type CustomEventCallback<T = any> = (data: T) => void;
42
42
  export type LayouterDisplayStyleType = "rows" | "columns" | "slider" | "grid";
43
+ export type SpotlightDisplayStyleType = "carousel" | "slider";
44
+ export type SpotlightSectionType = "single" | "multi";
45
+ export type SpotlightLineDisplayType = "solid" | "dots";
46
+ export type SpotlightLineType = "bend" | "auto" | "straight";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sc-360-v2/storefront-cms-library",
3
- "version": "0.2.93",
3
+ "version": "0.2.94",
4
4
  "main": "/dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "exports": {