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

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.
Files changed (38) hide show
  1. package/dist/breadcrumbs.scss +574 -269
  2. package/dist/builder.js +1 -1
  3. package/dist/button.scss +4 -1
  4. package/dist/cart-details.scss +191 -6
  5. package/dist/cartDropdownOverlay.scss +19 -4
  6. package/dist/grid.scss +21 -49
  7. package/dist/icon-list.scss +110 -0
  8. package/dist/icons.js +1 -1
  9. package/dist/index.js +1 -1
  10. package/dist/map.scss +505 -334
  11. package/dist/product-image.scss +25 -7
  12. package/dist/quantity-selector.scss +1 -0
  13. package/dist/quick-order-pad.scss +2 -2
  14. package/dist/quotes.scss +660 -62
  15. package/dist/repeater-grid-toggle.scss +58 -0
  16. package/dist/repeater.scss +181 -151
  17. package/dist/rfqs.scss +661 -62
  18. package/dist/spotlight.scss +1608 -66
  19. package/dist/types/builder/elements/form-builder/index.d.ts +42 -0
  20. package/dist/types/builder/elements/icon-list/index.d.ts +40 -0
  21. package/dist/types/builder/elements/order-status/index.d.ts +27 -0
  22. package/dist/types/builder/enums/index.d.ts +16 -2
  23. package/dist/types/builder/index.d.ts +3 -1
  24. package/dist/types/builder/tools/element-edit/cartDetails.d.ts +15 -5
  25. package/dist/types/builder/tools/element-edit/common.d.ts +1 -0
  26. package/dist/types/builder/tools/element-edit/icon-list.d.ts +164 -0
  27. package/dist/types/builder/tools/element-edit/index.d.ts +3 -1
  28. package/dist/types/builder/tools/element-edit/orderStatus.d.ts +15 -0
  29. package/dist/types/builder/tools/element-edit/product-image.d.ts +1 -0
  30. package/dist/types/builder/tools/element-edit/quotes.d.ts +33 -3
  31. package/dist/types/builder/tools/element-edit/repeater.d.ts +7 -0
  32. package/dist/types/builder/tools/element-edit/rfqs.d.ts +33 -3
  33. package/dist/types/builder/tools/element-edit/shippingEstimator.d.ts +133 -10
  34. package/dist/types/builder/tools/element-edit/spotlight.d.ts +55 -3
  35. package/dist/types/global/types.d.ts +4 -0
  36. package/dist/variant-picker.scss +1 -0
  37. package/dist/widget.scss +1 -0
  38. package/package.json +1 -1
@@ -45,13 +45,45 @@ export declare enum FormElementTypeEnum {
45
45
  Url = "url",
46
46
  Week = "week"
47
47
  }
