@sc-360-v2/storefront-cms-library 0.0.7 → 0.0.9

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.
Files changed (34) hide show
  1. package/dist/builder.js +1 -1
  2. package/dist/css.js +1 -1
  3. package/dist/icons.js +1 -1
  4. package/dist/index.js +1 -1
  5. package/dist/types/builder/elements/common.d.ts +2 -0
  6. package/dist/types/builder/elements/container/index.d.ts +42 -0
  7. package/dist/types/builder/elements/countdown/index.d.ts +26 -0
  8. package/dist/types/builder/elements/embed/index.d.ts +59 -0
  9. package/dist/types/builder/elements/grid/index.d.ts +1 -1
  10. package/dist/types/builder/elements/image-hotspot/index.d.ts +30 -0
  11. package/dist/types/builder/elements/map/index.d.ts +30 -0
  12. package/dist/types/builder/elements/scroll/index.d.ts +26 -0
  13. package/dist/types/builder/elements/table/index.d.ts +1 -5
  14. package/dist/types/builder/enums/index.d.ts +46 -6
  15. package/dist/types/builder/index.d.ts +7 -1
  16. package/dist/types/builder/interfaces/global.d.ts +9 -0
  17. package/dist/types/builder/tools/element-edit/button.d.ts +1 -0
  18. package/dist/types/builder/tools/element-edit/buttonv2.d.ts +26 -0
  19. package/dist/types/builder/tools/element-edit/common.d.ts +19 -2
  20. package/dist/types/builder/tools/element-edit/container.d.ts +15 -0
  21. package/dist/types/builder/tools/element-edit/countdown.d.ts +300 -0
  22. package/dist/types/builder/tools/element-edit/faq.d.ts +39 -7
  23. package/dist/types/builder/tools/element-edit/gallery-slider.d.ts +32 -0
  24. package/dist/types/builder/tools/element-edit/imageHotspot.d.ts +154 -0
  25. package/dist/types/builder/tools/element-edit/index.d.ts +7 -1
  26. package/dist/types/builder/tools/element-edit/map.d.ts +122 -0
  27. package/dist/types/builder/tools/element-edit/scroll.d.ts +219 -0
  28. package/dist/types/builder/tools/element-edit/social.d.ts +185 -4
  29. package/dist/types/builder/tools/element-edit/table.d.ts +9 -4
  30. package/dist/types/builder/tools/element-edit/text.d.ts +1 -2
  31. package/dist/types/builder/tools/element-edit/video.d.ts +212 -4
  32. package/dist/types/global/types.d.ts +2 -2
  33. package/package.json +1 -1
  34. package/dist/faq.scss +0 -136
