@sc-360-v2/storefront-cms-library 0.3.28 → 0.3.30

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.
Files changed (44) hide show
  1. package/dist/animation-control.scss +23 -0
  2. package/dist/builder.js +1 -1
  3. package/dist/bulk-order-pad.scss +328 -53
  4. package/dist/cart-details.scss +595 -300
  5. package/dist/cart-summary.scss +148 -40
  6. package/dist/cartAttributes.scss +24 -20
  7. package/dist/cartDropdownOverlay.scss +58 -10
  8. package/dist/checkout.scss +225 -79
  9. package/dist/contact-us.scss +3 -0
  10. package/dist/dropdownTemplate.scss +13 -2
  11. package/dist/fb-dropdown.scss +6 -2
  12. package/dist/filters.scss +0 -1
  13. package/dist/form-preview.scss +50 -9
  14. package/dist/form-zindex-module.scss +25 -0
  15. package/dist/functions.scss +72 -2
  16. package/dist/icons.js +1 -1
  17. package/dist/index.js +1 -1
  18. package/dist/light-box-v2.scss +1 -1
  19. package/dist/modal.scss +69 -31
  20. package/dist/order-status.scss +1 -0
  21. package/dist/position-module.scss +74 -0
  22. package/dist/prefix-list.scss +55 -0
  23. package/dist/quick-order-pad.scss +36 -8
  24. package/dist/responsive-behaviour.scss +21 -0
  25. package/dist/section.scss +13 -6
  26. package/dist/shareCartSideBar.scss +29 -14
  27. package/dist/submit-quote.scss +107 -49
  28. package/dist/types/builder/elements/form-builder/index.d.ts +14 -2
  29. package/dist/types/builder/interfaces/global.d.ts +13 -0
  30. package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +441 -0
  31. package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +364 -0
  32. package/dist/types/builder/tools/element-edit/cartSummary.d.ts +123 -55
  33. package/dist/types/builder/tools/element-edit/checkout.d.ts +120 -94
  34. package/dist/types/builder/tools/element-edit/common.d.ts +1 -0
  35. package/dist/types/builder/tools/element-edit/countdown.d.ts +384 -44
  36. package/dist/types/builder/tools/element-edit/dummy.d.ts +0 -0
  37. package/dist/types/builder/tools/element-edit/productActions.d.ts +390 -43
  38. package/dist/types/builder/tools/element-edit/quickLinks.d.ts +192 -22
  39. package/dist/types/builder/tools/element-edit/repeater.d.ts +439 -1
  40. package/dist/types/builder/tools/element-edit/table.d.ts +0 -1
  41. package/dist/types/builder/tools/element-edit/typographyInstance.d.ts +981 -0
  42. package/dist/types/builder/tools/element-edit/video.d.ts +192 -22
  43. package/dist/types/global/types.d.ts +2 -0
  44. package/package.json +1 -1
