@sc-360-v2/storefront-cms-library 0.1.3 → 0.1.5

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 (54) hide show
  1. package/dist/builder.js +1 -1
  2. package/dist/button.scss +75 -34
  3. package/dist/code-temp.scss +58 -0
  4. package/dist/container.scss +17 -0
  5. package/dist/countdown.scss +378 -0
  6. package/dist/editor-core.scss +312 -0
  7. package/dist/embed-temp.scss +58 -0
  8. package/dist/faq.scss +242 -0
  9. package/dist/functions.scss +133 -0
  10. package/dist/gallery-slider-temp.scss +410 -0
  11. package/dist/grid.scss +34 -0
  12. package/dist/hotspot.scss +250 -0
  13. package/dist/image-temp.scss +75 -0
  14. package/dist/map.scss +280 -0
  15. package/dist/pickup-locations.scss +180 -0
  16. package/dist/product-actions.scss +180 -0
  17. package/dist/product-inventory.scss +180 -0
  18. package/dist/product-price.scss +61 -0
  19. package/dist/scroll.scss +157 -0
  20. package/dist/section.scss +60 -0
  21. package/dist/social.scss +166 -0
  22. package/dist/store-locations.scss +180 -0
  23. package/dist/table.scss +373 -0
  24. package/dist/text-temp.scss +58 -0
  25. package/dist/types/builder/elements/paymentMethods/index.d.ts +26 -0
  26. package/dist/types/builder/elements/pickup-locations/index.d.ts +26 -0
  27. package/dist/types/builder/elements/product-actions/index.d.ts +26 -0
  28. package/dist/types/builder/elements/product-inventory/index.d.ts +26 -0
  29. package/dist/types/builder/elements/productDetails/index.d.ts +67 -0
  30. package/dist/types/builder/elements/productHighlights/index.d.ts +26 -0
  31. package/dist/types/builder/elements/productPrice/index.d.ts +29 -0
  32. package/dist/types/builder/elements/section/index.d.ts +1 -0
  33. package/dist/types/builder/elements/shippingEstimator/index.d.ts +26 -0
  34. package/dist/types/builder/elements/store-locations/index.d.ts +26 -0
  35. package/dist/types/builder/elements/volumePricing/index.d.ts +26 -0
  36. package/dist/types/builder/enums/index.d.ts +2 -1
  37. package/dist/types/builder/index.d.ts +10 -1
  38. package/dist/types/builder/tools/element-edit/common.d.ts +3 -0
  39. package/dist/types/builder/tools/element-edit/gallery-slider.d.ts +12 -2
  40. package/dist/types/builder/tools/element-edit/index.d.ts +10 -1
  41. package/dist/types/builder/tools/element-edit/paymentMethods.d.ts +37 -0
  42. package/dist/types/builder/tools/element-edit/pickupLocations.d.ts +22 -0
  43. package/dist/types/builder/tools/element-edit/productActions.d.ts +55 -0
  44. package/dist/types/builder/tools/element-edit/productDetails.d.ts +42 -0
  45. package/dist/types/builder/tools/element-edit/productHighlights.d.ts +24 -0
  46. package/dist/types/builder/tools/element-edit/productInventory.d.ts +35 -0
  47. package/dist/types/builder/tools/element-edit/productPrice.d.ts +38 -0
  48. package/dist/types/builder/tools/element-edit/shippingEstimator.d.ts +14 -0
  49. package/dist/types/builder/tools/element-edit/storeLocations.d.ts +24 -0
  50. package/dist/types/builder/tools/element-edit/volumePricing.d.ts +54 -0
  51. package/dist/video.scss +199 -0
  52. package/dist/volume-pricing.scss +28 -0
  53. package/dist/widget.scss +23 -1
  54. package/package.json +1 -1
