@sc-360-v2/storefront-cms-library 0.3.23 → 0.3.24
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/dist/builder.js +1 -1
- package/dist/types/builder/elements/my-templates/index.d.ts +27 -0
- package/dist/types/builder/enums/index.d.ts +1 -0
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/myTemplates.d.ts +443 -0
- package/package.json +1 -1
|
@@ -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 myTemplatesStyleProperties 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: () => myTemplatesStyleProperties;
|
|
18
|
+
export interface CMSmyTemplatesInterface extends Omit<CMSElementInterface, "attributes"> {
|
|
19
|
+
attributes: {
|
|
20
|
+
HTML: Pick<CMSHTMLAttributes, GlobalImageAttributes>;
|
|
21
|
+
BUILDER: Pick<BuilderAttributes, CommonBuilderAttributes>;
|
|
22
|
+
CUSTOM: any;
|
|
23
|
+
};
|
|
24
|
+
styles: myTemplatesStyleProperties;
|
|
25
|
+
childrenStyles?: CommonStyleProperties;
|
|
26
|
+
content?: string;
|
|
27
|
+
}
|
|
@@ -41,6 +41,7 @@ import * as ElementEditSchema from "./tools/element-edit/index";
|
|
|
41
41
|
import * as lightboxSchema from "./elements/lightbox/index";
|
|
42
42
|
import * as cartSchema from "./elements/cart/index";
|
|
43
43
|
import * as checkoutSchema from "./elements/checkout/index";
|
|
44
|
+
import * as myTemplatesSchema from "./elements/my-templates/index";
|
|
44
45
|
import * as profileSchema from "./elements/profile/index";
|
|
45
46
|
import * as repeaterSchema from "./elements/repeater/index";
|
|
46
47
|
import * as brandSchema from "./elements/brand/index";
|
|
@@ -82,4 +83,4 @@ import * as filterResultsSchema from "./elements/filter-results/index";
|
|
|
82
83
|
import * as productSizeChartSchema from "./elements/product-sizechart/index";
|
|
83
84
|
import * as badgeSchema from "./elements/badge/index";
|
|
84
85
|
import * as cartAttributesSchema from "./elements/cart-attributes/index";
|
|
85
|
-
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, bundleDetailsSchema, 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, menuV2Schema, menuItemSchema, layouterProSchema, layouterProItemSchema, userElementsSchema, filterResultsSchema, productSizeChartSchema, badgeSchema, cartAttributesSchema, };
|
|
86
|
+
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, bundleDetailsSchema, brandImageSchema, lightBoxV2Schema, searchSchema, layouterSchema, layouterItemSchema, categoryDetailsSchema, contactUsSchema, loginSchema, createFormSchema, resetPasswordSchema, searchResultsHeadingSchema, itemStockSchema, lineItemSchema, tabsV2Schema, tabsContainerSchema, marchandiserSetsSchema, formBuilder, quickLinksSchema, addOrderSchema, buyForTabsSchema, buyForTabsContainerSchema, checkoutSchema, myTemplatesSchema, toasterSchema, spotlightSchema, productCustomizationsSchema, iconListSchema, orderStatusSchema, menuV2Schema, menuItemSchema, layouterProSchema, layouterProItemSchema, userElementsSchema, filterResultsSchema, productSizeChartSchema, badgeSchema, cartAttributesSchema, };
|
|
@@ -73,6 +73,7 @@ import * as itemStock from "./itemStock";
|
|
|
73
73
|
import * as cartDetails from "./cartDetails";
|
|
74
74
|
import * as cartSummary from "./cartSummary";
|
|
75
75
|
import * as checkout from "./checkout";
|
|
76
|
+
import * as myTemplates from ".//myTemplates";
|
|
76
77
|
import * as allocationDetails from "./allocationDetails";
|
|
77
78
|
import * as line from "./line";
|
|
78
79
|
import * as tabsV2 from "./tabsV2";
|
|
@@ -97,4 +98,4 @@ import * as userElements from "./userElements";
|
|
|
97
98
|
import * as badge from "./badge";
|
|
98
99
|
import * as languageMenu from "./language-menu";
|
|
99
100
|
import * as cartAttributes from "./cartAttributes";
|
|
100
|
-
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, menuV2, menuItem, layouterPro, layouterProItem, filterResults, productSizeChart, userElements, badge, cartAttributes, languageMenu, };
|
|
101
|
+
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, myTemplates, allocationDetails, line, tabsV2, tabContainer, marchandiserSets, createForm, quickLinks, addOrder, buyForWithTabs, buyForTabsContainer, toaster, spotlight, bundleDetails, productCustomizations, iconList, orderStatus, menuV2, menuItem, layouterPro, layouterProItem, filterResults, productSizeChart, userElements, badge, cartAttributes, languageMenu, };
|
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
2
|
+
import { CMSElementEditPopupInterface } from "./common";
|
|
3
|
+
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
4
|
+
}
|
|
5
|
+
export declare enum SelectorKeysEnum {
|
|
6
|
+
LAYOUT = "layout",
|
|
7
|
+
CONTENT = "content",
|
|
8
|
+
DESIGN = "design",
|
|
9
|
+
SELECTION_ACCORDIAN_CONTAINER_DESIGN = "selectionAccordianContainerDesign",
|
|
10
|
+
SELECTION_ACCORDIAN_TITLE_DESIGN = "selectionAccordianTitleDesign",
|
|
11
|
+
SELECTION_ACCORDIAN_BUTTON_DESIGN = "selectionAccordianButtonDesign",
|
|
12
|
+
INPUT_LABEL_DESIGN = "inputLabelDesign",
|
|
13
|
+
INPUT_BOX_DESIGN = "inputBoxDesign",
|
|
14
|
+
INPUT_BUTTON_DESIGN = "inputButtonDesign",
|
|
15
|
+
SECONDARY_INPUT_BUTTON_DESIGN = "secondaryInputButtonDesign",
|
|
16
|
+
INPUT_HEADINGS_DESIGN = "inputHeadingsDesign",
|
|
17
|
+
PAYMENT_OPTIONS_CONTAINER_DESIGN = "paymentOptionsContainerDesign",
|
|
18
|
+
PAYMENT_OPTIONS_BUTTON_DESIGN = "paymentOptionsButtonDesign",
|
|
19
|
+
DEFAULT_STATE = "defaultState",
|
|
20
|
+
HOVER_STATE = "hoverState",
|
|
21
|
+
SELECTED_STATE = "selectedState",
|
|
22
|
+
PRIMARY_VALUE_TEXT_DESIGN = "primaryValueTextDesign",
|
|
23
|
+
SECONDARY_VALUE_TEXT_DESIGN = "secondaryValueTextDesign",
|
|
24
|
+
DISCARD_BUTTON_DESIGN = "discardButtonDesign",
|
|
25
|
+
NOTE_CONTAINER_DESIGN = "noteContainerDesign",
|
|
26
|
+
CHECKBOX_LABEL_DESIGN = "checkboxLabelDesign"
|
|
27
|
+
}
|
|
28
|
+
export declare const getDefaultData: () => {
|
|
29
|
+
layout: {
|
|
30
|
+
selectorKey: SelectorKeysEnum;
|
|
31
|
+
width: {
|
|
32
|
+
value: number;
|
|
33
|
+
unit: CMSCSSUnitTypesEnums;
|
|
34
|
+
};
|
|
35
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
36
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
37
|
+
overflowContent: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
38
|
+
scrollDirection: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
39
|
+
displayScrollbar: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
40
|
+
positionType: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
41
|
+
pinTo: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
42
|
+
titleAndInputGap: {
|
|
43
|
+
value: number;
|
|
44
|
+
property: string;
|
|
45
|
+
propertyType: CMSElementEditTypes;
|
|
46
|
+
unit: number;
|
|
47
|
+
};
|
|
48
|
+
itemGap: {
|
|
49
|
+
value: number;
|
|
50
|
+
property: string;
|
|
51
|
+
unit: number;
|
|
52
|
+
propertyType: CMSElementEditTypes;
|
|
53
|
+
};
|
|
54
|
+
labelAndInputGap: {
|
|
55
|
+
value: number;
|
|
56
|
+
property: string;
|
|
57
|
+
propertyType: CMSElementEditTypes;
|
|
58
|
+
unit: number;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
design: {
|
|
62
|
+
selectorKey: SelectorKeysEnum;
|
|
63
|
+
selectionAccordianContainerDesign: {
|
|
64
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
65
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
66
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
67
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
68
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
69
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
70
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
71
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
72
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
73
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
74
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
75
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
76
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
77
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
78
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
79
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
80
|
+
selectorKey: SelectorKeysEnum;
|
|
81
|
+
};
|
|
82
|
+
selectionAccordianTitleDesign: {
|
|
83
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
84
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
85
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
86
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
87
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
88
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
89
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
90
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
91
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
92
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
93
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
94
|
+
selectorKey: SelectorKeysEnum;
|
|
95
|
+
};
|
|
96
|
+
selectionAccordianButtonDesign: {
|
|
97
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
98
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
99
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
100
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
101
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
102
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
103
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
104
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
105
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
106
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
107
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
108
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
109
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
110
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
111
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
112
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
113
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
114
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
115
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
116
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
117
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
118
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
119
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
120
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
121
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
122
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
123
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
124
|
+
selectorKey: SelectorKeysEnum;
|
|
125
|
+
};
|
|
126
|
+
inputLabelDesign: {
|
|
127
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
128
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
129
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
130
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
131
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
132
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
133
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
134
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
135
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
136
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
137
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
138
|
+
selectorKey: SelectorKeysEnum;
|
|
139
|
+
};
|
|
140
|
+
inputBoxDesign: {
|
|
141
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
142
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
143
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
144
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
145
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
146
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
147
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
148
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
149
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
150
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
151
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
152
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
153
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
154
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
155
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
156
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
157
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
158
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
159
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
160
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
161
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
162
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
163
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
164
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
165
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
166
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
167
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
168
|
+
selectorKey: SelectorKeysEnum;
|
|
169
|
+
};
|
|
170
|
+
inputButtonDesign: {
|
|
171
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
172
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
173
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
174
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
176
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
177
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
178
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
179
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
180
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
181
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
182
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
183
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
184
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
185
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
186
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
187
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
188
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
189
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
192
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
193
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
195
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
196
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
197
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
198
|
+
selectorKey: SelectorKeysEnum;
|
|
199
|
+
};
|
|
200
|
+
secondaryInputButtonDesign: {
|
|
201
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
202
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
203
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
204
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
205
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
206
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
207
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
208
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
209
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
210
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
211
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
212
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
213
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
214
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
215
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
216
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
217
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
218
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
219
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
220
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
221
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
222
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
223
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
224
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
225
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
226
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
227
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
228
|
+
selectorKey: SelectorKeysEnum;
|
|
229
|
+
};
|
|
230
|
+
inputHeadingsDesign: {
|
|
231
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
232
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
233
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
234
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
235
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
236
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
237
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
238
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
239
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
240
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
241
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
242
|
+
selectorKey: SelectorKeysEnum;
|
|
243
|
+
};
|
|
244
|
+
paymentOptionsContainerDesign: {
|
|
245
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
246
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
247
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
248
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
249
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
250
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
251
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
252
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
253
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
254
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
255
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
256
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
258
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
259
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
260
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
261
|
+
selectorKey: SelectorKeysEnum;
|
|
262
|
+
};
|
|
263
|
+
primaryValueTextDesign: {
|
|
264
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
265
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
266
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
267
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
268
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
269
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
270
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
271
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
272
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
273
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
274
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
275
|
+
selectorKey: SelectorKeysEnum;
|
|
276
|
+
};
|
|
277
|
+
secondaryValueTextDesign: {
|
|
278
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
279
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
280
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
281
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
282
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
283
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
284
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
285
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
286
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
287
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
288
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
289
|
+
selectorKey: SelectorKeysEnum;
|
|
290
|
+
};
|
|
291
|
+
discardButtonDesign: {
|
|
292
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
293
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
294
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
295
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
296
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
297
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
298
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
299
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
300
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
301
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
302
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
303
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
304
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
305
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
306
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
307
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
308
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
309
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
310
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
311
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
312
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
313
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
314
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
315
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
316
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
317
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
318
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
319
|
+
selectorKey: SelectorKeysEnum;
|
|
320
|
+
};
|
|
321
|
+
noteContainerDesign: {
|
|
322
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
323
|
+
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
324
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
325
|
+
iconColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
326
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
327
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
328
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
329
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
330
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
331
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
332
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
333
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
334
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
335
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
336
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
337
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
338
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
339
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
340
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
341
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
342
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
343
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
344
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
345
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
346
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
347
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
348
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
349
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
350
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
351
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
352
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
353
|
+
selectorKey: SelectorKeysEnum;
|
|
354
|
+
};
|
|
355
|
+
checkboxLabelDesign: {
|
|
356
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
357
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
358
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
359
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
360
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
361
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
362
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
363
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
364
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
365
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
366
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
367
|
+
selectorKey: SelectorKeysEnum;
|
|
368
|
+
};
|
|
369
|
+
};
|
|
370
|
+
content: {
|
|
371
|
+
selectorKey: SelectorKeysEnum;
|
|
372
|
+
showTitle: {
|
|
373
|
+
value: boolean;
|
|
374
|
+
property: string;
|
|
375
|
+
propertyType: CMSElementEditTypes;
|
|
376
|
+
};
|
|
377
|
+
title: {
|
|
378
|
+
value: string;
|
|
379
|
+
property: string;
|
|
380
|
+
propertyType: CMSElementEditTypes;
|
|
381
|
+
};
|
|
382
|
+
showDescription: {
|
|
383
|
+
value: boolean;
|
|
384
|
+
property: string;
|
|
385
|
+
propertyType: CMSElementEditTypes;
|
|
386
|
+
};
|
|
387
|
+
description: {
|
|
388
|
+
value: string;
|
|
389
|
+
property: string;
|
|
390
|
+
propertyType: CMSElementEditTypes;
|
|
391
|
+
};
|
|
392
|
+
shippingAddressLabel: {
|
|
393
|
+
value: string;
|
|
394
|
+
property: string;
|
|
395
|
+
propertyType: CMSElementEditTypes;
|
|
396
|
+
};
|
|
397
|
+
shippingMethodLabel: {
|
|
398
|
+
value: string;
|
|
399
|
+
property: string;
|
|
400
|
+
propertyType: CMSElementEditTypes;
|
|
401
|
+
};
|
|
402
|
+
paymentOptionsLabel: {
|
|
403
|
+
value: string;
|
|
404
|
+
property: string;
|
|
405
|
+
propertyType: CMSElementEditTypes;
|
|
406
|
+
};
|
|
407
|
+
creditCardLabel: {
|
|
408
|
+
value: string;
|
|
409
|
+
property: string;
|
|
410
|
+
propertyType: CMSElementEditTypes;
|
|
411
|
+
};
|
|
412
|
+
giftCardLabel: {
|
|
413
|
+
value: string;
|
|
414
|
+
property: string;
|
|
415
|
+
propertyType: CMSElementEditTypes;
|
|
416
|
+
};
|
|
417
|
+
selectBillingAddressLabel: {
|
|
418
|
+
value: string;
|
|
419
|
+
property: string;
|
|
420
|
+
propertyType: CMSElementEditTypes;
|
|
421
|
+
};
|
|
422
|
+
otherPaymentOptionsLabel: {
|
|
423
|
+
value: string;
|
|
424
|
+
property: string;
|
|
425
|
+
propertyType: CMSElementEditTypes;
|
|
426
|
+
};
|
|
427
|
+
createAddressLabel: {
|
|
428
|
+
value: string;
|
|
429
|
+
property: string;
|
|
430
|
+
propertyType: CMSElementEditTypes;
|
|
431
|
+
};
|
|
432
|
+
showStandardDelivery: {
|
|
433
|
+
value: boolean;
|
|
434
|
+
property: string;
|
|
435
|
+
propertyType: CMSElementEditTypes;
|
|
436
|
+
};
|
|
437
|
+
showExpressDelivery: {
|
|
438
|
+
value: boolean;
|
|
439
|
+
property: string;
|
|
440
|
+
propertyType: CMSElementEditTypes;
|
|
441
|
+
};
|
|
442
|
+
};
|
|
443
|
+
};
|