@sc-360-v2/storefront-cms-library 0.3.29 → 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.
- package/dist/animation-control.scss +23 -0
- package/dist/builder.js +1 -1
- package/dist/bulk-order-pad.scss +72 -7
- package/dist/cart-details.scss +570 -278
- package/dist/cart-summary.scss +102 -73
- package/dist/cartDropdownOverlay.scss +10 -5
- package/dist/checkout.scss +130 -77
- package/dist/contact-us.scss +3 -0
- package/dist/dropdownTemplate.scss +13 -2
- package/dist/fb-dropdown.scss +6 -2
- package/dist/form-preview.scss +24 -1
- package/dist/form-zindex-module.scss +25 -0
- package/dist/functions.scss +72 -2
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/light-box-v2.scss +1 -1
- package/dist/modal.scss +60 -33
- package/dist/position-module.scss +74 -0
- package/dist/prefix-list.scss +55 -0
- package/dist/quick-order-pad.scss +36 -8
- package/dist/responsive-behaviour.scss +21 -0
- package/dist/section.scss +13 -9
- package/dist/shareCartSideBar.scss +4 -2
- package/dist/submit-quote.scss +107 -49
- package/dist/types/builder/interfaces/global.d.ts +13 -0
- package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +441 -0
- package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +364 -0
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +2 -2
- package/dist/types/builder/tools/element-edit/common.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/countdown.d.ts +384 -44
- package/dist/types/builder/tools/element-edit/dummy.d.ts +0 -0
- package/dist/types/builder/tools/element-edit/productActions.d.ts +390 -43
- package/dist/types/builder/tools/element-edit/quickLinks.d.ts +192 -22
- package/dist/types/builder/tools/element-edit/repeater.d.ts +439 -1
- package/dist/types/builder/tools/element-edit/table.d.ts +0 -1
- package/dist/types/builder/tools/element-edit/typographyInstance.d.ts +981 -0
- package/dist/types/builder/tools/element-edit/video.d.ts +192 -22
- package/dist/types/global/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -66,17 +66,192 @@ export declare enum ButtonSelectorKeysEnum {
|
|
|
66
66
|
DROPDOWN_STYLE = "dropdownStyle"
|
|
67
67
|
}
|
|
68
68
|
export declare const ButtonProperties: {
|
|
69
|
-
|
|
69
|
+
backgroundColor: {
|
|
70
|
+
value: null;
|
|
71
|
+
parentRef: string;
|
|
72
|
+
property?: any;
|
|
73
|
+
propertyType?: any;
|
|
74
|
+
isReadOnly?: boolean | undefined;
|
|
75
|
+
};
|
|
76
|
+
borderColor: {
|
|
77
|
+
value: null;
|
|
78
|
+
parentRef: string;
|
|
79
|
+
property?: any;
|
|
80
|
+
propertyType?: any;
|
|
81
|
+
isReadOnly?: boolean | undefined;
|
|
82
|
+
};
|
|
83
|
+
borderStyle: {
|
|
84
|
+
value: null;
|
|
85
|
+
parentRef: string;
|
|
86
|
+
property?: any;
|
|
87
|
+
propertyType?: any;
|
|
88
|
+
isReadOnly?: boolean | undefined;
|
|
89
|
+
};
|
|
90
|
+
borderPerSlide: {
|
|
91
|
+
value: null;
|
|
92
|
+
parentRef: string;
|
|
93
|
+
isAll: boolean;
|
|
94
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
95
|
+
property: string;
|
|
96
|
+
iscss?: boolean | undefined;
|
|
97
|
+
propertyType?: any;
|
|
98
|
+
};
|
|
99
|
+
showBorder: {
|
|
100
|
+
value: boolean;
|
|
101
|
+
parentRef: string;
|
|
102
|
+
property?: any;
|
|
103
|
+
propertyType?: any;
|
|
104
|
+
isReadOnly?: boolean | undefined;
|
|
105
|
+
};
|
|
106
|
+
showShadow: {
|
|
107
|
+
value: null;
|
|
108
|
+
parentRef: string;
|
|
109
|
+
property?: any;
|
|
110
|
+
propertyType?: any;
|
|
111
|
+
isReadOnly?: boolean | undefined;
|
|
112
|
+
};
|
|
113
|
+
shadowColor: {
|
|
114
|
+
value: null;
|
|
115
|
+
parentRef: string;
|
|
116
|
+
property?: any;
|
|
117
|
+
propertyType?: any;
|
|
118
|
+
isReadOnly?: boolean | undefined;
|
|
119
|
+
};
|
|
120
|
+
blur: {
|
|
121
|
+
value: null;
|
|
122
|
+
parentRef: string;
|
|
123
|
+
unit?: string | number | undefined;
|
|
124
|
+
property?: any;
|
|
125
|
+
propertyType?: any;
|
|
126
|
+
isReadOnly?: boolean | undefined;
|
|
127
|
+
};
|
|
128
|
+
spread: {
|
|
129
|
+
value: null;
|
|
130
|
+
parentRef: string;
|
|
131
|
+
unit?: string | number | undefined;
|
|
132
|
+
property?: any;
|
|
133
|
+
propertyType?: any;
|
|
134
|
+
isReadOnly?: boolean | undefined;
|
|
135
|
+
};
|
|
136
|
+
angle: {
|
|
137
|
+
value: null;
|
|
138
|
+
parentRef: string;
|
|
139
|
+
unit?: string | number | undefined;
|
|
140
|
+
property?: any;
|
|
141
|
+
propertyType?: any;
|
|
142
|
+
isReadOnly?: boolean | undefined;
|
|
143
|
+
};
|
|
144
|
+
borderRadius: {
|
|
145
|
+
value: null;
|
|
146
|
+
parentRef: string;
|
|
147
|
+
isAll: boolean;
|
|
148
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
149
|
+
property: string;
|
|
150
|
+
iscss?: boolean | undefined;
|
|
151
|
+
propertyType?: any;
|
|
152
|
+
};
|
|
153
|
+
font: {
|
|
154
|
+
value: null;
|
|
155
|
+
parentRef: string;
|
|
156
|
+
property?: any;
|
|
157
|
+
propertyType?: any;
|
|
158
|
+
isReadOnly?: boolean | undefined;
|
|
159
|
+
};
|
|
160
|
+
fontSize: {
|
|
161
|
+
value: null;
|
|
162
|
+
parentRef: string;
|
|
163
|
+
unit?: string | number | undefined;
|
|
164
|
+
property?: any;
|
|
165
|
+
propertyType?: any;
|
|
166
|
+
isReadOnly?: boolean | undefined;
|
|
167
|
+
};
|
|
168
|
+
textColor: {
|
|
169
|
+
value: null;
|
|
170
|
+
parentRef: string;
|
|
171
|
+
property?: any;
|
|
172
|
+
propertyType?: any;
|
|
173
|
+
isReadOnly?: boolean | undefined;
|
|
174
|
+
};
|
|
175
|
+
bold: {
|
|
70
176
|
value: string;
|
|
71
177
|
parentRef: string;
|
|
72
|
-
|
|
178
|
+
property?: any;
|
|
179
|
+
propertyType?: any;
|
|
180
|
+
isReadOnly?: boolean | undefined;
|
|
73
181
|
};
|
|
74
|
-
|
|
182
|
+
italic: {
|
|
183
|
+
value: null;
|
|
184
|
+
parentRef: string;
|
|
185
|
+
property?: any;
|
|
186
|
+
propertyType?: any;
|
|
187
|
+
isReadOnly?: boolean | undefined;
|
|
188
|
+
};
|
|
189
|
+
linethrough: {
|
|
190
|
+
value: null;
|
|
191
|
+
parentRef: string;
|
|
192
|
+
property?: any;
|
|
193
|
+
propertyType?: any;
|
|
194
|
+
isReadOnly?: boolean | undefined;
|
|
195
|
+
};
|
|
196
|
+
underline: {
|
|
197
|
+
value: null;
|
|
198
|
+
parentRef: string;
|
|
199
|
+
property?: any;
|
|
200
|
+
propertyType?: any;
|
|
201
|
+
isReadOnly?: boolean | undefined;
|
|
202
|
+
};
|
|
203
|
+
textAlign: {
|
|
204
|
+
value: null;
|
|
205
|
+
parentRef: string;
|
|
206
|
+
property?: any;
|
|
207
|
+
propertyType?: any;
|
|
208
|
+
isReadOnly?: boolean | undefined;
|
|
209
|
+
};
|
|
210
|
+
characterSpacing: {
|
|
211
|
+
value: null;
|
|
212
|
+
parentRef: string;
|
|
213
|
+
unit?: string | number | undefined;
|
|
214
|
+
property?: any;
|
|
215
|
+
propertyType?: any;
|
|
216
|
+
isReadOnly?: boolean | undefined;
|
|
217
|
+
};
|
|
218
|
+
lineHeight: {
|
|
219
|
+
value: null;
|
|
220
|
+
parentRef: string;
|
|
221
|
+
unit?: string | number | undefined;
|
|
222
|
+
property?: any;
|
|
223
|
+
propertyType?: any;
|
|
224
|
+
isReadOnly?: boolean | undefined;
|
|
225
|
+
};
|
|
226
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
227
|
+
showIcon: {
|
|
228
|
+
value: null;
|
|
229
|
+
parentRef: string;
|
|
230
|
+
property?: any;
|
|
231
|
+
propertyType?: any;
|
|
232
|
+
isReadOnly?: boolean | undefined;
|
|
233
|
+
};
|
|
234
|
+
iconSize: {
|
|
235
|
+
value: null;
|
|
236
|
+
parentRef: string;
|
|
237
|
+
unit?: string | number | undefined;
|
|
238
|
+
property?: any;
|
|
239
|
+
propertyType?: any;
|
|
240
|
+
isReadOnly?: boolean | undefined;
|
|
241
|
+
};
|
|
242
|
+
iconColor: {
|
|
243
|
+
value: null;
|
|
244
|
+
parentRef: string;
|
|
245
|
+
property?: any;
|
|
246
|
+
propertyType?: any;
|
|
247
|
+
isReadOnly?: boolean | undefined;
|
|
248
|
+
};
|
|
249
|
+
buttonStyle: {
|
|
75
250
|
value: string;
|
|
76
|
-
|
|
251
|
+
parentRef: string;
|
|
77
252
|
propertyType: CMSElementEditTypes;
|
|
78
253
|
};
|
|
79
|
-
|
|
254
|
+
buttonText: {
|
|
80
255
|
value: string;
|
|
81
256
|
property: string;
|
|
82
257
|
propertyType: CMSElementEditTypes;
|
|
@@ -109,53 +284,225 @@ export declare const ButtonProperties: {
|
|
|
109
284
|
value: string;
|
|
110
285
|
propertyType: CMSElementEditTypes;
|
|
111
286
|
};
|
|
112
|
-
|
|
287
|
+
};
|
|
288
|
+
export declare const ButtonPropertiesHover: {
|
|
289
|
+
backgroundColor: {
|
|
290
|
+
value: null;
|
|
291
|
+
parentRef: string;
|
|
292
|
+
property?: any;
|
|
293
|
+
propertyType?: any;
|
|
294
|
+
isReadOnly?: boolean | undefined;
|
|
295
|
+
};
|
|
296
|
+
borderColor: {
|
|
297
|
+
value: null;
|
|
298
|
+
parentRef: string;
|
|
299
|
+
property?: any;
|
|
300
|
+
propertyType?: any;
|
|
301
|
+
isReadOnly?: boolean | undefined;
|
|
302
|
+
};
|
|
303
|
+
borderStyle: {
|
|
304
|
+
value: null;
|
|
305
|
+
parentRef: string;
|
|
306
|
+
property?: any;
|
|
307
|
+
propertyType?: any;
|
|
308
|
+
isReadOnly?: boolean | undefined;
|
|
309
|
+
};
|
|
310
|
+
borderPerSlide: {
|
|
311
|
+
value: null;
|
|
312
|
+
parentRef: string;
|
|
313
|
+
isAll: boolean;
|
|
314
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
315
|
+
property: string;
|
|
316
|
+
iscss?: boolean | undefined;
|
|
317
|
+
propertyType?: any;
|
|
318
|
+
};
|
|
319
|
+
showBorder: {
|
|
113
320
|
value: boolean;
|
|
321
|
+
parentRef: string;
|
|
322
|
+
property?: any;
|
|
323
|
+
propertyType?: any;
|
|
324
|
+
isReadOnly?: boolean | undefined;
|
|
325
|
+
};
|
|
326
|
+
showShadow: {
|
|
327
|
+
value: null;
|
|
328
|
+
parentRef: string;
|
|
329
|
+
property?: any;
|
|
330
|
+
propertyType?: any;
|
|
331
|
+
isReadOnly?: boolean | undefined;
|
|
332
|
+
};
|
|
333
|
+
shadowColor: {
|
|
334
|
+
value: null;
|
|
335
|
+
parentRef: string;
|
|
336
|
+
property?: any;
|
|
337
|
+
propertyType?: any;
|
|
338
|
+
isReadOnly?: boolean | undefined;
|
|
339
|
+
};
|
|
340
|
+
blur: {
|
|
341
|
+
value: null;
|
|
342
|
+
parentRef: string;
|
|
343
|
+
unit?: string | number | undefined;
|
|
344
|
+
property?: any;
|
|
345
|
+
propertyType?: any;
|
|
346
|
+
isReadOnly?: boolean | undefined;
|
|
347
|
+
};
|
|
348
|
+
spread: {
|
|
349
|
+
value: null;
|
|
350
|
+
parentRef: string;
|
|
351
|
+
unit?: string | number | undefined;
|
|
352
|
+
property?: any;
|
|
353
|
+
propertyType?: any;
|
|
354
|
+
isReadOnly?: boolean | undefined;
|
|
355
|
+
};
|
|
356
|
+
angle: {
|
|
357
|
+
value: null;
|
|
358
|
+
parentRef: string;
|
|
359
|
+
unit?: string | number | undefined;
|
|
360
|
+
property?: any;
|
|
361
|
+
propertyType?: any;
|
|
362
|
+
isReadOnly?: boolean | undefined;
|
|
363
|
+
};
|
|
364
|
+
borderRadius: {
|
|
365
|
+
value: null;
|
|
366
|
+
parentRef: string;
|
|
367
|
+
isAll: boolean;
|
|
368
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
114
369
|
property: string;
|
|
115
|
-
|
|
370
|
+
iscss?: boolean | undefined;
|
|
371
|
+
propertyType?: any;
|
|
372
|
+
};
|
|
373
|
+
font: {
|
|
374
|
+
value: null;
|
|
375
|
+
parentRef: string;
|
|
376
|
+
property?: any;
|
|
377
|
+
propertyType?: any;
|
|
378
|
+
isReadOnly?: boolean | undefined;
|
|
116
379
|
};
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
bold:
|
|
133
|
-
italic: CMSIBCommonInterface;
|
|
134
|
-
linethrough: CMSIBCommonInterface;
|
|
135
|
-
underline: CMSIBCommonInterface;
|
|
136
|
-
textAlign: CMSIBCommonInterface;
|
|
137
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
138
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
139
|
-
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
140
|
-
width: {
|
|
380
|
+
fontSize: {
|
|
381
|
+
value: null;
|
|
382
|
+
parentRef: string;
|
|
383
|
+
unit?: string | number | undefined;
|
|
384
|
+
property?: any;
|
|
385
|
+
propertyType?: any;
|
|
386
|
+
isReadOnly?: boolean | undefined;
|
|
387
|
+
};
|
|
388
|
+
textColor: {
|
|
389
|
+
value: null;
|
|
390
|
+
parentRef: string;
|
|
391
|
+
property?: any;
|
|
392
|
+
propertyType?: any;
|
|
393
|
+
isReadOnly?: boolean | undefined;
|
|
394
|
+
};
|
|
395
|
+
bold: {
|
|
141
396
|
value: string;
|
|
142
|
-
|
|
397
|
+
parentRef: string;
|
|
398
|
+
property?: any;
|
|
399
|
+
propertyType?: any;
|
|
400
|
+
isReadOnly?: boolean | undefined;
|
|
401
|
+
};
|
|
402
|
+
italic: {
|
|
403
|
+
value: null;
|
|
404
|
+
parentRef: string;
|
|
405
|
+
property?: any;
|
|
406
|
+
propertyType?: any;
|
|
407
|
+
isReadOnly?: boolean | undefined;
|
|
408
|
+
};
|
|
409
|
+
linethrough: {
|
|
410
|
+
value: null;
|
|
411
|
+
parentRef: string;
|
|
412
|
+
property?: any;
|
|
413
|
+
propertyType?: any;
|
|
414
|
+
isReadOnly?: boolean | undefined;
|
|
415
|
+
};
|
|
416
|
+
underline: {
|
|
417
|
+
value: null;
|
|
418
|
+
parentRef: string;
|
|
419
|
+
property?: any;
|
|
420
|
+
propertyType?: any;
|
|
421
|
+
isReadOnly?: boolean | undefined;
|
|
422
|
+
};
|
|
423
|
+
textAlign: {
|
|
424
|
+
value: null;
|
|
425
|
+
parentRef: string;
|
|
426
|
+
property?: any;
|
|
427
|
+
propertyType?: any;
|
|
428
|
+
isReadOnly?: boolean | undefined;
|
|
429
|
+
};
|
|
430
|
+
characterSpacing: {
|
|
431
|
+
value: null;
|
|
432
|
+
parentRef: string;
|
|
433
|
+
unit?: string | number | undefined;
|
|
434
|
+
property?: any;
|
|
435
|
+
propertyType?: any;
|
|
436
|
+
isReadOnly?: boolean | undefined;
|
|
437
|
+
};
|
|
438
|
+
lineHeight: {
|
|
439
|
+
value: null;
|
|
440
|
+
parentRef: string;
|
|
441
|
+
unit?: string | number | undefined;
|
|
442
|
+
property?: any;
|
|
443
|
+
propertyType?: any;
|
|
444
|
+
isReadOnly?: boolean | undefined;
|
|
445
|
+
};
|
|
446
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
447
|
+
showIcon: {
|
|
448
|
+
value: null;
|
|
449
|
+
parentRef: string;
|
|
450
|
+
property?: any;
|
|
451
|
+
propertyType?: any;
|
|
452
|
+
isReadOnly?: boolean | undefined;
|
|
453
|
+
};
|
|
454
|
+
iconSize: {
|
|
455
|
+
value: null;
|
|
456
|
+
parentRef: string;
|
|
457
|
+
unit?: string | number | undefined;
|
|
458
|
+
property?: any;
|
|
459
|
+
propertyType?: any;
|
|
460
|
+
isReadOnly?: boolean | undefined;
|
|
143
461
|
};
|
|
144
|
-
padding: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
145
462
|
iconColor: {
|
|
146
|
-
value:
|
|
147
|
-
|
|
148
|
-
r: number;
|
|
149
|
-
g: number;
|
|
150
|
-
b: number;
|
|
151
|
-
a: number;
|
|
152
|
-
};
|
|
153
|
-
hex: string;
|
|
154
|
-
};
|
|
463
|
+
value: null;
|
|
464
|
+
parentRef: string;
|
|
155
465
|
property?: any;
|
|
156
466
|
propertyType?: any;
|
|
157
467
|
isReadOnly?: boolean | undefined;
|
|
158
|
-
|
|
468
|
+
};
|
|
469
|
+
buttonStyle: {
|
|
470
|
+
value: string;
|
|
471
|
+
parentRef: string;
|
|
472
|
+
propertyType: CMSElementEditTypes;
|
|
473
|
+
};
|
|
474
|
+
buttonText: {
|
|
475
|
+
value: string;
|
|
476
|
+
property: string;
|
|
477
|
+
propertyType: CMSElementEditTypes;
|
|
478
|
+
};
|
|
479
|
+
iconPadding: {
|
|
480
|
+
value: number;
|
|
481
|
+
property: string;
|
|
482
|
+
parentRef: string;
|
|
483
|
+
propertyType: CMSElementEditTypes;
|
|
484
|
+
};
|
|
485
|
+
iconPosition: {
|
|
486
|
+
value: string;
|
|
487
|
+
parentRef: string;
|
|
488
|
+
propertyType: CMSElementEditTypes;
|
|
489
|
+
};
|
|
490
|
+
iconAndTextSpacing: {
|
|
491
|
+
value: number;
|
|
492
|
+
property: string;
|
|
493
|
+
unit: number;
|
|
494
|
+
parentRef: string;
|
|
495
|
+
propertyType: CMSElementEditTypes;
|
|
496
|
+
};
|
|
497
|
+
alignment: {
|
|
498
|
+
value: string;
|
|
499
|
+
property: string;
|
|
500
|
+
parentRef: string;
|
|
501
|
+
propertyType: CMSElementEditTypes;
|
|
502
|
+
};
|
|
503
|
+
buttonType: {
|
|
504
|
+
value: string;
|
|
505
|
+
propertyType: CMSElementEditTypes;
|
|
159
506
|
};
|
|
160
507
|
};
|
|
161
508
|
export declare const getDefaultData: () => CMSElementEditPopupInterface<ButtonLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
@@ -154,6 +154,198 @@ export declare const getDefaultData: () => {
|
|
|
154
154
|
design: {
|
|
155
155
|
selectorKey: QuickLinksSelectorKeysEnum;
|
|
156
156
|
quickLinksWidgetDesign: {
|
|
157
|
+
themeDesc: {
|
|
158
|
+
value: string;
|
|
159
|
+
property: string;
|
|
160
|
+
propertyType: CMSElementEditTypes;
|
|
161
|
+
};
|
|
162
|
+
fontDesc: {
|
|
163
|
+
value: string;
|
|
164
|
+
property: string;
|
|
165
|
+
propertyType: CMSElementEditTypes;
|
|
166
|
+
parentRef: string;
|
|
167
|
+
};
|
|
168
|
+
fontSizeDesc: {
|
|
169
|
+
value: number;
|
|
170
|
+
unit: number;
|
|
171
|
+
property: string;
|
|
172
|
+
propertyType: CMSElementEditTypes;
|
|
173
|
+
parentRef: string;
|
|
174
|
+
};
|
|
175
|
+
textColorDesc: {
|
|
176
|
+
value: {
|
|
177
|
+
hex: string;
|
|
178
|
+
rgb: {
|
|
179
|
+
r: string;
|
|
180
|
+
g: string;
|
|
181
|
+
b: string;
|
|
182
|
+
a: number;
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
property: string;
|
|
186
|
+
propertyType: CMSElementEditTypes;
|
|
187
|
+
parentRef: string;
|
|
188
|
+
};
|
|
189
|
+
textHighlightDesc: {
|
|
190
|
+
value: {
|
|
191
|
+
hex: string;
|
|
192
|
+
rgb: {
|
|
193
|
+
r: string;
|
|
194
|
+
g: string;
|
|
195
|
+
b: string;
|
|
196
|
+
a: number;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
property: string;
|
|
200
|
+
propertyType: CMSElementEditTypes;
|
|
201
|
+
};
|
|
202
|
+
boldDesc: {
|
|
203
|
+
value: string;
|
|
204
|
+
property: string;
|
|
205
|
+
propertyType: CMSElementEditTypes;
|
|
206
|
+
parentRef: string;
|
|
207
|
+
};
|
|
208
|
+
italicDesc: {
|
|
209
|
+
value: string;
|
|
210
|
+
property: string;
|
|
211
|
+
propertyType: CMSElementEditTypes;
|
|
212
|
+
parentRef: string;
|
|
213
|
+
};
|
|
214
|
+
linethroughDesc: {
|
|
215
|
+
value: string;
|
|
216
|
+
property: string;
|
|
217
|
+
propertyType: CMSElementEditTypes;
|
|
218
|
+
parentRef: string;
|
|
219
|
+
};
|
|
220
|
+
underlineDesc: {
|
|
221
|
+
value: string;
|
|
222
|
+
property: string;
|
|
223
|
+
propertyType: CMSElementEditTypes;
|
|
224
|
+
parentRef: string;
|
|
225
|
+
};
|
|
226
|
+
textAlignDesc: {
|
|
227
|
+
value: string;
|
|
228
|
+
property: string;
|
|
229
|
+
propertyType: CMSElementEditTypes;
|
|
230
|
+
parentRef: string;
|
|
231
|
+
};
|
|
232
|
+
characterSpacingDesc: {
|
|
233
|
+
value: number;
|
|
234
|
+
unit: number;
|
|
235
|
+
property: string;
|
|
236
|
+
propertyType: CMSElementEditTypes;
|
|
237
|
+
parentRef: string;
|
|
238
|
+
};
|
|
239
|
+
lineHeightDesc: {
|
|
240
|
+
value: number;
|
|
241
|
+
unit: number;
|
|
242
|
+
property: string;
|
|
243
|
+
propertyType: CMSElementEditTypes;
|
|
244
|
+
parentRef: string;
|
|
245
|
+
};
|
|
246
|
+
paragraphSpacingDesc: {
|
|
247
|
+
value: number;
|
|
248
|
+
unit: number;
|
|
249
|
+
property: string;
|
|
250
|
+
propertyType: CMSElementEditTypes;
|
|
251
|
+
parentRef: string;
|
|
252
|
+
};
|
|
253
|
+
theme: {
|
|
254
|
+
value: string;
|
|
255
|
+
property: string;
|
|
256
|
+
propertyType: CMSElementEditTypes;
|
|
257
|
+
};
|
|
258
|
+
font: {
|
|
259
|
+
value: string;
|
|
260
|
+
property: string;
|
|
261
|
+
propertyType: CMSElementEditTypes;
|
|
262
|
+
parentRef: string;
|
|
263
|
+
};
|
|
264
|
+
fontSize: {
|
|
265
|
+
value: number;
|
|
266
|
+
unit: number;
|
|
267
|
+
property: string;
|
|
268
|
+
propertyType: CMSElementEditTypes;
|
|
269
|
+
parentRef: string;
|
|
270
|
+
};
|
|
271
|
+
textColor: {
|
|
272
|
+
value: {
|
|
273
|
+
hex: string;
|
|
274
|
+
rgb: {
|
|
275
|
+
r: string;
|
|
276
|
+
g: string;
|
|
277
|
+
b: string;
|
|
278
|
+
a: number;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
property: string;
|
|
282
|
+
propertyType: CMSElementEditTypes;
|
|
283
|
+
parentRef: string;
|
|
284
|
+
};
|
|
285
|
+
textHighlight: {
|
|
286
|
+
value: {
|
|
287
|
+
hex: string;
|
|
288
|
+
rgb: {
|
|
289
|
+
r: string;
|
|
290
|
+
g: string;
|
|
291
|
+
b: string;
|
|
292
|
+
a: number;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
property: string;
|
|
296
|
+
propertyType: CMSElementEditTypes;
|
|
297
|
+
};
|
|
298
|
+
bold: {
|
|
299
|
+
value: string;
|
|
300
|
+
property: string;
|
|
301
|
+
propertyType: CMSElementEditTypes;
|
|
302
|
+
parentRef: string;
|
|
303
|
+
};
|
|
304
|
+
italic: {
|
|
305
|
+
value: string;
|
|
306
|
+
property: string;
|
|
307
|
+
propertyType: CMSElementEditTypes;
|
|
308
|
+
parentRef: string;
|
|
309
|
+
};
|
|
310
|
+
linethrough: {
|
|
311
|
+
value: string;
|
|
312
|
+
property: string;
|
|
313
|
+
propertyType: CMSElementEditTypes;
|
|
314
|
+
parentRef: string;
|
|
315
|
+
};
|
|
316
|
+
underline: {
|
|
317
|
+
value: string;
|
|
318
|
+
property: string;
|
|
319
|
+
propertyType: CMSElementEditTypes;
|
|
320
|
+
parentRef: string;
|
|
321
|
+
};
|
|
322
|
+
textAlign: {
|
|
323
|
+
value: string;
|
|
324
|
+
property: string;
|
|
325
|
+
propertyType: CMSElementEditTypes;
|
|
326
|
+
parentRef: string;
|
|
327
|
+
};
|
|
328
|
+
characterSpacing: {
|
|
329
|
+
value: number;
|
|
330
|
+
unit: number;
|
|
331
|
+
property: string;
|
|
332
|
+
propertyType: CMSElementEditTypes;
|
|
333
|
+
parentRef: string;
|
|
334
|
+
};
|
|
335
|
+
lineHeight: {
|
|
336
|
+
value: number;
|
|
337
|
+
unit: number;
|
|
338
|
+
property: string;
|
|
339
|
+
propertyType: CMSElementEditTypes;
|
|
340
|
+
parentRef: string;
|
|
341
|
+
};
|
|
342
|
+
paragraphSpacing: {
|
|
343
|
+
value: number;
|
|
344
|
+
unit: number;
|
|
345
|
+
property: string;
|
|
346
|
+
propertyType: CMSElementEditTypes;
|
|
347
|
+
parentRef: string;
|
|
348
|
+
};
|
|
157
349
|
selectorKey: QuickLinksSelectorKeysEnum;
|
|
158
350
|
backgroundColor: CMSIBCommonInterface;
|
|
159
351
|
borderColor: CMSIBCommonInterface;
|
|
@@ -169,28 +361,6 @@ export declare const getDefaultData: () => {
|
|
|
169
361
|
showIcon: CMSIBCommonInterface | undefined;
|
|
170
362
|
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
171
363
|
iconColor: CMSIBCommonInterface;
|
|
172
|
-
theme: CMSIBCommonInterface;
|
|
173
|
-
font: CMSIBCommonInterface;
|
|
174
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
175
|
-
textColor: CMSIBCommonInterface;
|
|
176
|
-
bold: CMSIBCommonInterface;
|
|
177
|
-
italic: CMSIBCommonInterface;
|
|
178
|
-
linethrough: CMSIBCommonInterface;
|
|
179
|
-
underline: CMSIBCommonInterface;
|
|
180
|
-
textAlign: CMSIBCommonInterface;
|
|
181
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
182
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
183
|
-
themeDesc: CMSIBCommonInterface;
|
|
184
|
-
fontDesc: CMSIBCommonInterface;
|
|
185
|
-
fontSizeDesc: import("../../interfaces/global").CMSIBSizeInterface;
|
|
186
|
-
textColorDesc: CMSIBCommonInterface;
|
|
187
|
-
boldDesc: CMSIBCommonInterface;
|
|
188
|
-
italicDesc: CMSIBCommonInterface;
|
|
189
|
-
linethroughDesc: CMSIBCommonInterface;
|
|
190
|
-
underlineDesc: CMSIBCommonInterface;
|
|
191
|
-
textAlignDesc: CMSIBCommonInterface;
|
|
192
|
-
characterSpacingDesc: import("../../interfaces/global").CMSIBSizeInterface | undefined;
|
|
193
|
-
lineHeightDesc: import("../../interfaces/global").CMSIBSizeInterface;
|
|
194
364
|
};
|
|
195
365
|
itemStyle: {
|
|
196
366
|
selectorKey: QuickLinksSelectorKeysEnum;
|