@@ -0,0 +1,26 @@
1
+ import { CommonStyleProperties } from "../../../global/style-properties";
2
+ import { CMSHTMLAttributes } from "../../../global/attributes";
3
+ import { AlignSelfValue, BoxSizingValue, GlobalImageAttributes, GridAreaValue, HeightValue, ImageBuilderAttributes, JustifySelfValue, MaxHeightValue, MaxWidthValue, MinHeightValue, MinWidthValue, PaddingValue } from "../../../global/types";
4
+ import { BuilderAttributes, CMSElementInterface } from "../common";
5
+ export interface ShippingEstimatorStyleProperties 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: () => ShippingEstimatorStyleProperties;
18
+ export interface CMSShippingEstimatorInterface extends Omit<CMSElementInterface, "attributes"> {
19
+ attributes: {
20
+ HTML: Pick<CMSHTMLAttributes, GlobalImageAttributes>;
21
+ BUILDER: Pick<BuilderAttributes, ImageBuilderAttributes>;
22
+ CUSTOM: any;
23
+ };
24
+ styles: ShippingEstimatorStyleProperties;
25
+ childrenStyles?: CommonStyleProperties;
26
+ }
@@ -0,0 +1,26 @@
1
+ import { CommonStyleProperties } from "../../../global/style-properties";
2
+ import { CMSHTMLAttributes } from "../../../global/attributes";
3
+ import { AlignSelfValue, BoxSizingValue, GlobalImageAttributes, GridAreaValue, HeightValue, ImageBuilderAttributes, JustifySelfValue, MaxHeightValue, MaxWidthValue, MinHeightValue, MinWidthValue, PaddingValue } from "../../../global/types";
4
+ import { BuilderAttributes, CMSElementInterface } from "../common";
5
+ export interface StoreLocationsStyleProperties 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: () => StoreLocationsStyleProperties;
18
+ export interface CMSStoreLocationsInterface extends Omit<CMSElementInterface, "attributes"> {
19
+ attributes: {
20
+ HTML: Pick<CMSHTMLAttributes, GlobalImageAttributes>;
21
+ BUILDER: Pick<BuilderAttributes, ImageBuilderAttributes>;
22
+ CUSTOM: any;
23
+ };
24
+ styles: StoreLocationsStyleProperties;
25
+ childrenStyles?: CommonStyleProperties;
26
+ }
@@ -0,0 +1,26 @@
1
+ import { CommonStyleProperties } from "../../../global/style-properties";
2
+ import { CMSHTMLAttributes } from "../../../global/attributes";
3
+ import { AlignSelfValue, BoxSizingValue, GlobalImageAttributes, GridAreaValue, HeightValue, ImageBuilderAttributes, JustifySelfValue, MaxHeightValue, MaxWidthValue, MinHeightValue, MinWidthValue, PaddingValue } from "../../../global/types";
4
+ import { BuilderAttributes, CMSElementInterface } from "../common";
5
+ export interface VolumePricingStyleProperties 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: () => VolumePricingStyleProperties;
18
+ export interface CMSVolumePricingInterface extends Omit<CMSElementInterface, "attributes"> {
19
+ attributes: {
20
+ HTML: Pick<CMSHTMLAttributes, GlobalImageAttributes>;
21
+ BUILDER: Pick<BuilderAttributes, ImageBuilderAttributes>;
22
+ CUSTOM: any;
23
+ };
24
+ styles: VolumePricingStyleProperties;
25
+ childrenStyles?: CommonStyleProperties;
26
+ }
@@ -116,5 +116,6 @@ export declare enum CMSCSSUnitTypesEnums {
116
116
  }
117
117
  export declare enum CMSComponentImportTypeEnum {
118
118
  BUILDER = 1,
119
- PREVIEW = 2
119
+ PREVIEW = 2,
120
+ WEBSITE = 3
120
121
  }
@@ -21,4 +21,13 @@ import * as countdownSchema from "./elements/countdown/index";
21
21
  import * as imageHotspotSchema from "./elements/image-hotspot/index";
22
22
  import * as mapSchema from "./elements/map/index";
23
23
  import * as containerSchema from "./elements/container/index";
