@sc-360-v2/storefront-cms-library 0.2.77 → 0.2.80
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/button.scss +1 -1
- package/dist/buy-for-tab-container.scss +89 -0
- package/dist/buy-for-tab.scss +579 -0
- package/dist/buy-for-tabs-container-item.scss +80 -0
- package/dist/buyForHeaders.scss +203 -0
- package/dist/buyForPopup.scss +227 -0
- package/dist/cart-details.scss +1 -1
- package/dist/cart-products-sidebar.scss +201 -0
- package/dist/cartDropdownOverlay.scss +34 -27
- package/dist/checkout.scss +173 -0
- package/dist/code-temp.scss +1 -1
- package/dist/container.scss +5 -0
- package/dist/functions.js +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/layouter.scss +9 -2
- package/dist/light-box-v2.scss +4 -0
- package/dist/product-image.scss +4 -0
- package/dist/quick-links.scss +249 -194
- package/dist/repeater-embla-controls.scss +71 -96
- package/dist/repeater.scss +8 -2
- package/dist/search.scss +30 -0
- package/dist/types/builder/elements/add-order/index.d.ts +1 -1
- package/dist/types/builder/elements/buy-for-tab/index.d.ts +46 -0
- package/dist/types/builder/elements/buy-for-tab-container/index.d.ts +45 -0
- package/dist/types/builder/elements/checkout/index.d.ts +27 -0
- package/dist/types/builder/enums/index.d.ts +6 -0
- package/dist/types/builder/index.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/bundle.d.ts +18 -0
- package/dist/types/builder/tools/element-edit/buyForTabContainer.d.ts +9 -0
- package/dist/types/builder/tools/element-edit/buyForWithTab.d.ts +215 -0
- package/dist/types/builder/tools/element-edit/checkout.d.ts +343 -0
- package/dist/types/builder/tools/element-edit/index.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/quickLinks.d.ts +90 -127
- package/dist/types/builder/tools/element-edit/section.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/storeLocations.d.ts +2 -1
- package/dist/uom-selector.scss +3 -3
- package/dist/widget.scss +7 -2
- package/package.json +1 -1
- package/dist/buyFor.scss +0 -153
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import { 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
|
+
SELECTED_STATE = "selected",
|
|
10
|
+
BUY_FOR_TAB_CONTAINER = "buyFortabContainer",
|
|
11
|
+
BUY_FOR_TAB_CONTENT_CONTAINER = "buyForTabContentContainer",
|
|
12
|
+
BUY_FOR_TABS = "buyForTabs"
|
|
13
|
+
}
|
|
14
|
+
export declare const getDefaultData: () => {
|
|
15
|
+
layout: {
|
|
16
|
+
selectorKey: SelectorKeysEnum;
|
|
17
|
+
width: {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
} | undefined;
|
|
20
|
+
height: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
21
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
22
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
23
|
+
overflowContent: CMSIBCommonInterface | undefined;
|
|
24
|
+
scrollDirection: CMSIBCommonInterface | undefined;
|
|
25
|
+
displayScrollbar: CMSIBCommonInterface | undefined;
|
|
26
|
+
positionType: CMSIBCommonInterface | undefined;
|
|
27
|
+
pinTo: CMSIBCommonInterface | undefined;
|
|
28
|
+
tabPosition: {
|
|
29
|
+
value: string;
|
|
30
|
+
property: string;
|
|
31
|
+
propertyType: CMSElementEditTypes;
|
|
32
|
+
};
|
|
33
|
+
tabLayout: {
|
|
34
|
+
value: string;
|
|
35
|
+
property: string;
|
|
36
|
+
propertyType: CMSElementEditTypes;
|
|
37
|
+
};
|
|
38
|
+
alignItems: {
|
|
39
|
+
value: string;
|
|
40
|
+
property: string;
|
|
41
|
+
propertyType: CMSElementEditTypes;
|
|
42
|
+
};
|
|
43
|
+
justifyContent: {
|
|
44
|
+
value: string;
|
|
45
|
+
property: string;
|
|
46
|
+
propertyType: CMSElementEditTypes;
|
|
47
|
+
};
|
|
48
|
+
tabSpacing: {
|
|
49
|
+
value: number;
|
|
50
|
+
unit: number;
|
|
51
|
+
property: string;
|
|
52
|
+
propertyType: CMSElementEditTypes;
|
|
53
|
+
};
|
|
54
|
+
tabContainerSpacing: {
|
|
55
|
+
value: number;
|
|
56
|
+
unit: number;
|
|
57
|
+
property: string;
|
|
58
|
+
propertyType: CMSElementEditTypes;
|
|
59
|
+
};
|
|
60
|
+
horizontalPadding: {
|
|
61
|
+
value: number;
|
|
62
|
+
unit: number;
|
|
63
|
+
property: string;
|
|
64
|
+
propertyType: CMSElementEditTypes;
|
|
65
|
+
};
|
|
66
|
+
verticalPadding: {
|
|
67
|
+
value: number;
|
|
68
|
+
unit: number;
|
|
69
|
+
property: string;
|
|
70
|
+
propertyType: CMSElementEditTypes;
|
|
71
|
+
};
|
|
72
|
+
overflowTabs: {
|
|
73
|
+
value: string;
|
|
74
|
+
property: string;
|
|
75
|
+
propertyType: CMSElementEditTypes;
|
|
76
|
+
};
|
|
77
|
+
spacingBetweenRows: {
|
|
78
|
+
value: number;
|
|
79
|
+
unit: number;
|
|
80
|
+
property: string;
|
|
81
|
+
propertyType: CMSElementEditTypes;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
design: {
|
|
85
|
+
selectorKey: SelectorKeysEnum;
|
|
86
|
+
tabContainer: {
|
|
87
|
+
borderColor: CMSIBCommonInterface;
|
|
88
|
+
borderStyle: CMSIBCommonInterface;
|
|
89
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
90
|
+
showBorder: CMSIBCommonInterface;
|
|
91
|
+
backgroundColor: CMSIBCommonInterface;
|
|
92
|
+
showShadow: CMSIBCommonInterface;
|
|
93
|
+
shadowColor: CMSIBCommonInterface;
|
|
94
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
95
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
96
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
97
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
98
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
99
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
100
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
101
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
102
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
103
|
+
selectorKey: SelectorKeysEnum;
|
|
104
|
+
};
|
|
105
|
+
tabs: {
|
|
106
|
+
selectorKey: SelectorKeysEnum;
|
|
107
|
+
defaultState: {
|
|
108
|
+
theme: CMSIBCommonInterface;
|
|
109
|
+
font: CMSIBCommonInterface;
|
|
110
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
111
|
+
textColor: CMSIBCommonInterface;
|
|
112
|
+
bold: CMSIBCommonInterface;
|
|
113
|
+
italic: CMSIBCommonInterface;
|
|
114
|
+
linethrough: CMSIBCommonInterface;
|
|
115
|
+
underline: CMSIBCommonInterface;
|
|
116
|
+
textAlign: CMSIBCommonInterface;
|
|
117
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
118
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
119
|
+
borderColor: CMSIBCommonInterface;
|
|
120
|
+
borderStyle: CMSIBCommonInterface;
|
|
121
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
122
|
+
showBorder: CMSIBCommonInterface;
|
|
123
|
+
backgroundColor: CMSIBCommonInterface;
|
|
124
|
+
showShadow: CMSIBCommonInterface;
|
|
125
|
+
shadowColor: CMSIBCommonInterface;
|
|
126
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
127
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
128
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
129
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
130
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
131
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
132
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
133
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
134
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
135
|
+
selectorKey: SelectorKeysEnum;
|
|
136
|
+
};
|
|
137
|
+
hoverState: {
|
|
138
|
+
theme: CMSIBCommonInterface;
|
|
139
|
+
font: CMSIBCommonInterface;
|
|
140
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
141
|
+
textColor: CMSIBCommonInterface;
|
|
142
|
+
bold: CMSIBCommonInterface;
|
|
143
|
+
italic: CMSIBCommonInterface;
|
|
144
|
+
linethrough: CMSIBCommonInterface;
|
|
145
|
+
underline: CMSIBCommonInterface;
|
|
146
|
+
textAlign: CMSIBCommonInterface;
|
|
147
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
148
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
149
|
+
borderColor: CMSIBCommonInterface;
|
|
150
|
+
borderStyle: CMSIBCommonInterface;
|
|
151
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
152
|
+
showBorder: CMSIBCommonInterface;
|
|
153
|
+
backgroundColor: CMSIBCommonInterface;
|
|
154
|
+
showShadow: CMSIBCommonInterface;
|
|
155
|
+
shadowColor: CMSIBCommonInterface;
|
|
156
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
157
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
158
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
159
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
160
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
161
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
162
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
163
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
164
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
165
|
+
selectorKey: SelectorKeysEnum;
|
|
166
|
+
};
|
|
167
|
+
selectedState: {
|
|
168
|
+
theme: CMSIBCommonInterface;
|
|
169
|
+
font: CMSIBCommonInterface;
|
|
170
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
171
|
+
textColor: CMSIBCommonInterface;
|
|
172
|
+
bold: CMSIBCommonInterface;
|
|
173
|
+
italic: CMSIBCommonInterface;
|
|
174
|
+
linethrough: CMSIBCommonInterface;
|
|
175
|
+
underline: CMSIBCommonInterface;
|
|
176
|
+
textAlign: CMSIBCommonInterface;
|
|
177
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
178
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
179
|
+
borderColor: CMSIBCommonInterface;
|
|
180
|
+
borderStyle: CMSIBCommonInterface;
|
|
181
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
182
|
+
showBorder: CMSIBCommonInterface;
|
|
183
|
+
backgroundColor: CMSIBCommonInterface;
|
|
184
|
+
showShadow: CMSIBCommonInterface;
|
|
185
|
+
shadowColor: CMSIBCommonInterface;
|
|
186
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
187
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
188
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
189
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
190
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
192
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
193
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
195
|
+
selectorKey: SelectorKeysEnum;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
content: {
|
|
200
|
+
selectorKey: SelectorKeysEnum;
|
|
201
|
+
tabContent: {
|
|
202
|
+
value: {
|
|
203
|
+
title: string;
|
|
204
|
+
contentSource: {
|
|
205
|
+
title: string;
|
|
206
|
+
content: {};
|
|
207
|
+
};
|
|
208
|
+
key: string;
|
|
209
|
+
}[];
|
|
210
|
+
property: string;
|
|
211
|
+
propertyType: CMSElementEditTypes;
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
export {};
|
|
@@ -0,0 +1,343 @@
|
|
|
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
|
+
CHECKOUT_ITEM_STYLES = "checkoutItemStyles",
|
|
10
|
+
CHECKOUT_HEADING_STYLES = "checkoutHeadingStyles",
|
|
11
|
+
CHECKOUT_ACTION_STYLES = "checkoutActionStyles",
|
|
12
|
+
PRODUCT_ACTIONS_STYLES = "productActionsStyles",
|
|
13
|
+
PRODUCT_NAME_STYLES = "productNameStyles",
|
|
14
|
+
PRODUCT_PRICE_STYLES = "productPriceStyles",
|
|
15
|
+
PRODUCT_INFORMATION_STYLES = "productInformationStyles",
|
|
16
|
+
PRODUCT_QUANTITY_STYLES = "productQuantityStyles"
|
|
17
|
+
}
|
|
18
|
+
export declare const getDefaultData: () => {
|
|
19
|
+
layout: {
|
|
20
|
+
selectorKey: SelectorKeysEnum;
|
|
21
|
+
width: {
|
|
22
|
+
value: number;
|
|
23
|
+
unit: CMSCSSUnitTypesEnums;
|
|
24
|
+
};
|
|
25
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
26
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
27
|
+
overflowContent: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
28
|
+
scrollDirection: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
29
|
+
displayScrollbar: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
30
|
+
positionType: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
31
|
+
pinTo: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
32
|
+
showTitle: {
|
|
33
|
+
value: boolean;
|
|
34
|
+
property: string;
|
|
35
|
+
propertyType: CMSElementEditTypes;
|
|
36
|
+
};
|
|
37
|
+
showNumberOfItems: {
|
|
38
|
+
value: boolean;
|
|
39
|
+
property: string;
|
|
40
|
+
propertyType: CMSElementEditTypes;
|
|
41
|
+
};
|
|
42
|
+
showActions: {
|
|
43
|
+
value: boolean;
|
|
44
|
+
property: string;
|
|
45
|
+
propertyType: CMSElementEditTypes;
|
|
46
|
+
};
|
|
47
|
+
showContinueShopping: {
|
|
48
|
+
value: boolean;
|
|
49
|
+
property: string;
|
|
50
|
+
propertyType: CMSElementEditTypes;
|
|
51
|
+
};
|
|
52
|
+
continueShoppingLinkTo: {
|
|
53
|
+
value: null;
|
|
54
|
+
property: string;
|
|
55
|
+
propertyType: CMSElementEditTypes;
|
|
56
|
+
};
|
|
57
|
+
continueShoppingLink: {
|
|
58
|
+
value: string;
|
|
59
|
+
property: string;
|
|
60
|
+
propertyType: CMSElementEditTypes;
|
|
61
|
+
};
|
|
62
|
+
showAddFromWishlist: {
|
|
63
|
+
value: boolean;
|
|
64
|
+
property: string;
|
|
65
|
+
propertyType: CMSElementEditTypes;
|
|
66
|
+
};
|
|
67
|
+
showCheckoutGrouping: {
|
|
68
|
+
value: boolean;
|
|
69
|
+
property: string;
|
|
70
|
+
propertyType: CMSElementEditTypes;
|
|
71
|
+
};
|
|
72
|
+
showClearCheckout: {
|
|
73
|
+
value: boolean;
|
|
74
|
+
property: string;
|
|
75
|
+
propertyType: CMSElementEditTypes;
|
|
76
|
+
};
|
|
77
|
+
clearCheckoutLinkTo: {
|
|
78
|
+
value: string;
|
|
79
|
+
property: string;
|
|
80
|
+
propertyType: CMSElementEditTypes;
|
|
81
|
+
};
|
|
82
|
+
clearCheckoutLink: {
|
|
83
|
+
value: string;
|
|
84
|
+
property: string;
|
|
85
|
+
propertyType: CMSElementEditTypes;
|
|
86
|
+
};
|
|
87
|
+
showDownloadCheckout: {
|
|
88
|
+
value: boolean;
|
|
89
|
+
property: string;
|
|
90
|
+
propertyType: CMSElementEditTypes;
|
|
91
|
+
};
|
|
92
|
+
showShareCheckout: {
|
|
93
|
+
value: boolean;
|
|
94
|
+
property: string;
|
|
95
|
+
propertyType: CMSElementEditTypes;
|
|
96
|
+
};
|
|
97
|
+
showPrintCheckout: {
|
|
98
|
+
value: boolean;
|
|
99
|
+
property: string;
|
|
100
|
+
propertyType: CMSElementEditTypes;
|
|
101
|
+
};
|
|
102
|
+
maxNumberOfActionsToShow: {
|
|
103
|
+
value: number;
|
|
104
|
+
property: string;
|
|
105
|
+
propertyType: CMSElementEditTypes;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
design: {
|
|
109
|
+
selectorKey: SelectorKeysEnum;
|
|
110
|
+
checkoutHeadingStyles: {
|
|
111
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
112
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
113
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
114
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
115
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
116
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
117
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
118
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
119
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
120
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
121
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
122
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
123
|
+
selectorKey: SelectorKeysEnum;
|
|
124
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
125
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
126
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
127
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
128
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
129
|
+
};
|
|
130
|
+
checkoutActionStyles: {
|
|
131
|
+
selectorKey: SelectorKeysEnum;
|
|
132
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
133
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
134
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
135
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
136
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
137
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
138
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
139
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
140
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
141
|
+
};
|
|
142
|
+
checkoutItemStyles: {
|
|
143
|
+
selectorKey: SelectorKeysEnum;
|
|
144
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
145
|
+
margin: {
|
|
146
|
+
isAll: boolean;
|
|
147
|
+
sides: {
|
|
148
|
+
top: {
|
|
149
|
+
value: number;
|
|
150
|
+
unit: number;
|
|
151
|
+
};
|
|
152
|
+
right: {
|
|
153
|
+
value: number;
|
|
154
|
+
unit: number;
|
|
155
|
+
};
|
|
156
|
+
bottom: {
|
|
157
|
+
value: number;
|
|
158
|
+
unit: number;
|
|
159
|
+
};
|
|
160
|
+
left: {
|
|
161
|
+
value: number;
|
|
162
|
+
unit: number;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
property: string;
|
|
166
|
+
propertyType: CMSElementEditTypes;
|
|
167
|
+
};
|
|
168
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
169
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
170
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
171
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
172
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
173
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
174
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
175
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
176
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
177
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
178
|
+
};
|
|
179
|
+
productActionsStyles: {
|
|
180
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
181
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
182
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
183
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
184
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
185
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
186
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
187
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
188
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
189
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
190
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
191
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
192
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
193
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
194
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
195
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
196
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
197
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
198
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
199
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
200
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
201
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
202
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
203
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
204
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
205
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
206
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
207
|
+
selectorKey: SelectorKeysEnum;
|
|
208
|
+
};
|
|
209
|
+
productNameStyles: {
|
|
210
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
211
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
212
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
213
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
214
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
215
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
216
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
217
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
218
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
219
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
220
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
221
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
222
|
+
selectorKey: SelectorKeysEnum;
|
|
223
|
+
};
|
|
224
|
+
productPriceStyles: {
|
|
225
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
226
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
227
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
228
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
229
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
230
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
231
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
232
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
233
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
234
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
235
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
236
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
237
|
+
selectorKey: SelectorKeysEnum;
|
|
238
|
+
};
|
|
239
|
+
productInformationStyles: {
|
|
240
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
241
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
242
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
243
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
244
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
245
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
246
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
247
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
248
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
249
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
250
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
251
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
252
|
+
selectorKey: SelectorKeysEnum;
|
|
253
|
+
};
|
|
254
|
+
productQuantityStyles: {
|
|
255
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
256
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
257
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
258
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
259
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
260
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
261
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
262
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
263
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
264
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
265
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
266
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
267
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
268
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
269
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
270
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
271
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
272
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
273
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
274
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
275
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
276
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
277
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
278
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
279
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
280
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
281
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
282
|
+
selectorKey: SelectorKeysEnum;
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
content: {
|
|
286
|
+
selectorKey: SelectorKeysEnum;
|
|
287
|
+
title: {
|
|
288
|
+
value: string;
|
|
289
|
+
property: string;
|
|
290
|
+
propertyType: CMSElementEditTypes;
|
|
291
|
+
};
|
|
292
|
+
showProductTitle: {
|
|
293
|
+
value: boolean;
|
|
294
|
+
property: string;
|
|
295
|
+
propertyType: CMSElementEditTypes;
|
|
296
|
+
};
|
|
297
|
+
showQuantity: {
|
|
298
|
+
value: boolean;
|
|
299
|
+
property: string;
|
|
300
|
+
propertyType: CMSElementEditTypes;
|
|
301
|
+
};
|
|
302
|
+
showPrice: {
|
|
303
|
+
value: boolean;
|
|
304
|
+
property: string;
|
|
305
|
+
propertyType: CMSElementEditTypes;
|
|
306
|
+
};
|
|
307
|
+
showProductCode: {
|
|
308
|
+
value: boolean;
|
|
309
|
+
property: string;
|
|
310
|
+
propertyType: CMSElementEditTypes;
|
|
311
|
+
};
|
|
312
|
+
showProductOptions: {
|
|
313
|
+
value: boolean;
|
|
314
|
+
property: string;
|
|
315
|
+
propertyType: CMSElementEditTypes;
|
|
316
|
+
};
|
|
317
|
+
showProductImage: {
|
|
318
|
+
value: boolean;
|
|
319
|
+
property: string;
|
|
320
|
+
propertyType: CMSElementEditTypes;
|
|
321
|
+
};
|
|
322
|
+
showCustomizations: {
|
|
323
|
+
value: boolean;
|
|
324
|
+
property: string;
|
|
325
|
+
propertyType: CMSElementEditTypes;
|
|
326
|
+
};
|
|
327
|
+
showEdit: {
|
|
328
|
+
value: boolean;
|
|
329
|
+
property: string;
|
|
330
|
+
propertyType: CMSElementEditTypes;
|
|
331
|
+
};
|
|
332
|
+
showMoveToWishlist: {
|
|
333
|
+
value: boolean;
|
|
334
|
+
property: string;
|
|
335
|
+
propertyType: CMSElementEditTypes;
|
|
336
|
+
};
|
|
337
|
+
showRemove: {
|
|
338
|
+
value: boolean;
|
|
339
|
+
property: string;
|
|
340
|
+
propertyType: CMSElementEditTypes;
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
};
|
|
@@ -70,6 +70,7 @@ import * as searchResultsHeading from "./searchResultsHeading";
|
|
|
70
70
|
import * as itemStock from "./itemStock";
|
|
71
71
|
import * as cartDetails from "./cartDetails";
|
|
72
72
|
import * as cartSummary from "./cartSummary";
|
|
73
|
+
import * as checkout from "./checkout";
|
|
73
74
|
import * as allocationDetails from "./allocationDetails";
|
|
74
75
|
import * as line from "./line";
|
|
75
76
|
import * as tabsV2 from "./tabsV2";
|
|
@@ -78,4 +79,6 @@ import * as marchandiserSets from "./marchandiserSets";
|
|
|
78
79
|
import * as createForm from "./createForm";
|
|
79
80
|
import * as quickLinks from "./quickLinks";
|
|
80
81
|
import * as addOrder from "./addOrder";
|
|
81
|
-
|
|
82
|
+
import * as buyForWithTabs from "./buyForWithTab";
|
|
83
|
+
import * as buyForTabsContainer from "./buyForTabContainer";
|
|
84
|
+
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, };
|