@sc-360-v2/storefront-cms-library 0.2.98 → 0.2.100

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.
@@ -1,17 +1,634 @@
1
- import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
1
+ import { CMSElementEditTypes } from "../../enums";
2
+ import { CMSIBCommonInterface } from "../../interfaces/global";
3
+ import { CMSElementEditPopupInterface } from "./common";
2
4
  export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
3
5
  }
4
- interface selfLayoutInterface {
5
- selectorKey: string;
6
- }
7
- export interface selfDesignInterface {
8
- selectorKey: string;
9
- }
10
6
  export declare enum SelectorKeysEnum {
11
7
  LAYOUT = "layout",
12
8
  DESIGN = "design",
13
9
  CONTENT = "content",
14
- DATA_CONNECTOR = "dataConnector"
10
+ DATA_CONNECTOR = "dataConnector",
11
+ DEFAULT_STATE = "defaultState",
12
+ SELECTED_STATE = "selectedState",
13
+ HOVER_STATE = "hoverState",
14
+ BUNDLE_DETAILS_HEADER_DESIGN = "bundleDetailsHeaderDesign",
15
+ BUNDLE_NAME_DESIGN = "bundleNameDesign",
16
+ BUNDLE_DESCRIPTION_DESIGN = "bundleDescriptionDesign",
17
+ CATEGORY_SLIDER_CARD_DESIGN = "categorySliderCardDesign",
18
+ CATEGORY_NAME_DESIGN = "categoryNameDesign",
19
+ CATEGORY_CARD_INFO_DESIGN = "categoryCardInfoDesign",
20
+ CATEGORY_CARD_DESIGN = "categoryCardDesign",
21
+ PRODUCT_CARDS_SCROLL_DESIGN = "productCardsScrollDesign",
22
+ PRODUCT_CARD_DESIGN = "productCardDesign",
23
+ PRODUCT_CARD_NAME_DESIGN = "productCardNameDesign",
24
+ PRODUCT_CARD_INFO_DESIGN = "productCardInfoDesign",
25
+ PRODUCT_CARD_PRICE_DESIGN = "productCardPriceDesign",
26
+ PRODUCT_PANEL_DESIGN = "productPanelDesign",
27
+ PRODUCT_NAME_DESIGN = "productNameDesign",
28
+ PRODUCT_INFO_DESIGN = "productInfoDesign",
29
+ PRODUCT_PRICE_DESIGN = "productPriceDesign",
30
+ SELECT_BUTTON_DESIGN = "selectButtonDesign",
31
+ ADD_TO_CART_BUTTON_DESIGN = "addToCartButtonDesign"
15
32
  }
