@sc-360-v2/storefront-cms-library 0.3.48 → 0.3.49
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/add-products-tab.scss +46 -12
- package/dist/builder.js +1 -1
- package/dist/buy-for-tab.scss +31 -34
- package/dist/buyForHeaders.scss +869 -55
- package/dist/cart-details.scss +4 -1
- package/dist/cart-summary.scss +161 -0
- package/dist/checkout.scss +4 -0
- package/dist/confirmationModal.scss +0 -1
- package/dist/order-status.scss +95 -52
- package/dist/shipping-payments.scss +4 -0
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +23 -1
- package/dist/types/builder/tools/element-edit/buyForWithTab.d.ts +990 -210
- package/dist/types/builder/tools/element-edit/userElements.d.ts +120 -0
- package/dist/user-elements copy.scss +1437 -0
- package/dist/user-elements.scss +263 -175
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CMSElementEditTypes } from "../../enums";
|
|
1
|
+
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
2
2
|
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
3
3
|
declare enum SelectorKeysEnum {
|
|
4
4
|
LAYOUT = "layout",
|
|
@@ -8,8 +8,27 @@ declare enum SelectorKeysEnum {
|
|
|
8
8
|
HOVER_STATE = "hoverState",
|
|
9
9
|
SELECTED_STATE = "selected",
|
|
10
10
|
BUY_FOR_TAB_CONTAINER = "buyFortabContainer",
|
|
11
|
+
TAB_CONTAINER = "tabContainer",
|
|
12
|
+
BUY_FOR_WRAPPER = "buyForWrapper",
|
|
13
|
+
BUY_FOR_CONTAINER = "buyForContainer",
|
|
14
|
+
BUY_FOR_HEADER = "buyForHeader",
|
|
15
|
+
HEADER_CONTAINER = "headerContainer",
|
|
16
|
+
TITLE = "title",
|
|
17
|
+
ACTIE_TAB_TITLE = "activeTabTitle",
|
|
18
|
+
USER_INFO = "userInfo",
|
|
19
|
+
MANAGE_EMPLOYEE = "manageEmployee",
|
|
20
|
+
EMPLOYEE_DETAILS_WRAPPER = "employeeDetailsWrapper",
|
|
21
|
+
EMPLOYEE_DETAILS_CONTAINER = "employeeDetailsContainer",
|
|
22
|
+
NAME = "name",
|
|
23
|
+
CART_ICON = "cartIcon",
|
|
24
|
+
MINI_CART_TEXT = "miniCartText",
|
|
25
|
+
CART_ITEMS_COUNT = "cartItemsCount",
|
|
26
|
+
EMPLOYEE_DETAILS = "employeeDetails",
|
|
27
|
+
SHIPPING_DETAILS = "shippingDetails",
|
|
28
|
+
MY_CART = "myCart",
|
|
11
29
|
BUY_FOR_TAB_CONTENT_CONTAINER = "buyForTabContentContainer",
|
|
12
30
|
BUY_FOR_TABS = "buyForTabs",
|
|
31
|
+
TABS = "tabs",
|
|
13
32
|
BUY_FOR_PAGE_TITLE = "pageTitleStyles",
|
|
14
33
|
MANAGE_EMPLOYEES_LABEL_STYLES = "manageEmployeesLabelStyles",
|
|
15
34
|
SWITCH_EMPLOYEE_LABEL_STYLES = "switchEmployeeLabelStyles",
|
|
@@ -22,6 +41,26 @@ declare enum SelectorKeysEnum {
|
|
|
22
41
|
}
|
|
23
42
|
export declare const getDefaultData: () => {
|
|
24
43
|
layout: {
|
|
44
|
+
whenClicked: {
|
|
45
|
+
value: string;
|
|
46
|
+
property: string;
|
|
47
|
+
propertyType: CMSElementEditTypes;
|
|
48
|
+
};
|
|
49
|
+
showCartText: {
|
|
50
|
+
value: boolean;
|
|
51
|
+
property: string;
|
|
52
|
+
propertyType: CMSElementEditTypes;
|
|
53
|
+
};
|
|
54
|
+
cartText: {
|
|
55
|
+
value: string;
|
|
56
|
+
property: string;
|
|
57
|
+
propertyType: CMSElementEditTypes;
|
|
58
|
+
};
|
|
59
|
+
showNoOfItems: {
|
|
60
|
+
value: boolean;
|
|
61
|
+
property: string;
|
|
62
|
+
propertyType: CMSElementEditTypes;
|
|
63
|
+
};
|
|
25
64
|
positionType: CMSIBCommonInterface | undefined;
|
|
26
65
|
pinTo: CMSIBCommonInterface | undefined;
|
|
27
66
|
tabPosition: {
|
|
@@ -93,208 +132,85 @@ export declare const getDefaultData: () => {
|
|
|
93
132
|
};
|
|
94
133
|
design: {
|
|
95
134
|
selectorKey: SelectorKeysEnum;
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
value:
|
|
99
|
-
unit:
|
|
100
|
-
property: string;
|
|
101
|
-
propertyType: CMSElementEditTypes;
|
|
102
|
-
parentRef: string;
|
|
103
|
-
};
|
|
104
|
-
theme: CMSIBCommonInterface;
|
|
105
|
-
font: CMSIBCommonInterface;
|
|
106
|
-
textColor: CMSIBCommonInterface;
|
|
107
|
-
bold: CMSIBCommonInterface;
|
|
108
|
-
italic: CMSIBCommonInterface;
|
|
109
|
-
linethrough: CMSIBCommonInterface;
|
|
110
|
-
underline: CMSIBCommonInterface;
|
|
111
|
-
textAlign: CMSIBCommonInterface;
|
|
112
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
113
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
114
|
-
selectorKey: SelectorKeysEnum;
|
|
115
|
-
};
|
|
116
|
-
manageEmployeesLabelStyles: {
|
|
117
|
-
fontSize: {
|
|
118
|
-
value: number;
|
|
119
|
-
unit: number;
|
|
120
|
-
property: string;
|
|
121
|
-
propertyType: CMSElementEditTypes;
|
|
122
|
-
parentRef: string;
|
|
123
|
-
};
|
|
124
|
-
textColor: {
|
|
125
|
-
value: {
|
|
126
|
-
hex: string;
|
|
127
|
-
rgb: {
|
|
128
|
-
r: string;
|
|
129
|
-
g: string;
|
|
130
|
-
b: string;
|
|
131
|
-
a: number;
|
|
132
|
-
};
|
|
133
|
-
};
|
|
134
|
-
property: string;
|
|
135
|
-
propertyType: CMSElementEditTypes;
|
|
136
|
-
parentRef: string;
|
|
137
|
-
};
|
|
138
|
-
theme: CMSIBCommonInterface;
|
|
139
|
-
font: CMSIBCommonInterface;
|
|
140
|
-
bold: CMSIBCommonInterface;
|
|
141
|
-
italic: CMSIBCommonInterface;
|
|
142
|
-
linethrough: CMSIBCommonInterface;
|
|
143
|
-
underline: CMSIBCommonInterface;
|
|
144
|
-
textAlign: CMSIBCommonInterface;
|
|
145
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
146
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
147
|
-
selectorKey: SelectorKeysEnum;
|
|
148
|
-
};
|
|
149
|
-
switchEmployeeLabelStyles: {
|
|
150
|
-
theme: CMSIBCommonInterface;
|
|
151
|
-
font: CMSIBCommonInterface;
|
|
152
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
153
|
-
textColor: CMSIBCommonInterface;
|
|
154
|
-
bold: CMSIBCommonInterface;
|
|
155
|
-
italic: CMSIBCommonInterface;
|
|
156
|
-
linethrough: CMSIBCommonInterface;
|
|
157
|
-
underline: CMSIBCommonInterface;
|
|
158
|
-
textAlign: CMSIBCommonInterface;
|
|
159
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
160
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
161
|
-
selectorKey: SelectorKeysEnum;
|
|
162
|
-
};
|
|
163
|
-
switchEmployeeOptionStyles: {
|
|
164
|
-
theme: CMSIBCommonInterface;
|
|
165
|
-
font: CMSIBCommonInterface;
|
|
166
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
167
|
-
textColor: CMSIBCommonInterface;
|
|
168
|
-
bold: CMSIBCommonInterface;
|
|
169
|
-
italic: CMSIBCommonInterface;
|
|
170
|
-
linethrough: CMSIBCommonInterface;
|
|
171
|
-
underline: CMSIBCommonInterface;
|
|
172
|
-
textAlign: CMSIBCommonInterface;
|
|
173
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
174
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
175
|
-
selectorKey: SelectorKeysEnum;
|
|
176
|
-
};
|
|
177
|
-
employeeSectonStyles: {
|
|
178
|
-
theme: CMSIBCommonInterface;
|
|
179
|
-
font: CMSIBCommonInterface;
|
|
180
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
181
|
-
textColor: CMSIBCommonInterface;
|
|
182
|
-
bold: CMSIBCommonInterface;
|
|
183
|
-
italic: CMSIBCommonInterface;
|
|
184
|
-
linethrough: CMSIBCommonInterface;
|
|
185
|
-
underline: CMSIBCommonInterface;
|
|
186
|
-
textAlign: CMSIBCommonInterface;
|
|
187
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
188
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
189
|
-
selectorKey: SelectorKeysEnum;
|
|
190
|
-
};
|
|
191
|
-
employeeNameStyles: {
|
|
192
|
-
fontSize: {
|
|
193
|
-
value: number;
|
|
194
|
-
unit: number;
|
|
135
|
+
tabContainer: {
|
|
136
|
+
itemGap: {
|
|
137
|
+
value: CMSCSSUnitTypesEnums;
|
|
138
|
+
unit: CMSCSSUnitTypesEnums;
|
|
195
139
|
property: string;
|
|
196
140
|
propertyType: CMSElementEditTypes;
|
|
197
|
-
parentRef: string;
|
|
198
141
|
};
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
142
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
143
|
+
borderColor: CMSIBCommonInterface;
|
|
144
|
+
borderStyle: CMSIBCommonInterface;
|
|
145
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
146
|
+
showBorder: CMSIBCommonInterface;
|
|
147
|
+
backgroundColor: CMSIBCommonInterface;
|
|
148
|
+
showShadow: CMSIBCommonInterface;
|
|
149
|
+
shadowColor: CMSIBCommonInterface;
|
|
150
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
151
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
152
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
153
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
154
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
155
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
156
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
157
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
158
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
209
159
|
selectorKey: SelectorKeysEnum;
|
|
210
160
|
};
|
|
211
|
-
|
|
212
|
-
fontSize: {
|
|
213
|
-
value: number;
|
|
214
|
-
unit: number;
|
|
215
|
-
property: string;
|
|
216
|
-
propertyType: CMSElementEditTypes;
|
|
217
|
-
parentRef: string;
|
|
218
|
-
};
|
|
219
|
-
theme: CMSIBCommonInterface;
|
|
220
|
-
font: CMSIBCommonInterface;
|
|
221
|
-
textColor: CMSIBCommonInterface;
|
|
222
|
-
bold: CMSIBCommonInterface;
|
|
223
|
-
italic: CMSIBCommonInterface;
|
|
224
|
-
linethrough: CMSIBCommonInterface;
|
|
225
|
-
underline: CMSIBCommonInterface;
|
|
226
|
-
textAlign: CMSIBCommonInterface;
|
|
227
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
228
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
161
|
+
tabs: {
|
|
229
162
|
selectorKey: SelectorKeysEnum;
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
r: string;
|
|
237
|
-
g: string;
|
|
238
|
-
b: string;
|
|
239
|
-
a: number;
|
|
240
|
-
};
|
|
163
|
+
defaultState: {
|
|
164
|
+
itemGap: {
|
|
165
|
+
value: CMSCSSUnitTypesEnums;
|
|
166
|
+
unit: CMSCSSUnitTypesEnums;
|
|
167
|
+
property: string;
|
|
168
|
+
propertyType: CMSElementEditTypes;
|
|
241
169
|
};
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
170
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
171
|
+
theme: CMSIBCommonInterface;
|
|
172
|
+
font: CMSIBCommonInterface;
|
|
173
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
174
|
+
textColor: CMSIBCommonInterface;
|
|
175
|
+
bold: CMSIBCommonInterface;
|
|
176
|
+
italic: CMSIBCommonInterface;
|
|
177
|
+
linethrough: CMSIBCommonInterface;
|
|
178
|
+
underline: CMSIBCommonInterface;
|
|
179
|
+
textAlign: CMSIBCommonInterface;
|
|
180
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
181
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
182
|
+
borderColor: CMSIBCommonInterface;
|
|
183
|
+
borderStyle: CMSIBCommonInterface;
|
|
184
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
185
|
+
showBorder: CMSIBCommonInterface;
|
|
186
|
+
backgroundColor: CMSIBCommonInterface;
|
|
187
|
+
showShadow: CMSIBCommonInterface;
|
|
188
|
+
shadowColor: 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;
|
|
245
198
|
};
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
unit: number;
|
|
249
|
-
property: string;
|
|
250
|
-
propertyType: CMSElementEditTypes;
|
|
251
|
-
parentRef: string;
|
|
199
|
+
hoverState: {
|
|
200
|
+
selectorKey: SelectorKeysEnum;
|
|
252
201
|
};
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
bold: CMSIBCommonInterface;
|
|
256
|
-
italic: CMSIBCommonInterface;
|
|
257
|
-
linethrough: CMSIBCommonInterface;
|
|
258
|
-
underline: CMSIBCommonInterface;
|
|
259
|
-
textAlign: CMSIBCommonInterface;
|
|
260
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
261
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
262
|
-
selectorKey: SelectorKeysEnum;
|
|
263
|
-
};
|
|
264
|
-
employeeDetailSubTitleStyles: {
|
|
265
|
-
fontSize: {
|
|
266
|
-
value: number;
|
|
267
|
-
unit: number;
|
|
268
|
-
property: string;
|
|
269
|
-
propertyType: CMSElementEditTypes;
|
|
270
|
-
parentRef: string;
|
|
202
|
+
selectedState: {
|
|
203
|
+
selectorKey: SelectorKeysEnum;
|
|
271
204
|
};
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
g: string;
|
|
278
|
-
b: string;
|
|
279
|
-
a: number;
|
|
280
|
-
};
|
|
281
|
-
};
|
|
205
|
+
};
|
|
206
|
+
buyForWrapper: {
|
|
207
|
+
itemGap: {
|
|
208
|
+
value: CMSCSSUnitTypesEnums;
|
|
209
|
+
unit: CMSCSSUnitTypesEnums;
|
|
282
210
|
property: string;
|
|
283
211
|
propertyType: CMSElementEditTypes;
|
|
284
|
-
parentRef: string;
|
|
285
212
|
};
|
|
286
|
-
|
|
287
|
-
font: CMSIBCommonInterface;
|
|
288
|
-
bold: CMSIBCommonInterface;
|
|
289
|
-
italic: CMSIBCommonInterface;
|
|
290
|
-
linethrough: CMSIBCommonInterface;
|
|
291
|
-
underline: CMSIBCommonInterface;
|
|
292
|
-
textAlign: CMSIBCommonInterface;
|
|
293
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
294
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
295
|
-
selectorKey: SelectorKeysEnum;
|
|
296
|
-
};
|
|
297
|
-
tabContainer: {
|
|
213
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
298
214
|
borderColor: CMSIBCommonInterface;
|
|
299
215
|
borderStyle: CMSIBCommonInterface;
|
|
300
216
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -313,18 +229,45 @@ export declare const getDefaultData: () => {
|
|
|
313
229
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
314
230
|
selectorKey: SelectorKeysEnum;
|
|
315
231
|
};
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
232
|
+
buyForHeader: {
|
|
233
|
+
itemGap: {
|
|
234
|
+
value: CMSCSSUnitTypesEnums;
|
|
235
|
+
unit: CMSCSSUnitTypesEnums;
|
|
236
|
+
property: string;
|
|
237
|
+
propertyType: CMSElementEditTypes;
|
|
238
|
+
};
|
|
239
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
240
|
+
headerContainer: {
|
|
241
|
+
itemGap: {
|
|
242
|
+
value: CMSCSSUnitTypesEnums;
|
|
243
|
+
unit: CMSCSSUnitTypesEnums;
|
|
322
244
|
property: string;
|
|
323
245
|
propertyType: CMSElementEditTypes;
|
|
324
|
-
parentRef: string;
|
|
325
246
|
};
|
|
247
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
248
|
+
borderColor: CMSIBCommonInterface;
|
|
249
|
+
borderStyle: CMSIBCommonInterface;
|
|
250
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
251
|
+
showBorder: CMSIBCommonInterface;
|
|
252
|
+
backgroundColor: CMSIBCommonInterface;
|
|
253
|
+
showShadow: CMSIBCommonInterface;
|
|
254
|
+
shadowColor: CMSIBCommonInterface;
|
|
255
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
256
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
258
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
259
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
260
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
261
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
262
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
263
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
264
|
+
selectorKey: SelectorKeysEnum;
|
|
265
|
+
};
|
|
266
|
+
title: {
|
|
267
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
326
268
|
theme: CMSIBCommonInterface;
|
|
327
269
|
font: CMSIBCommonInterface;
|
|
270
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
328
271
|
textColor: CMSIBCommonInterface;
|
|
329
272
|
bold: CMSIBCommonInterface;
|
|
330
273
|
italic: CMSIBCommonInterface;
|
|
@@ -351,16 +294,11 @@ export declare const getDefaultData: () => {
|
|
|
351
294
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
352
295
|
selectorKey: SelectorKeysEnum;
|
|
353
296
|
};
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
value: number;
|
|
357
|
-
unit: number;
|
|
358
|
-
property: string;
|
|
359
|
-
propertyType: CMSElementEditTypes;
|
|
360
|
-
parentRef: string;
|
|
361
|
-
};
|
|
297
|
+
activeTabTitle: {
|
|
298
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
362
299
|
theme: CMSIBCommonInterface;
|
|
363
300
|
font: CMSIBCommonInterface;
|
|
301
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
364
302
|
textColor: CMSIBCommonInterface;
|
|
365
303
|
bold: CMSIBCommonInterface;
|
|
366
304
|
italic: CMSIBCommonInterface;
|
|
@@ -387,16 +325,136 @@ export declare const getDefaultData: () => {
|
|
|
387
325
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
388
326
|
selectorKey: SelectorKeysEnum;
|
|
389
327
|
};
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
328
|
+
userInfo: {
|
|
329
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
330
|
+
theme: CMSIBCommonInterface;
|
|
331
|
+
font: CMSIBCommonInterface;
|
|
332
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
333
|
+
textColor: CMSIBCommonInterface;
|
|
334
|
+
bold: CMSIBCommonInterface;
|
|
335
|
+
italic: CMSIBCommonInterface;
|
|
336
|
+
linethrough: CMSIBCommonInterface;
|
|
337
|
+
underline: CMSIBCommonInterface;
|
|
338
|
+
textAlign: CMSIBCommonInterface;
|
|
339
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
340
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
341
|
+
borderColor: CMSIBCommonInterface;
|
|
342
|
+
borderStyle: CMSIBCommonInterface;
|
|
343
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
344
|
+
showBorder: CMSIBCommonInterface;
|
|
345
|
+
backgroundColor: CMSIBCommonInterface;
|
|
346
|
+
showShadow: CMSIBCommonInterface;
|
|
347
|
+
shadowColor: CMSIBCommonInterface;
|
|
348
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
349
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
350
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
351
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
352
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
353
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
354
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
355
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
356
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
357
|
+
selectorKey: SelectorKeysEnum;
|
|
358
|
+
};
|
|
359
|
+
manageEmployee: {
|
|
360
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
361
|
+
theme: CMSIBCommonInterface;
|
|
362
|
+
font: CMSIBCommonInterface;
|
|
363
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
364
|
+
textColor: CMSIBCommonInterface;
|
|
365
|
+
bold: CMSIBCommonInterface;
|
|
366
|
+
italic: CMSIBCommonInterface;
|
|
367
|
+
linethrough: CMSIBCommonInterface;
|
|
368
|
+
underline: CMSIBCommonInterface;
|
|
369
|
+
textAlign: CMSIBCommonInterface;
|
|
370
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
371
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
372
|
+
borderColor: CMSIBCommonInterface;
|
|
373
|
+
borderStyle: CMSIBCommonInterface;
|
|
374
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
375
|
+
showBorder: CMSIBCommonInterface;
|
|
376
|
+
backgroundColor: CMSIBCommonInterface;
|
|
377
|
+
showShadow: CMSIBCommonInterface;
|
|
378
|
+
shadowColor: CMSIBCommonInterface;
|
|
379
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
380
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
381
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
382
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
383
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
384
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
385
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
386
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
387
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
388
|
+
selectorKey: SelectorKeysEnum;
|
|
389
|
+
};
|
|
390
|
+
borderColor: CMSIBCommonInterface;
|
|
391
|
+
borderStyle: CMSIBCommonInterface;
|
|
392
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
393
|
+
showBorder: CMSIBCommonInterface;
|
|
394
|
+
backgroundColor: CMSIBCommonInterface;
|
|
395
|
+
showShadow: CMSIBCommonInterface;
|
|
396
|
+
shadowColor: CMSIBCommonInterface;
|
|
397
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
398
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
399
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
400
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
401
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
402
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
403
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
404
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
405
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
406
|
+
selectorKey: SelectorKeysEnum;
|
|
407
|
+
};
|
|
408
|
+
employeeDetailsWrapper: {
|
|
409
|
+
itemGap: {
|
|
410
|
+
value: CMSCSSUnitTypesEnums;
|
|
411
|
+
unit: CMSCSSUnitTypesEnums;
|
|
412
|
+
property: string;
|
|
413
|
+
propertyType: CMSElementEditTypes;
|
|
414
|
+
};
|
|
415
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
416
|
+
employeeDetailsContainer: {
|
|
417
|
+
itemGap: {
|
|
418
|
+
value: CMSCSSUnitTypesEnums;
|
|
419
|
+
unit: CMSCSSUnitTypesEnums;
|
|
394
420
|
property: string;
|
|
395
421
|
propertyType: CMSElementEditTypes;
|
|
396
|
-
parentRef: string;
|
|
397
422
|
};
|
|
423
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
424
|
+
theme: CMSIBCommonInterface;
|
|
425
|
+
font: CMSIBCommonInterface;
|
|
426
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
427
|
+
textColor: CMSIBCommonInterface;
|
|
428
|
+
bold: CMSIBCommonInterface;
|
|
429
|
+
italic: CMSIBCommonInterface;
|
|
430
|
+
linethrough: CMSIBCommonInterface;
|
|
431
|
+
underline: CMSIBCommonInterface;
|
|
432
|
+
textAlign: CMSIBCommonInterface;
|
|
433
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
434
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
435
|
+
borderColor: CMSIBCommonInterface;
|
|
436
|
+
borderStyle: CMSIBCommonInterface;
|
|
437
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
438
|
+
showBorder: CMSIBCommonInterface;
|
|
439
|
+
backgroundColor: CMSIBCommonInterface;
|
|
440
|
+
showShadow: CMSIBCommonInterface;
|
|
441
|
+
shadowColor: CMSIBCommonInterface;
|
|
442
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
443
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
444
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
445
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
446
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
447
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
448
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
449
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
450
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
451
|
+
selectorKey: SelectorKeysEnum;
|
|
452
|
+
};
|
|
453
|
+
name: {
|
|
454
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
398
455
|
theme: CMSIBCommonInterface;
|
|
399
456
|
font: CMSIBCommonInterface;
|
|
457
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
400
458
|
textColor: CMSIBCommonInterface;
|
|
401
459
|
bold: CMSIBCommonInterface;
|
|
402
460
|
italic: CMSIBCommonInterface;
|
|
@@ -423,6 +481,728 @@ export declare const getDefaultData: () => {
|
|
|
423
481
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
424
482
|
selectorKey: SelectorKeysEnum;
|
|
425
483
|
};
|
|
484
|
+
employeeDetails: {
|
|
485
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
486
|
+
theme: CMSIBCommonInterface;
|
|
487
|
+
font: CMSIBCommonInterface;
|
|
488
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
489
|
+
textColor: CMSIBCommonInterface;
|
|
490
|
+
bold: CMSIBCommonInterface;
|
|
491
|
+
italic: CMSIBCommonInterface;
|
|
492
|
+
linethrough: CMSIBCommonInterface;
|
|
493
|
+
underline: CMSIBCommonInterface;
|
|
494
|
+
textAlign: CMSIBCommonInterface;
|
|
495
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
496
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
497
|
+
borderColor: CMSIBCommonInterface;
|
|
498
|
+
borderStyle: CMSIBCommonInterface;
|
|
499
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
500
|
+
showBorder: CMSIBCommonInterface;
|
|
501
|
+
backgroundColor: CMSIBCommonInterface;
|
|
502
|
+
showShadow: CMSIBCommonInterface;
|
|
503
|
+
shadowColor: CMSIBCommonInterface;
|
|
504
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
505
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
506
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
507
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
508
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
509
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
510
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
511
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
512
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
513
|
+
selectorKey: SelectorKeysEnum;
|
|
514
|
+
};
|
|
515
|
+
shippingDetails: {
|
|
516
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
517
|
+
themeDesc: {
|
|
518
|
+
value: string;
|
|
519
|
+
property: string;
|
|
520
|
+
propertyType: CMSElementEditTypes;
|
|
521
|
+
};
|
|
522
|
+
fontDesc: {
|
|
523
|
+
value: string;
|
|
524
|
+
property: string;
|
|
525
|
+
propertyType: CMSElementEditTypes;
|
|
526
|
+
parentRef: string;
|
|
527
|
+
};
|
|
528
|
+
fontSizeDesc: {
|
|
529
|
+
value: number;
|
|
530
|
+
unit: number;
|
|
531
|
+
property: string;
|
|
532
|
+
propertyType: CMSElementEditTypes;
|
|
533
|
+
parentRef: string;
|
|
534
|
+
};
|
|
535
|
+
textColorDesc: {
|
|
536
|
+
value: {
|
|
537
|
+
hex: string;
|
|
538
|
+
rgb: {
|
|
539
|
+
r: string;
|
|
540
|
+
g: string;
|
|
541
|
+
b: string;
|
|
542
|
+
a: number;
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
property: string;
|
|
546
|
+
propertyType: CMSElementEditTypes;
|
|
547
|
+
parentRef: string;
|
|
548
|
+
};
|
|
549
|
+
textHighlightDesc: {
|
|
550
|
+
value: {
|
|
551
|
+
hex: string;
|
|
552
|
+
rgb: {
|
|
553
|
+
r: string;
|
|
554
|
+
g: string;
|
|
555
|
+
b: string;
|
|
556
|
+
a: number;
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
property: string;
|
|
560
|
+
propertyType: CMSElementEditTypes;
|
|
561
|
+
};
|
|
562
|
+
boldDesc: {
|
|
563
|
+
value: string;
|
|
564
|
+
property: string;
|
|
565
|
+
propertyType: CMSElementEditTypes;
|
|
566
|
+
parentRef: string;
|
|
567
|
+
};
|
|
568
|
+
italicDesc: {
|
|
569
|
+
value: string;
|
|
570
|
+
property: string;
|
|
571
|
+
propertyType: CMSElementEditTypes;
|
|
572
|
+
parentRef: string;
|
|
573
|
+
};
|
|
574
|
+
linethroughDesc: {
|
|
575
|
+
value: string;
|
|
576
|
+
property: string;
|
|
577
|
+
propertyType: CMSElementEditTypes;
|
|
578
|
+
parentRef: string;
|
|
579
|
+
};
|
|
580
|
+
underlineDesc: {
|
|
581
|
+
value: string;
|
|
582
|
+
property: string;
|
|
583
|
+
propertyType: CMSElementEditTypes;
|
|
584
|
+
parentRef: string;
|
|
585
|
+
};
|
|
586
|
+
textAlignDesc: {
|
|
587
|
+
value: string;
|
|
588
|
+
property: string;
|
|
589
|
+
propertyType: CMSElementEditTypes;
|
|
590
|
+
parentRef: string;
|
|
591
|
+
};
|
|
592
|
+
characterSpacingDesc: {
|
|
593
|
+
value: number;
|
|
594
|
+
unit: number;
|
|
595
|
+
property: string;
|
|
596
|
+
propertyType: CMSElementEditTypes;
|
|
597
|
+
parentRef: string;
|
|
598
|
+
};
|
|
599
|
+
lineHeightDesc: {
|
|
600
|
+
value: number;
|
|
601
|
+
unit: number;
|
|
602
|
+
property: string;
|
|
603
|
+
propertyType: CMSElementEditTypes;
|
|
604
|
+
parentRef: string;
|
|
605
|
+
};
|
|
606
|
+
paragraphSpacingDesc: {
|
|
607
|
+
value: number;
|
|
608
|
+
unit: number;
|
|
609
|
+
property: string;
|
|
610
|
+
propertyType: CMSElementEditTypes;
|
|
611
|
+
parentRef: string;
|
|
612
|
+
};
|
|
613
|
+
theme: {
|
|
614
|
+
value: string;
|
|
615
|
+
property: string;
|
|
616
|
+
propertyType: CMSElementEditTypes;
|
|
617
|
+
};
|
|
618
|
+
font: {
|
|
619
|
+
value: string;
|
|
620
|
+
property: string;
|
|
621
|
+
propertyType: CMSElementEditTypes;
|
|
622
|
+
parentRef: string;
|
|
623
|
+
};
|
|
624
|
+
fontSize: {
|
|
625
|
+
value: number;
|
|
626
|
+
unit: number;
|
|
627
|
+
property: string;
|
|
628
|
+
propertyType: CMSElementEditTypes;
|
|
629
|
+
parentRef: string;
|
|
630
|
+
};
|
|
631
|
+
textColor: {
|
|
632
|
+
value: {
|
|
633
|
+
hex: string;
|
|
634
|
+
rgb: {
|
|
635
|
+
r: string;
|
|
636
|
+
g: string;
|
|
637
|
+
b: string;
|
|
638
|
+
a: number;
|
|
639
|
+
};
|
|
640
|
+
};
|
|
641
|
+
property: string;
|
|
642
|
+
propertyType: CMSElementEditTypes;
|
|
643
|
+
parentRef: string;
|
|
644
|
+
};
|
|
645
|
+
textHighlight: {
|
|
646
|
+
value: {
|
|
647
|
+
hex: string;
|
|
648
|
+
rgb: {
|
|
649
|
+
r: string;
|
|
650
|
+
g: string;
|
|
651
|
+
b: string;
|
|
652
|
+
a: number;
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
property: string;
|
|
656
|
+
propertyType: CMSElementEditTypes;
|
|
657
|
+
};
|
|
658
|
+
bold: {
|
|
659
|
+
value: string;
|
|
660
|
+
property: string;
|
|
661
|
+
propertyType: CMSElementEditTypes;
|
|
662
|
+
parentRef: string;
|
|
663
|
+
};
|
|
664
|
+
italic: {
|
|
665
|
+
value: string;
|
|
666
|
+
property: string;
|
|
667
|
+
propertyType: CMSElementEditTypes;
|
|
668
|
+
parentRef: string;
|
|
669
|
+
};
|
|
670
|
+
linethrough: {
|
|
671
|
+
value: string;
|
|
672
|
+
property: string;
|
|
673
|
+
propertyType: CMSElementEditTypes;
|
|
674
|
+
parentRef: string;
|
|
675
|
+
};
|
|
676
|
+
underline: {
|
|
677
|
+
value: string;
|
|
678
|
+
property: string;
|
|
679
|
+
propertyType: CMSElementEditTypes;
|
|
680
|
+
parentRef: string;
|
|
681
|
+
};
|
|
682
|
+
textAlign: {
|
|
683
|
+
value: string;
|
|
684
|
+
property: string;
|
|
685
|
+
propertyType: CMSElementEditTypes;
|
|
686
|
+
parentRef: string;
|
|
687
|
+
};
|
|
688
|
+
characterSpacing: {
|
|
689
|
+
value: number;
|
|
690
|
+
unit: number;
|
|
691
|
+
property: string;
|
|
692
|
+
propertyType: CMSElementEditTypes;
|
|
693
|
+
parentRef: string;
|
|
694
|
+
};
|
|
695
|
+
lineHeight: {
|
|
696
|
+
value: number;
|
|
697
|
+
unit: number;
|
|
698
|
+
property: string;
|
|
699
|
+
propertyType: CMSElementEditTypes;
|
|
700
|
+
parentRef: string;
|
|
701
|
+
};
|
|
702
|
+
paragraphSpacing: {
|
|
703
|
+
value: number;
|
|
704
|
+
unit: number;
|
|
705
|
+
property: string;
|
|
706
|
+
propertyType: CMSElementEditTypes;
|
|
707
|
+
parentRef: string;
|
|
708
|
+
};
|
|
709
|
+
borderColor: CMSIBCommonInterface;
|
|
710
|
+
borderStyle: CMSIBCommonInterface;
|
|
711
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
712
|
+
showBorder: CMSIBCommonInterface;
|
|
713
|
+
backgroundColor: CMSIBCommonInterface;
|
|
714
|
+
showShadow: CMSIBCommonInterface;
|
|
715
|
+
shadowColor: CMSIBCommonInterface;
|
|
716
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
717
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
718
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
719
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
720
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
721
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
722
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
723
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
724
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
725
|
+
selectorKey: SelectorKeysEnum;
|
|
726
|
+
};
|
|
727
|
+
myCart: {
|
|
728
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
729
|
+
cartIcon: {
|
|
730
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
731
|
+
showIcon: CMSIBCommonInterface | undefined;
|
|
732
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
733
|
+
iconColor: CMSIBCommonInterface;
|
|
734
|
+
selectorKey: SelectorKeysEnum;
|
|
735
|
+
};
|
|
736
|
+
miniCartText: {
|
|
737
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
738
|
+
themeDesc: {
|
|
739
|
+
value: string;
|
|
740
|
+
property: string;
|
|
741
|
+
propertyType: CMSElementEditTypes;
|
|
742
|
+
};
|
|
743
|
+
fontDesc: {
|
|
744
|
+
value: string;
|
|
745
|
+
property: string;
|
|
746
|
+
propertyType: CMSElementEditTypes;
|
|
747
|
+
parentRef: string;
|
|
748
|
+
};
|
|
749
|
+
fontSizeDesc: {
|
|
750
|
+
value: number;
|
|
751
|
+
unit: number;
|
|
752
|
+
property: string;
|
|
753
|
+
propertyType: CMSElementEditTypes;
|
|
754
|
+
parentRef: string;
|
|
755
|
+
};
|
|
756
|
+
textColorDesc: {
|
|
757
|
+
value: {
|
|
758
|
+
hex: string;
|
|
759
|
+
rgb: {
|
|
760
|
+
r: string;
|
|
761
|
+
g: string;
|
|
762
|
+
b: string;
|
|
763
|
+
a: number;
|
|
764
|
+
};
|
|
765
|
+
};
|
|
766
|
+
property: string;
|
|
767
|
+
propertyType: CMSElementEditTypes;
|
|
768
|
+
parentRef: string;
|
|
769
|
+
};
|
|
770
|
+
textHighlightDesc: {
|
|
771
|
+
value: {
|
|
772
|
+
hex: string;
|
|
773
|
+
rgb: {
|
|
774
|
+
r: string;
|
|
775
|
+
g: string;
|
|
776
|
+
b: string;
|
|
777
|
+
a: number;
|
|
778
|
+
};
|
|
779
|
+
};
|
|
780
|
+
property: string;
|
|
781
|
+
propertyType: CMSElementEditTypes;
|
|
782
|
+
};
|
|
783
|
+
boldDesc: {
|
|
784
|
+
value: string;
|
|
785
|
+
property: string;
|
|
786
|
+
propertyType: CMSElementEditTypes;
|
|
787
|
+
parentRef: string;
|
|
788
|
+
};
|
|
789
|
+
italicDesc: {
|
|
790
|
+
value: string;
|
|
791
|
+
property: string;
|
|
792
|
+
propertyType: CMSElementEditTypes;
|
|
793
|
+
parentRef: string;
|
|
794
|
+
};
|
|
795
|
+
linethroughDesc: {
|
|
796
|
+
value: string;
|
|
797
|
+
property: string;
|
|
798
|
+
propertyType: CMSElementEditTypes;
|
|
799
|
+
parentRef: string;
|
|
800
|
+
};
|
|
801
|
+
underlineDesc: {
|
|
802
|
+
value: string;
|
|
803
|
+
property: string;
|
|
804
|
+
propertyType: CMSElementEditTypes;
|
|
805
|
+
parentRef: string;
|
|
806
|
+
};
|
|
807
|
+
textAlignDesc: {
|
|
808
|
+
value: string;
|
|
809
|
+
property: string;
|
|
810
|
+
propertyType: CMSElementEditTypes;
|
|
811
|
+
parentRef: string;
|
|
812
|
+
};
|
|
813
|
+
characterSpacingDesc: {
|
|
814
|
+
value: number;
|
|
815
|
+
unit: number;
|
|
816
|
+
property: string;
|
|
817
|
+
propertyType: CMSElementEditTypes;
|
|
818
|
+
parentRef: string;
|
|
819
|
+
};
|
|
820
|
+
lineHeightDesc: {
|
|
821
|
+
value: number;
|
|
822
|
+
unit: number;
|
|
823
|
+
property: string;
|
|
824
|
+
propertyType: CMSElementEditTypes;
|
|
825
|
+
parentRef: string;
|
|
826
|
+
};
|
|
827
|
+
paragraphSpacingDesc: {
|
|
828
|
+
value: number;
|
|
829
|
+
unit: number;
|
|
830
|
+
property: string;
|
|
831
|
+
propertyType: CMSElementEditTypes;
|
|
832
|
+
parentRef: string;
|
|
833
|
+
};
|
|
834
|
+
theme: {
|
|
835
|
+
value: string;
|
|
836
|
+
property: string;
|
|
837
|
+
propertyType: CMSElementEditTypes;
|
|
838
|
+
};
|
|
839
|
+
font: {
|
|
840
|
+
value: string;
|
|
841
|
+
property: string;
|
|
842
|
+
propertyType: CMSElementEditTypes;
|
|
843
|
+
parentRef: string;
|
|
844
|
+
};
|
|
845
|
+
fontSize: {
|
|
846
|
+
value: number;
|
|
847
|
+
unit: number;
|
|
848
|
+
property: string;
|
|
849
|
+
propertyType: CMSElementEditTypes;
|
|
850
|
+
parentRef: string;
|
|
851
|
+
};
|
|
852
|
+
textColor: {
|
|
853
|
+
value: {
|
|
854
|
+
hex: string;
|
|
855
|
+
rgb: {
|
|
856
|
+
r: string;
|
|
857
|
+
g: string;
|
|
858
|
+
b: string;
|
|
859
|
+
a: number;
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
property: string;
|
|
863
|
+
propertyType: CMSElementEditTypes;
|
|
864
|
+
parentRef: string;
|
|
865
|
+
};
|
|
866
|
+
textHighlight: {
|
|
867
|
+
value: {
|
|
868
|
+
hex: string;
|
|
869
|
+
rgb: {
|
|
870
|
+
r: string;
|
|
871
|
+
g: string;
|
|
872
|
+
b: string;
|
|
873
|
+
a: number;
|
|
874
|
+
};
|
|
875
|
+
};
|
|
876
|
+
property: string;
|
|
877
|
+
propertyType: CMSElementEditTypes;
|
|
878
|
+
};
|
|
879
|
+
bold: {
|
|
880
|
+
value: string;
|
|
881
|
+
property: string;
|
|
882
|
+
propertyType: CMSElementEditTypes;
|
|
883
|
+
parentRef: string;
|
|
884
|
+
};
|
|
885
|
+
italic: {
|
|
886
|
+
value: string;
|
|
887
|
+
property: string;
|
|
888
|
+
propertyType: CMSElementEditTypes;
|
|
889
|
+
parentRef: string;
|
|
890
|
+
};
|
|
891
|
+
linethrough: {
|
|
892
|
+
value: string;
|
|
893
|
+
property: string;
|
|
894
|
+
propertyType: CMSElementEditTypes;
|
|
895
|
+
parentRef: string;
|
|
896
|
+
};
|
|
897
|
+
underline: {
|
|
898
|
+
value: string;
|
|
899
|
+
property: string;
|
|
900
|
+
propertyType: CMSElementEditTypes;
|
|
901
|
+
parentRef: string;
|
|
902
|
+
};
|
|
903
|
+
textAlign: {
|
|
904
|
+
value: string;
|
|
905
|
+
property: string;
|
|
906
|
+
propertyType: CMSElementEditTypes;
|
|
907
|
+
parentRef: string;
|
|
908
|
+
};
|
|
909
|
+
characterSpacing: {
|
|
910
|
+
value: number;
|
|
911
|
+
unit: number;
|
|
912
|
+
property: string;
|
|
913
|
+
propertyType: CMSElementEditTypes;
|
|
914
|
+
parentRef: string;
|
|
915
|
+
};
|
|
916
|
+
lineHeight: {
|
|
917
|
+
value: number;
|
|
918
|
+
unit: number;
|
|
919
|
+
property: string;
|
|
920
|
+
propertyType: CMSElementEditTypes;
|
|
921
|
+
parentRef: string;
|
|
922
|
+
};
|
|
923
|
+
paragraphSpacing: {
|
|
924
|
+
value: number;
|
|
925
|
+
unit: number;
|
|
926
|
+
property: string;
|
|
927
|
+
propertyType: CMSElementEditTypes;
|
|
928
|
+
parentRef: string;
|
|
929
|
+
};
|
|
930
|
+
borderColor: CMSIBCommonInterface;
|
|
931
|
+
borderStyle: CMSIBCommonInterface;
|
|
932
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
933
|
+
showBorder: CMSIBCommonInterface;
|
|
934
|
+
backgroundColor: CMSIBCommonInterface;
|
|
935
|
+
showShadow: CMSIBCommonInterface;
|
|
936
|
+
shadowColor: CMSIBCommonInterface;
|
|
937
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
938
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
939
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
940
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
941
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
942
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
943
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
944
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
945
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
946
|
+
selectorKey: SelectorKeysEnum;
|
|
947
|
+
};
|
|
948
|
+
cartItemsCount: {
|
|
949
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
950
|
+
theme: CMSIBCommonInterface;
|
|
951
|
+
font: CMSIBCommonInterface;
|
|
952
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
953
|
+
textColor: CMSIBCommonInterface;
|
|
954
|
+
bold: CMSIBCommonInterface;
|
|
955
|
+
italic: CMSIBCommonInterface;
|
|
956
|
+
linethrough: CMSIBCommonInterface;
|
|
957
|
+
underline: CMSIBCommonInterface;
|
|
958
|
+
textAlign: CMSIBCommonInterface;
|
|
959
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
960
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
961
|
+
borderColor: CMSIBCommonInterface;
|
|
962
|
+
borderStyle: CMSIBCommonInterface;
|
|
963
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
964
|
+
showBorder: CMSIBCommonInterface;
|
|
965
|
+
backgroundColor: CMSIBCommonInterface;
|
|
966
|
+
showShadow: CMSIBCommonInterface;
|
|
967
|
+
shadowColor: CMSIBCommonInterface;
|
|
968
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
969
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
970
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
971
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
972
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
973
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
974
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
975
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
976
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
977
|
+
selectorKey: SelectorKeysEnum;
|
|
978
|
+
};
|
|
979
|
+
themeDesc: {
|
|
980
|
+
value: string;
|
|
981
|
+
property: string;
|
|
982
|
+
propertyType: CMSElementEditTypes;
|
|
983
|
+
};
|
|
984
|
+
fontDesc: {
|
|
985
|
+
value: string;
|
|
986
|
+
property: string;
|
|
987
|
+
propertyType: CMSElementEditTypes;
|
|
988
|
+
parentRef: string;
|
|
989
|
+
};
|
|
990
|
+
fontSizeDesc: {
|
|
991
|
+
value: number;
|
|
992
|
+
unit: number;
|
|
993
|
+
property: string;
|
|
994
|
+
propertyType: CMSElementEditTypes;
|
|
995
|
+
parentRef: string;
|
|
996
|
+
};
|
|
997
|
+
textColorDesc: {
|
|
998
|
+
value: {
|
|
999
|
+
hex: string;
|
|
1000
|
+
rgb: {
|
|
1001
|
+
r: string;
|
|
1002
|
+
g: string;
|
|
1003
|
+
b: string;
|
|
1004
|
+
a: number;
|
|
1005
|
+
};
|
|
1006
|
+
};
|
|
1007
|
+
property: string;
|
|
1008
|
+
propertyType: CMSElementEditTypes;
|
|
1009
|
+
parentRef: string;
|
|
1010
|
+
};
|
|
1011
|
+
textHighlightDesc: {
|
|
1012
|
+
value: {
|
|
1013
|
+
hex: string;
|
|
1014
|
+
rgb: {
|
|
1015
|
+
r: string;
|
|
1016
|
+
g: string;
|
|
1017
|
+
b: string;
|
|
1018
|
+
a: number;
|
|
1019
|
+
};
|
|
1020
|
+
};
|
|
1021
|
+
property: string;
|
|
1022
|
+
propertyType: CMSElementEditTypes;
|
|
1023
|
+
};
|
|
1024
|
+
boldDesc: {
|
|
1025
|
+
value: string;
|
|
1026
|
+
property: string;
|
|
1027
|
+
propertyType: CMSElementEditTypes;
|
|
1028
|
+
parentRef: string;
|
|
1029
|
+
};
|
|
1030
|
+
italicDesc: {
|
|
1031
|
+
value: string;
|
|
1032
|
+
property: string;
|
|
1033
|
+
propertyType: CMSElementEditTypes;
|
|
1034
|
+
parentRef: string;
|
|
1035
|
+
};
|
|
1036
|
+
linethroughDesc: {
|
|
1037
|
+
value: string;
|
|
1038
|
+
property: string;
|
|
1039
|
+
propertyType: CMSElementEditTypes;
|
|
1040
|
+
parentRef: string;
|
|
1041
|
+
};
|
|
1042
|
+
underlineDesc: {
|
|
1043
|
+
value: string;
|
|
1044
|
+
property: string;
|
|
1045
|
+
propertyType: CMSElementEditTypes;
|
|
1046
|
+
parentRef: string;
|
|
1047
|
+
};
|
|
1048
|
+
textAlignDesc: {
|
|
1049
|
+
value: string;
|
|
1050
|
+
property: string;
|
|
1051
|
+
propertyType: CMSElementEditTypes;
|
|
1052
|
+
parentRef: string;
|
|
1053
|
+
};
|
|
1054
|
+
characterSpacingDesc: {
|
|
1055
|
+
value: number;
|
|
1056
|
+
unit: number;
|
|
1057
|
+
property: string;
|
|
1058
|
+
propertyType: CMSElementEditTypes;
|
|
1059
|
+
parentRef: string;
|
|
1060
|
+
};
|
|
1061
|
+
lineHeightDesc: {
|
|
1062
|
+
value: number;
|
|
1063
|
+
unit: number;
|
|
1064
|
+
property: string;
|
|
1065
|
+
propertyType: CMSElementEditTypes;
|
|
1066
|
+
parentRef: string;
|
|
1067
|
+
};
|
|
1068
|
+
paragraphSpacingDesc: {
|
|
1069
|
+
value: number;
|
|
1070
|
+
unit: number;
|
|
1071
|
+
property: string;
|
|
1072
|
+
propertyType: CMSElementEditTypes;
|
|
1073
|
+
parentRef: string;
|
|
1074
|
+
};
|
|
1075
|
+
theme: {
|
|
1076
|
+
value: string;
|
|
1077
|
+
property: string;
|
|
1078
|
+
propertyType: CMSElementEditTypes;
|
|
1079
|
+
};
|
|
1080
|
+
font: {
|
|
1081
|
+
value: string;
|
|
1082
|
+
property: string;
|
|
1083
|
+
propertyType: CMSElementEditTypes;
|
|
1084
|
+
parentRef: string;
|
|
1085
|
+
};
|
|
1086
|
+
fontSize: {
|
|
1087
|
+
value: number;
|
|
1088
|
+
unit: number;
|
|
1089
|
+
property: string;
|
|
1090
|
+
propertyType: CMSElementEditTypes;
|
|
1091
|
+
parentRef: string;
|
|
1092
|
+
};
|
|
1093
|
+
textColor: {
|
|
1094
|
+
value: {
|
|
1095
|
+
hex: string;
|
|
1096
|
+
rgb: {
|
|
1097
|
+
r: string;
|
|
1098
|
+
g: string;
|
|
1099
|
+
b: string;
|
|
1100
|
+
a: number;
|
|
1101
|
+
};
|
|
1102
|
+
};
|
|
1103
|
+
property: string;
|
|
1104
|
+
propertyType: CMSElementEditTypes;
|
|
1105
|
+
parentRef: string;
|
|
1106
|
+
};
|
|
1107
|
+
textHighlight: {
|
|
1108
|
+
value: {
|
|
1109
|
+
hex: string;
|
|
1110
|
+
rgb: {
|
|
1111
|
+
r: string;
|
|
1112
|
+
g: string;
|
|
1113
|
+
b: string;
|
|
1114
|
+
a: number;
|
|
1115
|
+
};
|
|
1116
|
+
};
|
|
1117
|
+
property: string;
|
|
1118
|
+
propertyType: CMSElementEditTypes;
|
|
1119
|
+
};
|
|
1120
|
+
bold: {
|
|
1121
|
+
value: string;
|
|
1122
|
+
property: string;
|
|
1123
|
+
propertyType: CMSElementEditTypes;
|
|
1124
|
+
parentRef: string;
|
|
1125
|
+
};
|
|
1126
|
+
italic: {
|
|
1127
|
+
value: string;
|
|
1128
|
+
property: string;
|
|
1129
|
+
propertyType: CMSElementEditTypes;
|
|
1130
|
+
parentRef: string;
|
|
1131
|
+
};
|
|
1132
|
+
linethrough: {
|
|
1133
|
+
value: string;
|
|
1134
|
+
property: string;
|
|
1135
|
+
propertyType: CMSElementEditTypes;
|
|
1136
|
+
parentRef: string;
|
|
1137
|
+
};
|
|
1138
|
+
underline: {
|
|
1139
|
+
value: string;
|
|
1140
|
+
property: string;
|
|
1141
|
+
propertyType: CMSElementEditTypes;
|
|
1142
|
+
parentRef: string;
|
|
1143
|
+
};
|
|
1144
|
+
textAlign: {
|
|
1145
|
+
value: string;
|
|
1146
|
+
property: string;
|
|
1147
|
+
propertyType: CMSElementEditTypes;
|
|
1148
|
+
parentRef: string;
|
|
1149
|
+
};
|
|
1150
|
+
characterSpacing: {
|
|
1151
|
+
value: number;
|
|
1152
|
+
unit: number;
|
|
1153
|
+
property: string;
|
|
1154
|
+
propertyType: CMSElementEditTypes;
|
|
1155
|
+
parentRef: string;
|
|
1156
|
+
};
|
|
1157
|
+
lineHeight: {
|
|
1158
|
+
value: number;
|
|
1159
|
+
unit: number;
|
|
1160
|
+
property: string;
|
|
1161
|
+
propertyType: CMSElementEditTypes;
|
|
1162
|
+
parentRef: string;
|
|
1163
|
+
};
|
|
1164
|
+
paragraphSpacing: {
|
|
1165
|
+
value: number;
|
|
1166
|
+
unit: number;
|
|
1167
|
+
property: string;
|
|
1168
|
+
propertyType: CMSElementEditTypes;
|
|
1169
|
+
parentRef: string;
|
|
1170
|
+
};
|
|
1171
|
+
borderColor: CMSIBCommonInterface;
|
|
1172
|
+
borderStyle: CMSIBCommonInterface;
|
|
1173
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
1174
|
+
showBorder: CMSIBCommonInterface;
|
|
1175
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1176
|
+
showShadow: CMSIBCommonInterface;
|
|
1177
|
+
shadowColor: CMSIBCommonInterface;
|
|
1178
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1179
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1180
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1181
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1182
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1183
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1184
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1185
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1186
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1187
|
+
selectorKey: SelectorKeysEnum;
|
|
1188
|
+
};
|
|
1189
|
+
borderColor: CMSIBCommonInterface;
|
|
1190
|
+
borderStyle: CMSIBCommonInterface;
|
|
1191
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
1192
|
+
showBorder: CMSIBCommonInterface;
|
|
1193
|
+
backgroundColor: CMSIBCommonInterface;
|
|
1194
|
+
showShadow: CMSIBCommonInterface;
|
|
1195
|
+
shadowColor: CMSIBCommonInterface;
|
|
1196
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1197
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1198
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1199
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1200
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1201
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1202
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1203
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1204
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1205
|
+
selectorKey: SelectorKeysEnum;
|
|
426
1206
|
};
|
|
427
1207
|
};
|
|
428
1208
|
content: {
|