@@ -0,0 +1,364 @@
1
+ export declare const buttonDefaultStateInstance: {
2
+ backgroundColor: {
3
+ value: null;
4
+ parentRef: string;
5
+ property?: any;
6
+ propertyType?: any;
7
+ isReadOnly?: boolean | undefined;
8
+ };
9
+ borderColor: {
10
+ value: null;
11
+ parentRef: string;
12
+ property?: any;
13
+ propertyType?: any;
14
+ isReadOnly?: boolean | undefined;
15
+ };
16
+ borderStyle: {
17
+ value: null;
18
+ parentRef: string;
19
+ property?: any;
20
+ propertyType?: any;
21
+ isReadOnly?: boolean | undefined;
22
+ };
23
+ borderPerSlide: {
24
+ value: null;
25
+ parentRef: string;
26
+ isAll: boolean;
27
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
28
+ property: string;
29
+ iscss?: boolean | undefined;
30
+ propertyType?: any;
31
+ };
32
+ showBorder: {
33
+ value: boolean;
34
+ parentRef: string;
35
+ property?: any;
36
+ propertyType?: any;
37
+ isReadOnly?: boolean | undefined;
38
+ };
39
+ showShadow: {
40
+ value: null;
41
+ parentRef: string;
42
+ property?: any;
43
+ propertyType?: any;
44
+ isReadOnly?: boolean | undefined;
45
+ };
46
+ shadowColor: {
47
+ value: null;
48
+ parentRef: string;
49
+ property?: any;
50
+ propertyType?: any;
51
+ isReadOnly?: boolean | undefined;
52
+ };
53
+ blur: {
54
+ value: null;
55
+ parentRef: string;
56
+ unit?: string | number | undefined;
57
+ property?: any;
58
+ propertyType?: any;
59
+ isReadOnly?: boolean | undefined;
60
+ };
61
+ spread: {
62
+ value: null;
63
+ parentRef: string;
64
+ unit?: string | number | undefined;
65
+ property?: any;
66
+ propertyType?: any;
67
+ isReadOnly?: boolean | undefined;
68
+ };
69
+ angle: {
70
+ value: null;
71
+ parentRef: string;
72
+ unit?: string | number | undefined;
73
+ property?: any;
74
+ propertyType?: any;
75
+ isReadOnly?: boolean | undefined;
76
+ };
77
+ borderRadius: {
78
+ value: null;
79
+ parentRef: string;
80
+ isAll: boolean;
81
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
82
+ property: string;
83
+ iscss?: boolean | undefined;
84
+ propertyType?: any;
85
+ };
86
+ font: {
87
+ value: null;
88
+ parentRef: string;
89
+ property?: any;
90
+ propertyType?: any;
91
+ isReadOnly?: boolean | undefined;
92
+ };
93
+ fontSize: {
94
+ value: null;
95
+ parentRef: string;
96
+ unit?: string | number | undefined;
97
+ property?: any;
98
+ propertyType?: any;
99
+ isReadOnly?: boolean | undefined;
100
+ };
101
+ textColor: {
102
+ value: null;
103
+ parentRef: string;
104
+ property?: any;
105
+ propertyType?: any;
106
+ isReadOnly?: boolean | undefined;
107
+ };
108
+ bold: {
109
+ value: string;
110
+ parentRef: string;
111
+ property?: any;
112
+ propertyType?: any;
113
+ isReadOnly?: boolean | undefined;
114
+ };
115
+ italic: {
116
+ value: null;
117
+ parentRef: string;
118
+ property?: any;
119
+ propertyType?: any;
120
+ isReadOnly?: boolean | undefined;
121
+ };
122
+ linethrough: {
123
+ value: null;
124
+ parentRef: string;
125
+ property?: any;
126
+ propertyType?: any;
127
+ isReadOnly?: boolean | undefined;
128
+ };
129
+ underline: {
130
+ value: null;
131
+ parentRef: string;
132
+ property?: any;
133
+ propertyType?: any;
134
+ isReadOnly?: boolean | undefined;
135
+ };
136
+ textAlign: {
137
+ value: null;
138
+ parentRef: string;
139
+ property?: any;
140
+ propertyType?: any;
141
+ isReadOnly?: boolean | undefined;
142
+ };
143
+ characterSpacing: {
144
+ value: null;
145
+ parentRef: string;
146
+ unit?: string | number | undefined;
147
+ property?: any;
148
+ propertyType?: any;
149
+ isReadOnly?: boolean | undefined;
150
+ };
151
+ lineHeight: {
152
+ value: null;
153
+ parentRef: string;
154
+ unit?: string | number | undefined;
155
+ property?: any;
156
+ propertyType?: any;
157
+ isReadOnly?: boolean | undefined;
158
+ };
159
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
160
+ showIcon: {
161
+ value: null;
162
+ parentRef: string;
163
+ property?: any;
164
+ propertyType?: any;
165
+ isReadOnly?: boolean | undefined;
166
+ };
167
+ iconSize: {
168
+ value: null;
169
+ parentRef: string;
170
+ unit?: string | number | undefined;
171
+ property?: any;
172
+ propertyType?: any;
173
+ isReadOnly?: boolean | undefined;
174
+ };
175
+ iconColor: {
176
+ value: null;
177
+ parentRef: string;
178
+ property?: any;
179
+ propertyType?: any;
180
+ isReadOnly?: boolean | undefined;
181
+ };
182
+ };
183
+ export declare const buttonHoverStateInstance: {
184
+ backgroundColor: {
185
+ value: null;
186
+ parentRef: string;
187
+ property?: any;
188
+ propertyType?: any;
189
+ isReadOnly?: boolean | undefined;
190
+ };
191
+ borderColor: {
192
+ value: null;
193
+ parentRef: string;
194
+ property?: any;
195
+ propertyType?: any;
196
+ isReadOnly?: boolean | undefined;
197
+ };
198
+ borderStyle: {
199
+ value: null;
200
+ parentRef: string;
201
+ property?: any;
202
+ propertyType?: any;
203
+ isReadOnly?: boolean | undefined;
204
+ };
205
+ borderPerSlide: {
206
+ value: null;
207
+ parentRef: string;
208
+ isAll: boolean;
209
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
210
+ property: string;
211
+ iscss?: boolean | undefined;
212
+ propertyType?: any;
213
+ };
214
+ showBorder: {
215
+ value: boolean;
216
+ parentRef: string;
217
+ property?: any;
218
+ propertyType?: any;
219
+ isReadOnly?: boolean | undefined;
220
+ };
221
+ showShadow: {
222
+ value: null;
223
+ parentRef: string;
224
+ property?: any;
225
+ propertyType?: any;
226
+ isReadOnly?: boolean | undefined;
227
+ };
228
+ shadowColor: {
229
+ value: null;
230
+ parentRef: string;
231
+ property?: any;
232
+ propertyType?: any;
233
+ isReadOnly?: boolean | undefined;
234
+ };
235
+ blur: {
236
+ value: null;
237
+ parentRef: string;
238
+ unit?: string | number | undefined;
239
+ property?: any;
240
+ propertyType?: any;
241
+ isReadOnly?: boolean | undefined;
242
+ };
243
+ spread: {
244
+ value: null;
245
+ parentRef: string;
246
+ unit?: string | number | undefined;
247
+ property?: any;
248
+ propertyType?: any;
249
+ isReadOnly?: boolean | undefined;
250
+ };
251
+ angle: {
252
+ value: null;
253
+ parentRef: string;
254
+ unit?: string | number | undefined;
255
+ property?: any;
256
+ propertyType?: any;
257
+ isReadOnly?: boolean | undefined;
258
+ };
259
+ borderRadius: {
260
+ value: null;
261
+ parentRef: string;
262
+ isAll: boolean;
263
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
264
+ property: string;
265
+ iscss?: boolean | undefined;
266
+ propertyType?: any;
267
+ };
268
+ font: {
269
+ value: null;
270
+ parentRef: string;
271
+ property?: any;
272
+ propertyType?: any;
273
+ isReadOnly?: boolean | undefined;
274
+ };
275
+ fontSize: {
276
+ value: null;
277
+ parentRef: string;
278
+ unit?: string | number | undefined;
279
+ property?: any;
280
+ propertyType?: any;
281
+ isReadOnly?: boolean | undefined;
282
+ };
283
+ textColor: {
284
+ value: null;
285
+ parentRef: string;
286
+ property?: any;
287
+ propertyType?: any;
288
+ isReadOnly?: boolean | undefined;
289
+ };
290
+ bold: {
291
+ value: string;
292
+ parentRef: string;
293
+ property?: any;
294
+ propertyType?: any;
295
+ isReadOnly?: boolean | undefined;
296
+ };
297
+ italic: {
298
+ value: null;
299
+ parentRef: string;
300
+ property?: any;
301
+ propertyType?: any;
302
+ isReadOnly?: boolean | undefined;
303
+ };
304
+ linethrough: {
305
+ value: null;
306
+ parentRef: string;
307
+ property?: any;
308
+ propertyType?: any;
309
+ isReadOnly?: boolean | undefined;
310
+ };
311
+ underline: {
312
+ value: null;
313
+ parentRef: string;
314
+ property?: any;
315
+ propertyType?: any;
316
+ isReadOnly?: boolean | undefined;
317
+ };
318
+ textAlign: {
319
+ value: null;
320
+ parentRef: string;
321
+ property?: any;
322
+ propertyType?: any;
323
+ isReadOnly?: boolean | undefined;
324
+ };
325
+ characterSpacing: {
326
+ value: null;
327
+ parentRef: string;
328
+ unit?: string | number | undefined;
329
+ property?: any;
330
+ propertyType?: any;
331
+ isReadOnly?: boolean | undefined;
332
+ };
333
+ lineHeight: {
334
+ value: null;
335
+ parentRef: string;
336
+ unit?: string | number | undefined;
337
+ property?: any;
338
+ propertyType?: any;
339
+ isReadOnly?: boolean | undefined;
340
+ };
341
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
342
+ showIcon: {
343
+ value: null;
344
+ parentRef: string;
345
+ property?: any;
346
+ propertyType?: any;
347
+ isReadOnly?: boolean | undefined;
348
+ };
349
+ iconSize: {
350
+ value: null;
351
+ parentRef: string;
352
+ unit?: string | number | undefined;
353
+ property?: any;
354
+ propertyType?: any;
355
+ isReadOnly?: boolean | undefined;
356
+ };
357
+ iconColor: {
358
+ value: null;
359
+ parentRef: string;
360
+ property?: any;
361
+ propertyType?: any;
362
+ isReadOnly?: boolean | undefined;
363
+ };
364
+ };
@@ -14,7 +14,9 @@ export declare enum SelectorKeysEnum {
14
14
  TOTAL_AMOUNT_DESIGN = "totalAmountDesign",
15
15
  SECONDARY_TEXT_DESIGN = "secondaryTextDesign",
16
16
  PRIMARY_BUTTON_DESIGN = "primaryButtonDesign",
17
- SECONDARY_BUTTON_DESIGN = "secondaryButtonDesign"
17
+ SECONDARY_BUTTON_DESIGN = "secondaryButtonDesign",
18
+ HOVER_STATE = "hoverState",
19
+ DEFAULT_STATE = "defaultState"
18
20
  }