48
+ export declare enum FormElementIdEnum {
49
+ FirstName = "FirstName",
50
+ LastName = "LastName",
51
+ Email = "Email",
52
+ Password = "Password",
53
+ Phone = "Phone",
54
+ DateOfBirth = "DateOfBirth",
55
+ Address = "Address",
56
+ ShortAnswer = "ShortAnswer",
57
+ LongAnswer = "LongAnswer",
58
+ Number = "Number",
59
+ Link = "Link",
60
+ Upload = "Upload",
61
+ Rating = "Rating",
62
+ SingleChoice = "SingleChoice",
63
+ MultiChoice = "MultiChoice",
64
+ DropDown = "DropDown",
65
+ Checkbox = "Checkbox",
66
+ DatePicker = "DatePicker",
67
+ Date = "Date",
68
+ DateTime = "DateTime",
69
+ Time = "Time",
70
+ SubmitButton = "SubmitButton",
71
+ ResetButton = "ResetButton",
72
+ LoginButton = "LoginButton",
73
+ CustomAttribute1 = "CustomAttribute1",
74
+ CustomAttribute2 = "CustomAttribute2",
75
+ Header = "Header",
76
+ Text = "Text"
77
+ }
48
78
  export interface FormComponentConfig {
79
+ id: FormElementIdEnum;
49
80
  icon?: string;
50
81
  label: {
51
82
  value: string;
52
83
  state: boolean;
53
84
  };
54
85
  required: boolean;
86
+ isMultiple?: boolean;
55
87
  placeholder: {
56
88
  value: string;
57
89
  state: boolean;
@@ -73,10 +105,20 @@ export interface FormComponentConfig {
73
105
  captionsSrc?: string;
74
106
  href?: string;
75
107
  html?: string;
108
+ showElementProperties: ElementSettingEnum[];
76
109
  type: FormComponentTypeEnum;
77
110
  fieldType: FormElementTypeEnum;
78
111
  w: number;
79
112
  h: number;
113
+ allowOnlyOne: boolean;
114
+ }
115
+ export declare enum ElementSettingEnum {
116
+ LABEL = 1,
117
+ REQUIRED = 2,
118
+ PLACEHOLDER = 3,
119
+ DESCRIPTION = 4,
120
+ LIMIT_CHARACTER = 5,
121
+ MULTI_TOGGLE = 6
80
122
  }
81
123
  export interface SidebarElementItem extends FormComponentConfig {
82
124
  categoryId?: 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
+ }
@@ -0,0 +1,27 @@
1
+ import { CMSHTMLAttributes } from "../../../global/attributes";
2
+ import { CommonStyleProperties } from "../../../global/style-properties";
3
+ import { AlignSelfValue, BoxSizingValue, GridAreaValue, HeightValue, JustifySelfValue, MaxHeightValue, MaxWidthValue, MinHeightValue, MinWidthValue, PaddingValue, CommonBuilderAttributes, GlobalImageAttributes } from "../../../global/types";
4
+ import { BuilderAttributes, CMSElementInterface } from "../common";
5
+ export interface OrderStatusStyleProperties extends CommonStyleProperties {
6
+ minHeight?: MinHeightValue;
7
+ height?: HeightValue;
8
+ minWidth?: MinWidthValue;
9
+ maxWidth?: MaxWidthValue;
10
+ maxHeight?: MaxHeightValue;
11
+ gridArea?: GridAreaValue;
12
+ boxSizing?: BoxSizingValue;
13
+ padding?: PaddingValue;
14
+ justifySelf?: JustifySelfValue;
15
+ alignSelf?: AlignSelfValue;
16
+ }
17
+ export declare const getDefaultStyles: () => OrderStatusStyleProperties;
18
+ export interface CMSOrderStatusInterface extends Omit<CMSElementInterface, "attributes"> {
19
+ attributes: {
20
+ HTML: Pick<CMSHTMLAttributes, GlobalImageAttributes>;
21
+ BUILDER: Pick<BuilderAttributes, CommonBuilderAttributes>;
22
+ CUSTOM: any;
23
+ };
24
+ styles: OrderStatusStyleProperties;
25
+ childrenStyles?: CommonStyleProperties;
26
+ content?: string;
27
+ }
@@ -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']",
@@ -250,6 +251,7 @@ export declare const CMSElementsListEnum: {
250
251
  BUNDLE_IMAGE: string;
251
252
  LIGHTBOX: string;
252
253
  CART: string;
254
+ CHECKOUT: string;
253
255
  PROFILE: string;
254
256
  PRODUCT: string;
255
257
  MENU: string;
@@ -279,6 +281,7 @@ export declare const CMSElementsListEnum: {
279
281
  CATEGORY_DETAILS: string;
280
282
  CONTACTUS: string;
281
283
  LOGIN: string;
284
+ ORDER_STATUS: string;
282
285
  CREATE_FORM: string;
283
286
  ADD_EXISTING_FORM: string;
284
287
  RESET_PASSWORD: string;
@@ -303,6 +306,7 @@ export declare const CMSElementsListEnum: {
303
306
  SPOTLIGHT: string;
304
307
  BUNDLE_DETAILS: string;
305
308
  PRODUCT_CUSTOMIZATIONS: string;
309
+ ICON_LIST: string;
306
310
  };
307
311
  export declare enum CMSResponsiveModeEnums {
308
312
  DESKTOP = "desktop",
@@ -325,6 +329,10 @@ export declare enum CMSRepeaterSliderControlTypes {
325
329
  DOTS = "Dots",
326
330
  NONE = "None"
327
331
  }
332
+ export declare enum CMSRepeaterViewTypes {
333
+ GRID = "grid",
334
+ LIST = "list"
335
+ }
328
336
  export declare enum FliterTypes {
329
337
  BRAND_FILTER = 1,
330
338
  CATEGORY_FILTER = 2,
@@ -359,7 +367,8 @@ export declare enum CMSCustomEventsListEnums {
359
367
  TEXTELEMENTCODEVIEW = "textElementCodeView",
360
368
  PRODUCT_DETAILS_STATE = "productDetailsState",
361
369
  IMAGE_CROP = "imageCrop",
362
- IMAGE_CROP_TEMP_DATA = "imageCropTempData"
370
+ IMAGE_CROP_TEMP_DATA = "imageCropTempData",
371
+ FORM_BUILDER_STATE = "formBuilderState"
363
372
  }
364
373
  export declare enum FlexAppVersionEnums {
365
374
  NESTEDJSON = 1,
@@ -403,3 +412,8 @@ export declare enum PageTypeEnums {
403
412
  BRAND_PRODUCTS = 16,
404
413
  Allocation = 17
405
414
  }
415
+ export declare enum FlexRepeaterControlDragType {
416
+ SLIDER_CONTROL = 1,
417
+ GRID_TOGGLE = 2
418
+ }
419
+ export declare const FlexLinkIngnoreAnchorList: LinkTypes[];
@@ -53,6 +53,7 @@ import * as layouterItemSchema from "./elements/layouter-item/index";
53
53
  import commonFunctions from "./utilities/global";
54
54
  import * as contactUsSchema from "./elements/contact-us/index";
55
55
  import * as loginSchema from "./elements/login/index";
56
+ import * as orderStatusSchema from "./elements/order-status/index";
56
57
  import * as createFormSchema from "./elements/create-form/index";
57
58
  import * as resetPasswordSchema from "./elements/reset-password/index";
58
59
  import * as categoryDetailsSchema from "./elements/category-details/index";
@@ -70,4 +71,5 @@ import * as buyForTabsContainerSchema from "./elements/buy-for-tab-container/ind
70
71
  import * as toasterSchema from "./elements/toaster/index";
71
72
  import * as spotlightSchema from "./elements/spotlight";
72
73
  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, };
74
+ import * as iconListSchema from "./elements/icon-list/index";
75
+ 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, orderStatusSchema, };
@@ -35,11 +35,21 @@ export declare const getDefaultData: () => {
35
35
  property: string;
36
36
  propertyType: CMSElementEditTypes;
37
37
  };
38
+ cartTitle: {
39
+ value: string;
40
+ property: string;
41
+ propertyType: CMSElementEditTypes;
42
+ };
38
43
  showNumberOfItems: {
39
44
  value: boolean;
40
45
  property: string;
41
46
  propertyType: CMSElementEditTypes;
42
47
  };
48
+ cartItemsCountLabel: {
49
+ value: string;
50
+ property: string;
51
+ propertyType: CMSElementEditTypes;
52
+ };
43
53
  showActions: {
44
54
  value: boolean;
45
55
  property: string;
@@ -285,11 +295,6 @@ export declare const getDefaultData: () => {
285
295
  };
286
296
  content: {
287
297
  selectorKey: SelectorKeysEnum;
288
- title: {
289
- value: string;
290
- property: string;
291
- propertyType: CMSElementEditTypes;
292
- };
293
298
  showProductTitle: {
294
299
  value: boolean;
295
300
  property: string;
@@ -325,6 +330,11 @@ export declare const getDefaultData: () => {
325
330
  property: string;
326
331
  propertyType: CMSElementEditTypes;
327
332
  };
333
+ showCartItemAttribute: {
334
+ value: boolean;
335
+ property: string;
336
+ propertyType: CMSElementEditTypes;
337
+ };
328
338
  showEdit: {
329
339
  value: boolean;
330
340
  property: string;
@@ -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 {};
@@ -54,6 +54,7 @@ import * as brandImage from "./brandImage";
54
54
  import * as filters from "./filters";
55
55
  import * as sort from "./sort";
56
56
  import * as pastOrders from "./pastOrders";
57
+ import * as orderStatus from "./orderStatus";
57
58
  import * as quotes from "./quotes";
58
59
  import * as rfqs from "./rfqs";
59
60
  import * as lightBoxV2 from "./lightBoxV2";
@@ -85,4 +86,5 @@ import * as buyForTabsContainer from "./buyForTabContainer";
85
86
  import * as toaster from "./toaster";
86
87
  import * as spotlight from "./spotlight";
87
88
  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, };
89
+ import * as iconList from "./icon-list";
90
+ 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, orderStatus, };
@@ -0,0 +1,15 @@
1
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
2
+ export interface OrderEditPopupInterface extends CMSElementEditPopupInterface {
3
+ }
4
+ interface selfLayoutInterface {
5
+ selectorKey: string;
6
+ }
7
+ export interface selfDesignInterface {
8
+ selectorKey: string;
9
+ }
10
+ export declare enum orderSelectorKeysEnum {
11
+ LAYOUT = "layout",
12
+ DESIGN = "design"
13
+ }
14
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
15
+ export {};
@@ -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;
@@ -1,4 +1,4 @@
1
- import { CMSIBCommonInterface } from "../../interfaces/global";
1
+ import { CMSIBCommonInterface, CMSIBSizeInterface } from "../../interfaces/global";
2
2
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
3
  export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
4
4
  }
@@ -11,18 +11,48 @@ interface selfLayoutInterface {
11
11
  loopItems: CMSIBCommonInterface;
12
12
  displayScrollbar1: CMSIBCommonInterface;
13
13
  autoplay: CMSIBCommonInterface;
14
- spacingBetweenItems: CMSIBCommonInterface;
14
+ spacingBetweenItems: CMSIBSizeInterface;
15
15
  dividerBetweenItems: CMSIBCommonInterface;
16
16
  overflowControl: CMSIBCommonInterface;
17
17
  numOfItemsToLoad: CMSIBCommonInterface;
18
18
  }
19
19
  interface selfDesignInterface {
20
20
  selectorKey: string;
21
+ widgetStyle: {
22
+ selectorKey: string;
23
+ };
24
+ itemStyle: {
25
+ selectorKey: string;
26
+ };
27
+ quoteId: {
28
+ selectorKey: string;
29
+ };
30
+ raisedOn: {
31
+ selectorKey: string;
32
+ };
33
+ quoteStatus: {
34
+ selectorKey: string;
35
+ };
36
+ paginationArrows: {
37
+ selectorKey: string;
38
+ arrowIconStyle: CMSIBCommonInterface;
39
+ leftArrowIconStyle: CMSIBCommonInterface;
40
+ rightArrowIconStyle: CMSIBCommonInterface;
41
+ backgroundShape: CMSIBCommonInterface;
42
+ arrowSize: CMSIBCommonInterface;
43
+ arrowColor: CMSIBCommonInterface;
44
+ };
21
45
  }
22
46
  export declare enum SelectorKeysEnum {
23
47
  LAYOUT = "layout",
24
48
  CONTENT = "content",
25
- DESIGN = "design"
49
+ DESIGN = "design",
50
+ WIDGET_STYLE = "widgetStyle",
51
+ ITEM_STYLE = "itemStyle",
52
+ QUOTE_ID = "quoteId",
53
+ RAISED_ON = "raisedOn",
54
+ QUOTE_STATUS = "quoteStatus",
55
+ PAGINATION_ARROWS = "pagination-arrows"
26
56
  }
27
57
  export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
28
58
  export {};
@@ -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,4 +1,4 @@
1
- import { CMSIBCommonInterface } from "../../interfaces/global";
1
+ import { CMSIBCommonInterface, CMSIBSizeInterface } from "../../interfaces/global";
2
2
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
3
  export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
4
4
  }
@@ -11,18 +11,48 @@ interface selfLayoutInterface {
11
11
  loopItems: CMSIBCommonInterface;
12
12
  displayScrollbar1: CMSIBCommonInterface;
13
13
  autoplay: CMSIBCommonInterface;
14
- spacingBetweenItems: CMSIBCommonInterface;
14
+ spacingBetweenItems: CMSIBSizeInterface;
15
15
  dividerBetweenItems: CMSIBCommonInterface;
16
16
  overflowControl: CMSIBCommonInterface;
17
17
  numOfItemsToLoad: CMSIBCommonInterface;
18
18
  }
19
19
  interface selfDesignInterface {
20
20
  selectorKey: string;
21
+ widgetStyle: {
22
+ selectorKey: string;
23
+ };
24
+ itemStyle: {
25
+ selectorKey: string;
26
+ };
27
+ rfqId: {
28
+ selectorKey: string;
29
+ };
30
+ raisedOn: {
31
+ selectorKey: string;
32
+ };
33
+ rfqStatus: {
34
+ selectorKey: string;
35
+ };
36
+ paginationArrows: {
37
+ selectorKey: string;
38
+ arrowIconStyle: CMSIBCommonInterface;
39
+ leftArrowIconStyle: CMSIBCommonInterface;
40
+ rightArrowIconStyle: CMSIBCommonInterface;
41
+ backgroundShape: CMSIBCommonInterface;
42
+ arrowSize: CMSIBCommonInterface;
43
+ arrowColor: CMSIBCommonInterface;
44
+ };
21
45
  }
22
46
  export declare enum SelectorKeysEnum {
23
47
  LAYOUT = "layout",
24
48
  CONTENT = "content",
25
- DESIGN = "design"
49
+ DESIGN = "design",
50
+ WIDGET_STYLE = "widgetStyle",
51
+ ITEM_STYLE = "itemStyle",
52
+ RFQ_ID = "rfqId",
53
+ RAISED_ON = "raisedOn",
54
+ RFQ_STATUS = "rfqStatus",
55
+ PAGINATION_ARROWS = "pagination-arrows"
26
56
  }
27
57
  export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
28
58
  export {};