@sc-360-v2/storefront-cms-library 0.5.65 → 0.5.67
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/cart-summary.scss +12 -0
- package/dist/cartAttributes.scss +436 -68
- package/dist/category-groups-product-options.scss +36 -24
- package/dist/coupon.scss +739 -352
- package/dist/filters.scss +1 -1
- package/dist/map.scss +62 -8
- package/dist/product-options.scss +120 -24
- package/dist/search-results-heading.scss +4 -10
- package/dist/sort.scss +176 -89
- package/dist/types/builder/tools/element-edit/cartAttributes.d.ts +120 -5
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +11 -20
- package/dist/types/builder/tools/element-edit/coupon.d.ts +129 -20
- package/dist/types/builder/tools/element-edit/map.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/searchResultsHeading.d.ts +33 -59
- package/package.json +1 -1
|
@@ -15,7 +15,10 @@ export declare enum cartAttributesSelectorKeysEnum {
|
|
|
15
15
|
ATTRIBUTES_INFORMATION = "attributesInformation",
|
|
16
16
|
ATTRIBUTES_FIELDS = "attributesFields",
|
|
17
17
|
ATTRIBUTES_LABELS = "attributesLabels",
|
|
18
|
+
ATTRIBUTES_PRICE = "attributesPrice",
|
|
18
19
|
ATTRIBUTES_INPUTS = "attributesInputs",
|
|
20
|
+
ATTRIBUTES_TEXT_AREA = "attributesTextArea",
|
|
21
|
+
ATTRIBUTES_COLOR_PICKER = "attributesColorPicker",
|
|
19
22
|
ATTRIBUTES_DROPDOWN = "attributesDropdown",
|
|
20
23
|
UPLOADS = "uploads",
|
|
21
24
|
ATTRIBUTES_BOOLEANS = "attributesBooleans"
|
|
@@ -130,7 +133,7 @@ export declare const getDefaultData: () => {
|
|
|
130
133
|
attributeItemsWrapper: {
|
|
131
134
|
padding: any;
|
|
132
135
|
itemGap: {
|
|
133
|
-
value:
|
|
136
|
+
value: number;
|
|
134
137
|
unit: CMSCSSUnitTypesEnums;
|
|
135
138
|
property: string;
|
|
136
139
|
propertyType: CMSElementEditTypes;
|
|
@@ -236,9 +239,8 @@ export declare const getDefaultData: () => {
|
|
|
236
239
|
selectorKey: cartAttributesSelectorKeysEnum;
|
|
237
240
|
};
|
|
238
241
|
attributesFields: {
|
|
239
|
-
padding: any;
|
|
240
242
|
itemGap: {
|
|
241
|
-
value:
|
|
243
|
+
value: number;
|
|
242
244
|
unit: CMSCSSUnitTypesEnums;
|
|
243
245
|
property: string;
|
|
244
246
|
propertyType: CMSElementEditTypes;
|
|
@@ -257,6 +259,7 @@ export declare const getDefaultData: () => {
|
|
|
257
259
|
backgroundColor: CMSIBCommonInterface;
|
|
258
260
|
textOverflow: any;
|
|
259
261
|
numberOfDisplayedLines: any;
|
|
262
|
+
padding: any;
|
|
260
263
|
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
261
264
|
borderColor: CMSIBCommonInterface;
|
|
262
265
|
borderStyle: CMSIBCommonInterface;
|
|
@@ -309,7 +312,119 @@ export declare const getDefaultData: () => {
|
|
|
309
312
|
shadows: CMSIBSizeInterface;
|
|
310
313
|
selectorKey: cartAttributesSelectorKeysEnum;
|
|
311
314
|
};
|
|
315
|
+
attributesPrice: {
|
|
316
|
+
padding: any;
|
|
317
|
+
theme: CMSIBCommonInterface;
|
|
318
|
+
font: CMSIBCommonInterface;
|
|
319
|
+
fontSize: CMSIBSizeInterface;
|
|
320
|
+
textColor: CMSIBCommonInterface;
|
|
321
|
+
bold: CMSIBCommonInterface;
|
|
322
|
+
italic: CMSIBCommonInterface;
|
|
323
|
+
linethrough: CMSIBCommonInterface;
|
|
324
|
+
underline: CMSIBCommonInterface;
|
|
325
|
+
textAlign: CMSIBCommonInterface;
|
|
326
|
+
characterSpacing: CMSIBSizeInterface;
|
|
327
|
+
lineHeight: CMSIBSizeInterface;
|
|
328
|
+
backgroundColor: CMSIBCommonInterface;
|
|
329
|
+
textOverflow: any;
|
|
330
|
+
numberOfDisplayedLines: any;
|
|
331
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
332
|
+
borderColor: CMSIBCommonInterface;
|
|
333
|
+
borderStyle: CMSIBCommonInterface;
|
|
334
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
335
|
+
showBorder: CMSIBCommonInterface;
|
|
336
|
+
showShadow: CMSIBCommonInterface;
|
|
337
|
+
shadowColor: CMSIBCommonInterface;
|
|
338
|
+
blur: CMSIBSizeInterface;
|
|
339
|
+
spread: CMSIBSizeInterface;
|
|
340
|
+
angle: CMSIBSizeInterface;
|
|
341
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
342
|
+
exposure: CMSIBSizeInterface;
|
|
343
|
+
contrast: CMSIBSizeInterface;
|
|
344
|
+
saturation: CMSIBSizeInterface;
|
|
345
|
+
highlights: CMSIBSizeInterface;
|
|
346
|
+
shadows: CMSIBSizeInterface;
|
|
347
|
+
selectorKey: cartAttributesSelectorKeysEnum;
|
|
348
|
+
};
|
|
312
349
|
attributesInputs: {
|
|
350
|
+
iconColor: CMSIBCommonInterface;
|
|
351
|
+
strokeWidth: CMSIBSizeInterface;
|
|
352
|
+
iconSize: CMSIBSizeInterface;
|
|
353
|
+
itemGap: {
|
|
354
|
+
value: number;
|
|
355
|
+
unit: CMSCSSUnitTypesEnums;
|
|
356
|
+
property: string;
|
|
357
|
+
propertyType: CMSElementEditTypes;
|
|
358
|
+
};
|
|
359
|
+
theme: CMSIBCommonInterface;
|
|
360
|
+
font: CMSIBCommonInterface;
|
|
361
|
+
fontSize: CMSIBSizeInterface;
|
|
362
|
+
textColor: CMSIBCommonInterface;
|
|
363
|
+
bold: CMSIBCommonInterface;
|
|
364
|
+
italic: CMSIBCommonInterface;
|
|
365
|
+
linethrough: CMSIBCommonInterface;
|
|
366
|
+
underline: CMSIBCommonInterface;
|
|
367
|
+
textAlign: CMSIBCommonInterface;
|
|
368
|
+
characterSpacing: CMSIBSizeInterface;
|
|
369
|
+
lineHeight: CMSIBSizeInterface;
|
|
370
|
+
backgroundColor: CMSIBCommonInterface;
|
|
371
|
+
textOverflow: any;
|
|
372
|
+
numberOfDisplayedLines: any;
|
|
373
|
+
padding: any;
|
|
374
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
375
|
+
borderColor: CMSIBCommonInterface;
|
|
376
|
+
borderStyle: CMSIBCommonInterface;
|
|
377
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
378
|
+
showBorder: CMSIBCommonInterface;
|
|
379
|
+
showShadow: CMSIBCommonInterface;
|
|
380
|
+
shadowColor: CMSIBCommonInterface;
|
|
381
|
+
blur: CMSIBSizeInterface;
|
|
382
|
+
spread: CMSIBSizeInterface;
|
|
383
|
+
angle: CMSIBSizeInterface;
|
|
384
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
385
|
+
exposure: CMSIBSizeInterface;
|
|
386
|
+
contrast: CMSIBSizeInterface;
|
|
387
|
+
saturation: CMSIBSizeInterface;
|
|
388
|
+
highlights: CMSIBSizeInterface;
|
|
389
|
+
shadows: CMSIBSizeInterface;
|
|
390
|
+
selectorKey: cartAttributesSelectorKeysEnum;
|
|
391
|
+
};
|
|
392
|
+
attributesTextArea: {
|
|
393
|
+
theme: CMSIBCommonInterface;
|
|
394
|
+
font: CMSIBCommonInterface;
|
|
395
|
+
fontSize: CMSIBSizeInterface;
|
|
396
|
+
textColor: CMSIBCommonInterface;
|
|
397
|
+
bold: CMSIBCommonInterface;
|
|
398
|
+
italic: CMSIBCommonInterface;
|
|
399
|
+
linethrough: CMSIBCommonInterface;
|
|
400
|
+
underline: CMSIBCommonInterface;
|
|
401
|
+
textAlign: CMSIBCommonInterface;
|
|
402
|
+
characterSpacing: CMSIBSizeInterface;
|
|
403
|
+
lineHeight: CMSIBSizeInterface;
|
|
404
|
+
backgroundColor: CMSIBCommonInterface;
|
|
405
|
+
textOverflow: any;
|
|
406
|
+
numberOfDisplayedLines: any;
|
|
407
|
+
padding: any;
|
|
408
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
409
|
+
borderColor: CMSIBCommonInterface;
|
|
410
|
+
borderStyle: CMSIBCommonInterface;
|
|
411
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
412
|
+
showBorder: CMSIBCommonInterface;
|
|
413
|
+
showShadow: CMSIBCommonInterface;
|
|
414
|
+
shadowColor: CMSIBCommonInterface;
|
|
415
|
+
blur: CMSIBSizeInterface;
|
|
416
|
+
spread: CMSIBSizeInterface;
|
|
417
|
+
angle: CMSIBSizeInterface;
|
|
418
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
419
|
+
exposure: CMSIBSizeInterface;
|
|
420
|
+
contrast: CMSIBSizeInterface;
|
|
421
|
+
saturation: CMSIBSizeInterface;
|
|
422
|
+
highlights: CMSIBSizeInterface;
|
|
423
|
+
shadows: CMSIBSizeInterface;
|
|
424
|
+
selectorKey: cartAttributesSelectorKeysEnum;
|
|
425
|
+
};
|
|
426
|
+
attributesColorPicker: {
|
|
427
|
+
iconSize: CMSIBSizeInterface;
|
|
313
428
|
theme: CMSIBCommonInterface;
|
|
314
429
|
font: CMSIBCommonInterface;
|
|
315
430
|
fontSize: CMSIBSizeInterface;
|
|
@@ -603,7 +718,7 @@ export declare const getDefaultData: () => {
|
|
|
603
718
|
propertyType: CMSElementEditTypes;
|
|
604
719
|
};
|
|
605
720
|
itemGap: {
|
|
606
|
-
value:
|
|
721
|
+
value: number;
|
|
607
722
|
unit: CMSCSSUnitTypesEnums;
|
|
608
723
|
property: string;
|
|
609
724
|
propertyType: CMSElementEditTypes;
|
|
@@ -854,7 +969,7 @@ export declare const getDefaultData: () => {
|
|
|
854
969
|
propertyType: CMSElementEditTypes;
|
|
855
970
|
};
|
|
856
971
|
itemGap: {
|
|
857
|
-
value:
|
|
972
|
+
value: number;
|
|
858
973
|
unit: CMSCSSUnitTypesEnums;
|
|
859
974
|
property: string;
|
|
860
975
|
propertyType: CMSElementEditTypes;
|
|
@@ -232,12 +232,22 @@ export declare const getDefaultData: () => {
|
|
|
232
232
|
property: string;
|
|
233
233
|
propertyType: CMSElementEditTypes;
|
|
234
234
|
};
|
|
235
|
+
dividerStyle: {
|
|
236
|
+
value: string;
|
|
237
|
+
property: string;
|
|
238
|
+
propertyType: CMSElementEditTypes;
|
|
239
|
+
};
|
|
240
|
+
dividerThickness: {
|
|
241
|
+
value: number;
|
|
242
|
+
property: string;
|
|
243
|
+
propertyType: CMSElementEditTypes;
|
|
244
|
+
unit: number;
|
|
245
|
+
};
|
|
235
246
|
};
|
|
236
247
|
design: {
|
|
237
248
|
selectorKey: SelectorKeysEnum;
|
|
238
249
|
accordionArrowsItem: {
|
|
239
250
|
selectorKey: SelectorKeysEnum;
|
|
240
|
-
showIcon: CMSIBCommonInterface | undefined;
|
|
241
251
|
iconColor: CMSIBCommonInterface;
|
|
242
252
|
strokeWidth: import("../../interfaces/global").CMSIBSizeInterface;
|
|
243
253
|
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -254,7 +264,6 @@ export declare const getDefaultData: () => {
|
|
|
254
264
|
isReadOnly?: boolean | undefined;
|
|
255
265
|
parentRef?: string | undefined;
|
|
256
266
|
};
|
|
257
|
-
showIconDesc: CMSIBCommonInterface | undefined;
|
|
258
267
|
iconColorDesc: CMSIBCommonInterface;
|
|
259
268
|
strokeWidthDesc: {
|
|
260
269
|
property: string;
|
|
@@ -325,24 +334,6 @@ export declare const getDefaultData: () => {
|
|
|
325
334
|
property: string;
|
|
326
335
|
propertyType: CMSElementEditTypes;
|
|
327
336
|
};
|
|
328
|
-
textTransform: {
|
|
329
|
-
value: string;
|
|
330
|
-
property: string;
|
|
331
|
-
propertyType: CMSElementEditTypes;
|
|
332
|
-
};
|
|
333
|
-
theme: CMSIBCommonInterface;
|
|
334
|
-
font: CMSIBCommonInterface;
|
|
335
|
-
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
336
|
-
textColor: CMSIBCommonInterface;
|
|
337
|
-
bold: CMSIBCommonInterface;
|
|
338
|
-
italic: CMSIBCommonInterface;
|
|
339
|
-
linethrough: CMSIBCommonInterface;
|
|
340
|
-
underline: CMSIBCommonInterface;
|
|
341
|
-
textAlign: CMSIBCommonInterface;
|
|
342
|
-
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
343
|
-
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
344
|
-
textOverflow: any;
|
|
345
|
-
numberOfDisplayedLines: any;
|
|
346
337
|
borderColor: CMSIBCommonInterface;
|
|
347
338
|
borderStyle: CMSIBCommonInterface;
|
|
348
339
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -49,6 +49,17 @@ export declare const getDefaultData: () => {
|
|
|
49
49
|
design: {
|
|
50
50
|
selectorKey: SelectorKeysEnum;
|
|
51
51
|
couponContainer: {
|
|
52
|
+
textOverflow: {
|
|
53
|
+
value: boolean;
|
|
54
|
+
property: string;
|
|
55
|
+
propertyType: CMSElementEditTypes;
|
|
56
|
+
};
|
|
57
|
+
numberOfDisplayedLines: {
|
|
58
|
+
value: number;
|
|
59
|
+
unit: CMSCSSUnitTypesEnums;
|
|
60
|
+
property: string;
|
|
61
|
+
propertyType: CMSElementEditTypes;
|
|
62
|
+
};
|
|
52
63
|
theme: CMSIBCommonInterface;
|
|
53
64
|
font: CMSIBCommonInterface;
|
|
54
65
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -60,8 +71,9 @@ export declare const getDefaultData: () => {
|
|
|
60
71
|
textAlign: CMSIBCommonInterface;
|
|
61
72
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
62
73
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
63
|
-
|
|
64
|
-
|
|
74
|
+
textTransform: any;
|
|
75
|
+
wordWrap: CMSIBCommonInterface;
|
|
76
|
+
wordBreak: CMSIBCommonInterface;
|
|
65
77
|
borderColor: CMSIBCommonInterface;
|
|
66
78
|
borderStyle: CMSIBCommonInterface;
|
|
67
79
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -83,6 +95,17 @@ export declare const getDefaultData: () => {
|
|
|
83
95
|
};
|
|
84
96
|
couponHeader: {
|
|
85
97
|
padding: any;
|
|
98
|
+
textOverflow: {
|
|
99
|
+
value: boolean;
|
|
100
|
+
property: string;
|
|
101
|
+
propertyType: CMSElementEditTypes;
|
|
102
|
+
};
|
|
103
|
+
numberOfDisplayedLines: {
|
|
104
|
+
value: number;
|
|
105
|
+
unit: CMSCSSUnitTypesEnums;
|
|
106
|
+
property: string;
|
|
107
|
+
propertyType: CMSElementEditTypes;
|
|
108
|
+
};
|
|
86
109
|
theme: CMSIBCommonInterface;
|
|
87
110
|
font: CMSIBCommonInterface;
|
|
88
111
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -94,8 +117,9 @@ export declare const getDefaultData: () => {
|
|
|
94
117
|
textAlign: CMSIBCommonInterface;
|
|
95
118
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
96
119
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
97
|
-
|
|
98
|
-
|
|
120
|
+
textTransform: any;
|
|
121
|
+
wordWrap: CMSIBCommonInterface;
|
|
122
|
+
wordBreak: CMSIBCommonInterface;
|
|
99
123
|
borderColor: CMSIBCommonInterface;
|
|
100
124
|
borderStyle: CMSIBCommonInterface;
|
|
101
125
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -124,6 +148,17 @@ export declare const getDefaultData: () => {
|
|
|
124
148
|
property: string;
|
|
125
149
|
propertyType: CMSElementEditTypes;
|
|
126
150
|
};
|
|
151
|
+
textOverflow: {
|
|
152
|
+
value: boolean;
|
|
153
|
+
property: string;
|
|
154
|
+
propertyType: CMSElementEditTypes;
|
|
155
|
+
};
|
|
156
|
+
numberOfDisplayedLines: {
|
|
157
|
+
value: number;
|
|
158
|
+
unit: CMSCSSUnitTypesEnums;
|
|
159
|
+
property: string;
|
|
160
|
+
propertyType: CMSElementEditTypes;
|
|
161
|
+
};
|
|
127
162
|
theme: CMSIBCommonInterface;
|
|
128
163
|
font: CMSIBCommonInterface;
|
|
129
164
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -135,8 +170,9 @@ export declare const getDefaultData: () => {
|
|
|
135
170
|
textAlign: CMSIBCommonInterface;
|
|
136
171
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
137
172
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
138
|
-
|
|
139
|
-
|
|
173
|
+
textTransform: any;
|
|
174
|
+
wordWrap: CMSIBCommonInterface;
|
|
175
|
+
wordBreak: CMSIBCommonInterface;
|
|
140
176
|
borderColor: CMSIBCommonInterface;
|
|
141
177
|
borderStyle: CMSIBCommonInterface;
|
|
142
178
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -156,6 +192,17 @@ export declare const getDefaultData: () => {
|
|
|
156
192
|
selectorKey: SelectorKeysEnum;
|
|
157
193
|
};
|
|
158
194
|
title: {
|
|
195
|
+
textOverflow: {
|
|
196
|
+
value: boolean;
|
|
197
|
+
property: string;
|
|
198
|
+
propertyType: CMSElementEditTypes;
|
|
199
|
+
};
|
|
200
|
+
numberOfDisplayedLines: {
|
|
201
|
+
value: number;
|
|
202
|
+
unit: CMSCSSUnitTypesEnums;
|
|
203
|
+
property: string;
|
|
204
|
+
propertyType: CMSElementEditTypes;
|
|
205
|
+
};
|
|
159
206
|
theme: CMSIBCommonInterface;
|
|
160
207
|
font: CMSIBCommonInterface;
|
|
161
208
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -167,8 +214,9 @@ export declare const getDefaultData: () => {
|
|
|
167
214
|
textAlign: CMSIBCommonInterface;
|
|
168
215
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
169
216
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
170
|
-
|
|
171
|
-
|
|
217
|
+
textTransform: any;
|
|
218
|
+
wordWrap: CMSIBCommonInterface;
|
|
219
|
+
wordBreak: CMSIBCommonInterface;
|
|
172
220
|
borderColor: CMSIBCommonInterface;
|
|
173
221
|
borderStyle: CMSIBCommonInterface;
|
|
174
222
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -189,6 +237,17 @@ export declare const getDefaultData: () => {
|
|
|
189
237
|
selectorKey: SelectorKeysEnum;
|
|
190
238
|
};
|
|
191
239
|
description: {
|
|
240
|
+
textOverflow: {
|
|
241
|
+
value: boolean;
|
|
242
|
+
property: string;
|
|
243
|
+
propertyType: CMSElementEditTypes;
|
|
244
|
+
};
|
|
245
|
+
numberOfDisplayedLines: {
|
|
246
|
+
value: number;
|
|
247
|
+
unit: CMSCSSUnitTypesEnums;
|
|
248
|
+
property: string;
|
|
249
|
+
propertyType: CMSElementEditTypes;
|
|
250
|
+
};
|
|
192
251
|
theme: CMSIBCommonInterface;
|
|
193
252
|
font: CMSIBCommonInterface;
|
|
194
253
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -200,8 +259,9 @@ export declare const getDefaultData: () => {
|
|
|
200
259
|
textAlign: CMSIBCommonInterface;
|
|
201
260
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
202
261
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
203
|
-
|
|
204
|
-
|
|
262
|
+
textTransform: any;
|
|
263
|
+
wordWrap: CMSIBCommonInterface;
|
|
264
|
+
wordBreak: CMSIBCommonInterface;
|
|
205
265
|
borderColor: CMSIBCommonInterface;
|
|
206
266
|
borderStyle: CMSIBCommonInterface;
|
|
207
267
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -229,6 +289,17 @@ export declare const getDefaultData: () => {
|
|
|
229
289
|
property: string;
|
|
230
290
|
propertyType: CMSElementEditTypes;
|
|
231
291
|
};
|
|
292
|
+
textOverflow: {
|
|
293
|
+
value: boolean;
|
|
294
|
+
property: string;
|
|
295
|
+
propertyType: CMSElementEditTypes;
|
|
296
|
+
};
|
|
297
|
+
numberOfDisplayedLines: {
|
|
298
|
+
value: number;
|
|
299
|
+
unit: CMSCSSUnitTypesEnums;
|
|
300
|
+
property: string;
|
|
301
|
+
propertyType: CMSElementEditTypes;
|
|
302
|
+
};
|
|
232
303
|
theme: CMSIBCommonInterface;
|
|
233
304
|
font: CMSIBCommonInterface;
|
|
234
305
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -240,8 +311,9 @@ export declare const getDefaultData: () => {
|
|
|
240
311
|
textAlign: CMSIBCommonInterface;
|
|
241
312
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
242
313
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
243
|
-
|
|
244
|
-
|
|
314
|
+
textTransform: any;
|
|
315
|
+
wordWrap: CMSIBCommonInterface;
|
|
316
|
+
wordBreak: CMSIBCommonInterface;
|
|
245
317
|
borderColor: CMSIBCommonInterface;
|
|
246
318
|
borderStyle: CMSIBCommonInterface;
|
|
247
319
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -266,6 +338,17 @@ export declare const getDefaultData: () => {
|
|
|
266
338
|
strokeWidth: import("../../interfaces/global").CMSIBSizeInterface;
|
|
267
339
|
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
268
340
|
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
341
|
+
textOverflow: {
|
|
342
|
+
value: boolean;
|
|
343
|
+
property: string;
|
|
344
|
+
propertyType: CMSElementEditTypes;
|
|
345
|
+
};
|
|
346
|
+
numberOfDisplayedLines: {
|
|
347
|
+
value: number;
|
|
348
|
+
unit: CMSCSSUnitTypesEnums;
|
|
349
|
+
property: string;
|
|
350
|
+
propertyType: CMSElementEditTypes;
|
|
351
|
+
};
|
|
269
352
|
theme: CMSIBCommonInterface;
|
|
270
353
|
font: CMSIBCommonInterface;
|
|
271
354
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -277,8 +360,9 @@ export declare const getDefaultData: () => {
|
|
|
277
360
|
textAlign: CMSIBCommonInterface;
|
|
278
361
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
279
362
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
280
|
-
|
|
281
|
-
|
|
363
|
+
textTransform: any;
|
|
364
|
+
wordWrap: CMSIBCommonInterface;
|
|
365
|
+
wordBreak: CMSIBCommonInterface;
|
|
282
366
|
borderColor: CMSIBCommonInterface;
|
|
283
367
|
borderStyle: CMSIBCommonInterface;
|
|
284
368
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -299,6 +383,17 @@ export declare const getDefaultData: () => {
|
|
|
299
383
|
selectorKey: SelectorKeysEnum;
|
|
300
384
|
};
|
|
301
385
|
couponText: {
|
|
386
|
+
textOverflow: {
|
|
387
|
+
value: boolean;
|
|
388
|
+
property: string;
|
|
389
|
+
propertyType: CMSElementEditTypes;
|
|
390
|
+
};
|
|
391
|
+
numberOfDisplayedLines: {
|
|
392
|
+
value: number;
|
|
393
|
+
unit: CMSCSSUnitTypesEnums;
|
|
394
|
+
property: string;
|
|
395
|
+
propertyType: CMSElementEditTypes;
|
|
396
|
+
};
|
|
302
397
|
theme: CMSIBCommonInterface;
|
|
303
398
|
font: CMSIBCommonInterface;
|
|
304
399
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -310,8 +405,9 @@ export declare const getDefaultData: () => {
|
|
|
310
405
|
textAlign: CMSIBCommonInterface;
|
|
311
406
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
312
407
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
313
|
-
|
|
314
|
-
|
|
408
|
+
textTransform: any;
|
|
409
|
+
wordWrap: CMSIBCommonInterface;
|
|
410
|
+
wordBreak: CMSIBCommonInterface;
|
|
315
411
|
borderColor: CMSIBCommonInterface;
|
|
316
412
|
borderStyle: CMSIBCommonInterface;
|
|
317
413
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -332,6 +428,17 @@ export declare const getDefaultData: () => {
|
|
|
332
428
|
selectorKey: SelectorKeysEnum;
|
|
333
429
|
};
|
|
334
430
|
savedTitle: {
|
|
431
|
+
textOverflow: {
|
|
432
|
+
value: boolean;
|
|
433
|
+
property: string;
|
|
434
|
+
propertyType: CMSElementEditTypes;
|
|
435
|
+
};
|
|
436
|
+
numberOfDisplayedLines: {
|
|
437
|
+
value: number;
|
|
438
|
+
unit: CMSCSSUnitTypesEnums;
|
|
439
|
+
property: string;
|
|
440
|
+
propertyType: CMSElementEditTypes;
|
|
441
|
+
};
|
|
335
442
|
theme: CMSIBCommonInterface;
|
|
336
443
|
font: CMSIBCommonInterface;
|
|
337
444
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -343,8 +450,9 @@ export declare const getDefaultData: () => {
|
|
|
343
450
|
textAlign: CMSIBCommonInterface;
|
|
344
451
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
345
452
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
346
|
-
|
|
347
|
-
|
|
453
|
+
textTransform: any;
|
|
454
|
+
wordWrap: CMSIBCommonInterface;
|
|
455
|
+
wordBreak: CMSIBCommonInterface;
|
|
348
456
|
borderColor: CMSIBCommonInterface;
|
|
349
457
|
borderStyle: CMSIBCommonInterface;
|
|
350
458
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -376,8 +484,9 @@ export declare const getDefaultData: () => {
|
|
|
376
484
|
textAlign: CMSIBCommonInterface;
|
|
377
485
|
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
378
486
|
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
379
|
-
|
|
380
|
-
|
|
487
|
+
textTransform: any;
|
|
488
|
+
wordWrap: CMSIBCommonInterface;
|
|
489
|
+
wordBreak: CMSIBCommonInterface;
|
|
381
490
|
borderColor: CMSIBCommonInterface;
|
|
382
491
|
borderStyle: CMSIBCommonInterface;
|
|
383
492
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -12,6 +12,7 @@ export interface selfLayoutInterface {
|
|
|
12
12
|
canOpenMultipleHotspots: controlInterface;
|
|
13
13
|
zoom: CMSIBCommonInterface;
|
|
14
14
|
showZoomControls: controlInterface;
|
|
15
|
+
enableMouseScrollZoom: controlInterface;
|
|
15
16
|
showMapAndSatelliteView: controlInterface;
|
|
16
17
|
showStreetView: controlInterface;
|
|
17
18
|
showDirectionsLink: controlInterface;
|
|
@@ -8,67 +8,41 @@ interface selfLayoutInterface {
|
|
|
8
8
|
showSearchKeyword: CMSIBCommonInterface;
|
|
9
9
|
showNoOfResults: CMSIBCommonInterface;
|
|
10
10
|
}
|
|
11
|
+
interface textDesignInterface {
|
|
12
|
+
selectorKey: string;
|
|
13
|
+
backgroundColor: CMSIBCommonInterface;
|
|
14
|
+
borderColor: CMSIBCommonInterface;
|
|
15
|
+
borderStyle: CMSIBCommonInterface;
|
|
16
|
+
borderPerSlide: CMSIBCommonInterface;
|
|
17
|
+
showBorder: CMSIBCommonInterface;
|
|
18
|
+
showShadow: CMSIBCommonInterface;
|
|
19
|
+
shadowColor: CMSIBCommonInterface;
|
|
20
|
+
blur: CMSIBCommonInterface;
|
|
21
|
+
spread: CMSIBCommonInterface;
|
|
22
|
+
angle: CMSIBCommonInterface;
|
|
23
|
+
borderRadius: CMSIBCommonInterface;
|
|
24
|
+
theme: CMSIBCommonInterface;
|
|
25
|
+
font: CMSIBCommonInterface;
|
|
26
|
+
fontSize: CMSIBCommonInterface;
|
|
27
|
+
textColor: CMSIBCommonInterface;
|
|
28
|
+
bold: CMSIBCommonInterface;
|
|
29
|
+
italic: CMSIBCommonInterface;
|
|
30
|
+
linethrough: CMSIBCommonInterface;
|
|
31
|
+
underline: CMSIBCommonInterface;
|
|
32
|
+
textAlign: CMSIBCommonInterface;
|
|
33
|
+
characterSpacing: CMSIBCommonInterface;
|
|
34
|
+
lineHeight: CMSIBCommonInterface;
|
|
35
|
+
textTransform: CMSIBCommonInterface;
|
|
36
|
+
wordWrap: CMSIBCommonInterface;
|
|
37
|
+
wordBreak: CMSIBCommonInterface;
|
|
38
|
+
textOverflow?: any;
|
|
39
|
+
numberOfDisplayedLines?: any;
|
|
40
|
+
}
|
|
11
41
|
export interface selfDesignInterface {
|
|
12
42
|
selectorKey: string;
|
|
13
|
-
searchResultsNumber:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
borderColor?: CMSIBCommonInterface;
|
|
17
|
-
borderStyle?: CMSIBCommonInterface;
|
|
18
|
-
borderPerSlide?: CMSIBCommonInterface;
|
|
19
|
-
showBorder?: CMSIBCommonInterface;
|
|
20
|
-
showShadow?: CMSIBCommonInterface;
|
|
21
|
-
shadowColor?: CMSIBCommonInterface;
|
|
22
|
-
blur?: CMSIBCommonInterface;
|
|
23
|
-
spread?: CMSIBCommonInterface;
|
|
24
|
-
angle?: CMSIBCommonInterface;
|
|
25
|
-
borderRadius?: CMSIBCommonInterface;
|
|
26
|
-
theme: CMSIBCommonInterface;
|
|
27
|
-
font: CMSIBCommonInterface;
|
|
28
|
-
fontSize: CMSIBCommonInterface;
|
|
29
|
-
textColor: CMSIBCommonInterface;
|
|
30
|
-
bold: CMSIBCommonInterface;
|
|
31
|
-
italic: CMSIBCommonInterface;
|
|
32
|
-
linethrough: CMSIBCommonInterface;
|
|
33
|
-
underline: CMSIBCommonInterface;
|
|
34
|
-
textAlign: CMSIBCommonInterface;
|
|
35
|
-
characterSpacing: CMSIBCommonInterface;
|
|
36
|
-
lineHeight: CMSIBCommonInterface;
|
|
37
|
-
textOverflow?: any;
|
|
38
|
-
numberOfDisplayedLines?: any;
|
|
39
|
-
};
|
|
40
|
-
searchKeyword: {
|
|
41
|
-
selectorKey: string;
|
|
42
|
-
theme: CMSIBCommonInterface;
|
|
43
|
-
font: CMSIBCommonInterface;
|
|
44
|
-
fontSize: CMSIBCommonInterface;
|
|
45
|
-
textColor: CMSIBCommonInterface;
|
|
46
|
-
bold: CMSIBCommonInterface;
|
|
47
|
-
italic: CMSIBCommonInterface;
|
|
48
|
-
linethrough: CMSIBCommonInterface;
|
|
49
|
-
underline: CMSIBCommonInterface;
|
|
50
|
-
textAlign: CMSIBCommonInterface;
|
|
51
|
-
characterSpacing: CMSIBCommonInterface;
|
|
52
|
-
lineHeight: CMSIBCommonInterface;
|
|
53
|
-
textOverflow?: any;
|
|
54
|
-
numberOfDisplayedLines?: any;
|
|
55
|
-
};
|
|
56
|
-
otherText: {
|
|
57
|
-
selectorKey: string;
|
|
58
|
-
theme: CMSIBCommonInterface;
|
|
59
|
-
font: CMSIBCommonInterface;
|
|
60
|
-
fontSize: CMSIBCommonInterface;
|
|
61
|
-
textColor: CMSIBCommonInterface;
|
|
62
|
-
bold: CMSIBCommonInterface;
|
|
63
|
-
italic: CMSIBCommonInterface;
|
|
64
|
-
linethrough: CMSIBCommonInterface;
|
|
65
|
-
underline: CMSIBCommonInterface;
|
|
66
|
-
textAlign: CMSIBCommonInterface;
|
|
67
|
-
characterSpacing: CMSIBCommonInterface;
|
|
68
|
-
lineHeight: CMSIBCommonInterface;
|
|
69
|
-
textOverflow?: any;
|
|
70
|
-
numberOfDisplayedLines?: any;
|
|
71
|
-
};
|
|
43
|
+
searchResultsNumber: textDesignInterface;
|
|
44
|
+
searchKeyword: textDesignInterface;
|
|
45
|
+
otherText: textDesignInterface;
|
|
72
46
|
}
|
|
73
47
|
export declare enum searchResultsHeadingSelectorKeysEnum {
|
|
74
48
|
LAYOUT = "layout",
|