@sc-360-v2/storefront-cms-library 0.3.4 → 0.3.6
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/builder.js.LICENSE.txt +1 -1
- package/dist/button copy.scss +2 -1
- package/dist/checkout.scss +141 -16
- package/dist/filter-results.scss +324 -0
- package/dist/filters.scss +1324 -31
- package/dist/functions.js +1 -1
- package/dist/icon-list.scss +11 -11
- package/dist/index.js +1 -1
- package/dist/layouter-pro-item.scss +6 -0
- package/dist/layouter-pro.scss +30 -2
- package/dist/menu-v2.scss +5 -2
- package/dist/past-orders.scss +770 -26
- package/dist/product-actions.scss +254 -393
- package/dist/product-basic-elements.scss +12 -12
- package/dist/product-options.scss +72 -46
- package/dist/quotes.scss +1 -0
- package/dist/repeater.scss +5 -2
- package/dist/text-temp-v2.scss +2 -2
- package/dist/types/builder/elements/filter-results/index.d.ts +27 -0
- package/dist/types/builder/elements/product-sizechart/index.d.ts +26 -0
- package/dist/types/builder/elements/user-elements/index.d.ts +30 -0
- package/dist/types/builder/enums/index.d.ts +5 -1
- package/dist/types/builder/index.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/filterResults.d.ts +140 -0
- package/dist/types/builder/tools/element-edit/filters.d.ts +15 -8
- package/dist/types/builder/tools/element-edit/index.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/layouter-pro-item.d.ts +14 -1
- package/dist/types/builder/tools/element-edit/layouterPro.d.ts +9 -2
- package/dist/types/builder/tools/element-edit/pastOrders.d.ts +61 -1
- package/dist/types/builder/tools/element-edit/productActions.d.ts +6 -1
- package/dist/types/builder/tools/element-edit/productSizeChart.d.ts +24 -0
- package/dist/types/builder/tools/element-edit/userElements.d.ts +555 -0
- package/dist/types/global/types.d.ts +2 -1
- package/dist/user-elements.scss +1375 -0
- package/dist/variant-picker.scss +127 -84
- package/dist/widget.scss +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
2
|
+
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
3
|
+
import { CMSElementEditPopupInterface } from "./common";
|
|
4
|
+
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
5
|
+
}
|
|
6
|
+
export declare enum SelectorKeysEnum {
|
|
7
|
+
LAYOUT = "layout",
|
|
8
|
+
DESIGN = "design",
|
|
9
|
+
CONTENT = "content",
|
|
10
|
+
USER_INFO_DESIGN = "userInfoDesign",
|
|
11
|
+
USER_NAME_DESIGN = "userNameDesign",
|
|
12
|
+
USER_ID_DESIGN = "userIdDesign",
|
|
13
|
+
USER_EMAIL_DESIGN = "userEmailDesign",
|
|
14
|
+
USER_PHONE_DESIGN = "userPhoneDesign",
|
|
15
|
+
QUOTA_DESIGN = "quotaDesign",
|
|
16
|
+
FILL_AND_OPACITY = "fillAndOpacity",
|
|
17
|
+
QUOTA_HEADING_DESIGN = "quotaHeadingDesign",
|
|
18
|
+
QUOTA_NAME_DESIGN = "quotaNameDesign",
|
|
19
|
+
QUOTA_EXPIRY_DESIGN = "quotaExpiryDesign",
|
|
20
|
+
QUOTA_INVENTORY_DESIGN = "quotaInventoryDesign",
|
|
21
|
+
ALLOWANCE_DESIGN = "allowanceDesign",
|
|
22
|
+
ALLOWANCE_HEADING_DESIGN = "allowanceHeadingDesign",
|
|
23
|
+
ALLOWANCE_NAME_DESIGN = "allowanceNameDesign",
|
|
24
|
+
ALLOWANCE_EXPIRY_DESIGN = "allowanceExpiryDesign",
|
|
25
|
+
ALLOWANCE_INVENTORY_DESIGN = "allowanceInventoryDesign",
|
|
26
|
+
USER_SECONDARY_INFO_DESIGN = "userSecondaryInfoDesign",
|
|
27
|
+
USER_SECONDARY_INFO_HEADING_DESIGN = "userSecondaryInfoHeadingDesign",
|
|
28
|
+
USER_SECONDARY_INFO_LABEL_DESIGN = "userSecondaryInfoLabelDesign",
|
|
29
|
+
USER_SECONDARY_INFO_VALUE_DESIGN = "userSecondaryInfoValueDesign"
|
|
30
|
+
}
|
|
31
|
+
export declare const getDefaultData: () => {
|
|
32
|
+
layout: {
|
|
33
|
+
selectorKey: SelectorKeysEnum;
|
|
34
|
+
adjustment: CMSIBCommonInterface | undefined;
|
|
35
|
+
width: {
|
|
36
|
+
value: number;
|
|
37
|
+
unit: CMSCSSUnitTypesEnums;
|
|
38
|
+
};
|
|
39
|
+
height: {
|
|
40
|
+
value: number;
|
|
41
|
+
unit: CMSCSSUnitTypesEnums;
|
|
42
|
+
property?: any;
|
|
43
|
+
propertyType?: any;
|
|
44
|
+
isReadOnly?: boolean | undefined;
|
|
45
|
+
parentRef?: string | undefined;
|
|
46
|
+
};
|
|
47
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
48
|
+
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
49
|
+
positionType: CMSIBCommonInterface | undefined;
|
|
50
|
+
displayType: {
|
|
51
|
+
value: string;
|
|
52
|
+
property: string;
|
|
53
|
+
propertyType: CMSElementEditTypes;
|
|
54
|
+
};
|
|
55
|
+
quotaNumOfItemsToShow: {
|
|
56
|
+
value: number;
|
|
57
|
+
property: string;
|
|
58
|
+
propertyType: CMSElementEditTypes;
|
|
59
|
+
};
|
|
60
|
+
quotaItemSpacing: {
|
|
61
|
+
value: number;
|
|
62
|
+
unit: number;
|
|
63
|
+
property: string;
|
|
64
|
+
propertyType: CMSElementEditTypes;
|
|
65
|
+
};
|
|
66
|
+
quotaShowOtherItems: {
|
|
67
|
+
value: string;
|
|
68
|
+
property: string;
|
|
69
|
+
propertyType: CMSElementEditTypes;
|
|
70
|
+
};
|
|
71
|
+
quotaShowScrollIcons: {
|
|
72
|
+
value: boolean;
|
|
73
|
+
property: string;
|
|
74
|
+
propertyType: CMSElementEditTypes;
|
|
75
|
+
};
|
|
76
|
+
allowanceNumOfItemsToShow: {
|
|
77
|
+
value: number;
|
|
78
|
+
property: string;
|
|
79
|
+
propertyType: CMSElementEditTypes;
|
|
80
|
+
};
|
|
81
|
+
allowanceItemSpacing: {
|
|
82
|
+
value: number;
|
|
83
|
+
unit: number;
|
|
84
|
+
property: string;
|
|
85
|
+
propertyType: CMSElementEditTypes;
|
|
86
|
+
};
|
|
87
|
+
allowanceShowOtherItems: {
|
|
88
|
+
value: string;
|
|
89
|
+
property: string;
|
|
90
|
+
propertyType: CMSElementEditTypes;
|
|
91
|
+
};
|
|
92
|
+
allowanceShowScrollIcons: {
|
|
93
|
+
value: boolean;
|
|
94
|
+
property: string;
|
|
95
|
+
propertyType: CMSElementEditTypes;
|
|
96
|
+
};
|
|
97
|
+
userInfoNumOfItemsToShow: {
|
|
98
|
+
value: number;
|
|
99
|
+
property: string;
|
|
100
|
+
propertyType: CMSElementEditTypes;
|
|
101
|
+
};
|
|
102
|
+
userInfoItemSpacing: {
|
|
103
|
+
value: number;
|
|
104
|
+
unit: number;
|
|
105
|
+
property: string;
|
|
106
|
+
propertyType: CMSElementEditTypes;
|
|
107
|
+
};
|
|
108
|
+
userInfoShowOtherItems: {
|
|
109
|
+
value: string;
|
|
110
|
+
property: string;
|
|
111
|
+
propertyType: CMSElementEditTypes;
|
|
112
|
+
};
|
|
113
|
+
userInfoShowScrollIcons: {
|
|
114
|
+
value: boolean;
|
|
115
|
+
property: string;
|
|
116
|
+
propertyType: CMSElementEditTypes;
|
|
117
|
+
};
|
|
118
|
+
userInfoSecondaryNumOfItemsToShow: {
|
|
119
|
+
value: number;
|
|
120
|
+
property: string;
|
|
121
|
+
propertyType: CMSElementEditTypes;
|
|
122
|
+
};
|
|
123
|
+
userInfoSecondaryItemSpacing: {
|
|
124
|
+
value: number;
|
|
125
|
+
unit: number;
|
|
126
|
+
property: string;
|
|
127
|
+
propertyType: CMSElementEditTypes;
|
|
128
|
+
};
|
|
129
|
+
userInfoSecondaryShowOtherItems: {
|
|
130
|
+
value: string;
|
|
131
|
+
property: string;
|
|
132
|
+
propertyType: CMSElementEditTypes;
|
|
133
|
+
};
|
|
134
|
+
userInfoSecondaryShowScrollIcons: {
|
|
135
|
+
value: boolean;
|
|
136
|
+
property: string;
|
|
137
|
+
propertyType: CMSElementEditTypes;
|
|
138
|
+
};
|
|
139
|
+
showAllowance: {
|
|
140
|
+
value: boolean;
|
|
141
|
+
property: string;
|
|
142
|
+
propertyType: CMSElementEditTypes;
|
|
143
|
+
};
|
|
144
|
+
showQuota: {
|
|
145
|
+
value: boolean;
|
|
146
|
+
property: string;
|
|
147
|
+
propertyType: CMSElementEditTypes;
|
|
148
|
+
};
|
|
149
|
+
showUserInfo: {
|
|
150
|
+
value: boolean;
|
|
151
|
+
property: string;
|
|
152
|
+
propertyType: CMSElementEditTypes;
|
|
153
|
+
};
|
|
154
|
+
showUserInfoSecondary: {
|
|
155
|
+
value: boolean;
|
|
156
|
+
property: string;
|
|
157
|
+
propertyType: CMSElementEditTypes;
|
|
158
|
+
};
|
|
159
|
+
contentAlignment: {
|
|
160
|
+
value: string;
|
|
161
|
+
property: string;
|
|
162
|
+
propertyType: CMSElementEditTypes;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
design: {
|
|
166
|
+
selectorKey: SelectorKeysEnum;
|
|
167
|
+
userInfoDesign: {
|
|
168
|
+
selectorKey: SelectorKeysEnum;
|
|
169
|
+
fillAndOpacity: {
|
|
170
|
+
borderColor: CMSIBCommonInterface;
|
|
171
|
+
borderStyle: CMSIBCommonInterface;
|
|
172
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
173
|
+
showBorder: CMSIBCommonInterface;
|
|
174
|
+
backgroundColor: CMSIBCommonInterface;
|
|
175
|
+
showShadow: CMSIBCommonInterface;
|
|
176
|
+
shadowColor: CMSIBCommonInterface;
|
|
177
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
178
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
179
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
180
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
181
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
182
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
183
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
184
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
185
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
186
|
+
selectorKey: SelectorKeysEnum;
|
|
187
|
+
};
|
|
188
|
+
userNameDesign: {
|
|
189
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
190
|
+
showIcon: CMSIBCommonInterface | undefined;
|
|
191
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
192
|
+
iconColor: CMSIBCommonInterface;
|
|
193
|
+
theme: CMSIBCommonInterface;
|
|
194
|
+
font: CMSIBCommonInterface;
|
|
195
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
196
|
+
textColor: CMSIBCommonInterface;
|
|
197
|
+
bold: CMSIBCommonInterface;
|
|
198
|
+
italic: CMSIBCommonInterface;
|
|
199
|
+
linethrough: CMSIBCommonInterface;
|
|
200
|
+
underline: CMSIBCommonInterface;
|
|
201
|
+
textAlign: CMSIBCommonInterface;
|
|
202
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
203
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
204
|
+
selectorKey: SelectorKeysEnum;
|
|
205
|
+
};
|
|
206
|
+
userIdDesign: {
|
|
207
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
208
|
+
showIcon: CMSIBCommonInterface | undefined;
|
|
209
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
210
|
+
iconColor: CMSIBCommonInterface;
|
|
211
|
+
theme: CMSIBCommonInterface;
|
|
212
|
+
font: CMSIBCommonInterface;
|
|
213
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
214
|
+
textColor: CMSIBCommonInterface;
|
|
215
|
+
bold: CMSIBCommonInterface;
|
|
216
|
+
italic: CMSIBCommonInterface;
|
|
217
|
+
linethrough: CMSIBCommonInterface;
|
|
218
|
+
underline: CMSIBCommonInterface;
|
|
219
|
+
textAlign: CMSIBCommonInterface;
|
|
220
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
221
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
222
|
+
selectorKey: SelectorKeysEnum;
|
|
223
|
+
};
|
|
224
|
+
userEmailDesign: {
|
|
225
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
226
|
+
showIcon: CMSIBCommonInterface | undefined;
|
|
227
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
228
|
+
iconColor: CMSIBCommonInterface;
|
|
229
|
+
theme: CMSIBCommonInterface;
|
|
230
|
+
font: CMSIBCommonInterface;
|
|
231
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
232
|
+
textColor: CMSIBCommonInterface;
|
|
233
|
+
bold: CMSIBCommonInterface;
|
|
234
|
+
italic: CMSIBCommonInterface;
|
|
235
|
+
linethrough: CMSIBCommonInterface;
|
|
236
|
+
underline: CMSIBCommonInterface;
|
|
237
|
+
textAlign: CMSIBCommonInterface;
|
|
238
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
239
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
240
|
+
selectorKey: SelectorKeysEnum;
|
|
241
|
+
};
|
|
242
|
+
userPhoneDesign: {
|
|
243
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
244
|
+
showIcon: CMSIBCommonInterface | undefined;
|
|
245
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
246
|
+
iconColor: CMSIBCommonInterface;
|
|
247
|
+
theme: CMSIBCommonInterface;
|
|
248
|
+
font: CMSIBCommonInterface;
|
|
249
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
250
|
+
textColor: CMSIBCommonInterface;
|
|
251
|
+
bold: CMSIBCommonInterface;
|
|
252
|
+
italic: CMSIBCommonInterface;
|
|
253
|
+
linethrough: CMSIBCommonInterface;
|
|
254
|
+
underline: CMSIBCommonInterface;
|
|
255
|
+
textAlign: CMSIBCommonInterface;
|
|
256
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
257
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
258
|
+
selectorKey: SelectorKeysEnum;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
quotaDesign: {
|
|
262
|
+
selectorKey: SelectorKeysEnum;
|
|
263
|
+
fillAndOpacity: {
|
|
264
|
+
borderColor: CMSIBCommonInterface;
|
|
265
|
+
borderStyle: CMSIBCommonInterface;
|
|
266
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
267
|
+
showBorder: CMSIBCommonInterface;
|
|
268
|
+
backgroundColor: CMSIBCommonInterface;
|
|
269
|
+
showShadow: CMSIBCommonInterface;
|
|
270
|
+
shadowColor: CMSIBCommonInterface;
|
|
271
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
272
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
273
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
274
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
275
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
276
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
277
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
278
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
279
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
280
|
+
selectorKey: SelectorKeysEnum;
|
|
281
|
+
};
|
|
282
|
+
quotaHeadingDesign: {
|
|
283
|
+
theme: CMSIBCommonInterface;
|
|
284
|
+
font: CMSIBCommonInterface;
|
|
285
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
286
|
+
textColor: CMSIBCommonInterface;
|
|
287
|
+
bold: CMSIBCommonInterface;
|
|
288
|
+
italic: CMSIBCommonInterface;
|
|
289
|
+
linethrough: CMSIBCommonInterface;
|
|
290
|
+
underline: CMSIBCommonInterface;
|
|
291
|
+
textAlign: CMSIBCommonInterface;
|
|
292
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
293
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
294
|
+
selectorKey: SelectorKeysEnum;
|
|
295
|
+
};
|
|
296
|
+
quotaNameDesign: {
|
|
297
|
+
theme: CMSIBCommonInterface;
|
|
298
|
+
font: CMSIBCommonInterface;
|
|
299
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
300
|
+
textColor: CMSIBCommonInterface;
|
|
301
|
+
bold: CMSIBCommonInterface;
|
|
302
|
+
italic: CMSIBCommonInterface;
|
|
303
|
+
linethrough: CMSIBCommonInterface;
|
|
304
|
+
underline: CMSIBCommonInterface;
|
|
305
|
+
textAlign: CMSIBCommonInterface;
|
|
306
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
307
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
308
|
+
selectorKey: SelectorKeysEnum;
|
|
309
|
+
};
|
|
310
|
+
quotaExpiryDesign: {
|
|
311
|
+
theme: CMSIBCommonInterface;
|
|
312
|
+
font: CMSIBCommonInterface;
|
|
313
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
314
|
+
textColor: CMSIBCommonInterface;
|
|
315
|
+
bold: CMSIBCommonInterface;
|
|
316
|
+
italic: CMSIBCommonInterface;
|
|
317
|
+
linethrough: CMSIBCommonInterface;
|
|
318
|
+
underline: CMSIBCommonInterface;
|
|
319
|
+
textAlign: CMSIBCommonInterface;
|
|
320
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
321
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
322
|
+
selectorKey: SelectorKeysEnum;
|
|
323
|
+
};
|
|
324
|
+
quotaInventoryDesign: {
|
|
325
|
+
theme: CMSIBCommonInterface;
|
|
326
|
+
font: CMSIBCommonInterface;
|
|
327
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
328
|
+
textColor: CMSIBCommonInterface;
|
|
329
|
+
bold: CMSIBCommonInterface;
|
|
330
|
+
italic: CMSIBCommonInterface;
|
|
331
|
+
linethrough: CMSIBCommonInterface;
|
|
332
|
+
underline: CMSIBCommonInterface;
|
|
333
|
+
textAlign: CMSIBCommonInterface;
|
|
334
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
335
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
336
|
+
selectorKey: SelectorKeysEnum;
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
allowanceDesign: {
|
|
340
|
+
selectorKey: SelectorKeysEnum;
|
|
341
|
+
fillAndOpacity: {
|
|
342
|
+
borderColor: CMSIBCommonInterface;
|
|
343
|
+
borderStyle: CMSIBCommonInterface;
|
|
344
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
345
|
+
showBorder: CMSIBCommonInterface;
|
|
346
|
+
backgroundColor: CMSIBCommonInterface;
|
|
347
|
+
showShadow: CMSIBCommonInterface;
|
|
348
|
+
shadowColor: CMSIBCommonInterface;
|
|
349
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
350
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
351
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
352
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
353
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
354
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
355
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
356
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
357
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
358
|
+
selectorKey: SelectorKeysEnum;
|
|
359
|
+
};
|
|
360
|
+
allowanceHeadingDesign: {
|
|
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
|
+
selectorKey: SelectorKeysEnum;
|
|
373
|
+
};
|
|
374
|
+
allowanceNameDesign: {
|
|
375
|
+
theme: CMSIBCommonInterface;
|
|
376
|
+
font: CMSIBCommonInterface;
|
|
377
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
378
|
+
textColor: CMSIBCommonInterface;
|
|
379
|
+
bold: CMSIBCommonInterface;
|
|
380
|
+
italic: CMSIBCommonInterface;
|
|
381
|
+
linethrough: CMSIBCommonInterface;
|
|
382
|
+
underline: CMSIBCommonInterface;
|
|
383
|
+
textAlign: CMSIBCommonInterface;
|
|
384
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
385
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
386
|
+
selectorKey: SelectorKeysEnum;
|
|
387
|
+
};
|
|
388
|
+
allowanceExpiryDesign: {
|
|
389
|
+
theme: CMSIBCommonInterface;
|
|
390
|
+
font: CMSIBCommonInterface;
|
|
391
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
392
|
+
textColor: CMSIBCommonInterface;
|
|
393
|
+
bold: CMSIBCommonInterface;
|
|
394
|
+
italic: CMSIBCommonInterface;
|
|
395
|
+
linethrough: CMSIBCommonInterface;
|
|
396
|
+
underline: CMSIBCommonInterface;
|
|
397
|
+
textAlign: CMSIBCommonInterface;
|
|
398
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
399
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
400
|
+
selectorKey: SelectorKeysEnum;
|
|
401
|
+
};
|
|
402
|
+
allowanceInventoryDesign: {
|
|
403
|
+
theme: CMSIBCommonInterface;
|
|
404
|
+
font: CMSIBCommonInterface;
|
|
405
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
406
|
+
textColor: CMSIBCommonInterface;
|
|
407
|
+
bold: CMSIBCommonInterface;
|
|
408
|
+
italic: CMSIBCommonInterface;
|
|
409
|
+
linethrough: CMSIBCommonInterface;
|
|
410
|
+
underline: CMSIBCommonInterface;
|
|
411
|
+
textAlign: CMSIBCommonInterface;
|
|
412
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
413
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
414
|
+
selectorKey: SelectorKeysEnum;
|
|
415
|
+
};
|
|
416
|
+
};
|
|
417
|
+
userSecondaryInfoDesign: {
|
|
418
|
+
selectorKey: SelectorKeysEnum;
|
|
419
|
+
fillAndOpacity: {
|
|
420
|
+
borderColor: CMSIBCommonInterface;
|
|
421
|
+
borderStyle: CMSIBCommonInterface;
|
|
422
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
423
|
+
showBorder: CMSIBCommonInterface;
|
|
424
|
+
backgroundColor: CMSIBCommonInterface;
|
|
425
|
+
showShadow: CMSIBCommonInterface;
|
|
426
|
+
shadowColor: CMSIBCommonInterface;
|
|
427
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
428
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
429
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
430
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
431
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
432
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
433
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
434
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
435
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
436
|
+
selectorKey: SelectorKeysEnum;
|
|
437
|
+
};
|
|
438
|
+
userSecondaryInfoHeadingDesign: {
|
|
439
|
+
theme: CMSIBCommonInterface;
|
|
440
|
+
font: CMSIBCommonInterface;
|
|
441
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
442
|
+
textColor: CMSIBCommonInterface;
|
|
443
|
+
bold: CMSIBCommonInterface;
|
|
444
|
+
italic: CMSIBCommonInterface;
|
|
445
|
+
linethrough: CMSIBCommonInterface;
|
|
446
|
+
underline: CMSIBCommonInterface;
|
|
447
|
+
textAlign: CMSIBCommonInterface;
|
|
448
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
449
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
450
|
+
selectorKey: SelectorKeysEnum;
|
|
451
|
+
};
|
|
452
|
+
userSecondaryInfoLabelDesign: {
|
|
453
|
+
theme: CMSIBCommonInterface;
|
|
454
|
+
font: CMSIBCommonInterface;
|
|
455
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
456
|
+
textColor: CMSIBCommonInterface;
|
|
457
|
+
bold: CMSIBCommonInterface;
|
|
458
|
+
italic: CMSIBCommonInterface;
|
|
459
|
+
linethrough: CMSIBCommonInterface;
|
|
460
|
+
underline: CMSIBCommonInterface;
|
|
461
|
+
textAlign: CMSIBCommonInterface;
|
|
462
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
463
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
464
|
+
selectorKey: SelectorKeysEnum;
|
|
465
|
+
};
|
|
466
|
+
userSecondaryInfoValueDesign: {
|
|
467
|
+
theme: CMSIBCommonInterface;
|
|
468
|
+
font: CMSIBCommonInterface;
|
|
469
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
470
|
+
textColor: CMSIBCommonInterface;
|
|
471
|
+
bold: CMSIBCommonInterface;
|
|
472
|
+
italic: CMSIBCommonInterface;
|
|
473
|
+
linethrough: CMSIBCommonInterface;
|
|
474
|
+
underline: CMSIBCommonInterface;
|
|
475
|
+
textAlign: CMSIBCommonInterface;
|
|
476
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
477
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
478
|
+
selectorKey: SelectorKeysEnum;
|
|
479
|
+
};
|
|
480
|
+
};
|
|
481
|
+
};
|
|
482
|
+
content: {
|
|
483
|
+
selectorKey: SelectorKeysEnum;
|
|
484
|
+
userProfile: {
|
|
485
|
+
value: boolean;
|
|
486
|
+
property: string;
|
|
487
|
+
propertyType: CMSElementEditTypes;
|
|
488
|
+
};
|
|
489
|
+
userEmail: {
|
|
490
|
+
value: boolean;
|
|
491
|
+
property: string;
|
|
492
|
+
propertyType: CMSElementEditTypes;
|
|
493
|
+
};
|
|
494
|
+
userPhone: {
|
|
495
|
+
value: boolean;
|
|
496
|
+
property: string;
|
|
497
|
+
propertyType: CMSElementEditTypes;
|
|
498
|
+
};
|
|
499
|
+
userId: {
|
|
500
|
+
value: boolean;
|
|
501
|
+
property: string;
|
|
502
|
+
propertyType: CMSElementEditTypes;
|
|
503
|
+
};
|
|
504
|
+
numOfPaymentMethods: {
|
|
505
|
+
value: boolean;
|
|
506
|
+
property: string;
|
|
507
|
+
propertyType: CMSElementEditTypes;
|
|
508
|
+
};
|
|
509
|
+
numOfOrdersPlaced: {
|
|
510
|
+
value: boolean;
|
|
511
|
+
property: string;
|
|
512
|
+
propertyType: CMSElementEditTypes;
|
|
513
|
+
};
|
|
514
|
+
myCart: {
|
|
515
|
+
value: boolean;
|
|
516
|
+
property: string;
|
|
517
|
+
propertyType: CMSElementEditTypes;
|
|
518
|
+
};
|
|
519
|
+
shippingAddress: {
|
|
520
|
+
value: boolean;
|
|
521
|
+
property: string;
|
|
522
|
+
propertyType: CMSElementEditTypes;
|
|
523
|
+
};
|
|
524
|
+
quotaLabel: {
|
|
525
|
+
value: string;
|
|
526
|
+
property: string;
|
|
527
|
+
propertyType: CMSElementEditTypes;
|
|
528
|
+
};
|
|
529
|
+
allowanceLabel: {
|
|
530
|
+
value: string;
|
|
531
|
+
property: string;
|
|
532
|
+
propertyType: CMSElementEditTypes;
|
|
533
|
+
};
|
|
534
|
+
shippingAddressLabel: {
|
|
535
|
+
value: string;
|
|
536
|
+
property: string;
|
|
537
|
+
propertyType: CMSElementEditTypes;
|
|
538
|
+
};
|
|
539
|
+
activeOrdersLabel: {
|
|
540
|
+
value: string;
|
|
541
|
+
property: string;
|
|
542
|
+
propertyType: CMSElementEditTypes;
|
|
543
|
+
};
|
|
544
|
+
paymentMethodsLabel: {
|
|
545
|
+
value: string;
|
|
546
|
+
property: string;
|
|
547
|
+
propertyType: CMSElementEditTypes;
|
|
548
|
+
};
|
|
549
|
+
myCartLabel: {
|
|
550
|
+
value: string;
|
|
551
|
+
property: string;
|
|
552
|
+
propertyType: CMSElementEditTypes;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
@@ -10,7 +10,7 @@ export type FontWeightValue = "normal" | "bold" | "bolder" | "lighter" | string;
|
|
|
10
10
|
export type JustifyContentValue = "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | "start" | "end" | "left" | "right" | string;
|
|
11
11
|
export type JustifySelfValue = "auto" | "start" | "end" | "center" | "stretch" | "baseline" | string;
|
|
12
12
|
export type MarginValue = string | string;
|
|
13
|
-
export type OverflowValue = "visible" | "hidden" | "scroll" | "auto" | string;
|
|
13
|
+
export type OverflowValue = "visible" | "hidden" | "scroll" | "auto" | "clip" | "default" | string;
|
|
14
14
|
export type PositionValue = "static" | "relative" | "absolute" | "fixed" | "sticky" | string;
|
|
15
15
|
export type TextAlignValue = "left" | "right" | "center" | "justify" | "start" | "end" | string;
|
|
16
16
|
export type VisibilityValue = "visible" | "hidden" | "collapse" | string;
|
|
@@ -33,6 +33,7 @@ export type GlobalVideoAttributes = "src" | "poster" | "controls" | "autoplay" |
|
|
|
33
33
|
export type CommonBuilderAttributes = "dataDivType" | "dataType" | "dataElementType" | "dataWidgetType" | "dataElementSubChild";
|
|
34
34
|
export type GlobalTableAttributes = "cellPadding" | "cellSpacing" | "border" | "width" | "height" | "align" | "bgColor" | "frame" | "headers" | "rows" | "rules";
|
|
35
35
|
export type StackDirectionType = "horizontal" | "vertical";
|
|
36
|
+
export type FlexSizeType = "none" | "shrink" | "grow" | string;
|
|
36
37
|
export type ShowShubMenuType = "On Hover" | "On Click";
|
|
37
38
|
export type ObjectFitValue = "fill" | "contain" | "cover" | "none" | "scale-down" | string;
|
|
38
39
|
export type ObjectPositionValue = string;
|