24
- export { commonFunctions, interfaces, enums, sectionSchema, gridSchema, cmsTypes, textSchema, ElementEditSchema, imageSchema, videoSChema, socialIconsSchema, buttonSchema, gallerySliderSchema, tabSchema, tableSchema, faqSchema, codeSchema, embedSchema, scrollSchema, countdownSchema, imageHotspotSchema, mapSchema, containerSchema, };
24
+ import * as priceSchema from "./elements/productPrice/index";
25
+ import * as productActionsSchema from "./elements/product-actions/index";
26
+ import * as volumePricingSchema from "./elements/volumePricing/index";
27
+ import * as pickupLocationsSchema from "./elements/pickup-locations/index";
28
+ import * as storeLocationsSchema from "./elements/store-locations/index";
29
+ import * as productInventorySchema from "./elements/product-inventory/index";
30
+ import * as productHighlightsSchema from "./elements/productHighlights/index";
31
+ import * as paymentMethodsSchema from "./elements/paymentMethods/index";
32
+ import * as shippingEstimatorSchema from "./elements/shippingEstimator/index";
33
+ export { commonFunctions, interfaces, enums, sectionSchema, gridSchema, cmsTypes, textSchema, ElementEditSchema, imageSchema, videoSChema, socialIconsSchema, buttonSchema, gallerySliderSchema, tabSchema, tableSchema, faqSchema, codeSchema, embedSchema, scrollSchema, countdownSchema, imageHotspotSchema, mapSchema, containerSchema, priceSchema, productActionsSchema, volumePricingSchema, pickupLocationsSchema, storeLocationsSchema, productInventorySchema, paymentMethodsSchema, productHighlightsSchema, shippingEstimatorSchema, };
@@ -71,6 +71,9 @@ export interface CMSElementEditPopupDesignInterface {
71
71
  showIcon?: CMSIBCommonInterface;
72
72
  dividerWidth: CMSIBSizeInterface;
73
73
  overlayColor: CMSIBCommonInterface;
74
+ textPosition: CMSIBCommonInterface;
75
+ verticalAlignment: CMSIBCommonInterface;
76
+ textHorizontalPadding: CMSIBSizeInterface;
74
77
  }