19
21
  export declare const getDefaultData: () => {
20
22
  layout: {
@@ -230,64 +232,130 @@ export declare const getDefaultData: () => {
230
232
  selectorKey: SelectorKeysEnum;
231
233
  };
232
234
  primaryButtonDesign: {
233
- theme: CMSIBCommonInterface;
234
- font: CMSIBCommonInterface;
235
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
236
- textColor: CMSIBCommonInterface;
237
- bold: CMSIBCommonInterface;
238
- italic: CMSIBCommonInterface;
239
- linethrough: CMSIBCommonInterface;
240
- underline: CMSIBCommonInterface;
241
- textAlign: CMSIBCommonInterface;
242
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
243
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
244
- borderColor: CMSIBCommonInterface;
245
- borderStyle: CMSIBCommonInterface;
246
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
247
- showBorder: CMSIBCommonInterface;
248
- backgroundColor: CMSIBCommonInterface;
249
- showShadow: CMSIBCommonInterface;
250
- shadowColor: CMSIBCommonInterface;
251
- blur: import("../../interfaces/global").CMSIBSizeInterface;
252
- spread: import("../../interfaces/global").CMSIBSizeInterface;
253
- angle: import("../../interfaces/global").CMSIBSizeInterface;
254
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
255
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
256
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
257
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
258
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
259
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
260
235
  selectorKey: SelectorKeysEnum;
236
+ defaultState: {
237
+ theme: CMSIBCommonInterface;
238
+ font: CMSIBCommonInterface;
239
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
240
+ textColor: CMSIBCommonInterface;
241
+ bold: CMSIBCommonInterface;
242
+ italic: CMSIBCommonInterface;
243
+ linethrough: CMSIBCommonInterface;
244
+ underline: CMSIBCommonInterface;
245
+ textAlign: CMSIBCommonInterface;
246
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
247
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
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
+ hoverState: {
267
+ theme: CMSIBCommonInterface;
268
+ font: CMSIBCommonInterface;
269
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
270
+ textColor: CMSIBCommonInterface;
271
+ bold: CMSIBCommonInterface;
272
+ italic: CMSIBCommonInterface;
273
+ linethrough: CMSIBCommonInterface;
274
+ underline: CMSIBCommonInterface;
275
+ textAlign: CMSIBCommonInterface;
276
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
277
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
278
+ borderColor: CMSIBCommonInterface;
279
+ borderStyle: CMSIBCommonInterface;
280
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
281
+ showBorder: CMSIBCommonInterface;
282
+ backgroundColor: CMSIBCommonInterface;
283
+ showShadow: CMSIBCommonInterface;
284
+ shadowColor: CMSIBCommonInterface;
285
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
286
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
287
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
288
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
289
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
290
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
291
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
292
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
293
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
294
+ selectorKey: SelectorKeysEnum;
295
+ };
261
296
  };
262
297
  secondaryButtonDesign: {
263
- theme: CMSIBCommonInterface;
264
- font: CMSIBCommonInterface;
265
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
266
- textColor: CMSIBCommonInterface;
267
- bold: CMSIBCommonInterface;
268
- italic: CMSIBCommonInterface;
269
- linethrough: CMSIBCommonInterface;
270
- underline: CMSIBCommonInterface;
271
- textAlign: CMSIBCommonInterface;
272
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
273
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
274
- borderColor: CMSIBCommonInterface;
275
- borderStyle: CMSIBCommonInterface;
276
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
277
- showBorder: CMSIBCommonInterface;
278
- backgroundColor: CMSIBCommonInterface;
279
- showShadow: CMSIBCommonInterface;
280
- shadowColor: CMSIBCommonInterface;
281
- blur: import("../../interfaces/global").CMSIBSizeInterface;
282
- spread: import("../../interfaces/global").CMSIBSizeInterface;
283
- angle: import("../../interfaces/global").CMSIBSizeInterface;
284
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
285
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
286
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
287
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
288
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
289
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
290
298
  selectorKey: SelectorKeysEnum;
299
+ hoverState: {
300
+ theme: CMSIBCommonInterface;
301
+ font: CMSIBCommonInterface;
302
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
303
+ textColor: CMSIBCommonInterface;
304
+ bold: CMSIBCommonInterface;
305
+ italic: CMSIBCommonInterface;
306
+ linethrough: CMSIBCommonInterface;
307
+ underline: CMSIBCommonInterface;
308
+ textAlign: CMSIBCommonInterface;
309
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
310
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
311
+ borderColor: CMSIBCommonInterface;
312
+ borderStyle: CMSIBCommonInterface;
313
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
314
+ showBorder: CMSIBCommonInterface;
315
+ backgroundColor: CMSIBCommonInterface;
316
+ showShadow: CMSIBCommonInterface;
317
+ shadowColor: CMSIBCommonInterface;
318
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
319
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
320
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
321
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
322
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
323
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
324
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
325
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
326
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
327
+ selectorKey: SelectorKeysEnum;
328
+ };
329
+ defaultState: {
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
+ };
291
359
  };
292
360
  };
293
361
  content: {