@sc-360-v2/storefront-cms-library 0.5.16 → 0.5.22
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/category-groups-element.scss +185 -25
- package/dist/category-groups-product-grid.scss +186 -0
- package/dist/icon-list.scss +6 -1
- package/dist/line.scss +257 -166
- package/dist/simple-list.scss +259 -259
- package/dist/styles.css +1 -1
- package/dist/types/builder/tools/element-edit/categoryGroups.d.ts +899 -202
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +10 -0
- package/dist/types/builder/tools/element-edit/line.d.ts +1 -83
- package/dist/upload-media.scss +6 -1
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ export declare enum SelectorKeysEnum {
|
|
|
19
19
|
CATEGORY_TREE_ITEM = "categoryTreeItem",
|
|
20
20
|
CATEGORY_TREE_ICON = "categoryTreeIcon",
|
|
21
21
|
SUBCATEGORY_TREE_ITEM = "subCategoryTreeItem",
|
|
22
|
+
SELECT_BUTTON = "selectButton",
|
|
22
23
|
SUBCATEGORY_SCROLLER_DESIGN = "subCategoryScrollerDesign",
|
|
23
24
|
SUBCATEGORY_CHIP = "subCategoryChip",
|
|
24
25
|
SUBCATEGORY_IMAGE = "subCategoryImage",
|
|
@@ -27,6 +28,7 @@ export declare enum SelectorKeysEnum {
|
|
|
27
28
|
BREADCRUMB_LAYOUT = "breadcrumbLayout",
|
|
28
29
|
BREADCRUMB_ITEM = "breadcrumbItem",
|
|
29
30
|
SEPARATOR_ICON = "separatorIcon",
|
|
31
|
+
MAIN_SECTION = "mainSection",
|
|
30
32
|
PRODUCT_GRID_DESIGN = "productGridDesign",
|
|
31
33
|
ALL_PRODUCTS_HEADING = "allProductsHeading",
|
|
32
34
|
PRODUCT_CARD = "productCard",
|
|
@@ -61,6 +63,14 @@ export declare const getDefaultData: () => {
|
|
|
61
63
|
selectorKey: SelectorKeysEnum;
|
|
62
64
|
widgetStyle: {
|
|
63
65
|
selectorKey: SelectorKeysEnum;
|
|
66
|
+
itemGap: {
|
|
67
|
+
value: number;
|
|
68
|
+
unit?: string | number | undefined;
|
|
69
|
+
property?: any;
|
|
70
|
+
propertyType?: any;
|
|
71
|
+
isReadOnly?: boolean | undefined;
|
|
72
|
+
parentRef?: string | undefined;
|
|
73
|
+
};
|
|
64
74
|
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
65
75
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
66
76
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
@@ -104,6 +114,31 @@ export declare const getDefaultData: () => {
|
|
|
104
114
|
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
105
115
|
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
106
116
|
selectorKey: SelectorKeysEnum;
|
|
117
|
+
padding: any;
|
|
118
|
+
itemGap: {
|
|
119
|
+
value: number;
|
|
120
|
+
unit?: string | number | undefined;
|
|
121
|
+
property?: any;
|
|
122
|
+
propertyType?: any;
|
|
123
|
+
isReadOnly?: boolean | undefined;
|
|
124
|
+
parentRef?: string | undefined;
|
|
125
|
+
};
|
|
126
|
+
categoryTreeGap: {
|
|
127
|
+
property: string;
|
|
128
|
+
value: number;
|
|
129
|
+
unit?: string | number | undefined;
|
|
130
|
+
propertyType?: any;
|
|
131
|
+
isReadOnly?: boolean | undefined;
|
|
132
|
+
parentRef?: string | undefined;
|
|
133
|
+
};
|
|
134
|
+
subCategoryGap: {
|
|
135
|
+
property: string;
|
|
136
|
+
value: number;
|
|
137
|
+
unit?: string | number | undefined;
|
|
138
|
+
propertyType?: any;
|
|
139
|
+
isReadOnly?: boolean | undefined;
|
|
140
|
+
parentRef?: string | undefined;
|
|
141
|
+
};
|
|
107
142
|
};
|
|
108
143
|
categoriesHeading: {
|
|
109
144
|
theme: {
|
|
@@ -551,6 +586,41 @@ export declare const getDefaultData: () => {
|
|
|
551
586
|
isReadOnly?: boolean | undefined;
|
|
552
587
|
parentRef?: string | undefined;
|
|
553
588
|
};
|
|
589
|
+
showIconExpanded: {
|
|
590
|
+
property: string;
|
|
591
|
+
value: boolean;
|
|
592
|
+
propertyType?: any;
|
|
593
|
+
isReadOnly?: boolean | undefined;
|
|
594
|
+
parentRef?: string | undefined;
|
|
595
|
+
};
|
|
596
|
+
iconExpanded: {
|
|
597
|
+
property: string;
|
|
598
|
+
value: string;
|
|
599
|
+
unit?: string | number | undefined;
|
|
600
|
+
customIcon?: {
|
|
601
|
+
isCustomIcon: boolean;
|
|
602
|
+
url: string;
|
|
603
|
+
name: string;
|
|
604
|
+
} | undefined;
|
|
605
|
+
propertyType?: any;
|
|
606
|
+
isReadOnly?: boolean | undefined;
|
|
607
|
+
parentRef?: string | undefined;
|
|
608
|
+
};
|
|
609
|
+
iconSizeExpanded: {
|
|
610
|
+
property: string;
|
|
611
|
+
unit?: string | number | undefined;
|
|
612
|
+
value?: any;
|
|
613
|
+
propertyType?: any;
|
|
614
|
+
isReadOnly?: boolean | undefined;
|
|
615
|
+
parentRef?: string | undefined;
|
|
616
|
+
};
|
|
617
|
+
iconColorExpanded: {
|
|
618
|
+
property: string;
|
|
619
|
+
value?: any;
|
|
620
|
+
propertyType?: any;
|
|
621
|
+
isReadOnly?: boolean | undefined;
|
|
622
|
+
parentRef?: string | undefined;
|
|
623
|
+
};
|
|
554
624
|
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
555
625
|
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
556
626
|
iconColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
@@ -1277,30 +1347,7 @@ export declare const getDefaultData: () => {
|
|
|
1277
1347
|
};
|
|
1278
1348
|
};
|
|
1279
1349
|
scrollerArrow: {
|
|
1280
|
-
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
1281
|
-
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
1282
|
-
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1283
|
-
iconColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1284
1350
|
selectorKey: SelectorKeysEnum;
|
|
1285
|
-
};
|
|
1286
|
-
};
|
|
1287
|
-
breadcrumbDesign: {
|
|
1288
|
-
selectorKey: SelectorKeysEnum;
|
|
1289
|
-
breadcrumbLayout: {
|
|
1290
|
-
selectorKey: SelectorKeysEnum;
|
|
1291
|
-
itemGap: {
|
|
1292
|
-
value: number;
|
|
1293
|
-
unit: number;
|
|
1294
|
-
property: string;
|
|
1295
|
-
propertyType: CMSElementEditTypes;
|
|
1296
|
-
};
|
|
1297
|
-
maxItemsToDisplay: {
|
|
1298
|
-
value: number;
|
|
1299
|
-
property: string;
|
|
1300
|
-
propertyType: CMSElementEditTypes;
|
|
1301
|
-
};
|
|
1302
|
-
};
|
|
1303
|
-
breadcrumbItem: {
|
|
1304
1351
|
defaultState: {
|
|
1305
1352
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1306
1353
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
@@ -1313,103 +1360,12 @@ export declare const getDefaultData: () => {
|
|
|
1313
1360
|
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1314
1361
|
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1315
1362
|
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
};
|
|
1321
|
-
font: {
|
|
1322
|
-
value: string;
|
|
1323
|
-
property: string;
|
|
1324
|
-
propertyType: CMSElementEditTypes;
|
|
1325
|
-
parentRef: string;
|
|
1326
|
-
};
|
|
1327
|
-
fontSize: {
|
|
1328
|
-
value: number;
|
|
1329
|
-
unit: number;
|
|
1330
|
-
property: string;
|
|
1331
|
-
propertyType: CMSElementEditTypes;
|
|
1332
|
-
parentRef: string;
|
|
1333
|
-
};
|
|
1334
|
-
textColor: {
|
|
1335
|
-
value: {
|
|
1336
|
-
hex: string;
|
|
1337
|
-
rgb: {
|
|
1338
|
-
r: string;
|
|
1339
|
-
g: string;
|
|
1340
|
-
b: string;
|
|
1341
|
-
a: number;
|
|
1342
|
-
};
|
|
1343
|
-
};
|
|
1344
|
-
property: string;
|
|
1345
|
-
propertyType: CMSElementEditTypes;
|
|
1346
|
-
parentRef: string;
|
|
1347
|
-
};
|
|
1348
|
-
textHighlight: {
|
|
1349
|
-
value: {
|
|
1350
|
-
hex: string;
|
|
1351
|
-
rgb: {
|
|
1352
|
-
r: string;
|
|
1353
|
-
g: string;
|
|
1354
|
-
b: string;
|
|
1355
|
-
a: number;
|
|
1356
|
-
};
|
|
1357
|
-
};
|
|
1358
|
-
property: string;
|
|
1359
|
-
propertyType: CMSElementEditTypes;
|
|
1360
|
-
};
|
|
1361
|
-
bold: {
|
|
1362
|
-
value: string;
|
|
1363
|
-
property: string;
|
|
1364
|
-
propertyType: CMSElementEditTypes;
|
|
1365
|
-
parentRef: string;
|
|
1366
|
-
};
|
|
1367
|
-
italic: {
|
|
1368
|
-
value: string;
|
|
1369
|
-
property: string;
|
|
1370
|
-
propertyType: CMSElementEditTypes;
|
|
1371
|
-
parentRef: string;
|
|
1372
|
-
};
|
|
1373
|
-
linethrough: {
|
|
1374
|
-
value: string;
|
|
1375
|
-
property: string;
|
|
1376
|
-
propertyType: CMSElementEditTypes;
|
|
1377
|
-
parentRef: string;
|
|
1378
|
-
};
|
|
1379
|
-
underline: {
|
|
1380
|
-
value: string;
|
|
1381
|
-
property: string;
|
|
1382
|
-
propertyType: CMSElementEditTypes;
|
|
1383
|
-
parentRef: string;
|
|
1384
|
-
};
|
|
1385
|
-
textAlign: {
|
|
1386
|
-
value: string;
|
|
1387
|
-
property: string;
|
|
1388
|
-
propertyType: CMSElementEditTypes;
|
|
1389
|
-
parentRef: string;
|
|
1390
|
-
};
|
|
1391
|
-
characterSpacing: {
|
|
1392
|
-
value: number;
|
|
1393
|
-
unit: number;
|
|
1394
|
-
property: string;
|
|
1395
|
-
propertyType: CMSElementEditTypes;
|
|
1396
|
-
parentRef: string;
|
|
1397
|
-
};
|
|
1398
|
-
lineHeight: {
|
|
1399
|
-
value: number;
|
|
1400
|
-
unit: number;
|
|
1401
|
-
property: string;
|
|
1402
|
-
propertyType: CMSElementEditTypes;
|
|
1403
|
-
parentRef: string;
|
|
1404
|
-
};
|
|
1405
|
-
paragraphSpacing: {
|
|
1406
|
-
value: number;
|
|
1407
|
-
unit: number;
|
|
1408
|
-
property: string;
|
|
1409
|
-
propertyType: CMSElementEditTypes;
|
|
1410
|
-
parentRef: string;
|
|
1411
|
-
};
|
|
1363
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
1364
|
+
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
1365
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1366
|
+
iconColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1412
1367
|
selectorKey: SelectorKeysEnum;
|
|
1368
|
+
padding: any;
|
|
1413
1369
|
};
|
|
1414
1370
|
hoverState: {
|
|
1415
1371
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
@@ -1423,82 +1379,682 @@ export declare const getDefaultData: () => {
|
|
|
1423
1379
|
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1424
1380
|
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1425
1381
|
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1382
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
1383
|
+
showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
|
|
1384
|
+
iconSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1385
|
+
iconColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1386
|
+
selectorKey: SelectorKeysEnum;
|
|
1387
|
+
};
|
|
1388
|
+
};
|
|
1389
|
+
};
|
|
1390
|
+
selectButton: {
|
|
1391
|
+
selectorKey: SelectorKeysEnum;
|
|
1392
|
+
defaultState: {
|
|
1393
|
+
buttonText: {
|
|
1394
|
+
value: string;
|
|
1395
|
+
property: string;
|
|
1396
|
+
propertyType: CMSElementEditTypes;
|
|
1397
|
+
};
|
|
1398
|
+
backgroundColor: {
|
|
1399
|
+
parentRef: string;
|
|
1400
|
+
value?: any;
|
|
1401
|
+
property?: any;
|
|
1402
|
+
propertyType?: any;
|
|
1403
|
+
isReadOnly?: boolean | undefined;
|
|
1404
|
+
};
|
|
1405
|
+
borderColor: {
|
|
1406
|
+
parentRef: string;
|
|
1407
|
+
value?: any;
|
|
1408
|
+
property?: any;
|
|
1409
|
+
propertyType?: any;
|
|
1410
|
+
isReadOnly?: boolean | undefined;
|
|
1411
|
+
};
|
|
1412
|
+
borderStyle: {
|
|
1413
|
+
parentRef: string;
|
|
1414
|
+
value?: any;
|
|
1415
|
+
property?: any;
|
|
1416
|
+
propertyType?: any;
|
|
1417
|
+
isReadOnly?: boolean | undefined;
|
|
1418
|
+
};
|
|
1419
|
+
borderPerSlide: {
|
|
1420
|
+
parentRef: string;
|
|
1421
|
+
isAll: boolean;
|
|
1422
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
1423
|
+
property: string;
|
|
1424
|
+
iscss?: boolean | undefined;
|
|
1425
|
+
propertyType?: any;
|
|
1426
|
+
};
|
|
1427
|
+
showBorder: {
|
|
1428
|
+
value: boolean;
|
|
1429
|
+
parentRef: string;
|
|
1430
|
+
property?: any;
|
|
1431
|
+
propertyType?: any;
|
|
1432
|
+
isReadOnly?: boolean | undefined;
|
|
1433
|
+
};
|
|
1434
|
+
showShadow: {
|
|
1435
|
+
parentRef: string;
|
|
1436
|
+
value?: any;
|
|
1437
|
+
property?: any;
|
|
1438
|
+
propertyType?: any;
|
|
1439
|
+
isReadOnly?: boolean | undefined;
|
|
1440
|
+
};
|
|
1441
|
+
shadowColor: {
|
|
1442
|
+
parentRef: string;
|
|
1443
|
+
value?: any;
|
|
1444
|
+
property?: any;
|
|
1445
|
+
propertyType?: any;
|
|
1446
|
+
isReadOnly?: boolean | undefined;
|
|
1447
|
+
};
|
|
1448
|
+
blur: {
|
|
1449
|
+
parentRef: string;
|
|
1450
|
+
unit?: string | number | undefined;
|
|
1451
|
+
value?: any;
|
|
1452
|
+
property?: any;
|
|
1453
|
+
propertyType?: any;
|
|
1454
|
+
isReadOnly?: boolean | undefined;
|
|
1455
|
+
};
|
|
1456
|
+
spread: {
|
|
1457
|
+
parentRef: string;
|
|
1458
|
+
unit?: string | number | undefined;
|
|
1459
|
+
value?: any;
|
|
1460
|
+
property?: any;
|
|
1461
|
+
propertyType?: any;
|
|
1462
|
+
isReadOnly?: boolean | undefined;
|
|
1463
|
+
};
|
|
1464
|
+
angle: {
|
|
1465
|
+
parentRef: string;
|
|
1466
|
+
unit?: string | number | undefined;
|
|
1467
|
+
value?: any;
|
|
1468
|
+
property?: any;
|
|
1469
|
+
propertyType?: any;
|
|
1470
|
+
isReadOnly?: boolean | undefined;
|
|
1471
|
+
};
|
|
1472
|
+
borderRadius: {
|
|
1473
|
+
parentRef: string;
|
|
1474
|
+
isAll: boolean;
|
|
1475
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
1476
|
+
property: string;
|
|
1477
|
+
iscss?: boolean | undefined;
|
|
1478
|
+
propertyType?: any;
|
|
1479
|
+
};
|
|
1480
|
+
font: {
|
|
1481
|
+
parentRef: string;
|
|
1482
|
+
value?: any;
|
|
1483
|
+
property?: any;
|
|
1484
|
+
propertyType?: any;
|
|
1485
|
+
isReadOnly?: boolean | undefined;
|
|
1486
|
+
};
|
|
1487
|
+
fontSize: {
|
|
1488
|
+
parentRef: string;
|
|
1489
|
+
unit?: string | number | undefined;
|
|
1490
|
+
value?: any;
|
|
1491
|
+
property?: any;
|
|
1492
|
+
propertyType?: any;
|
|
1493
|
+
isReadOnly?: boolean | undefined;
|
|
1494
|
+
};
|
|
1495
|
+
textColor: {
|
|
1496
|
+
parentRef: string;
|
|
1497
|
+
value?: any;
|
|
1498
|
+
property?: any;
|
|
1499
|
+
propertyType?: any;
|
|
1500
|
+
isReadOnly?: boolean | undefined;
|
|
1501
|
+
};
|
|
1502
|
+
bold: {
|
|
1503
|
+
value: string;
|
|
1504
|
+
parentRef: string;
|
|
1505
|
+
property?: any;
|
|
1506
|
+
propertyType?: any;
|
|
1507
|
+
isReadOnly?: boolean | undefined;
|
|
1508
|
+
};
|
|
1509
|
+
italic: {
|
|
1510
|
+
parentRef: string;
|
|
1511
|
+
value?: any;
|
|
1512
|
+
property?: any;
|
|
1513
|
+
propertyType?: any;
|
|
1514
|
+
isReadOnly?: boolean | undefined;
|
|
1515
|
+
};
|
|
1516
|
+
linethrough: {
|
|
1517
|
+
parentRef: string;
|
|
1518
|
+
value?: any;
|
|
1519
|
+
property?: any;
|
|
1520
|
+
propertyType?: any;
|
|
1521
|
+
isReadOnly?: boolean | undefined;
|
|
1522
|
+
};
|
|
1523
|
+
underline: {
|
|
1524
|
+
parentRef: string;
|
|
1525
|
+
value?: any;
|
|
1526
|
+
property?: any;
|
|
1527
|
+
propertyType?: any;
|
|
1528
|
+
isReadOnly?: boolean | undefined;
|
|
1529
|
+
};
|
|
1530
|
+
textAlign: {
|
|
1531
|
+
parentRef: string;
|
|
1532
|
+
value?: any;
|
|
1533
|
+
property?: any;
|
|
1534
|
+
propertyType?: any;
|
|
1535
|
+
isReadOnly?: boolean | undefined;
|
|
1536
|
+
};
|
|
1537
|
+
characterSpacing: {
|
|
1538
|
+
parentRef: string;
|
|
1539
|
+
unit?: string | number | undefined;
|
|
1540
|
+
value?: any;
|
|
1541
|
+
property?: any;
|
|
1542
|
+
propertyType?: any;
|
|
1543
|
+
isReadOnly?: boolean | undefined;
|
|
1544
|
+
};
|
|
1545
|
+
lineHeight: {
|
|
1546
|
+
parentRef: string;
|
|
1547
|
+
unit?: string | number | undefined;
|
|
1548
|
+
value?: any;
|
|
1549
|
+
property?: any;
|
|
1550
|
+
propertyType?: any;
|
|
1551
|
+
isReadOnly?: boolean | undefined;
|
|
1552
|
+
};
|
|
1553
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
1554
|
+
showIcon: {
|
|
1555
|
+
parentRef: string;
|
|
1556
|
+
value?: any;
|
|
1557
|
+
property?: any;
|
|
1558
|
+
propertyType?: any;
|
|
1559
|
+
isReadOnly?: boolean | undefined;
|
|
1560
|
+
};
|
|
1561
|
+
iconSize: {
|
|
1562
|
+
parentRef: string;
|
|
1563
|
+
unit?: string | number | undefined;
|
|
1564
|
+
value?: any;
|
|
1565
|
+
property?: any;
|
|
1566
|
+
propertyType?: any;
|
|
1567
|
+
isReadOnly?: boolean | undefined;
|
|
1568
|
+
};
|
|
1569
|
+
iconColor: {
|
|
1570
|
+
parentRef: string;
|
|
1571
|
+
value?: any;
|
|
1572
|
+
property?: any;
|
|
1573
|
+
propertyType?: any;
|
|
1574
|
+
isReadOnly?: boolean | undefined;
|
|
1575
|
+
};
|
|
1576
|
+
textTransform: {
|
|
1577
|
+
value: string;
|
|
1578
|
+
property: string;
|
|
1579
|
+
propertyType: CMSElementEditTypes;
|
|
1580
|
+
};
|
|
1581
|
+
buttonStyle: {
|
|
1582
|
+
parentRef: string;
|
|
1583
|
+
propertyType: CMSElementEditTypes;
|
|
1584
|
+
};
|
|
1585
|
+
iconPadding: {
|
|
1586
|
+
value: number;
|
|
1587
|
+
property: string;
|
|
1588
|
+
parentRef: string;
|
|
1589
|
+
propertyType: CMSElementEditTypes;
|
|
1590
|
+
};
|
|
1591
|
+
iconPosition: {
|
|
1592
|
+
parentRef: string;
|
|
1593
|
+
propertyType: CMSElementEditTypes;
|
|
1594
|
+
};
|
|
1595
|
+
iconAndTextSpacing: {
|
|
1596
|
+
property: string;
|
|
1597
|
+
unit: number;
|
|
1598
|
+
parentRef: string;
|
|
1599
|
+
propertyType: CMSElementEditTypes;
|
|
1600
|
+
};
|
|
1601
|
+
alignment: {
|
|
1602
|
+
property: string;
|
|
1603
|
+
parentRef: string;
|
|
1604
|
+
propertyType: CMSElementEditTypes;
|
|
1605
|
+
};
|
|
1606
|
+
buttonType: {
|
|
1607
|
+
value: string;
|
|
1608
|
+
propertyType: CMSElementEditTypes;
|
|
1609
|
+
};
|
|
1610
|
+
width: {
|
|
1611
|
+
value: string;
|
|
1612
|
+
unit: number;
|
|
1613
|
+
};
|
|
1614
|
+
padding: any;
|
|
1615
|
+
selectorKey: SelectorKeysEnum;
|
|
1616
|
+
};
|
|
1617
|
+
hoverState: {
|
|
1618
|
+
buttonText: {
|
|
1619
|
+
value: string;
|
|
1620
|
+
property: string;
|
|
1621
|
+
propertyType: CMSElementEditTypes;
|
|
1622
|
+
};
|
|
1623
|
+
backgroundColor: {
|
|
1624
|
+
parentRef: string;
|
|
1625
|
+
value?: any;
|
|
1626
|
+
property?: any;
|
|
1627
|
+
propertyType?: any;
|
|
1628
|
+
isReadOnly?: boolean | undefined;
|
|
1629
|
+
};
|
|
1630
|
+
borderColor: {
|
|
1631
|
+
parentRef: string;
|
|
1632
|
+
value?: any;
|
|
1633
|
+
property?: any;
|
|
1634
|
+
propertyType?: any;
|
|
1635
|
+
isReadOnly?: boolean | undefined;
|
|
1636
|
+
};
|
|
1637
|
+
borderStyle: {
|
|
1638
|
+
parentRef: string;
|
|
1639
|
+
value?: any;
|
|
1640
|
+
property?: any;
|
|
1641
|
+
propertyType?: any;
|
|
1642
|
+
isReadOnly?: boolean | undefined;
|
|
1643
|
+
};
|
|
1644
|
+
borderPerSlide: {
|
|
1645
|
+
parentRef: string;
|
|
1646
|
+
isAll: boolean;
|
|
1647
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
1648
|
+
property: string;
|
|
1649
|
+
iscss?: boolean | undefined;
|
|
1650
|
+
propertyType?: any;
|
|
1651
|
+
};
|
|
1652
|
+
showBorder: {
|
|
1653
|
+
value: boolean;
|
|
1654
|
+
parentRef: string;
|
|
1655
|
+
property?: any;
|
|
1656
|
+
propertyType?: any;
|
|
1657
|
+
isReadOnly?: boolean | undefined;
|
|
1658
|
+
};
|
|
1659
|
+
showShadow: {
|
|
1660
|
+
parentRef: string;
|
|
1661
|
+
value?: any;
|
|
1662
|
+
property?: any;
|
|
1663
|
+
propertyType?: any;
|
|
1664
|
+
isReadOnly?: boolean | undefined;
|
|
1665
|
+
};
|
|
1666
|
+
shadowColor: {
|
|
1667
|
+
parentRef: string;
|
|
1668
|
+
value?: any;
|
|
1669
|
+
property?: any;
|
|
1670
|
+
propertyType?: any;
|
|
1671
|
+
isReadOnly?: boolean | undefined;
|
|
1672
|
+
};
|
|
1673
|
+
blur: {
|
|
1674
|
+
parentRef: string;
|
|
1675
|
+
unit?: string | number | undefined;
|
|
1676
|
+
value?: any;
|
|
1677
|
+
property?: any;
|
|
1678
|
+
propertyType?: any;
|
|
1679
|
+
isReadOnly?: boolean | undefined;
|
|
1680
|
+
};
|
|
1681
|
+
spread: {
|
|
1682
|
+
parentRef: string;
|
|
1683
|
+
unit?: string | number | undefined;
|
|
1684
|
+
value?: any;
|
|
1685
|
+
property?: any;
|
|
1686
|
+
propertyType?: any;
|
|
1687
|
+
isReadOnly?: boolean | undefined;
|
|
1688
|
+
};
|
|
1689
|
+
angle: {
|
|
1690
|
+
parentRef: string;
|
|
1691
|
+
unit?: string | number | undefined;
|
|
1692
|
+
value?: any;
|
|
1693
|
+
property?: any;
|
|
1694
|
+
propertyType?: any;
|
|
1695
|
+
isReadOnly?: boolean | undefined;
|
|
1696
|
+
};
|
|
1697
|
+
borderRadius: {
|
|
1698
|
+
parentRef: string;
|
|
1699
|
+
isAll: boolean;
|
|
1700
|
+
sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
|
|
1701
|
+
property: string;
|
|
1702
|
+
iscss?: boolean | undefined;
|
|
1703
|
+
propertyType?: any;
|
|
1704
|
+
};
|
|
1705
|
+
font: {
|
|
1706
|
+
parentRef: string;
|
|
1707
|
+
value?: any;
|
|
1708
|
+
property?: any;
|
|
1709
|
+
propertyType?: any;
|
|
1710
|
+
isReadOnly?: boolean | undefined;
|
|
1711
|
+
};
|
|
1712
|
+
fontSize: {
|
|
1713
|
+
parentRef: string;
|
|
1714
|
+
unit?: string | number | undefined;
|
|
1715
|
+
value?: any;
|
|
1716
|
+
property?: any;
|
|
1717
|
+
propertyType?: any;
|
|
1718
|
+
isReadOnly?: boolean | undefined;
|
|
1719
|
+
};
|
|
1720
|
+
textColor: {
|
|
1721
|
+
parentRef: string;
|
|
1722
|
+
value?: any;
|
|
1723
|
+
property?: any;
|
|
1724
|
+
propertyType?: any;
|
|
1725
|
+
isReadOnly?: boolean | undefined;
|
|
1726
|
+
};
|
|
1727
|
+
bold: {
|
|
1728
|
+
value: string;
|
|
1729
|
+
parentRef: string;
|
|
1730
|
+
property?: any;
|
|
1731
|
+
propertyType?: any;
|
|
1732
|
+
isReadOnly?: boolean | undefined;
|
|
1733
|
+
};
|
|
1734
|
+
italic: {
|
|
1735
|
+
parentRef: string;
|
|
1736
|
+
value?: any;
|
|
1737
|
+
property?: any;
|
|
1738
|
+
propertyType?: any;
|
|
1739
|
+
isReadOnly?: boolean | undefined;
|
|
1740
|
+
};
|
|
1741
|
+
linethrough: {
|
|
1742
|
+
parentRef: string;
|
|
1743
|
+
value?: any;
|
|
1744
|
+
property?: any;
|
|
1745
|
+
propertyType?: any;
|
|
1746
|
+
isReadOnly?: boolean | undefined;
|
|
1747
|
+
};
|
|
1748
|
+
underline: {
|
|
1749
|
+
parentRef: string;
|
|
1750
|
+
value?: any;
|
|
1751
|
+
property?: any;
|
|
1752
|
+
propertyType?: any;
|
|
1753
|
+
isReadOnly?: boolean | undefined;
|
|
1754
|
+
};
|
|
1755
|
+
textAlign: {
|
|
1756
|
+
parentRef: string;
|
|
1757
|
+
value?: any;
|
|
1758
|
+
property?: any;
|
|
1759
|
+
propertyType?: any;
|
|
1760
|
+
isReadOnly?: boolean | undefined;
|
|
1761
|
+
};
|
|
1762
|
+
characterSpacing: {
|
|
1763
|
+
parentRef: string;
|
|
1764
|
+
unit?: string | number | undefined;
|
|
1765
|
+
value?: any;
|
|
1766
|
+
property?: any;
|
|
1767
|
+
propertyType?: any;
|
|
1768
|
+
isReadOnly?: boolean | undefined;
|
|
1769
|
+
};
|
|
1770
|
+
lineHeight: {
|
|
1771
|
+
parentRef: string;
|
|
1772
|
+
unit?: string | number | undefined;
|
|
1773
|
+
value?: any;
|
|
1774
|
+
property?: any;
|
|
1775
|
+
propertyType?: any;
|
|
1776
|
+
isReadOnly?: boolean | undefined;
|
|
1777
|
+
};
|
|
1778
|
+
icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
|
|
1779
|
+
showIcon: {
|
|
1780
|
+
parentRef: string;
|
|
1781
|
+
value?: any;
|
|
1782
|
+
property?: any;
|
|
1783
|
+
propertyType?: any;
|
|
1784
|
+
isReadOnly?: boolean | undefined;
|
|
1785
|
+
};
|
|
1786
|
+
iconSize: {
|
|
1787
|
+
parentRef: string;
|
|
1788
|
+
unit?: string | number | undefined;
|
|
1789
|
+
value?: any;
|
|
1790
|
+
property?: any;
|
|
1791
|
+
propertyType?: any;
|
|
1792
|
+
isReadOnly?: boolean | undefined;
|
|
1793
|
+
};
|
|
1794
|
+
iconColor: {
|
|
1795
|
+
parentRef: string;
|
|
1796
|
+
value?: any;
|
|
1797
|
+
property?: any;
|
|
1798
|
+
propertyType?: any;
|
|
1799
|
+
isReadOnly?: boolean | undefined;
|
|
1800
|
+
};
|
|
1801
|
+
textTransform: {
|
|
1802
|
+
value: string;
|
|
1803
|
+
property: string;
|
|
1804
|
+
propertyType: CMSElementEditTypes;
|
|
1805
|
+
};
|
|
1806
|
+
buttonStyle: {
|
|
1807
|
+
parentRef: string;
|
|
1808
|
+
propertyType: CMSElementEditTypes;
|
|
1809
|
+
};
|
|
1810
|
+
iconPadding: {
|
|
1811
|
+
value: number;
|
|
1812
|
+
property: string;
|
|
1813
|
+
parentRef: string;
|
|
1814
|
+
propertyType: CMSElementEditTypes;
|
|
1815
|
+
};
|
|
1816
|
+
iconPosition: {
|
|
1817
|
+
parentRef: string;
|
|
1818
|
+
propertyType: CMSElementEditTypes;
|
|
1819
|
+
};
|
|
1820
|
+
iconAndTextSpacing: {
|
|
1821
|
+
property: string;
|
|
1822
|
+
unit: number;
|
|
1823
|
+
parentRef: string;
|
|
1824
|
+
propertyType: CMSElementEditTypes;
|
|
1825
|
+
};
|
|
1826
|
+
alignment: {
|
|
1827
|
+
property: string;
|
|
1828
|
+
parentRef: string;
|
|
1829
|
+
propertyType: CMSElementEditTypes;
|
|
1830
|
+
};
|
|
1831
|
+
buttonType: {
|
|
1832
|
+
value: string;
|
|
1833
|
+
propertyType: CMSElementEditTypes;
|
|
1834
|
+
};
|
|
1835
|
+
width: {
|
|
1836
|
+
value: string;
|
|
1837
|
+
unit: number;
|
|
1838
|
+
};
|
|
1839
|
+
padding: any;
|
|
1840
|
+
selectorKey: SelectorKeysEnum;
|
|
1841
|
+
};
|
|
1842
|
+
};
|
|
1843
|
+
breadcrumbDesign: {
|
|
1844
|
+
selectorKey: SelectorKeysEnum;
|
|
1845
|
+
breadcrumbLayout: {
|
|
1846
|
+
selectorKey: SelectorKeysEnum;
|
|
1847
|
+
itemGap: {
|
|
1848
|
+
value: number;
|
|
1849
|
+
unit: number;
|
|
1850
|
+
property: string;
|
|
1851
|
+
propertyType: CMSElementEditTypes;
|
|
1852
|
+
};
|
|
1853
|
+
maxItemsToDisplay: {
|
|
1854
|
+
value: number;
|
|
1855
|
+
property: string;
|
|
1856
|
+
propertyType: CMSElementEditTypes;
|
|
1857
|
+
};
|
|
1858
|
+
};
|
|
1859
|
+
breadcrumbItem: {
|
|
1860
|
+
defaultState: {
|
|
1861
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1862
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1863
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
1864
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1865
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1866
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1867
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1868
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1869
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1870
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1871
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1872
|
+
theme: {
|
|
1873
|
+
value: string;
|
|
1874
|
+
property: string;
|
|
1875
|
+
propertyType: CMSElementEditTypes;
|
|
1876
|
+
};
|
|
1877
|
+
font: {
|
|
1878
|
+
value: string;
|
|
1879
|
+
property: string;
|
|
1880
|
+
propertyType: CMSElementEditTypes;
|
|
1881
|
+
parentRef: string;
|
|
1882
|
+
};
|
|
1883
|
+
fontSize: {
|
|
1884
|
+
value: number;
|
|
1885
|
+
unit: number;
|
|
1886
|
+
property: string;
|
|
1887
|
+
propertyType: CMSElementEditTypes;
|
|
1888
|
+
parentRef: string;
|
|
1889
|
+
};
|
|
1890
|
+
textColor: {
|
|
1891
|
+
value: {
|
|
1892
|
+
hex: string;
|
|
1893
|
+
rgb: {
|
|
1894
|
+
r: string;
|
|
1895
|
+
g: string;
|
|
1896
|
+
b: string;
|
|
1897
|
+
a: number;
|
|
1898
|
+
};
|
|
1899
|
+
};
|
|
1900
|
+
property: string;
|
|
1901
|
+
propertyType: CMSElementEditTypes;
|
|
1902
|
+
parentRef: string;
|
|
1903
|
+
};
|
|
1904
|
+
textHighlight: {
|
|
1905
|
+
value: {
|
|
1906
|
+
hex: string;
|
|
1907
|
+
rgb: {
|
|
1908
|
+
r: string;
|
|
1909
|
+
g: string;
|
|
1910
|
+
b: string;
|
|
1911
|
+
a: number;
|
|
1912
|
+
};
|
|
1913
|
+
};
|
|
1914
|
+
property: string;
|
|
1915
|
+
propertyType: CMSElementEditTypes;
|
|
1916
|
+
};
|
|
1917
|
+
bold: {
|
|
1918
|
+
value: string;
|
|
1919
|
+
property: string;
|
|
1920
|
+
propertyType: CMSElementEditTypes;
|
|
1921
|
+
parentRef: string;
|
|
1922
|
+
};
|
|
1923
|
+
italic: {
|
|
1924
|
+
value: string;
|
|
1925
|
+
property: string;
|
|
1926
|
+
propertyType: CMSElementEditTypes;
|
|
1927
|
+
parentRef: string;
|
|
1928
|
+
};
|
|
1929
|
+
linethrough: {
|
|
1930
|
+
value: string;
|
|
1931
|
+
property: string;
|
|
1932
|
+
propertyType: CMSElementEditTypes;
|
|
1933
|
+
parentRef: string;
|
|
1934
|
+
};
|
|
1935
|
+
underline: {
|
|
1936
|
+
value: string;
|
|
1937
|
+
property: string;
|
|
1938
|
+
propertyType: CMSElementEditTypes;
|
|
1939
|
+
parentRef: string;
|
|
1940
|
+
};
|
|
1941
|
+
textAlign: {
|
|
1942
|
+
value: string;
|
|
1943
|
+
property: string;
|
|
1944
|
+
propertyType: CMSElementEditTypes;
|
|
1945
|
+
parentRef: string;
|
|
1946
|
+
};
|
|
1947
|
+
characterSpacing: {
|
|
1948
|
+
value: number;
|
|
1949
|
+
unit: number;
|
|
1950
|
+
property: string;
|
|
1951
|
+
propertyType: CMSElementEditTypes;
|
|
1952
|
+
parentRef: string;
|
|
1953
|
+
};
|
|
1954
|
+
lineHeight: {
|
|
1955
|
+
value: number;
|
|
1956
|
+
unit: number;
|
|
1957
|
+
property: string;
|
|
1958
|
+
propertyType: CMSElementEditTypes;
|
|
1959
|
+
parentRef: string;
|
|
1960
|
+
};
|
|
1961
|
+
paragraphSpacing: {
|
|
1962
|
+
value: number;
|
|
1963
|
+
unit: number;
|
|
1964
|
+
property: string;
|
|
1965
|
+
propertyType: CMSElementEditTypes;
|
|
1966
|
+
parentRef: string;
|
|
1967
|
+
};
|
|
1968
|
+
selectorKey: SelectorKeysEnum;
|
|
1969
|
+
};
|
|
1970
|
+
hoverState: {
|
|
1971
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1972
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1973
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
1974
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1975
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1976
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1977
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1978
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1979
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1980
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
1981
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1982
|
+
theme: {
|
|
1983
|
+
value: string;
|
|
1984
|
+
property: string;
|
|
1985
|
+
propertyType: CMSElementEditTypes;
|
|
1986
|
+
};
|
|
1987
|
+
font: {
|
|
1988
|
+
value: string;
|
|
1989
|
+
property: string;
|
|
1990
|
+
propertyType: CMSElementEditTypes;
|
|
1991
|
+
parentRef: string;
|
|
1992
|
+
};
|
|
1993
|
+
fontSize: {
|
|
1994
|
+
value: number;
|
|
1995
|
+
unit: number;
|
|
1996
|
+
property: string;
|
|
1997
|
+
propertyType: CMSElementEditTypes;
|
|
1998
|
+
parentRef: string;
|
|
1999
|
+
};
|
|
2000
|
+
textColor: {
|
|
2001
|
+
value: {
|
|
2002
|
+
hex: string;
|
|
2003
|
+
rgb: {
|
|
2004
|
+
r: string;
|
|
2005
|
+
g: string;
|
|
2006
|
+
b: string;
|
|
2007
|
+
a: number;
|
|
2008
|
+
};
|
|
2009
|
+
};
|
|
2010
|
+
property: string;
|
|
2011
|
+
propertyType: CMSElementEditTypes;
|
|
2012
|
+
parentRef: string;
|
|
2013
|
+
};
|
|
2014
|
+
textHighlight: {
|
|
2015
|
+
value: {
|
|
2016
|
+
hex: string;
|
|
2017
|
+
rgb: {
|
|
2018
|
+
r: string;
|
|
2019
|
+
g: string;
|
|
2020
|
+
b: string;
|
|
2021
|
+
a: number;
|
|
2022
|
+
};
|
|
2023
|
+
};
|
|
2024
|
+
property: string;
|
|
2025
|
+
propertyType: CMSElementEditTypes;
|
|
2026
|
+
};
|
|
2027
|
+
bold: {
|
|
2028
|
+
value: string;
|
|
2029
|
+
property: string;
|
|
2030
|
+
propertyType: CMSElementEditTypes;
|
|
2031
|
+
parentRef: string;
|
|
2032
|
+
};
|
|
2033
|
+
italic: {
|
|
2034
|
+
value: string;
|
|
2035
|
+
property: string;
|
|
2036
|
+
propertyType: CMSElementEditTypes;
|
|
2037
|
+
parentRef: string;
|
|
2038
|
+
};
|
|
2039
|
+
linethrough: {
|
|
2040
|
+
value: string;
|
|
2041
|
+
property: string;
|
|
2042
|
+
propertyType: CMSElementEditTypes;
|
|
2043
|
+
parentRef: string;
|
|
2044
|
+
};
|
|
2045
|
+
underline: {
|
|
2046
|
+
value: string;
|
|
2047
|
+
property: string;
|
|
2048
|
+
propertyType: CMSElementEditTypes;
|
|
2049
|
+
parentRef: string;
|
|
2050
|
+
};
|
|
2051
|
+
textAlign: {
|
|
2052
|
+
value: string;
|
|
2053
|
+
property: string;
|
|
2054
|
+
propertyType: CMSElementEditTypes;
|
|
2055
|
+
parentRef: string;
|
|
2056
|
+
};
|
|
2057
|
+
characterSpacing: {
|
|
1502
2058
|
value: number;
|
|
1503
2059
|
unit: number;
|
|
1504
2060
|
property: string;
|
|
@@ -1653,8 +2209,20 @@ export declare const getDefaultData: () => {
|
|
|
1653
2209
|
selectorKey: SelectorKeysEnum;
|
|
1654
2210
|
};
|
|
1655
2211
|
};
|
|
1656
|
-
|
|
2212
|
+
mainSection: {
|
|
2213
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2214
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2215
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
2216
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2217
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2218
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2219
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2220
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
2221
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
2222
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
2223
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
1657
2224
|
selectorKey: SelectorKeysEnum;
|
|
2225
|
+
padding: any;
|
|
1658
2226
|
itemGap: {
|
|
1659
2227
|
value: number;
|
|
1660
2228
|
unit?: string | number | undefined;
|
|
@@ -1663,6 +2231,122 @@ export declare const getDefaultData: () => {
|
|
|
1663
2231
|
isReadOnly?: boolean | undefined;
|
|
1664
2232
|
parentRef?: string | undefined;
|
|
1665
2233
|
};
|
|
2234
|
+
};
|
|
2235
|
+
productGridDesign: {
|
|
2236
|
+
selectorKey: SelectorKeysEnum;
|
|
2237
|
+
layout: {
|
|
2238
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2239
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2240
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
2241
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2242
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2243
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2244
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
2245
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
2246
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
2247
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
2248
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
2249
|
+
selectorKey: SelectorKeysEnum;
|
|
2250
|
+
displayStyle: {
|
|
2251
|
+
value: string;
|
|
2252
|
+
property: string;
|
|
2253
|
+
propertyType: CMSElementEditTypes;
|
|
2254
|
+
};
|
|
2255
|
+
padding: any;
|
|
2256
|
+
minColumnWidth: {
|
|
2257
|
+
property: string;
|
|
2258
|
+
propertyType: CMSElementEditTypes;
|
|
2259
|
+
value: number;
|
|
2260
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2261
|
+
};
|
|
2262
|
+
minRowHeight: {
|
|
2263
|
+
property: string;
|
|
2264
|
+
propertyType: CMSElementEditTypes;
|
|
2265
|
+
value: number;
|
|
2266
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2267
|
+
};
|
|
2268
|
+
setItemsPerRow: {
|
|
2269
|
+
property: string;
|
|
2270
|
+
isShow: boolean;
|
|
2271
|
+
value: number;
|
|
2272
|
+
propertyType: CMSElementEditTypes;
|
|
2273
|
+
};
|
|
2274
|
+
rowGap: {
|
|
2275
|
+
property: string;
|
|
2276
|
+
propertyType: CMSElementEditTypes;
|
|
2277
|
+
value: number;
|
|
2278
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2279
|
+
};
|
|
2280
|
+
columnGap: {
|
|
2281
|
+
property: string;
|
|
2282
|
+
propertyType: CMSElementEditTypes;
|
|
2283
|
+
value: number;
|
|
2284
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2285
|
+
};
|
|
2286
|
+
setItemsPerSlide: {
|
|
2287
|
+
property: string;
|
|
2288
|
+
value: number;
|
|
2289
|
+
propertyType: CMSElementEditTypes;
|
|
2290
|
+
};
|
|
2291
|
+
itemGap: {
|
|
2292
|
+
property: string;
|
|
2293
|
+
propertyType: CMSElementEditTypes;
|
|
2294
|
+
value: number;
|
|
2295
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2296
|
+
};
|
|
2297
|
+
sliderControl: {
|
|
2298
|
+
property: string;
|
|
2299
|
+
value: string;
|
|
2300
|
+
propertyType: CMSElementEditTypes;
|
|
2301
|
+
};
|
|
2302
|
+
selectedSlideControlTheme: {
|
|
2303
|
+
value: number;
|
|
2304
|
+
propertyType: CMSElementEditTypes;
|
|
2305
|
+
};
|
|
2306
|
+
arrowIconSize: {
|
|
2307
|
+
property: string;
|
|
2308
|
+
value: number;
|
|
2309
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2310
|
+
propertyType: CMSElementEditTypes;
|
|
2311
|
+
};
|
|
2312
|
+
dotSize: {
|
|
2313
|
+
property: string;
|
|
2314
|
+
value: number;
|
|
2315
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2316
|
+
propertyType: CMSElementEditTypes;
|
|
2317
|
+
};
|
|
2318
|
+
controlActiveColor: {
|
|
2319
|
+
value: {
|
|
2320
|
+
hex: string;
|
|
2321
|
+
rgb: {
|
|
2322
|
+
r: string;
|
|
2323
|
+
g: string;
|
|
2324
|
+
b: string;
|
|
2325
|
+
a: number;
|
|
2326
|
+
};
|
|
2327
|
+
};
|
|
2328
|
+
property: string;
|
|
2329
|
+
propertyType: CMSElementEditTypes;
|
|
2330
|
+
parentRef: undefined;
|
|
2331
|
+
};
|
|
2332
|
+
autoplay: {
|
|
2333
|
+
value: boolean;
|
|
2334
|
+
propertyType: CMSElementEditTypes;
|
|
2335
|
+
};
|
|
2336
|
+
autoplayDuration: {
|
|
2337
|
+
value: number;
|
|
2338
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2339
|
+
propertyType: CMSElementEditTypes;
|
|
2340
|
+
};
|
|
2341
|
+
stopOnMouseEnter: {
|
|
2342
|
+
value: boolean;
|
|
2343
|
+
propertyType: CMSElementEditTypes;
|
|
2344
|
+
};
|
|
2345
|
+
stopOnInteraction: {
|
|
2346
|
+
value: boolean;
|
|
2347
|
+
propertyType: CMSElementEditTypes;
|
|
2348
|
+
};
|
|
2349
|
+
};
|
|
1666
2350
|
allProductsHeading: {
|
|
1667
2351
|
theme: {
|
|
1668
2352
|
value: string;
|
|
@@ -1774,6 +2458,14 @@ export declare const getDefaultData: () => {
|
|
|
1774
2458
|
isReadOnly?: boolean | undefined;
|
|
1775
2459
|
parentRef?: string | undefined;
|
|
1776
2460
|
};
|
|
2461
|
+
contentGap: {
|
|
2462
|
+
property: string;
|
|
2463
|
+
value: number;
|
|
2464
|
+
unit?: string | number | undefined;
|
|
2465
|
+
propertyType?: any;
|
|
2466
|
+
isReadOnly?: boolean | undefined;
|
|
2467
|
+
parentRef?: string | undefined;
|
|
2468
|
+
};
|
|
1777
2469
|
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1778
2470
|
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
1779
2471
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -1803,6 +2495,17 @@ export declare const getDefaultData: () => {
|
|
|
1803
2495
|
};
|
|
1804
2496
|
};
|
|
1805
2497
|
brandName: {
|
|
2498
|
+
textOverflow: {
|
|
2499
|
+
value: boolean;
|
|
2500
|
+
property: string;
|
|
2501
|
+
propertyType: CMSElementEditTypes;
|
|
2502
|
+
};
|
|
2503
|
+
numberOfDisplayedLines: {
|
|
2504
|
+
unit: CMSCSSUnitTypesEnums;
|
|
2505
|
+
value: number;
|
|
2506
|
+
property: string;
|
|
2507
|
+
propertyType: CMSElementEditTypes;
|
|
2508
|
+
};
|
|
1806
2509
|
theme: {
|
|
1807
2510
|
value: string;
|
|
1808
2511
|
property: string;
|
|
@@ -2062,11 +2765,5 @@ export declare const getDefaultData: () => {
|
|
|
2062
2765
|
property: string;
|
|
2063
2766
|
propertyType: CMSElementEditTypes;
|
|
2064
2767
|
};
|
|
2065
|
-
columns: {
|
|
2066
|
-
value: number;
|
|
2067
|
-
unit: CMSCSSUnitTypesEnums;
|
|
2068
|
-
property: string;
|
|
2069
|
-
propertyType: CMSElementEditTypes;
|
|
2070
|
-
};
|
|
2071
2768
|
};
|
|
2072
2769
|
};
|