75
78
  export interface CMSElementEditPopupInterface<L = CMSElementEditPopupLayoutInterface, D = CMSElementEditPopupDesignInterface> {
76
79
  layout?: L;
@@ -30,12 +30,20 @@ export interface selfDesignInterface {
30
30
  spread: CMSIBCommonInterface;
31
31
  angle: CMSIBCommonInterface;
32
32
  borderRadius: CMSIBCommonInterface;
33
+ [key: string]: any;
33
34
  };
34
- galleryLayout: {
35
+ galleryWidgetLayout: {
35
36
  selectorKey: string;
36
37
  galleryTextAndItemAlignment: CMSIBCommonInterface;
37
38
  galleryTextAndItemSpacing: CMSIBCommonInterface;
38
39
  galleryTitleAndDescriptionSpacing: CMSIBCommonInterface;
40
+ [key: string]: any;
41
+ };
42
+ galleryWidgetTextContainerDesign: {
43
+ [key: string]: any;
44
+ };
45
+ galleryWidgetTextContainerLayout: {
46
+ [key: string]: any;
39
47
  };
40
48
  itemStyle: {
41
49
  selectorKey: string;
@@ -76,7 +84,9 @@ export declare enum SelectorKeysEnum {
76
84
  ITEM_STYLE = "item-style",
77
85
  PAGINATION_ARROWS = "pagination-arrows",
78
86
  PAGINATION_DOTS = "pagination-dots",
79
- PAGINATION_LINE = "pagination-lines"
87
+ PAGINATION_LINE = "pagination-lines",
88
+ MAP_WIDGET_TEXT_CONTAINER_DESIGN = "galleryWidgetTextContainerDesign",
89
+ MAP_WIDGET_TEXT_CONTAINER_LAYOUT = "galleryWidgetTextContainerLayout"
80
90
  }
81
91
  export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
82
92
  export {};
@@ -19,4 +19,13 @@ import * as scroll from "./scroll";
19
19
  import * as map from "./map";
20
20
  import * as container from "./container";
21
21
  import * as countdown from "./countdown";
22
- export { section, grid, common, image, button, slideShowLayouter, tabs, video, table, gallerySlider, social, faq, code, text, embed, buttonV2, scroll, countdown, imageHotspot, map, container, };
22
+ import * as price from "./productPrice";
23
+ import * as productActions from "./productActions";
24
+ import * as volumePricing from "./volumePricing";
25
+ import * as pickupLocations from "./pickupLocations";
26
+ import * as storeLocations from "./storeLocations";
27
+ import * as productInventory from "./productInventory";
28
+ import * as paymentMethods from "./paymentMethods";
29
+ import * as productHighlights from "./productHighlights";
30
+ import * as shippingEstimator from "./shippingEstimator";
31
+ export { section, grid, common, image, button, slideShowLayouter, tabs, video, table, gallerySlider, social, faq, code, text, embed, buttonV2, scroll, countdown, imageHotspot, map, container, price, productActions, volumePricing, pickupLocations, storeLocations, productInventory, paymentMethods, productHighlights, shippingEstimator, };
@@ -0,0 +1,37 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ interface selfLayoutInterface {
4
+ selectorKey: string;
5
+ displayStyle: CMSIBCommonInterface;
6
+ dividerBetweenItems: CMSIBCommonInterface;
7
+ itemSpacing: CMSIBCommonInterface;
8
+ itemPadding: CMSIBCommonInterface;
9
+ ItemContentAlignment: CMSIBCommonInterface;
10
+ overflowItems: CMSIBCommonInterface;
11
+ header: CMSIBCommonInterface;
12
+ maxItemsToDisplay: CMSIBCommonInterface;
13
+ headerHeight: CMSIBCommonInterface;
14
+ rowHeight: CMSIBCommonInterface;
15
+ headerDivider: CMSIBCommonInterface;
16
+ rowDivider: CMSIBCommonInterface;
17
+ columnDivider: CMSIBCommonInterface;
18
+ alternativeRowColors: CMSIBCommonInterface;
19
+ headerCellPadding: CMSIBCommonInterface;
20
+ rowCellPadding: CMSIBCommonInterface;
21
+ contentAlignment: CMSIBCommonInterface;
22
+ rowsPerPage: CMSIBCommonInterface;
23
+ overflowControl: CMSIBCommonInterface;
24
+ paginationType: CMSIBCommonInterface;
25
+ paginationAliginment: CMSIBCommonInterface;
26
+ displayResults: CMSIBCommonInterface;
27
+ }
28
+ interface selfDesignInterface {
29
+ selectorKey: string;
30
+ }
31
+ export declare enum PaymentMethodSelectorKeysEnum {
32
+ LAYOUT = "layout",
33
+ CONTENT = "content",
34
+ DESIGN = "design"
35
+ }
36
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
37
+ export {};
@@ -0,0 +1,22 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ interface selfLayoutInterface {
4
+ selectorKey: string;
5
+ displayStyle: CMSIBCommonInterface;
6
+ displayType: CMSIBCommonInterface;
7
+ maxItemsToDisplay: CMSIBCommonInterface;
8
+ itemSpacing: CMSIBCommonInterface;
9
+ overflowItems: CMSIBCommonInterface;
10
+ displayResults: CMSIBCommonInterface;
11
+ noOfItemToShow: CMSIBCommonInterface;
12
+ }
13
+ interface selfDesignInterface {
14
+ selectorKey: string;
15
+ }
16
+ export declare enum PickupLocationsSelectorKeysEnum {
17
+ LAYOUT = "layout",
18
+ CONTENT = "content",
19
+ DESIGN = "design"
20
+ }
21
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
22
+ export {};
@@ -0,0 +1,55 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ export interface ButtonLayoutInterface {
4
+ selectorKey: string;
5
+ actions: CMSIBCommonInterface;
6
+ addToCart: CMSIBCommonInterface;
7
+ addToCartWhenClicked: CMSIBCommonInterface;
8
+ buyNow: CMSIBCommonInterface;
9
+ buyNowWhenClicked: CMSIBCommonInterface;
10
+ wishlist: CMSIBCommonInterface;
11
+ wishlistWhenClicked: CMSIBCommonInterface;
12
+ compareProduct: CMSIBCommonInterface;
13
+ compareProductWhenClicked: CMSIBCommonInterface;
14
+ showCompareListAs: CMSIBCommonInterface;
15
+ addToQuote: CMSIBCommonInterface;
16
+ addToOrderTemplate: CMSIBCommonInterface;
17
+ notifyMeInventoryNotifications: CMSIBCommonInterface;
18
+ downloadProductInformation: CMSIBCommonInterface;
19
+ displayStyle: CMSIBCommonInterface;
20
+ itemSpacing: CMSIBCommonInterface;
21
+ maxItemsToDisplay: CMSIBCommonInterface;
22
+ overflowItems: CMSIBCommonInterface;
23
+ openItemsIn: CMSIBCommonInterface;
24
+ addToCartMetaData: CMSIBCommonInterface;
25
+ wishlistMetaData: CMSIBCommonInterface;
26
+ itemVerticalSpacing: CMSIBCommonInterface;
27
+ }
28
+ export interface selfDesignInterface {
29
+ selectorKey: string;
30
+ defaultState: any;
31
+ addToCart: any;
32
+ buyNow: any;
33
+ wishlist: any;
34
+ compare: any;
35
+ addToQuote: any;
36
+ addToOrderTemplate: any;
37
+ notifyMe: any;
38
+ download: any;
39
+ hoverState: any;
40
+ }
41
+ export declare enum ButtonSelectorKeysEnum {
42
+ HOVER_STATE = "hover",
43
+ DEFAULT_STATE = "default",
44
+ LAYOUT = "layout",
45
+ DESIGN = "design",
46
+ ADD_TO_CART = "addToChart",
47
+ BUY_NOW = "buyNow",
48
+ WISHLIST = "wishlist",
49
+ COMPARE = "compare",
50
+ ADD_TO_QUOTE = "addToQuote",
51
+ ADD_TO_ORDER_TEMPLATE = "addToOrderTemplate",
52
+ NOTIFY_ME = "notifyMe",
53
+ DOWNLOAD = "download"
54
+ }
55
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<ButtonLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
@@ -0,0 +1,42 @@
1
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
2
+ interface controlInterface {
3
+ value: string | boolean;
4
+ propertyType: string;
5
+ }
6
+ export interface selfLayoutInterface {
7
+ selectorKey: string;
8
+ imageAndDetailsSpacing: controlInterface;
9
+ itemSpacing: controlInterface;
10
+ imagePosition: controlInterface;
11
+ }
12
+ export interface selfDesignInterface {
13
+ selectorKey: string;
14
+ }
15
+ export interface selfContentInterface {
16
+ selectorKey: string;
17
+ productName: controlInterface;
18
+ productCodes: controlInterface;
19
+ varientCodes: controlInterface;
20
+ productImages: controlInterface;
21
+ prices: controlInterface;
22
+ productDescription: controlInterface;
23
+ showOptions: controlInterface;
24
+ allowBulkOrdering: controlInterface;
25
+ actions: controlInterface;
26
+ quickView: controlInterface;
27
+ addToCart: controlInterface;
28
+ wishlist: controlInterface;
29
+ buyNow: controlInterface;
30
+ addToQuote: controlInterface;
31
+ showUOMs: controlInterface;
32
+ showVolumePricing: controlInterface;
33
+ showInventory: controlInterface;
34
+ storeAvailability: controlInterface;
35
+ }
36
+ export declare enum sectionSelectorKeysEnum {
37
+ LAYOUT = "layout",
38
+ DESIGN = "design",
39
+ CONTENT = "content"
40
+ }
41
+ export declare const getDefaultData: (contentWidth: any) => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
42
+ export {};
@@ -0,0 +1,24 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ interface selfLayoutInterface {
4
+ selectorKey: string;
5
+ displayStyle: CMSIBCommonInterface;
6
+ dividerBetweenItems: CMSIBCommonInterface;
7
+ itemSpacing: CMSIBCommonInterface;
8
+ itemPadding: CMSIBCommonInterface;
9
+ ItemContentAlignment: CMSIBCommonInterface;
10
+ overflowItems: CMSIBCommonInterface;
11
+ maxItemsToDisplay: CMSIBCommonInterface;
12
+ imageBehavior: CMSIBCommonInterface;
13
+ itemsPerRow: CMSIBCommonInterface;
14
+ }
15
+ interface selfDesignInterface {
16
+ selectorKey: string;
17
+ }
18
+ export declare enum ProductHighlightsSelectorKeysEnum {
19
+ LAYOUT = "layout",
20
+ CONTENT = "content",
21
+ DESIGN = "design"
22
+ }
23
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
24
+ export {};
@@ -0,0 +1,35 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ interface selfLayoutInterface {
4
+ selectorKey: string;
5
+ displayStyle: CMSIBCommonInterface;
6
+ displayType: CMSIBCommonInterface;
7
+ maxItemsToDisplay: CMSIBCommonInterface;
8
+ itemSpacing: CMSIBCommonInterface;
9
+ overflowItems: CMSIBCommonInterface;
10
+ header: CMSIBCommonInterface;
11
+ headerHeight: CMSIBCommonInterface;
12
+ rowHeight: CMSIBCommonInterface;
13
+ headerDivider: CMSIBCommonInterface;
14
+ rowDivider: CMSIBCommonInterface;
15
+ columnDivider: CMSIBCommonInterface;
16
+ alternativeRowColors: CMSIBCommonInterface;
17
+ headerCellPadding: CMSIBCommonInterface;
18
+ rowCellPadding: CMSIBCommonInterface;
19
+ contentAlignment: CMSIBCommonInterface;
20
+ rowsPerPage: CMSIBCommonInterface;
21
+ overflowControl: CMSIBCommonInterface;
22
+ paginationType: CMSIBCommonInterface;
23
+ paginationAliginment: CMSIBCommonInterface;
24
+ displayResults: CMSIBCommonInterface;
25
+ }
26
+ interface selfDesignInterface {
27
+ selectorKey: string;
28
+ }
29
+ export declare enum ProductInventorySelectorKeysEnum {
30
+ LAYOUT = "layout",
31
+ CONTENT = "content",
32
+ DESIGN = "design"
33
+ }
34
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
35
+ export {};
@@ -0,0 +1,38 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ export declare enum SelectorKeysEnum {
4
+ LAYOUT = "layout",
5
+ DESIGN = "design",
6
+ CONTENT = "content"
7
+ }
8
+ export interface selfLayoutInterface {
9
+ selectorKey: string;
10
+ showPrice: CMSIBCommonInterface;
11
+ displayMinQtySet: CMSIBCommonInterface;
12
+ priceFormat: CMSIBCommonInterface;
13
+ displayFormat: CMSIBCommonInterface;
14
+ }
15
+ export interface selfDesignInterface {
16
+ selectorKey: string;
17
+ }
18
+ export interface selfContentInterface {
19
+ selectorKey: string;
20
+ productPrice: CMSIBCommonInterface;
21
+ sellingPrice: CMSIBCommonInterface;
22
+ productPriceDisplayUOM: CMSIBCommonInterface;
23
+ productPriceDisplayCurrencyCode: CMSIBCommonInterface;
24
+ showActualPrice: CMSIBCommonInterface;
25
+ actualPrice: CMSIBCommonInterface;
26
+ actualPriceDisplayUOM: CMSIBCommonInterface;
27
+ actualPriceDisplayCurrencyCode: CMSIBCommonInterface;
28
+ discount: CMSIBCommonInterface;
29
+ discountValue: CMSIBCommonInterface;
30
+ showSavings: CMSIBCommonInterface;
31
+ savings: CMSIBCommonInterface;
32
+ savingsValue: CMSIBCommonInterface;
33
+ savingsDisplayCurrencyCode: CMSIBCommonInterface;
34
+ embellishmentPrice: CMSIBCommonInterface;
35
+ productTax: CMSIBCommonInterface;
36
+ ProductShippingPrice: CMSIBCommonInterface;
37
+ }
38
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
@@ -0,0 +1,14 @@
1
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
2
+ interface selfLayoutInterface {
3
+ selectorKey: string;
4
+ }
5
+ interface selfDesignInterface {
6
+ selectorKey: string;
7
+ }
8
+ export declare enum ShippingEstimatorSelectorKeysEnum {
9
+ LAYOUT = "layout",
10
+ CONTENT = "content",
11
+ DESIGN = "design"
12
+ }
13
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
14
+ export {};
@@ -0,0 +1,24 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ interface selfLayoutInterface {
4
+ selectorKey: string;
5
+ displayStyle: CMSIBCommonInterface;
6
+ displayResults: CMSIBCommonInterface;
7
+ whenClicked: CMSIBCommonInterface;
8
+ displayType: CMSIBCommonInterface;
9
+ maxItemsToDisplay: CMSIBCommonInterface;
10
+ itemSpacing: CMSIBCommonInterface;
11
+ overflowItems: CMSIBCommonInterface;
12
+ noOfItemToShow: CMSIBCommonInterface;
13
+ searchPlaceholderText: CMSIBCommonInterface;
14
+ }
15
+ interface selfDesignInterface {
16
+ selectorKey: string;
17
+ }
18
+ export declare enum StoreLocationSelectorKeysEnum {
19
+ LAYOUT = "layout",
20
+ CONTENT = "content",
21
+ DESIGN = "design"
22
+ }
23
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
24
+ export {};
@@ -0,0 +1,54 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ interface selfLayoutInterface {
4
+ selectorKey: string;
5
+ showVolumePrice: CMSIBCommonInterface;
6
+ displayFormat: CMSIBCommonInterface;
7
+ itemSpacing: CMSIBCommonInterface;
8
+ maxItemsToDisplay: CMSIBCommonInterface;
9
+ overflowControl: CMSIBCommonInterface;
10
+ onClick: CMSIBCommonInterface;
11
+ sliderControl: CMSIBCommonInterface;
12
+ controlPosition: CMSIBCommonInterface;
13
+ loopImages: CMSIBCommonInterface;
14
+ autoplay: CMSIBCommonInterface;
15
+ headerDivider: CMSIBCommonInterface;
16
+ rowDivider: CMSIBCommonInterface;
17
+ columnDivider: CMSIBCommonInterface;
18
+ alternativeRowColors: CMSIBCommonInterface;
19
+ headerCellPadding: CMSIBCommonInterface;
20
+ rowCellPadding: CMSIBCommonInterface;
21
+ contentAlignment: CMSIBCommonInterface;
22
+ showMoreRows: CMSIBCommonInterface;
23
+ rowsPerPage: CMSIBCommonInterface;
24
+ paginationType: CMSIBCommonInterface;
25
+ paginationAlignment: CMSIBCommonInterface;
26
+ optionTitleAndValueSpacing: CMSIBCommonInterface;
27
+ tabItemSpacing: CMSIBCommonInterface;
28
+ accordionItemSpacing: CMSIBCommonInterface;
29
+ noOfItemsToLoad: CMSIBCommonInterface;
30
+ groupDisplayStyle: CMSIBCommonInterface;
31
+ headerHeight: CMSIBCommonInterface;
32
+ rowHeight: CMSIBCommonInterface;
33
+ }
34
+ export interface selfDesignInterface {
35
+ selectorKey: string;
36
+ productPrice: object;
37
+ uomStyle: object;
38
+ currencyCodeStyle: object;
39
+ actualPrice: object;
40
+ discountPercentage: object;
41
+ discountValue: object;
42
+ savingsPercentage: object;
43
+ savingsValue: object;
44
+ emblishmentPrice: object;
45
+ productTax: object;
46
+ productShippingPrice: object;
47
+ }
48
+ export declare enum textSelectorKeysEnum {
49
+ LAYOUT = "layout",
50
+ CONTENT = "content",
51
+ DESIGN = "design"
52
+ }
53
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
54
+ export {};