@sc-360-v2/storefront-cms-library 0.3.99 → 0.4.1
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/error-templates.scss +53 -0
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/profile.scss +0 -8
- package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +81 -101
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +240 -312
- package/dist/types/builder/tools/element-edit/coupon.d.ts +40 -52
- package/dist/types/builder/tools/element-edit/embroidery.d.ts +40 -44
- package/dist/types/builder/tools/element-edit/userElements.d.ts +6 -6
- package/package.json +1 -1
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
2
2
|
export declare const buttonDefaultStateInstance: {
|
|
3
3
|
backgroundColor: {
|
|
4
|
-
value: null;
|
|
5
4
|
parentRef: string;
|
|
5
|
+
value?: any;
|
|
6
6
|
property?: any;
|
|
7
7
|
propertyType?: any;
|
|
8
8
|
isReadOnly?: boolean | undefined;
|
|
9
9
|
};
|
|
10
10
|
borderColor: {
|
|
11
|
-
value: null;
|
|
12
11
|
parentRef: string;
|
|
12
|
+
value?: any;
|
|
13
13
|
property?: any;
|
|
14
14
|
propertyType?: any;
|
|
15
15
|
isReadOnly?: boolean | undefined;
|
|
16
16
|
};
|
|
17
17
|
borderStyle: {
|
|
18
|
-
value: null;
|
|
19
18
|
parentRef: string;
|
|
19
|
+
value?: any;
|
|
20
20
|
property?: any;
|
|
21
21
|
propertyType?: any;
|
|
22
22
|
isReadOnly?: boolean | undefined;
|
|
23
23
|
};
|
|
24
24
|
borderPerSlide: {
|
|
25
|
-
value: null;
|
|
26
25
|
parentRef: string;
|
|
27
26
|
isAll: boolean;
|
|
28
27
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -38,45 +37,44 @@ export declare const buttonDefaultStateInstance: {
|
|
|
38
37
|
isReadOnly?: boolean | undefined;
|
|
39
38
|
};
|
|
40
39
|
showShadow: {
|
|
41
|
-
value: null;
|
|
42
40
|
parentRef: string;
|
|
41
|
+
value?: any;
|
|
43
42
|
property?: any;
|
|
44
43
|
propertyType?: any;
|
|
45
44
|
isReadOnly?: boolean | undefined;
|
|
46
45
|
};
|
|
47
46
|
shadowColor: {
|
|
48
|
-
value: null;
|
|
49
47
|
parentRef: string;
|
|
48
|
+
value?: any;
|
|
50
49
|
property?: any;
|
|
51
50
|
propertyType?: any;
|
|
52
51
|
isReadOnly?: boolean | undefined;
|
|
53
52
|
};
|
|
54
53
|
blur: {
|
|
55
|
-
value: null;
|
|
56
54
|
parentRef: string;
|
|
57
55
|
unit?: string | number | undefined;
|
|
56
|
+
value?: any;
|
|
58
57
|
property?: any;
|
|
59
58
|
propertyType?: any;
|
|
60
59
|
isReadOnly?: boolean | undefined;
|
|
61
60
|
};
|
|
62
61
|
spread: {
|
|
63
|
-
value: null;
|
|
64
62
|
parentRef: string;
|
|
65
63
|
unit?: string | number | undefined;
|
|
64
|
+
value?: any;
|
|
66
65
|
property?: any;
|
|
67
66
|
propertyType?: any;
|
|
68
67
|
isReadOnly?: boolean | undefined;
|
|
69
68
|
};
|
|
70
69
|
angle: {
|
|
71
|
-
value: null;
|
|
72
70
|
parentRef: string;
|
|
73
71
|
unit?: string | number | undefined;
|
|
72
|
+
value?: any;
|
|
74
73
|
property?: any;
|
|
75
74
|
propertyType?: any;
|
|
76
75
|
isReadOnly?: boolean | undefined;
|
|
77
76
|
};
|
|
78
77
|
borderRadius: {
|
|
79
|
-
value: null;
|
|
80
78
|
parentRef: string;
|
|
81
79
|
isAll: boolean;
|
|
82
80
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -85,23 +83,23 @@ export declare const buttonDefaultStateInstance: {
|
|
|
85
83
|
propertyType?: any;
|
|
86
84
|
};
|
|
87
85
|
font: {
|
|
88
|
-
value: null;
|
|
89
86
|
parentRef: string;
|
|
87
|
+
value?: any;
|
|
90
88
|
property?: any;
|
|
91
89
|
propertyType?: any;
|
|
92
90
|
isReadOnly?: boolean | undefined;
|
|
93
91
|
};
|
|
94
92
|
fontSize: {
|
|
95
|
-
value: null;
|
|
96
93
|
parentRef: string;
|
|
97
94
|
unit?: string | number | undefined;
|
|
95
|
+
value?: any;
|
|
98
96
|
property?: any;
|
|
99
97
|
propertyType?: any;
|
|
100
98
|
isReadOnly?: boolean | undefined;
|
|
101
99
|
};
|
|
102
100
|
textColor: {
|
|
103
|
-
value: null;
|
|
104
101
|
parentRef: string;
|
|
102
|
+
value?: any;
|
|
105
103
|
property?: any;
|
|
106
104
|
propertyType?: any;
|
|
107
105
|
isReadOnly?: boolean | undefined;
|
|
@@ -114,68 +112,68 @@ export declare const buttonDefaultStateInstance: {
|
|
|
114
112
|
isReadOnly?: boolean | undefined;
|
|
115
113
|
};
|
|
116
114
|
italic: {
|
|
117
|
-
value: null;
|
|
118
115
|
parentRef: string;
|
|
116
|
+
value?: any;
|
|
119
117
|
property?: any;
|
|
120
118
|
propertyType?: any;
|
|
121
119
|
isReadOnly?: boolean | undefined;
|
|
122
120
|
};
|
|
123
121
|
linethrough: {
|
|
124
|
-
value: null;
|
|
125
122
|
parentRef: string;
|
|
123
|
+
value?: any;
|
|
126
124
|
property?: any;
|
|
127
125
|
propertyType?: any;
|
|
128
126
|
isReadOnly?: boolean | undefined;
|
|
129
127
|
};
|
|
130
128
|
underline: {
|
|
131
|
-
value: null;
|
|
132
129
|
parentRef: string;
|
|
130
|
+
value?: any;
|
|
133
131
|
property?: any;
|
|
134
132
|
propertyType?: any;
|
|
135
133
|
isReadOnly?: boolean | undefined;
|
|
136
134
|
};
|
|
137
135
|
textAlign: {
|
|
138
|
-
value: null;
|
|
139
136
|
parentRef: string;
|
|
137
|
+
value?: any;
|
|
140
138
|
property?: any;
|
|
141
139
|
propertyType?: any;
|
|
142
140
|
isReadOnly?: boolean | undefined;
|
|
143
141
|
};
|
|
144
142
|
characterSpacing: {
|
|
145
|
-
value: null;
|
|
146
143
|
parentRef: string;
|
|
147
144
|
unit?: string | number | undefined;
|
|
145
|
+
value?: any;
|
|
148
146
|
property?: any;
|
|
149
147
|
propertyType?: any;
|
|
150
148
|
isReadOnly?: boolean | undefined;
|
|
151
149
|
};
|
|
152
150
|
lineHeight: {
|
|
153
|
-
value: null;
|
|
154
151
|
parentRef: string;
|
|
155
152
|
unit?: string | number | undefined;
|
|
153
|
+
value?: any;
|
|
156
154
|
property?: any;
|
|
157
155
|
propertyType?: any;
|
|
158
156
|
isReadOnly?: boolean | undefined;
|
|
159
157
|
};
|
|
160
158
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
161
159
|
showIcon: {
|
|
162
|
-
value: null;
|
|
163
160
|
parentRef: string;
|
|
161
|
+
value?: any;
|
|
164
162
|
property?: any;
|
|
165
163
|
propertyType?: any;
|
|
166
164
|
isReadOnly?: boolean | undefined;
|
|
167
165
|
};
|
|
168
166
|
iconSize: {
|
|
169
|
-
value: null;
|
|
170
167
|
parentRef: string;
|
|
171
168
|
unit?: string | number | undefined;
|
|
169
|
+
value?: any;
|
|
172
170
|
property?: any;
|
|
173
171
|
propertyType?: any;
|
|
174
172
|
isReadOnly?: boolean | undefined;
|
|
175
173
|
};
|
|
176
174
|
iconColor: {
|
|
177
|
-
value: null;
|
|
178
175
|
parentRef: string;
|
|
176
|
+
value?: any;
|
|
179
177
|
property?: any;
|
|
180
178
|
propertyType?: any;
|
|
181
179
|
isReadOnly?: boolean | undefined;
|
|
@@ -183,28 +181,27 @@ export declare const buttonDefaultStateInstance: {
|
|
|
183
181
|
};
|
|
184
182
|
export declare const buttonHoverStateInstance: {
|
|
185
183
|
backgroundColor: {
|
|
186
|
-
value: null;
|
|
187
184
|
parentRef: string;
|
|
185
|
+
value?: any;
|
|
188
186
|
property?: any;
|
|
189
187
|
propertyType?: any;
|
|
190
188
|
isReadOnly?: boolean | undefined;
|
|
191
189
|
};
|
|
192
190
|
borderColor: {
|
|
193
|
-
value: null;
|
|
194
191
|
parentRef: string;
|
|
192
|
+
value?: any;
|
|
195
193
|
property?: any;
|
|
196
194
|
propertyType?: any;
|
|
197
195
|
isReadOnly?: boolean | undefined;
|
|
198
196
|
};
|
|
199
197
|
borderStyle: {
|
|
200
|
-
value: null;
|
|
201
198
|
parentRef: string;
|
|
199
|
+
value?: any;
|
|
202
200
|
property?: any;
|
|
203
201
|
propertyType?: any;
|
|
204
202
|
isReadOnly?: boolean | undefined;
|
|
205
203
|
};
|
|
206
204
|
borderPerSlide: {
|
|
207
|
-
value: null;
|
|
208
205
|
parentRef: string;
|
|
209
206
|
isAll: boolean;
|
|
210
207
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -220,45 +217,44 @@ export declare const buttonHoverStateInstance: {
|
|
|
220
217
|
isReadOnly?: boolean | undefined;
|
|
221
218
|
};
|
|
222
219
|
showShadow: {
|
|
223
|
-
value: null;
|
|
224
220
|
parentRef: string;
|
|
221
|
+
value?: any;
|
|
225
222
|
property?: any;
|
|
226
223
|
propertyType?: any;
|
|
227
224
|
isReadOnly?: boolean | undefined;
|
|
228
225
|
};
|
|
229
226
|
shadowColor: {
|
|
230
|
-
value: null;
|
|
231
227
|
parentRef: string;
|
|
228
|
+
value?: any;
|
|
232
229
|
property?: any;
|
|
233
230
|
propertyType?: any;
|
|
234
231
|
isReadOnly?: boolean | undefined;
|
|
235
232
|
};
|
|
236
233
|
blur: {
|
|
237
|
-
value: null;
|
|
238
234
|
parentRef: string;
|
|
239
235
|
unit?: string | number | undefined;
|
|
236
|
+
value?: any;
|
|
240
237
|
property?: any;
|
|
241
238
|
propertyType?: any;
|
|
242
239
|
isReadOnly?: boolean | undefined;
|
|
243
240
|
};
|
|
244
241
|
spread: {
|
|
245
|
-
value: null;
|
|
246
242
|
parentRef: string;
|
|
247
243
|
unit?: string | number | undefined;
|
|
244
|
+
value?: any;
|
|
248
245
|
property?: any;
|
|
249
246
|
propertyType?: any;
|
|
250
247
|
isReadOnly?: boolean | undefined;
|
|
251
248
|
};
|
|
252
249
|
angle: {
|
|
253
|
-
value: null;
|
|
254
250
|
parentRef: string;
|
|
255
251
|
unit?: string | number | undefined;
|
|
252
|
+
value?: any;
|
|
256
253
|
property?: any;
|
|
257
254
|
propertyType?: any;
|
|
258
255
|
isReadOnly?: boolean | undefined;
|
|
259
256
|
};
|
|
260
257
|
borderRadius: {
|
|
261
|
-
value: null;
|
|
262
258
|
parentRef: string;
|
|
263
259
|
isAll: boolean;
|
|
264
260
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -267,23 +263,23 @@ export declare const buttonHoverStateInstance: {
|
|
|
267
263
|
propertyType?: any;
|
|
268
264
|
};
|
|
269
265
|
font: {
|
|
270
|
-
value: null;
|
|
271
266
|
parentRef: string;
|
|
267
|
+
value?: any;
|
|
272
268
|
property?: any;
|
|
273
269
|
propertyType?: any;
|
|
274
270
|
isReadOnly?: boolean | undefined;
|
|
275
271
|
};
|
|
276
272
|
fontSize: {
|
|
277
|
-
value: null;
|
|
278
273
|
parentRef: string;
|
|
279
274
|
unit?: string | number | undefined;
|
|
275
|
+
value?: any;
|
|
280
276
|
property?: any;
|
|
281
277
|
propertyType?: any;
|
|
282
278
|
isReadOnly?: boolean | undefined;
|
|
283
279
|
};
|
|
284
280
|
textColor: {
|
|
285
|
-
value: null;
|
|
286
281
|
parentRef: string;
|
|
282
|
+
value?: any;
|
|
287
283
|
property?: any;
|
|
288
284
|
propertyType?: any;
|
|
289
285
|
isReadOnly?: boolean | undefined;
|
|
@@ -296,68 +292,68 @@ export declare const buttonHoverStateInstance: {
|
|
|
296
292
|
isReadOnly?: boolean | undefined;
|
|
297
293
|
};
|
|
298
294
|
italic: {
|
|
299
|
-
value: null;
|
|
300
295
|
parentRef: string;
|
|
296
|
+
value?: any;
|
|
301
297
|
property?: any;
|
|
302
298
|
propertyType?: any;
|
|
303
299
|
isReadOnly?: boolean | undefined;
|
|
304
300
|
};
|
|
305
301
|
linethrough: {
|
|
306
|
-
value: null;
|
|
307
302
|
parentRef: string;
|
|
303
|
+
value?: any;
|
|
308
304
|
property?: any;
|
|
309
305
|
propertyType?: any;
|
|
310
306
|
isReadOnly?: boolean | undefined;
|
|
311
307
|
};
|
|
312
308
|
underline: {
|
|
313
|
-
value: null;
|
|
314
309
|
parentRef: string;
|
|
310
|
+
value?: any;
|
|
315
311
|
property?: any;
|
|
316
312
|
propertyType?: any;
|
|
317
313
|
isReadOnly?: boolean | undefined;
|
|
318
314
|
};
|
|
319
315
|
textAlign: {
|
|
320
|
-
value: null;
|
|
321
316
|
parentRef: string;
|
|
317
|
+
value?: any;
|
|
322
318
|
property?: any;
|
|
323
319
|
propertyType?: any;
|
|
324
320
|
isReadOnly?: boolean | undefined;
|
|
325
321
|
};
|
|
326
322
|
characterSpacing: {
|
|
327
|
-
value: null;
|
|
328
323
|
parentRef: string;
|
|
329
324
|
unit?: string | number | undefined;
|
|
325
|
+
value?: any;
|
|
330
326
|
property?: any;
|
|
331
327
|
propertyType?: any;
|
|
332
328
|
isReadOnly?: boolean | undefined;
|
|
333
329
|
};
|
|
334
330
|
lineHeight: {
|
|
335
|
-
value: null;
|
|
336
331
|
parentRef: string;
|
|
337
332
|
unit?: string | number | undefined;
|
|
333
|
+
value?: any;
|
|
338
334
|
property?: any;
|
|
339
335
|
propertyType?: any;
|
|
340
336
|
isReadOnly?: boolean | undefined;
|
|
341
337
|
};
|
|
342
338
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
343
339
|
showIcon: {
|
|
344
|
-
value: null;
|
|
345
340
|
parentRef: string;
|
|
341
|
+
value?: any;
|
|
346
342
|
property?: any;
|
|
347
343
|
propertyType?: any;
|
|
348
344
|
isReadOnly?: boolean | undefined;
|
|
349
345
|
};
|
|
350
346
|
iconSize: {
|
|
351
|
-
value: null;
|
|
352
347
|
parentRef: string;
|
|
353
348
|
unit?: string | number | undefined;
|
|
349
|
+
value?: any;
|
|
354
350
|
property?: any;
|
|
355
351
|
propertyType?: any;
|
|
356
352
|
isReadOnly?: boolean | undefined;
|
|
357
353
|
};
|
|
358
354
|
iconColor: {
|
|
359
|
-
value: null;
|
|
360
355
|
parentRef: string;
|
|
356
|
+
value?: any;
|
|
361
357
|
property?: any;
|
|
362
358
|
propertyType?: any;
|
|
363
359
|
isReadOnly?: boolean | undefined;
|
|
@@ -365,7 +361,6 @@ export declare const buttonHoverStateInstance: {
|
|
|
365
361
|
};
|
|
366
362
|
export declare const ButtonInstance: {
|
|
367
363
|
buttonStyle: {
|
|
368
|
-
value: null;
|
|
369
364
|
parentRef: string;
|
|
370
365
|
propertyType: CMSElementEditTypes;
|
|
371
366
|
};
|
|
@@ -384,19 +379,16 @@ export declare const ButtonInstance: {
|
|
|
384
379
|
propertyType: CMSElementEditTypes;
|
|
385
380
|
};
|
|
386
381
|
iconPosition: {
|
|
387
|
-
value: null;
|
|
388
382
|
parentRef: string;
|
|
389
383
|
propertyType: CMSElementEditTypes;
|
|
390
384
|
};
|
|
391
385
|
iconAndTextSpacing: {
|
|
392
|
-
value: null;
|
|
393
386
|
property: string;
|
|
394
387
|
unit: number;
|
|
395
388
|
parentRef: string;
|
|
396
389
|
propertyType: CMSElementEditTypes;
|
|
397
390
|
};
|
|
398
391
|
alignment: {
|
|
399
|
-
value: null;
|
|
400
392
|
property: string;
|
|
401
393
|
parentRef: string;
|
|
402
394
|
propertyType: CMSElementEditTypes;
|
|
@@ -428,28 +420,27 @@ export declare const ButtonInstance: {
|
|
|
428
420
|
};
|
|
429
421
|
export declare const ButtonProperties: {
|
|
430
422
|
backgroundColor: {
|
|
431
|
-
value: null;
|
|
432
423
|
parentRef: string;
|
|
424
|
+
value?: any;
|
|
433
425
|
property?: any;
|
|
434
426
|
propertyType?: any;
|
|
435
427
|
isReadOnly?: boolean | undefined;
|
|
436
428
|
};
|
|
437
429
|
borderColor: {
|
|
438
|
-
value: null;
|
|
439
430
|
parentRef: string;
|
|
431
|
+
value?: any;
|
|
440
432
|
property?: any;
|
|
441
433
|
propertyType?: any;
|
|
442
434
|
isReadOnly?: boolean | undefined;
|
|
443
435
|
};
|
|
444
436
|
borderStyle: {
|
|
445
|
-
value: null;
|
|
446
437
|
parentRef: string;
|
|
438
|
+
value?: any;
|
|
447
439
|
property?: any;
|
|
448
440
|
propertyType?: any;
|
|
449
441
|
isReadOnly?: boolean | undefined;
|
|
450
442
|
};
|
|
451
443
|
borderPerSlide: {
|
|
452
|
-
value: null;
|
|
453
444
|
parentRef: string;
|
|
454
445
|
isAll: boolean;
|
|
455
446
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -465,45 +456,44 @@ export declare const ButtonProperties: {
|
|
|
465
456
|
isReadOnly?: boolean | undefined;
|
|
466
457
|
};
|
|
467
458
|
showShadow: {
|
|
468
|
-
value: null;
|
|
469
459
|
parentRef: string;
|
|
460
|
+
value?: any;
|
|
470
461
|
property?: any;
|
|
471
462
|
propertyType?: any;
|
|
472
463
|
isReadOnly?: boolean | undefined;
|
|
473
464
|
};
|
|
474
465
|
shadowColor: {
|
|
475
|
-
value: null;
|
|
476
466
|
parentRef: string;
|
|
467
|
+
value?: any;
|
|
477
468
|
property?: any;
|
|
478
469
|
propertyType?: any;
|
|
479
470
|
isReadOnly?: boolean | undefined;
|
|
480
471
|
};
|
|
481
472
|
blur: {
|
|
482
|
-
value: null;
|
|
483
473
|
parentRef: string;
|
|
484
474
|
unit?: string | number | undefined;
|
|
475
|
+
value?: any;
|
|
485
476
|
property?: any;
|
|
486
477
|
propertyType?: any;
|
|
487
478
|
isReadOnly?: boolean | undefined;
|
|
488
479
|
};
|
|
489
480
|
spread: {
|
|
490
|
-
value: null;
|
|
491
481
|
parentRef: string;
|
|
492
482
|
unit?: string | number | undefined;
|
|
483
|
+
value?: any;
|
|
493
484
|
property?: any;
|
|
494
485
|
propertyType?: any;
|
|
495
486
|
isReadOnly?: boolean | undefined;
|
|
496
487
|
};
|
|
497
488
|
angle: {
|
|
498
|
-
value: null;
|
|
499
489
|
parentRef: string;
|
|
500
490
|
unit?: string | number | undefined;
|
|
491
|
+
value?: any;
|
|
501
492
|
property?: any;
|
|
502
493
|
propertyType?: any;
|
|
503
494
|
isReadOnly?: boolean | undefined;
|
|
504
495
|
};
|
|
505
496
|
borderRadius: {
|
|
506
|
-
value: null;
|
|
507
497
|
parentRef: string;
|
|
508
498
|
isAll: boolean;
|
|
509
499
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -512,23 +502,23 @@ export declare const ButtonProperties: {
|
|
|
512
502
|
propertyType?: any;
|
|
513
503
|
};
|
|
514
504
|
font: {
|
|
515
|
-
value: null;
|
|
516
505
|
parentRef: string;
|
|
506
|
+
value?: any;
|
|
517
507
|
property?: any;
|
|
518
508
|
propertyType?: any;
|
|
519
509
|
isReadOnly?: boolean | undefined;
|
|
520
510
|
};
|
|
521
511
|
fontSize: {
|
|
522
|
-
value: null;
|
|
523
512
|
parentRef: string;
|
|
524
513
|
unit?: string | number | undefined;
|
|
514
|
+
value?: any;
|
|
525
515
|
property?: any;
|
|
526
516
|
propertyType?: any;
|
|
527
517
|
isReadOnly?: boolean | undefined;
|
|
528
518
|
};
|
|
529
519
|
textColor: {
|
|
530
|
-
value: null;
|
|
531
520
|
parentRef: string;
|
|
521
|
+
value?: any;
|
|
532
522
|
property?: any;
|
|
533
523
|
propertyType?: any;
|
|
534
524
|
isReadOnly?: boolean | undefined;
|
|
@@ -541,74 +531,73 @@ export declare const ButtonProperties: {
|
|
|
541
531
|
isReadOnly?: boolean | undefined;
|
|
542
532
|
};
|
|
543
533
|
italic: {
|
|
544
|
-
value: null;
|
|
545
534
|
parentRef: string;
|
|
535
|
+
value?: any;
|
|
546
536
|
property?: any;
|
|
547
537
|
propertyType?: any;
|
|
548
538
|
isReadOnly?: boolean | undefined;
|
|
549
539
|
};
|
|
550
540
|
linethrough: {
|
|
551
|
-
value: null;
|
|
552
541
|
parentRef: string;
|
|
542
|
+
value?: any;
|
|
553
543
|
property?: any;
|
|
554
544
|
propertyType?: any;
|
|
555
545
|
isReadOnly?: boolean | undefined;
|
|
556
546
|
};
|
|
557
547
|
underline: {
|
|
558
|
-
value: null;
|
|
559
548
|
parentRef: string;
|
|
549
|
+
value?: any;
|
|
560
550
|
property?: any;
|
|
561
551
|
propertyType?: any;
|
|
562
552
|
isReadOnly?: boolean | undefined;
|
|
563
553
|
};
|
|
564
554
|
textAlign: {
|
|
565
|
-
value: null;
|
|
566
555
|
parentRef: string;
|
|
556
|
+
value?: any;
|
|
567
557
|
property?: any;
|
|
568
558
|
propertyType?: any;
|
|
569
559
|
isReadOnly?: boolean | undefined;
|
|
570
560
|
};
|
|
571
561
|
characterSpacing: {
|
|
572
|
-
value: null;
|
|
573
562
|
parentRef: string;
|
|
574
563
|
unit?: string | number | undefined;
|
|
564
|
+
value?: any;
|
|
575
565
|
property?: any;
|
|
576
566
|
propertyType?: any;
|
|
577
567
|
isReadOnly?: boolean | undefined;
|
|
578
568
|
};
|
|
579
569
|
lineHeight: {
|
|
580
|
-
value: null;
|
|
581
570
|
parentRef: string;
|
|
582
571
|
unit?: string | number | undefined;
|
|
572
|
+
value?: any;
|
|
583
573
|
property?: any;
|
|
584
574
|
propertyType?: any;
|
|
585
575
|
isReadOnly?: boolean | undefined;
|
|
586
576
|
};
|
|
587
577
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
588
578
|
showIcon: {
|
|
589
|
-
value: null;
|
|
590
579
|
parentRef: string;
|
|
580
|
+
value?: any;
|
|
591
581
|
property?: any;
|
|
592
582
|
propertyType?: any;
|
|
593
583
|
isReadOnly?: boolean | undefined;
|
|
594
584
|
};
|
|
595
585
|
iconSize: {
|
|
596
|
-
value: null;
|
|
597
586
|
parentRef: string;
|
|
598
587
|
unit?: string | number | undefined;
|
|
588
|
+
value?: any;
|
|
599
589
|
property?: any;
|
|
600
590
|
propertyType?: any;
|
|
601
591
|
isReadOnly?: boolean | undefined;
|
|
602
592
|
};
|
|
603
593
|
iconColor: {
|
|
604
|
-
value: null;
|
|
605
594
|
parentRef: string;
|
|
595
|
+
value?: any;
|
|
606
596
|
property?: any;
|
|
607
597
|
propertyType?: any;
|
|
608
598
|
isReadOnly?: boolean | undefined;
|
|
609
599
|
};
|
|
610
600
|
buttonStyle: {
|
|
611
|
-
value: null;
|
|
612
601
|
parentRef: string;
|
|
613
602
|
propertyType: CMSElementEditTypes;
|
|
614
603
|
};
|
|
@@ -624,19 +613,16 @@ export declare const ButtonProperties: {
|
|
|
624
613
|
propertyType: CMSElementEditTypes;
|
|
625
614
|
};
|
|
626
615
|
iconPosition: {
|
|
627
|
-
value: null;
|
|
628
616
|
parentRef: string;
|
|
629
617
|
propertyType: CMSElementEditTypes;
|
|
630
618
|
};
|
|
631
619
|
iconAndTextSpacing: {
|
|
632
|
-
value: null;
|
|
633
620
|
property: string;
|
|
634
621
|
unit: number;
|
|
635
622
|
parentRef: string;
|
|
636
623
|
propertyType: CMSElementEditTypes;
|
|
637
624
|
};
|
|
638
625
|
alignment: {
|
|
639
|
-
value: null;
|
|
640
626
|
property: string;
|
|
641
627
|
parentRef: string;
|
|
642
628
|
propertyType: CMSElementEditTypes;
|
|
@@ -653,28 +639,27 @@ export declare const ButtonProperties: {
|
|
|
653
639
|
};
|
|
654
640
|
export declare const ButtonPropertiesHover: {
|
|
655
641
|
backgroundColor: {
|
|
656
|
-
value: null;
|
|
657
642
|
parentRef: string;
|
|
643
|
+
value?: any;
|
|
658
644
|
property?: any;
|
|
659
645
|
propertyType?: any;
|
|
660
646
|
isReadOnly?: boolean | undefined;
|
|
661
647
|
};
|
|
662
648
|
borderColor: {
|
|
663
|
-
value: null;
|
|
664
649
|
parentRef: string;
|
|
650
|
+
value?: any;
|
|
665
651
|
property?: any;
|
|
666
652
|
propertyType?: any;
|
|
667
653
|
isReadOnly?: boolean | undefined;
|
|
668
654
|
};
|
|
669
655
|
borderStyle: {
|
|
670
|
-
value: null;
|
|
671
656
|
parentRef: string;
|
|
657
|
+
value?: any;
|
|
672
658
|
property?: any;
|
|
673
659
|
propertyType?: any;
|
|
674
660
|
isReadOnly?: boolean | undefined;
|
|
675
661
|
};
|
|
676
662
|
borderPerSlide: {
|
|
677
|
-
value: null;
|
|
678
663
|
parentRef: string;
|
|
679
664
|
isAll: boolean;
|
|
680
665
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -690,45 +675,44 @@ export declare const ButtonPropertiesHover: {
|
|
|
690
675
|
isReadOnly?: boolean | undefined;
|
|
691
676
|
};
|
|
692
677
|
showShadow: {
|
|
693
|
-
value: null;
|
|
694
678
|
parentRef: string;
|
|
679
|
+
value?: any;
|
|
695
680
|
property?: any;
|
|
696
681
|
propertyType?: any;
|
|
697
682
|
isReadOnly?: boolean | undefined;
|
|
698
683
|
};
|
|
699
684
|
shadowColor: {
|
|
700
|
-
value: null;
|
|
701
685
|
parentRef: string;
|
|
686
|
+
value?: any;
|
|
702
687
|
property?: any;
|
|
703
688
|
propertyType?: any;
|
|
704
689
|
isReadOnly?: boolean | undefined;
|
|
705
690
|
};
|
|
706
691
|
blur: {
|
|
707
|
-
value: null;
|
|
708
692
|
parentRef: string;
|
|
709
693
|
unit?: string | number | undefined;
|
|
694
|
+
value?: any;
|
|
710
695
|
property?: any;
|
|
711
696
|
propertyType?: any;
|
|
712
697
|
isReadOnly?: boolean | undefined;
|
|
713
698
|
};
|
|
714
699
|
spread: {
|
|
715
|
-
value: null;
|
|
716
700
|
parentRef: string;
|
|
717
701
|
unit?: string | number | undefined;
|
|
702
|
+
value?: any;
|
|
718
703
|
property?: any;
|
|
719
704
|
propertyType?: any;
|
|
720
705
|
isReadOnly?: boolean | undefined;
|
|
721
706
|
};
|
|
722
707
|
angle: {
|
|
723
|
-
value: null;
|
|
724
708
|
parentRef: string;
|
|
725
709
|
unit?: string | number | undefined;
|
|
710
|
+
value?: any;
|
|
726
711
|
property?: any;
|
|
727
712
|
propertyType?: any;
|
|
728
713
|
isReadOnly?: boolean | undefined;
|
|
729
714
|
};
|
|
730
715
|
borderRadius: {
|
|
731
|
-
value: null;
|
|
732
716
|
parentRef: string;
|
|
733
717
|
isAll: boolean;
|
|
734
718
|
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
@@ -737,23 +721,23 @@ export declare const ButtonPropertiesHover: {
|
|
|
737
721
|
propertyType?: any;
|
|
738
722
|
};
|
|
739
723
|
font: {
|
|
740
|
-
value: null;
|
|
741
724
|
parentRef: string;
|
|
725
|
+
value?: any;
|
|
742
726
|
property?: any;
|
|
743
727
|
propertyType?: any;
|
|
744
728
|
isReadOnly?: boolean | undefined;
|
|
745
729
|
};
|
|
746
730
|
fontSize: {
|
|
747
|
-
value: null;
|
|
748
731
|
parentRef: string;
|
|
749
732
|
unit?: string | number | undefined;
|
|
733
|
+
value?: any;
|
|
750
734
|
property?: any;
|
|
751
735
|
propertyType?: any;
|
|
752
736
|
isReadOnly?: boolean | undefined;
|
|
753
737
|
};
|
|
754
738
|
textColor: {
|
|
755
|
-
value: null;
|
|
756
739
|
parentRef: string;
|
|
740
|
+
value?: any;
|
|
757
741
|
property?: any;
|
|
758
742
|
propertyType?: any;
|
|
759
743
|
isReadOnly?: boolean | undefined;
|
|
@@ -766,74 +750,73 @@ export declare const ButtonPropertiesHover: {
|
|
|
766
750
|
isReadOnly?: boolean | undefined;
|
|
767
751
|
};
|
|
768
752
|
italic: {
|
|
769
|
-
value: null;
|
|
770
753
|
parentRef: string;
|
|
754
|
+
value?: any;
|
|
771
755
|
property?: any;
|
|
772
756
|
propertyType?: any;
|
|
773
757
|
isReadOnly?: boolean | undefined;
|
|
774
758
|
};
|
|
775
759
|
linethrough: {
|
|
776
|
-
value: null;
|
|
777
760
|
parentRef: string;
|
|
761
|
+
value?: any;
|
|
778
762
|
property?: any;
|
|
779
763
|
propertyType?: any;
|
|
780
764
|
isReadOnly?: boolean | undefined;
|
|
781
765
|
};
|
|
782
766
|
underline: {
|
|
783
|
-
value: null;
|
|
784
767
|
parentRef: string;
|
|
768
|
+
value?: any;
|
|
785
769
|
property?: any;
|
|
786
770
|
propertyType?: any;
|
|
787
771
|
isReadOnly?: boolean | undefined;
|
|
788
772
|
};
|
|
789
773
|
textAlign: {
|
|
790
|
-
value: null;
|
|
791
774
|
parentRef: string;
|
|
775
|
+
value?: any;
|
|
792
776
|
property?: any;
|
|
793
777
|
propertyType?: any;
|
|
794
778
|
isReadOnly?: boolean | undefined;
|
|
795
779
|
};
|
|
796
780
|
characterSpacing: {
|
|
797
|
-
value: null;
|
|
798
781
|
parentRef: string;
|
|
799
782
|
unit?: string | number | undefined;
|
|
783
|
+
value?: any;
|
|
800
784
|
property?: any;
|
|
801
785
|
propertyType?: any;
|
|
802
786
|
isReadOnly?: boolean | undefined;
|
|
803
787
|
};
|
|
804
788
|
lineHeight: {
|
|
805
|
-
value: null;
|
|
806
789
|
parentRef: string;
|
|
807
790
|
unit?: string | number | undefined;
|
|
791
|
+
value?: any;
|
|
808
792
|
property?: any;
|
|
809
793
|
propertyType?: any;
|
|
810
794
|
isReadOnly?: boolean | undefined;
|
|
811
795
|
};
|
|
812
796
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
813
797
|
showIcon: {
|
|
814
|
-
value: null;
|
|
815
798
|
parentRef: string;
|
|
799
|
+
value?: any;
|
|
816
800
|
property?: any;
|
|
817
801
|
propertyType?: any;
|
|
818
802
|
isReadOnly?: boolean | undefined;
|
|
819
803
|
};
|
|
820
804
|
iconSize: {
|
|
821
|
-
value: null;
|
|
822
805
|
parentRef: string;
|
|
823
806
|
unit?: string | number | undefined;
|
|
807
|
+
value?: any;
|
|
824
808
|
property?: any;
|
|
825
809
|
propertyType?: any;
|
|
826
810
|
isReadOnly?: boolean | undefined;
|
|
827
811
|
};
|
|
828
812
|
iconColor: {
|
|
829
|
-
value: null;
|
|
830
813
|
parentRef: string;
|
|
814
|
+
value?: any;
|
|
831
815
|
property?: any;
|
|
832
816
|
propertyType?: any;
|
|
833
817
|
isReadOnly?: boolean | undefined;
|
|
834
818
|
};
|
|
835
819
|
buttonStyle: {
|
|
836
|
-
value: null;
|
|
837
820
|
parentRef: string;
|
|
838
821
|
propertyType: CMSElementEditTypes;
|
|
839
822
|
};
|
|
@@ -849,19 +832,16 @@ export declare const ButtonPropertiesHover: {
|
|
|
849
832
|
propertyType: CMSElementEditTypes;
|
|
850
833
|
};
|
|
851
834
|
iconPosition: {
|
|
852
|
-
value: null;
|
|
853
835
|
parentRef: string;
|
|
854
836
|
propertyType: CMSElementEditTypes;
|
|
855
837
|
};
|
|
856
838
|
iconAndTextSpacing: {
|
|
857
|
-
value: null;
|
|
858
839
|
property: string;
|
|
859
840
|
unit: number;
|
|
860
841
|
parentRef: string;
|
|
861
842
|
propertyType: CMSElementEditTypes;
|
|
862
843
|
};
|
|
863
844
|
alignment: {
|
|
864
|
-
value: null;
|
|
865
845
|
property: string;
|
|
866
846
|
parentRef: string;
|
|
867
847
|
propertyType: CMSElementEditTypes;
|
|
@@ -892,8 +872,8 @@ export declare const DividerStylesInstance: {
|
|
|
892
872
|
};
|
|
893
873
|
dividerColor: {
|
|
894
874
|
property: string;
|
|
895
|
-
value: null;
|
|
896
875
|
parentRef: string;
|
|
876
|
+
value?: any;
|
|
897
877
|
propertyType?: any;
|
|
898
878
|
isReadOnly?: boolean | undefined;
|
|
899
879
|
};
|