@@ -0,0 +1,300 @@
1
+ import { CMSElementEditTypes } from "../../enums";
2
+ import { CMSIBCommonInterface } from "../../interfaces/global";
3
+ import { CMSElementEditPopupInterface } from "./common";
4
+ export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
5
+ }
6
+ export interface selfDesignInterface {
7
+ selectorKey: string;
8
+ }
9
+ export declare enum SelectorKeysEnum {
10
+ LAYOUT = "layout",
11
+ DESIGN = "design",
12
+ CONTENT = "content",
13
+ COUNTDOWN_WIDGET = "countdownWidget",
14
+ COUNTDOWN_LAYOUT = "countdownLayout",
15
+ COUNTER_STYLE = "counterStyle",
16
+ DIVIDER_STYLE = "dividerStyle",
17
+ COUNTDOWN_WIDGET_TEXT_CONTAINER_DESIGN = "countdownWidgetTextContainerDesign",
18
+ COUNTDOWN_WIDGET_TEXT_CONTAINER_LAYOUT = "countdownWidgetTextContainerLayout"
19
+ }
20
+ export declare const getDefaultData: () => {
21
+ layout: {
22
+ selectorKey: SelectorKeysEnum;
23
+ width: {
24
+ value: string;
25
+ unit: number;
26
+ };
27
+ height: {
28
+ value: string;
29
+ unit: number;
30
+ property?: any;
31
+ propertyType?: any;
32
+ isReadOnly?: boolean | undefined;
33
+ parentRef?: string | undefined;
34
+ };
35
+ margin: import("../../interfaces/global").CSSPaddingValues | undefined;
36
+ padding: import("../../interfaces/global").CSSPaddingValues | undefined;
37
+ type: {
38
+ value: string;
39
+ property: string;
40
+ propertyType: CMSElementEditTypes;
41
+ };
42
+ counterStyle: {
43
+ value: string;
44
+ property: string;
45
+ propertyType: CMSElementEditTypes;
46
+ };
47
+ countdownAnimation: {
48
+ value: string;
49
+ property: string;
50
+ propertyType: CMSElementEditTypes;
51
+ };
52
+ dividerBetweenItems: {
53
+ value: string;
54
+ property: string;
55
+ propertyType: CMSElementEditTypes;
56
+ };
57
+ positionType: CMSIBCommonInterface | undefined;
58
+ pinTo: CMSIBCommonInterface | undefined;
59
+ };
60
+ content: {
61
+ selectorKey: SelectorKeysEnum;
62
+ source: {
63
+ value: string;
64
+ property: string;
65
+ propertyType: CMSElementEditTypes;
66
+ };
67
+ showCountdownTitle: {
68
+ value: string;
69
+ property: string;
70
+ propertyType: CMSElementEditTypes;
71
+ };
72
+ title: {
73
+ value: string;
74
+ property: string;
75
+ propertyType: CMSElementEditTypes;
76
+ };
77
+ showCountdownDescription: {
78
+ value: string;
79
+ property: string;
80
+ propertyType: CMSElementEditTypes;
81
+ };
82
+ description: {
83
+ value: string;
84
+ property: string;
85
+ propertyType: CMSElementEditTypes;
86
+ };
87
+ chooseSchedules: {
88
+ value: string;
89
+ property: string;
90
+ propertyType: CMSElementEditTypes;
91
+ };
92
+ startDate: {
93
+ value: string;
94
+ property: string;
95
+ propertyType: CMSElementEditTypes;
96
+ };
97
+ endDate: {
98
+ value: string;
99
+ property: string;
100
+ propertyType: CMSElementEditTypes;
101
+ };
102
+ days: {
103
+ value: string;
104
+ property: string;
105
+ propertyType: CMSElementEditTypes;
106
+ };
107
+ daysTitle: {
108
+ value: string;
109
+ property: string;
110
+ propertyType: CMSElementEditTypes;
111
+ };
112
+ hours: {
113
+ value: string;
114
+ property: string;
115
+ propertyType: CMSElementEditTypes;
116
+ };
117
+ hoursTitle: {
118
+ value: string;
119
+ property: string;
120
+ propertyType: CMSElementEditTypes;
121
+ };
122
+ minutes: {
123
+ value: string;
124
+ property: string;
125
+ propertyType: CMSElementEditTypes;
126
+ };
127
+ minutesTitle: {
128
+ value: string;
129
+ property: string;
130
+ propertyType: CMSElementEditTypes;
131
+ };
132
+ seconds: {
133
+ value: string;
134
+ property: string;
135
+ propertyType: CMSElementEditTypes;
136
+ };
137
+ secondsTitle: {
138
+ value: string;
139
+ property: string;
140
+ propertyType: CMSElementEditTypes;
141
+ };
142
+ };
143
+ design: {
144
+ selectorKey: SelectorKeysEnum;
145
+ countdownWidget: {
146
+ selectorKey: SelectorKeysEnum;
147
+ backgroundColor: CMSIBCommonInterface;
148
+ showBorder: CMSIBCommonInterface;
149
+ borderStyle: CMSIBCommonInterface;
150
+ borderColor: CMSIBCommonInterface;
151
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
152
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
153
+ showShadow: CMSIBCommonInterface;
154
+ shadowColor: CMSIBCommonInterface;
155
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
156
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
157
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
158
+ theme: CMSIBCommonInterface;
159
+ font: CMSIBCommonInterface;
160
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
161
+ textColor: CMSIBCommonInterface;
162
+ bold: CMSIBCommonInterface;
163
+ italic: CMSIBCommonInterface;
164
+ linethrough: CMSIBCommonInterface;
165
+ underline: CMSIBCommonInterface;
166
+ textAlign: CMSIBCommonInterface;
167
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
168
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
169
+ themeDesc: CMSIBCommonInterface;
170
+ fontDesc: CMSIBCommonInterface;
171
+ fontSizeDesc: import("../../interfaces/global").CMSIBSizeInterface;
172
+ textColorDesc: CMSIBCommonInterface;
173
+ boldDesc: CMSIBCommonInterface;
174
+ italicDesc: CMSIBCommonInterface;
175
+ linethroughDesc: CMSIBCommonInterface;
176
+ underlineDesc: CMSIBCommonInterface;
177
+ textAlignDesc: CMSIBCommonInterface;
178
+ characterSpacingDesc: import("../../interfaces/global").CMSIBSizeInterface | undefined;
179
+ lineHeightDesc: import("../../interfaces/global").CMSIBSizeInterface;
180
+ };
181
+ countdownWidgetTextContainerLayout: {
182
+ selectorKey: SelectorKeysEnum;
183
+ textVerticalPadding: {
184
+ value: string;
185
+ property: string;
186
+ unit: number;
187
+ propertyType: CMSElementEditTypes;
188
+ };
189
+ textHorizontalPadding: {
190
+ value: string;
191
+ property: string;
192
+ unit: number;
193
+ propertyType: CMSElementEditTypes;
194
+ };
195
+ titleAndDescriptionSpacing: {
196
+ value: string;
197
+ property: string;
198
+ unit: number;
199
+ propertyType: CMSElementEditTypes;
200
+ };
201
+ };
202
+ countdownWidgetTextContainerDesign: {
203
+ selectorKey: SelectorKeysEnum;
204
+ backgroundColor: CMSIBCommonInterface;
205
+ borderColor: CMSIBCommonInterface;
206
+ borderStyle: CMSIBCommonInterface;
207
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
208
+ showBorder: CMSIBCommonInterface;
209
+ showShadow: CMSIBCommonInterface;
210
+ shadowColor: CMSIBCommonInterface;
211
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
212
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
213
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
214
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
215
+ };
216
+ countdownLayout: {
217
+ selectorKey: SelectorKeysEnum;
218
+ verticalAlignment: {
219
+ value: string;
220
+ property: string;
221
+ propertyType: CMSElementEditTypes;
222
+ };
223
+ widgetTextAndItemSpacing: {
224
+ value: string;
225
+ property: string;
226
+ unit: number;
227
+ propertyType: CMSElementEditTypes;
228
+ };
229
+ textPosition: {
230
+ value: string;
231
+ property: string;
232
+ propertyType: CMSElementEditTypes;
233
+ };
234
+ };
235
+ counterStyle: {
236
+ selectorKey: SelectorKeysEnum;
237
+ backgroundColor: CMSIBCommonInterface;
238
+ showBorder: CMSIBCommonInterface;
239
+ borderStyle: CMSIBCommonInterface;
240
+ borderColor: CMSIBCommonInterface;
241
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
242
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
243
+ showShadow: CMSIBCommonInterface;
244
+ shadowColor: CMSIBCommonInterface;
245
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
246
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
247
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
248
+ theme: CMSIBCommonInterface;
249
+ font: CMSIBCommonInterface;
250
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
251
+ textColor: CMSIBCommonInterface;
252
+ bold: CMSIBCommonInterface;
253
+ italic: CMSIBCommonInterface;
254
+ linethrough: CMSIBCommonInterface;
255
+ underline: CMSIBCommonInterface;
256
+ textAlign: CMSIBCommonInterface;
257
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
258
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
259
+ themeDesc: CMSIBCommonInterface;
260
+ fontDesc: CMSIBCommonInterface;
261
+ fontSizeDesc: import("../../interfaces/global").CMSIBSizeInterface;
262
+ textColorDesc: CMSIBCommonInterface;
263
+ boldDesc: CMSIBCommonInterface;
264
+ italicDesc: CMSIBCommonInterface;
265
+ linethroughDesc: CMSIBCommonInterface;
266
+ underlineDesc: CMSIBCommonInterface;
267
+ textAlignDesc: CMSIBCommonInterface;
268
+ characterSpacingDesc: import("../../interfaces/global").CMSIBSizeInterface | undefined;
269
+ lineHeightDesc: import("../../interfaces/global").CMSIBSizeInterface;
270
+ };
271
+ dividerStyle: {
272
+ selectorKey: SelectorKeysEnum;
273
+ shape: {
274
+ value: string;
275
+ property: string;
276
+ propertyType: CMSElementEditTypes;
277
+ };
278
+ size: {
279
+ value: string;
280
+ property: string;
281
+ unit: number;
282
+ propertyType: CMSElementEditTypes;
283
+ };
284
+ iconColor: {
285
+ value: {
286
+ hex: string;
287
+ rgb: {
288
+ r: string;
289
+ g: string;
290
+ b: string;
291
+ a: number;
292
+ };
293
+ };
294
+ property: string;
295
+ propertyType: CMSElementEditTypes;
296
+ parentRef: string;
297
+ };
298
+ };
299
+ };
300
+ };
@@ -1,4 +1,4 @@
1
- import { CMSIBCommonInterface } from "../../interfaces/global";
1
+ import { CMSIBCommonInterface, CMSIBSizeInterface } from "../../interfaces/global";
2
2
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
3
  interface selfLayoutInterface {
4
4
  expandFirstItemByDefault: CMSIBCommonInterface;
@@ -6,9 +6,45 @@ interface selfLayoutInterface {
6
6
  itemDividers: CMSIBCommonInterface;
7
7
  iconPosition: CMSIBCommonInterface;
8
8
  selectorKey: string;
9
+ itemHorizontalPadding: CMSIBSizeInterface;
10
+ itemVerticalPadding: CMSIBSizeInterface;
11
+ itemSpacing: CMSIBSizeInterface;
12
+ titleAndDescriptionSpacing: CMSIBSizeInterface;
9
13
  }
10
14
  export interface selfDesignInterface {
11
15
  selectorKey: string;
16
+ collapsedAccordionItem?: {
17
+ selectorKey: string;
18
+ backgroundColor?: CMSIBCommonInterface;
19
+ borderColor?: CMSIBCommonInterface;
20
+ borderStyle?: CMSIBCommonInterface;
21
+ borderPerSlide?: CMSIBCommonInterface;
22
+ showBorder?: CMSIBCommonInterface;
23
+ showShadow?: CMSIBCommonInterface;
24
+ shadowColor?: CMSIBCommonInterface;
25
+ blur?: CMSIBCommonInterface;
26
+ spread?: CMSIBCommonInterface;
27
+ angle?: CMSIBCommonInterface;
28
+ borderRadius?: CMSIBCommonInterface;
29
+ iconSize: CMSIBCommonInterface;
30
+ iconColor: CMSIBCommonInterface;
31
+ [key: string]: any;
32
+ };
33
+ expandedAccordionItem?: {
34
+ selectorKey: string;
35
+ backgroundColor?: CMSIBCommonInterface;
36
+ borderColor?: CMSIBCommonInterface;
37
+ borderStyle?: CMSIBCommonInterface;
38
+ borderPerSlide?: CMSIBCommonInterface;
39
+ showBorder?: CMSIBCommonInterface;
40
+ showShadow?: CMSIBCommonInterface;
41
+ shadowColor?: CMSIBCommonInterface;
42
+ blur?: CMSIBCommonInterface;
43
+ spread?: CMSIBCommonInterface;
44
+ angle?: CMSIBCommonInterface;
45
+ borderRadius?: CMSIBCommonInterface;
46
+ [key: string]: any;
47
+ };
12
48
  faqWidget?: {
13
49
  selectorKey: string;
14
50
  backgroundColor?: CMSIBCommonInterface;
@@ -23,18 +59,14 @@ export interface selfDesignInterface {
23
59
  angle?: CMSIBCommonInterface;
24
60
  borderRadius?: CMSIBCommonInterface;
25
61
  };
26
- titleText?: any;
27
- descriptionText?: any;
28
- icon: any;
29
62
  divider: any;
30
63
  }
31
64
  export declare enum ButtonSelectorKeysEnum {
32
65
  LAYOUT = "layout",
33
66
  DESIGN = "design",
34
67
  FAQ_WIDGET = "faqWidget",
35
- TITLE_TEXT = "titleText",
36
- DESCRIPTION_TEXT = "DescriptionText",
37
- ICON = "icon",
68
+ COLLAPSED_ACCRORDION_ITEM = "collapsedAccordionItem",
69
+ EXPANDED_ACCRORDION_ITEM = "expandedAccordionItem",
38
70
  DIVIDER = "divider"
39
71
  }
40
72
  export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
@@ -4,6 +4,7 @@ interface selfLayoutInterface {
4
4
  selectorKey: string;
5
5
  displayStyle: CMSIBCommonInterface;
6
6
  itemsPerSlide: CMSIBSizeInterface;
7
+ imageSize: CMSIBSizeInterface;
7
8
  itemGap: CMSIBSizeInterface;
8
9
  rowGap: CMSIBSizeInterface;
9
10
  sliderControl: CMSIBCommonInterface;
@@ -13,6 +14,21 @@ interface selfLayoutInterface {
13
14
  autoplayStyle: CMSIBCommonInterface;
14
15
  autoplayDuration: CMSIBSizeInterface;
15
16
  sliderSpeed: CMSIBSizeInterface;
17
+ fitOptions: CMSIBCommonInterface;
18
+ galleryDimensions: CMSIBCommonInterface;
19
+ galleryRatio: CMSIBCommonInterface;
20
+ imageDimensions: CMSIBCommonInterface;
21
+ galleryDirection: CMSIBCommonInterface;
22
+ imageBehavior: CMSIBCommonInterface;
23
+ itemsPerRow: CMSIBCommonInterface;
24
+ itemsPerColumn: CMSIBCommonInterface;
25
+ control: CMSIBCommonInterface;
26
+ imageRatio: CMSIBCommonInterface;
27
+ thumbnailPlacement: CMSIBCommonInterface;
28
+ noOfItemsToLoad: CMSIBCommonInterface;
29
+ itemSpacing: CMSIBCommonInterface;
30
+ thumbnailSize: CMSIBCommonInterface;
31
+ thumbnailSpacing: CMSIBCommonInterface;
16
32
  }
17
33
  export interface selfDesignInterface {
18
34
  selectorKey: string;
@@ -29,6 +45,22 @@ export interface selfDesignInterface {
29
45
  spread: CMSIBCommonInterface;
30
46
  angle: CMSIBCommonInterface;
31
47
  borderRadius: CMSIBCommonInterface;
48
+ [key: string]: any;
49
+ };
50
+ itemTextStyles: {
51
+ selectorKey: string;
52
+ backgroundColor: CMSIBCommonInterface;
53
+ borderColor: CMSIBCommonInterface;
54
+ borderStyle: CMSIBCommonInterface;
55
+ borderPerSlide: CMSIBCommonInterface;
56
+ showBorder: CMSIBCommonInterface;
57
+ showShadow: CMSIBCommonInterface;
58
+ shadowColor: CMSIBCommonInterface;
59
+ blur: CMSIBCommonInterface;
60
+ spread: CMSIBCommonInterface;
61
+ angle: CMSIBCommonInterface;
62
+ borderRadius: CMSIBCommonInterface;
63
+ [key: string]: any;
32
64
  };
33
65
  galleryLayout: {
34
66
  selectorKey: string;
@@ -0,0 +1,154 @@
1
+ import { CMSIBCommonInterface } from "../../interfaces/global";
2
+ import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
+ export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
4
+ }
5
+ interface controlInterface {
6
+ value: string | boolean;
7
+ propertyType: string;
8
+ }
9
+ export interface selfLayoutInterface {
10
+ selectorKey: string;
11
+ showContent: controlInterface;
12
+ canOpenMultipleHotspots: controlInterface;
13
+ }
14
+ export interface selfDesignInterface {
15
+ selectorKey: string;
16
+ imageStyle: {
17
+ selectorKey: string;
18
+ cropRatio: CMSIBCommonInterface;
19
+ zoomImage: CMSIBCommonInterface;
20
+ flip: CMSIBCommonInterface;
21
+ rotate: CMSIBCommonInterface;
22
+ backgroundColor: CMSIBCommonInterface;
23
+ overlayColor: CMSIBCommonInterface;
24
+ exposure: CMSIBCommonInterface;
25
+ contrast: CMSIBCommonInterface;
26
+ saturation: CMSIBCommonInterface;
27
+ brightness: CMSIBCommonInterface;
28
+ hue: CMSIBCommonInterface;
29
+ lightness: CMSIBCommonInterface;
30
+ highlights: CMSIBCommonInterface;
31
+ shadows: CMSIBCommonInterface;
32
+ showBorder: CMSIBCommonInterface;
33
+ borderStyle: CMSIBCommonInterface;
34
+ borderColor: CMSIBCommonInterface;
35
+ borderPerSlide: CMSIBCommonInterface;
36
+ borderRadius: CMSIBCommonInterface;
37
+ showShadow: CMSIBCommonInterface;
38
+ shadowColor: CMSIBCommonInterface;
39
+ angle: CMSIBCommonInterface;
40
+ spread: CMSIBCommonInterface;
41
+ blur: CMSIBCommonInterface;
42
+ };
43
+ hotspotStyle: {
44
+ selectorKey: string;
45
+ iconColor: CMSIBCommonInterface;
46
+ buttonIcon: CMSIBCommonInterface;
47
+ iconSize: CMSIBCommonInterface;
48
+ showIcon: controlInterface;
49
+ hotspotSize: controlInterface;
50
+ hotspotStyle: controlInterface;
51
+ backgroundColor: CMSIBCommonInterface;
52
+ shape: controlInterface;
53
+ animationStyle: controlInterface;
54
+ animationFrequency: controlInterface;
55
+ showBorder: CMSIBCommonInterface;
56
+ borderStyle: CMSIBCommonInterface;
57
+ borderColor: CMSIBCommonInterface;
58
+ borderPerSlide: CMSIBCommonInterface;
59
+ borderRadius: CMSIBCommonInterface;
60
+ showShadow: CMSIBCommonInterface;
61
+ shadowColor: CMSIBCommonInterface;
62
+ angle: CMSIBCommonInterface;
63
+ spread: CMSIBCommonInterface;
64
+ blur: CMSIBCommonInterface;
65
+ };
66
+ tooltipDesign: {
67
+ selectorKey: string;
68
+ tooltipWidth: controlInterface;
69
+ tooltipHeight: controlInterface;
70
+ horizontalAlignment: controlInterface;
71
+ verticalAlignment: controlInterface;
72
+ backgroundColor: CMSIBCommonInterface;
73
+ showBorder: CMSIBCommonInterface;
74
+ borderStyle: CMSIBCommonInterface;
75
+ borderColor: CMSIBCommonInterface;
76
+ borderPerSlide: CMSIBCommonInterface;
77
+ borderRadius: CMSIBCommonInterface;
78
+ showShadow: CMSIBCommonInterface;
79
+ shadowColor: CMSIBCommonInterface;
80
+ angle: CMSIBCommonInterface;
81
+ spread: CMSIBCommonInterface;
82
+ blur: CMSIBCommonInterface;
83
+ };
84
+ tooltipTextDesign: {
85
+ selectorKey: string;
86
+ font: CMSIBCommonInterface;
87
+ fontSize: CMSIBCommonInterface;
88
+ textColor: CMSIBCommonInterface;
89
+ bold: CMSIBCommonInterface;
90
+ italic: CMSIBCommonInterface;
91
+ linethrough: CMSIBCommonInterface;
92
+ underline: CMSIBCommonInterface;
93
+ textAlign: CMSIBCommonInterface;
94
+ lineHeight: CMSIBCommonInterface;
95
+ characterSpacing: CMSIBCommonInterface;
96
+ [key: string]: any;
97
+ };
98
+ tooltipProductDesign: {
99
+ selectorKey: string;
100
+ imageRatio: controlInterface;
101
+ fitOptions: controlInterface;
102
+ productInfoAlignment: controlInterface;
103
+ infoVerticalPadding: controlInterface;
104
+ infoHorizontalPadding: controlInterface;
105
+ infoSpacing: controlInterface;
106
+ cardLayout: controlInterface;
107
+ productCardStyle: controlInterface;
108
+ };
109
+ tooltipImageDesign: {
110
+ selectorKey: string;
111
+ cropRatio: CMSIBCommonInterface;
112
+ zoomImage: CMSIBCommonInterface;
113
+ flip: CMSIBCommonInterface;
114
+ rotate: CMSIBCommonInterface;
115
+ backgroundColor: CMSIBCommonInterface;
116
+ exposure: CMSIBCommonInterface;
117
+ contrast: CMSIBCommonInterface;
118
+ saturation: CMSIBCommonInterface;
119
+ brightness: CMSIBCommonInterface;
120
+ hue: CMSIBCommonInterface;
121
+ lightness: CMSIBCommonInterface;
122
+ highlights: CMSIBCommonInterface;
123
+ shadows: CMSIBCommonInterface;
124
+ showBorder: CMSIBCommonInterface;
125
+ borderStyle: CMSIBCommonInterface;
126
+ borderColor: CMSIBCommonInterface;
127
+ borderPerSlide: CMSIBCommonInterface;
128
+ borderRadius: CMSIBCommonInterface;
129
+ showShadow: CMSIBCommonInterface;
130
+ shadowColor: CMSIBCommonInterface;
131
+ angle: CMSIBCommonInterface;
132
+ spread: CMSIBCommonInterface;
133
+ blur: CMSIBCommonInterface;
134
+ imageRatio: CMSIBCommonInterface;
135
+ fitOptions: CMSIBCommonInterface;
136
+ horizontalAlignment: CMSIBCommonInterface;
137
+ verticalAlignment: CMSIBCommonInterface;
138
+ onClick: CMSIBCommonInterface;
139
+ onHover: CMSIBCommonInterface;
140
+ };
141
+ }
142
+ export declare enum SelectorKeysEnum {
143
+ LAYOUT = "layout",
144
+ DESIGN = "design",
145
+ CONTENT = "content",
146
+ HOTSPOT_IMAGE_STYLE = "hotSpotStyle",
147
+ HOTSPOT_STYLE = "hotspotStyle",
148
+ TOOL_TIP_DESIGN = "tooltipDesign",
149
+ TOOL_TIP_TEXT = "tooltipTextDesign",
150
+ TOOL_TIP_PRODUCT_DESIGN = "tooltipProductDesign",
151
+ TOOL_TIP_IMAGE_DESIGN = "tooltipImageDesign"
152
+ }
153
+ export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
154
+ export {};
@@ -3,6 +3,7 @@ import * as section from "./section";
3
3
  import * as grid from "./grid";
4
4
  import * as image from "./image";
5
5
  import * as button from "./button";
6
+ import * as buttonV2 from "./buttonv2";
6
7
  import * as video from "./video";
7
8
  import * as tabs from "./tabs";
8
9
  import * as slideShowLayouter from "./slideShowLayouter";
@@ -13,4 +14,9 @@ import * as faq from "./faq";
13
14
  import * as code from "./code";
14
15
  import * as embed from "./embed";
15
16
  import * as text from "./text";
16
- export { section, grid, common, image, button, slideShowLayouter, tabs, video, table, gallerySlider, social, faq, code, text, embed, };
17
+ import * as imageHotspot from "./imageHotspot";
18
+ import * as scroll from "./scroll";
19
+ import * as map from "./map";
20
+ import * as container from "./container";
21
+ import * as countdown from "./countdown";
22
+ export { section, grid, common, image, button, slideShowLayouter, tabs, video, table, gallerySlider, social, faq, code, text, embed, buttonV2, scroll, countdown, imageHotspot, map, container, };