@sc-360-v2/storefront-cms-library 0.4.75 → 0.4.77
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/bulk-variant-picker.scss +402 -142
- package/dist/bundle.scss +183 -160
- package/dist/bundleDetails.scss +415 -346
- package/dist/button.scss +299 -292
- package/dist/cart-summary.scss +317 -0
- package/dist/countdown.scss +774 -751
- package/dist/gallery-slider-temp.scss +235 -14
- package/dist/menu-v2.scss +4 -0
- package/dist/product-image.scss +225 -13
- package/dist/profile.scss +1 -1
- package/dist/quick-order-pad.scss +596 -0
- package/dist/scroll.scss +224 -222
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +30 -0
- package/dist/types/builder/tools/element-edit/bulkVariantPicker.d.ts +0 -13
- package/dist/types/builder/tools/element-edit/bundle.d.ts +45 -0
- package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +110 -1
- package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +20 -0
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +545 -5
- package/dist/types/builder/tools/element-edit/coupon.d.ts +20 -0
- package/dist/types/builder/tools/element-edit/embroidery.d.ts +10 -0
- package/dist/types/builder/tools/element-edit/gallery-slider.d.ts +47 -2
- package/dist/types/builder/tools/element-edit/mega-menu.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/menu_v2.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/product-image.d.ts +47 -2
- package/dist/types/builder/tools/element-edit/scroll.d.ts +0 -42
- package/dist/types/builder/tools/element-edit/userElements.d.ts +4 -7
- package/dist/types/builder/tools/element-edit/variantPicker.d.ts +0 -12
- package/dist/types/global/types.d.ts +1 -0
- package/dist/uom-selector.scss +23 -0
- package/dist/user-elements.scss +33 -26
- package/dist/variant-picker.scss +404 -179
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CMSElementEditTypes } from "../../enums";
|
|
1
|
+
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
2
2
|
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
3
3
|
import { CMSElementEditPopupInterface } from "./common";
|
|
4
4
|
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
@@ -12,6 +12,10 @@ export declare enum SelectorKeysEnum {
|
|
|
12
12
|
SELECTED_STATE = "selectedState",
|
|
13
13
|
HOVER_STATE = "hoverState",
|
|
14
14
|
BUNDLE_DETAILS_HEADER_DESIGN = "bundleDetailsHeaderDesign",
|
|
15
|
+
HEADER = "header",
|
|
16
|
+
BODY = "body",
|
|
17
|
+
ADD_TO_CART = "addToCart",
|
|
18
|
+
BUNDLE_DETAILS_LAYOUT_DESIGN = "bundleDetailsLayoutDesign",
|
|
15
19
|
BUNDLE_NAME_DESIGN = "bundleNameDesign",
|
|
16
20
|
BUNDLE_DESCRIPTION_DESIGN = "bundleDescriptionDesign",
|
|
17
21
|
CATEGORY_SLIDER_CARD_DESIGN = "categorySliderCardDesign",
|
|
@@ -60,6 +64,75 @@ export declare const getDefaultData: () => {
|
|
|
60
64
|
};
|
|
61
65
|
design: {
|
|
62
66
|
selectorKey: SelectorKeysEnum;
|
|
67
|
+
bundleDetailsLayoutDesign: {
|
|
68
|
+
selectorKey: SelectorKeysEnum;
|
|
69
|
+
header: {
|
|
70
|
+
selectorKey: SelectorKeysEnum;
|
|
71
|
+
padding: any;
|
|
72
|
+
itemGap: {
|
|
73
|
+
value: number;
|
|
74
|
+
unit?: string | number | undefined;
|
|
75
|
+
property?: any;
|
|
76
|
+
propertyType?: any;
|
|
77
|
+
isReadOnly?: boolean | undefined;
|
|
78
|
+
parentRef?: string | undefined;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
body: {
|
|
82
|
+
selectorKey: SelectorKeysEnum;
|
|
83
|
+
padding: any;
|
|
84
|
+
itemGap: {
|
|
85
|
+
value: number;
|
|
86
|
+
unit?: string | number | undefined;
|
|
87
|
+
property?: any;
|
|
88
|
+
propertyType?: any;
|
|
89
|
+
isReadOnly?: boolean | undefined;
|
|
90
|
+
parentRef?: string | undefined;
|
|
91
|
+
};
|
|
92
|
+
dividerColor: {
|
|
93
|
+
value: {
|
|
94
|
+
hex: string;
|
|
95
|
+
rgb: {
|
|
96
|
+
r: string;
|
|
97
|
+
g: string;
|
|
98
|
+
b: string;
|
|
99
|
+
a: number;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
property: string;
|
|
103
|
+
propertyType?: any;
|
|
104
|
+
isReadOnly?: boolean | undefined;
|
|
105
|
+
parentRef?: string | undefined;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
addToCart: {
|
|
109
|
+
selectorKey: SelectorKeysEnum;
|
|
110
|
+
padding: any;
|
|
111
|
+
itemGap: {
|
|
112
|
+
value: number;
|
|
113
|
+
unit?: string | number | undefined;
|
|
114
|
+
property?: any;
|
|
115
|
+
propertyType?: any;
|
|
116
|
+
isReadOnly?: boolean | undefined;
|
|
117
|
+
parentRef?: string | undefined;
|
|
118
|
+
};
|
|
119
|
+
backgroundColor: {
|
|
120
|
+
value: {
|
|
121
|
+
hex: string;
|
|
122
|
+
rgb: {
|
|
123
|
+
r: string;
|
|
124
|
+
g: string;
|
|
125
|
+
b: string;
|
|
126
|
+
a: number;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
property?: any;
|
|
130
|
+
propertyType?: any;
|
|
131
|
+
isReadOnly?: boolean | undefined;
|
|
132
|
+
parentRef?: string | undefined;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
};
|
|
63
136
|
bundleDetailsHeaderDesign: {
|
|
64
137
|
selectorKey: SelectorKeysEnum;
|
|
65
138
|
bundleNameDesign: {
|
|
@@ -327,6 +400,22 @@ export declare const getDefaultData: () => {
|
|
|
327
400
|
productPanelDesign: {
|
|
328
401
|
selectorKey: SelectorKeysEnum;
|
|
329
402
|
productNameDesign: {
|
|
403
|
+
textTransform: {
|
|
404
|
+
value: string;
|
|
405
|
+
property: string;
|
|
406
|
+
propertyType: CMSElementEditTypes;
|
|
407
|
+
};
|
|
408
|
+
textOverflow: {
|
|
409
|
+
value: boolean;
|
|
410
|
+
property: string;
|
|
411
|
+
propertyType: CMSElementEditTypes;
|
|
412
|
+
};
|
|
413
|
+
numberOfDisplayedLines: {
|
|
414
|
+
unit: CMSCSSUnitTypesEnums;
|
|
415
|
+
value: number;
|
|
416
|
+
property: string;
|
|
417
|
+
propertyType: CMSElementEditTypes;
|
|
418
|
+
};
|
|
330
419
|
theme: CMSIBCommonInterface;
|
|
331
420
|
font: CMSIBCommonInterface;
|
|
332
421
|
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
@@ -582,6 +671,11 @@ export declare const getDefaultData: () => {
|
|
|
582
671
|
propertyType?: any;
|
|
583
672
|
isReadOnly?: boolean | undefined;
|
|
584
673
|
};
|
|
674
|
+
textTransform: {
|
|
675
|
+
value: string;
|
|
676
|
+
property: string;
|
|
677
|
+
propertyType: CMSElementEditTypes;
|
|
678
|
+
};
|
|
585
679
|
buttonStyle: {
|
|
586
680
|
parentRef: string;
|
|
587
681
|
propertyType: CMSElementEditTypes;
|
|
@@ -808,6 +902,11 @@ export declare const getDefaultData: () => {
|
|
|
808
902
|
propertyType?: any;
|
|
809
903
|
isReadOnly?: boolean | undefined;
|
|
810
904
|
};
|
|
905
|
+
textTransform: {
|
|
906
|
+
value: string;
|
|
907
|
+
property: string;
|
|
908
|
+
propertyType: CMSElementEditTypes;
|
|
909
|
+
};
|
|
811
910
|
buttonStyle: {
|
|
812
911
|
parentRef: string;
|
|
813
912
|
propertyType: CMSElementEditTypes;
|
|
@@ -1067,6 +1166,11 @@ export declare const getDefaultData: () => {
|
|
|
1067
1166
|
propertyType?: any;
|
|
1068
1167
|
isReadOnly?: boolean | undefined;
|
|
1069
1168
|
};
|
|
1169
|
+
textTransform: {
|
|
1170
|
+
value: string;
|
|
1171
|
+
property: string;
|
|
1172
|
+
propertyType: CMSElementEditTypes;
|
|
1173
|
+
};
|
|
1070
1174
|
buttonStyle: {
|
|
1071
1175
|
parentRef: string;
|
|
1072
1176
|
propertyType: CMSElementEditTypes;
|
|
@@ -1293,6 +1397,11 @@ export declare const getDefaultData: () => {
|
|
|
1293
1397
|
propertyType?: any;
|
|
1294
1398
|
isReadOnly?: boolean | undefined;
|
|
1295
1399
|
};
|
|
1400
|
+
textTransform: {
|
|
1401
|
+
value: string;
|
|
1402
|
+
property: string;
|
|
1403
|
+
propertyType: CMSElementEditTypes;
|
|
1404
|
+
};
|
|
1296
1405
|
buttonStyle: {
|
|
1297
1406
|
parentRef: string;
|
|
1298
1407
|
propertyType: CMSElementEditTypes;
|
|
@@ -178,6 +178,11 @@ export declare const buttonDefaultStateInstance: {
|
|
|
178
178
|
propertyType?: any;
|
|
179
179
|
isReadOnly?: boolean | undefined;
|
|
180
180
|
};
|
|
181
|
+
textTransform: {
|
|
182
|
+
value: string;
|
|
183
|
+
property: string;
|
|
184
|
+
propertyType: CMSElementEditTypes;
|
|
185
|
+
};
|
|
181
186
|
};
|
|
182
187
|
export declare const buttonHoverStateInstance: {
|
|
183
188
|
backgroundColor: {
|
|
@@ -358,6 +363,11 @@ export declare const buttonHoverStateInstance: {
|
|
|
358
363
|
propertyType?: any;
|
|
359
364
|
isReadOnly?: boolean | undefined;
|
|
360
365
|
};
|
|
366
|
+
textTransform: {
|
|
367
|
+
value: string;
|
|
368
|
+
property: string;
|
|
369
|
+
propertyType: CMSElementEditTypes;
|
|
370
|
+
};
|
|
361
371
|
};
|
|
362
372
|
export declare const ButtonInstance: {
|
|
363
373
|
buttonStyle: {
|
|
@@ -597,6 +607,11 @@ export declare const ButtonProperties: {
|
|
|
597
607
|
propertyType?: any;
|
|
598
608
|
isReadOnly?: boolean | undefined;
|
|
599
609
|
};
|
|
610
|
+
textTransform: {
|
|
611
|
+
value: string;
|
|
612
|
+
property: string;
|
|
613
|
+
propertyType: CMSElementEditTypes;
|
|
614
|
+
};
|
|
600
615
|
buttonStyle: {
|
|
601
616
|
parentRef: string;
|
|
602
617
|
propertyType: CMSElementEditTypes;
|
|
@@ -816,6 +831,11 @@ export declare const ButtonPropertiesHover: {
|
|
|
816
831
|
propertyType?: any;
|
|
817
832
|
isReadOnly?: boolean | undefined;
|
|
818
833
|
};
|
|
834
|
+
textTransform: {
|
|
835
|
+
value: string;
|
|
836
|
+
property: string;
|
|
837
|
+
propertyType: CMSElementEditTypes;
|
|
838
|
+
};
|
|
819
839
|
buttonStyle: {
|
|
820
840
|
parentRef: string;
|
|
821
841
|
propertyType: CMSElementEditTypes;
|