16
- export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
17
- export {};
33
+ export declare const getDefaultData: () => {
34
+ layout: {
35
+ selectorKey: SelectorKeysEnum;
36
+ width: {
37
+ value: string;
38
+ unit: number;
39
+ };
40
+ height: {
41
+ value: string;
42
+ unit: number;
43
+ property?: any;
44
+ propertyType?: any;
45
+ isReadOnly?: boolean | undefined;
46
+ parentRef?: string | undefined;
47
+ };
48
+ margin: import("../../interfaces/global").CSSPaddingValues | undefined;
49
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
50
+ overflowContent: CMSIBCommonInterface | undefined;
51
+ scrollDirection: CMSIBCommonInterface | undefined;
52
+ displayScrollbar: CMSIBCommonInterface | undefined;
53
+ positionType: CMSIBCommonInterface | undefined;
54
+ pinTo: CMSIBCommonInterface | undefined;
55
+ templateType: {
56
+ value: string;
57
+ property: string;
58
+ propertyType: CMSElementEditTypes;
59
+ };
60
+ };
61
+ design: {
62
+ selectorKey: SelectorKeysEnum;
63
+ bundleDetailsHeaderDesign: {
64
+ selectorKey: SelectorKeysEnum;
65
+ bundleNameDesign: {
66
+ borderColor: CMSIBCommonInterface;
67
+ borderStyle: CMSIBCommonInterface;
68
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
69
+ showBorder: CMSIBCommonInterface;
70
+ backgroundColor: CMSIBCommonInterface;
71
+ showShadow: CMSIBCommonInterface;
72
+ shadowColor: CMSIBCommonInterface;
73
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
74
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
75
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
76
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
77
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
78
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
79
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
80
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
81
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
82
+ theme: CMSIBCommonInterface;
83
+ font: CMSIBCommonInterface;
84
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
85
+ textColor: CMSIBCommonInterface;
86
+ bold: CMSIBCommonInterface;
87
+ italic: CMSIBCommonInterface;
88
+ linethrough: CMSIBCommonInterface;
89
+ underline: CMSIBCommonInterface;
90
+ textAlign: CMSIBCommonInterface;
91
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
92
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
93
+ selectorKey: SelectorKeysEnum;
94
+ };
95
+ bundleDescriptionDesign: {
96
+ borderColor: CMSIBCommonInterface;
97
+ borderStyle: CMSIBCommonInterface;
98
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
99
+ showBorder: CMSIBCommonInterface;
100
+ backgroundColor: CMSIBCommonInterface;
101
+ showShadow: CMSIBCommonInterface;
102
+ shadowColor: CMSIBCommonInterface;
103
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
104
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
105
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
106
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
107
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
108
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
109
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
110
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
111
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
112
+ theme: CMSIBCommonInterface;
113
+ font: CMSIBCommonInterface;
114
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
115
+ textColor: CMSIBCommonInterface;
116
+ bold: CMSIBCommonInterface;
117
+ italic: CMSIBCommonInterface;
118
+ linethrough: CMSIBCommonInterface;
119
+ underline: CMSIBCommonInterface;
120
+ textAlign: CMSIBCommonInterface;
121
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
122
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
123
+ selectorKey: SelectorKeysEnum;
124
+ };
125
+ };
126
+ categorySliderCardDesign: {
127
+ selectorKey: SelectorKeysEnum;
128
+ categoryNameDesign: {
129
+ theme: CMSIBCommonInterface;
130
+ font: CMSIBCommonInterface;
131
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
132
+ textColor: CMSIBCommonInterface;
133
+ bold: CMSIBCommonInterface;
134
+ italic: CMSIBCommonInterface;
135
+ linethrough: CMSIBCommonInterface;
136
+ underline: CMSIBCommonInterface;
137
+ textAlign: CMSIBCommonInterface;
138
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
139
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
140
+ backgroundColor: CMSIBCommonInterface;
141
+ selectorKey: SelectorKeysEnum;
142
+ };
143
+ categoryCardInfoDesign: {
144
+ theme: CMSIBCommonInterface;
145
+ font: CMSIBCommonInterface;
146
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
147
+ textColor: CMSIBCommonInterface;
148
+ bold: CMSIBCommonInterface;
149
+ italic: CMSIBCommonInterface;
150
+ linethrough: CMSIBCommonInterface;
151
+ underline: CMSIBCommonInterface;
152
+ textAlign: CMSIBCommonInterface;
153
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
154
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
155
+ backgroundColor: CMSIBCommonInterface;
156
+ selectorKey: SelectorKeysEnum;
157
+ };
158
+ categoryCardDesign: {
159
+ selectorKey: SelectorKeysEnum;
160
+ defaultState: {
161
+ borderColor: CMSIBCommonInterface;
162
+ borderStyle: CMSIBCommonInterface;
163
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
164
+ showBorder: CMSIBCommonInterface;
165
+ backgroundColor: CMSIBCommonInterface;
166
+ showShadow: CMSIBCommonInterface;
167
+ shadowColor: CMSIBCommonInterface;
168
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
169
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
170
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
171
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
172
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
173
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
174
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
175
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
176
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
177
+ selectorKey: SelectorKeysEnum;
178
+ };
179
+ selectedState: {
180
+ borderColor: CMSIBCommonInterface;
181
+ borderStyle: CMSIBCommonInterface;
182
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
183
+ showBorder: CMSIBCommonInterface;
184
+ backgroundColor: CMSIBCommonInterface;
185
+ showShadow: CMSIBCommonInterface;
186
+ shadowColor: CMSIBCommonInterface;
187
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
188
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
189
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
190
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
191
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
192
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
193
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
194
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
195
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
196
+ selectorKey: SelectorKeysEnum;
197
+ };
198
+ hoverState: {
199
+ borderColor: CMSIBCommonInterface;
200
+ borderStyle: CMSIBCommonInterface;
201
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
202
+ showBorder: CMSIBCommonInterface;
203
+ backgroundColor: CMSIBCommonInterface;
204
+ showShadow: CMSIBCommonInterface;
205
+ shadowColor: CMSIBCommonInterface;
206
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
207
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
208
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
209
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
210
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
211
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
212
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
213
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
214
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
215
+ selectorKey: SelectorKeysEnum;
216
+ };
217
+ };
218
+ };
219
+ productCardsScrollDesign: {
220
+ selectorKey: SelectorKeysEnum;
221
+ productCardDesign: {
222
+ selectorKey: SelectorKeysEnum;
223
+ defaultState: {
224
+ borderColor: CMSIBCommonInterface;
225
+ borderStyle: CMSIBCommonInterface;
226
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
227
+ showBorder: CMSIBCommonInterface;
228
+ backgroundColor: CMSIBCommonInterface;
229
+ showShadow: CMSIBCommonInterface;
230
+ shadowColor: CMSIBCommonInterface;
231
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
232
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
233
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
234
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
235
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
236
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
237
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
238
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
239
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
240
+ selectorKey: SelectorKeysEnum;
241
+ };
242
+ selectedState: {
243
+ borderColor: CMSIBCommonInterface;
244
+ borderStyle: CMSIBCommonInterface;
245
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
246
+ showBorder: CMSIBCommonInterface;
247
+ backgroundColor: CMSIBCommonInterface;
248
+ showShadow: CMSIBCommonInterface;
249
+ shadowColor: CMSIBCommonInterface;
250
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
251
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
252
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
253
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
254
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
255
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
256
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
257
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
258
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
259
+ selectorKey: SelectorKeysEnum;
260
+ };
261
+ hoverState: {
262
+ borderColor: CMSIBCommonInterface;
263
+ borderStyle: CMSIBCommonInterface;
264
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
265
+ showBorder: CMSIBCommonInterface;
266
+ backgroundColor: CMSIBCommonInterface;
267
+ showShadow: CMSIBCommonInterface;
268
+ shadowColor: CMSIBCommonInterface;
269
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
270
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
271
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
272
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
273
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
274
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
275
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
276
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
277
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
278
+ selectorKey: SelectorKeysEnum;
279
+ };
280
+ };
281
+ productCardNameDesign: {
282
+ theme: CMSIBCommonInterface;
283
+ font: CMSIBCommonInterface;
284
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
285
+ textColor: CMSIBCommonInterface;
286
+ bold: CMSIBCommonInterface;
287
+ italic: CMSIBCommonInterface;
288
+ linethrough: CMSIBCommonInterface;
289
+ underline: CMSIBCommonInterface;
290
+ textAlign: CMSIBCommonInterface;
291
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
292
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
293
+ backgroundColor: CMSIBCommonInterface;
294
+ selectorKey: SelectorKeysEnum;
295
+ };
296
+ productCardInfoDesign: {
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
+ backgroundColor: CMSIBCommonInterface;
309
+ selectorKey: SelectorKeysEnum;
310
+ };
311
+ productCardPriceDesign: {
312
+ theme: CMSIBCommonInterface;
313
+ font: CMSIBCommonInterface;
314
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
315
+ textColor: CMSIBCommonInterface;
316
+ bold: CMSIBCommonInterface;
317
+ italic: CMSIBCommonInterface;
318
+ linethrough: CMSIBCommonInterface;
319
+ underline: CMSIBCommonInterface;
320
+ textAlign: CMSIBCommonInterface;
321
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
322
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
323
+ backgroundColor: CMSIBCommonInterface;
324
+ selectorKey: SelectorKeysEnum;
325
+ };
326
+ };
327
+ productPanelDesign: {
328
+ selectorKey: SelectorKeysEnum;
329
+ productNameDesign: {
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
+ backgroundColor: CMSIBCommonInterface;
342
+ selectorKey: SelectorKeysEnum;
343
+ };
344
+ productPriceDesign: {
345
+ theme: CMSIBCommonInterface;
346
+ font: CMSIBCommonInterface;
347
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
348
+ textColor: CMSIBCommonInterface;
349
+ bold: CMSIBCommonInterface;
350
+ italic: CMSIBCommonInterface;
351
+ linethrough: CMSIBCommonInterface;
352
+ underline: CMSIBCommonInterface;
353
+ textAlign: CMSIBCommonInterface;
354
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
355
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
356
+ backgroundColor: CMSIBCommonInterface;
357
+ selectorKey: SelectorKeysEnum;
358
+ };
359
+ productInfoDesign: {
360
+ theme: CMSIBCommonInterface;
361
+ font: CMSIBCommonInterface;
362
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
363
+ textColor: CMSIBCommonInterface;
364
+ bold: CMSIBCommonInterface;
365
+ italic: CMSIBCommonInterface;
366
+ linethrough: CMSIBCommonInterface;
367
+ underline: CMSIBCommonInterface;
368
+ textAlign: CMSIBCommonInterface;
369
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
370
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
371
+ backgroundColor: CMSIBCommonInterface;
372
+ selectorKey: SelectorKeysEnum;
373
+ };
374
+ selectButtonDesign: {
375
+ selectorKey: SelectorKeysEnum;
376
+ selectedState: {
377
+ borderColor: CMSIBCommonInterface;
378
+ borderStyle: CMSIBCommonInterface;
379
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
380
+ showBorder: CMSIBCommonInterface;
381
+ backgroundColor: CMSIBCommonInterface;
382
+ showShadow: CMSIBCommonInterface;
383
+ shadowColor: CMSIBCommonInterface;
384
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
385
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
386
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
387
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
388
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
389
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
390
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
391
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
392
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
393
+ theme: CMSIBCommonInterface;
394
+ font: CMSIBCommonInterface;
395
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
396
+ textColor: CMSIBCommonInterface;
397
+ bold: CMSIBCommonInterface;
398
+ italic: CMSIBCommonInterface;
399
+ linethrough: CMSIBCommonInterface;
400
+ underline: CMSIBCommonInterface;
401
+ textAlign: CMSIBCommonInterface;
402
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
403
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
404
+ selectorKey: SelectorKeysEnum;
405
+ };
406
+ hoverState: {
407
+ borderColor: CMSIBCommonInterface;
408
+ borderStyle: CMSIBCommonInterface;
409
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
410
+ showBorder: CMSIBCommonInterface;
411
+ backgroundColor: CMSIBCommonInterface;
412
+ showShadow: CMSIBCommonInterface;
413
+ shadowColor: CMSIBCommonInterface;
414
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
415
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
416
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
417
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
418
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
419
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
420
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
421
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
422
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
423
+ theme: CMSIBCommonInterface;
424
+ font: CMSIBCommonInterface;
425
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
426
+ textColor: CMSIBCommonInterface;
427
+ bold: CMSIBCommonInterface;
428
+ italic: CMSIBCommonInterface;
429
+ linethrough: CMSIBCommonInterface;
430
+ underline: CMSIBCommonInterface;
431
+ textAlign: CMSIBCommonInterface;
432
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
433
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
434
+ selectorKey: SelectorKeysEnum;
435
+ };
436
+ defaultState: {
437
+ borderColor: CMSIBCommonInterface;
438
+ borderStyle: CMSIBCommonInterface;
439
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
440
+ showBorder: CMSIBCommonInterface;
441
+ backgroundColor: CMSIBCommonInterface;
442
+ showShadow: CMSIBCommonInterface;
443
+ shadowColor: CMSIBCommonInterface;
444
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
445
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
446
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
447
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
448
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
449
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
450
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
451
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
452
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
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
+ };
467
+ addToCartButtonDesign: {
468
+ selectorKey: SelectorKeysEnum;
469
+ selectedState: {
470
+ borderColor: CMSIBCommonInterface;
471
+ borderStyle: CMSIBCommonInterface;
472
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
473
+ showBorder: CMSIBCommonInterface;
474
+ backgroundColor: CMSIBCommonInterface;
475
+ showShadow: CMSIBCommonInterface;
476
+ shadowColor: CMSIBCommonInterface;
477
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
478
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
479
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
480
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
481
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
482
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
483
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
484
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
485
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
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
+ selectorKey: SelectorKeysEnum;
498
+ };
499
+ hoverState: {
500
+ borderColor: CMSIBCommonInterface;
501
+ borderStyle: CMSIBCommonInterface;
502
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
503
+ showBorder: CMSIBCommonInterface;
504
+ backgroundColor: CMSIBCommonInterface;
505
+ showShadow: CMSIBCommonInterface;
506
+ shadowColor: CMSIBCommonInterface;
507
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
508
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
509
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
510
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
511
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
512
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
513
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
514
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
515
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
516
+ theme: CMSIBCommonInterface;
517
+ font: CMSIBCommonInterface;
518
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
519
+ textColor: CMSIBCommonInterface;
520
+ bold: CMSIBCommonInterface;
521
+ italic: CMSIBCommonInterface;
522
+ linethrough: CMSIBCommonInterface;
523
+ underline: CMSIBCommonInterface;
524
+ textAlign: CMSIBCommonInterface;
525
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
526
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
527
+ selectorKey: SelectorKeysEnum;
528
+ };
529
+ defaultState: {
530
+ borderColor: CMSIBCommonInterface;
531
+ borderStyle: CMSIBCommonInterface;
532
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
533
+ showBorder: CMSIBCommonInterface;
534
+ backgroundColor: CMSIBCommonInterface;
535
+ showShadow: CMSIBCommonInterface;
536
+ shadowColor: CMSIBCommonInterface;
537
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
538
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
539
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
540
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
541
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
542
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
543
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
544
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
545
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
546
+ theme: CMSIBCommonInterface;
547
+ font: CMSIBCommonInterface;
548
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
549
+ textColor: CMSIBCommonInterface;
550
+ bold: CMSIBCommonInterface;
551
+ italic: CMSIBCommonInterface;
552
+ linethrough: CMSIBCommonInterface;
553
+ underline: CMSIBCommonInterface;
554
+ textAlign: CMSIBCommonInterface;
555
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
556
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
557
+ selectorKey: SelectorKeysEnum;
558
+ };
559
+ };
560
+ };
561
+ };
562
+ content: {
563
+ selectorKey: SelectorKeysEnum;
564
+ showBundleName: {
565
+ value: boolean;
566
+ property: string;
567
+ propertyKey: CMSElementEditTypes;
568
+ };
569
+ showBundleDescription: {
570
+ value: boolean;
571
+ property: string;
572
+ propertyKey: CMSElementEditTypes;
573
+ };
574
+ bundleDescription: {
575
+ value: string;
576
+ property: string;
577
+ properttyKey: CMSElementEditTypes;
578
+ };
579
+ showDivider: {
580
+ value: boolean;
581
+ property: string;
582
+ propertyType: CMSElementEditTypes;
583
+ };
584
+ showProductGallery: {
585
+ value: boolean;
586
+ property: string;
587
+ propertyType: CMSElementEditTypes;
588
+ };
589
+ showProductName: {
590
+ value: boolean;
591
+ property: string;
592
+ propertyType: CMSElementEditTypes;
593
+ };
594
+ showProductInfo: {
595
+ value: boolean;
596
+ property: string;
597
+ propertyKey: CMSElementEditTypes;
598
+ };
599
+ showProductImage: {
600
+ value: boolean;
601
+ property: string;
602
+ propertyType: CMSElementEditTypes;
603
+ };
604
+ showProductPrice: {
605
+ value: boolean;
606
+ property: string;
607
+ propertyType: CMSElementEditTypes;
608
+ };
609
+ showProductVariantPicker: {
610
+ value: boolean;
611
+ property: string;
612
+ propertyKey: CMSElementEditTypes;
613
+ };
614
+ showProductQuantity: {
615
+ value: boolean;
616
+ property: string;
617
+ propertyType: CMSElementEditTypes;
618
+ };
619
+ };
620
+ dataConnector: {
621
+ selectorKey: SelectorKeysEnum;
622
+ dataConnector: {
623
+ value: {
624
+ dataSource: string;
625
+ childSource: string;
626
+ keyMappings: {
627
+ image: string;
628
+ };
629
+ };
630
+ property: string;
631
+ propertyType: CMSElementEditTypes;
632
+ };
633
+ };
634
+ };
@@ -22,6 +22,17 @@ export interface selfDesignInterface {
22
22
  textAlign: CMSIBCommonInterface;
23
23
  characterSpacing: CMSIBCommonInterface;
24
24
  lineHeight: CMSIBCommonInterface;
25
+ backgroundColor: CMSIBCommonInterface;
26
+ borderColor: CMSIBCommonInterface;
27
+ borderStyle: CMSIBCommonInterface;
28
+ borderPerSlide: CMSIBCommonInterface;
29
+ showBorder: CMSIBCommonInterface;
30
+ showShadow: CMSIBCommonInterface;
31
+ shadowColor: CMSIBCommonInterface;
32
+ blur: CMSIBCommonInterface;
33
+ spread: CMSIBCommonInterface;
34
+ angle: CMSIBCommonInterface;
35
+ borderRadius: CMSIBCommonInterface;
25
36
  };
26
37
  }
27
38
  export declare enum itemStockSelectorKeysEnum {