@sc-360-v2/storefront-cms-library 0.3.28 → 0.3.29

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/modal.scss CHANGED
@@ -129,7 +129,7 @@ $active_btn_text_color: #fff;
129
129
  .modal-footer-wrapper {
130
130
  display: flex;
131
131
  width: 100%;
132
- gap: 8px;
132
+ gap: 12px;
133
133
 
134
134
  .modal-footer-white-btn {
135
135
  padding: 12px 24px;
@@ -138,8 +138,13 @@ $active_btn_text_color: #fff;
138
138
  color: #243dc6;
139
139
  font-weight: 600;
140
140
  width: 100%;
141
+ border: 1px solid #fff;
141
142
  display: flex;
142
143
  justify-content: center;
144
+
145
+ &:hover {
146
+ border: 1px solid #243dc6;
147
+ }
143
148
  }
144
149
 
145
150
  .modal-footer-danger-btn {
@@ -150,7 +155,12 @@ $active_btn_text_color: #fff;
150
155
  font-weight: 600;
151
156
  width: 100%;
152
157
  display: flex;
158
+ border: 1px solid #d92d20;
153
159
  justify-content: center;
160
+
161
+ &:hover {
162
+ background-color: darken(#d92d20, 5%);
163
+ }
154
164
  }
155
165
  }
156
166
  }
@@ -259,6 +269,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
259
269
  display: flex;
260
270
  flex-direction: column;
261
271
  max-height: 100vh;
272
+ max-width: none;
262
273
 
263
274
  .product-list {
264
275
  flex: 1;
@@ -344,7 +355,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
344
355
 
345
356
  .actions {
346
357
  display: flex;
347
- gap: 12px;
358
+ gap: 8px;
348
359
  span {
349
360
  width: 36px;
350
361
  height: 36px;
@@ -1,5 +1,6 @@
1
1
  @use "sass:map";
2
2
  @use "sass:list";
3
+ @use "./functions.scss" as *;
3
4
 
4
5
  [data-div-type="element"] {
5
6
  &[data-element-type="orderStatus"] {
package/dist/section.scss CHANGED
@@ -35,6 +35,9 @@ body {
35
35
  &:not(.animate__animated) {
36
36
  opacity: 0;
37
37
  }
38
+ &.animate__animated {
39
+ animation-delay: calc(1ms * var(--_ctm-flex-anim-delay, 1));
40
+ }
38
41
  }
39
42
  }
40
43
 
@@ -5,7 +5,7 @@
5
5
  $primary-color: #243dc6;
6
6
  $text-color: #2d2d2d;
7
7
  $background-color: #ffffff;
8
- $border-radius: 8px;
8
+ $border-radius: 6px;
9
9
  $input-border: #e0e0e0;
10
10
  $error-color: #e53935;
11
11
  $hint-color: #7d7d7d;
@@ -46,10 +46,10 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
46
46
  flex-direction: column;
47
47
  animation: slide-in 0.3s ease-out;
48
48
  .container {
49
- padding: 0px 24px;
50
49
  overflow-y: auto;
51
50
  width: 100%;
52
51
  height: calc(100vh - 40px);
52
+ padding: 0px;
53
53
  }
54
54
 
55
55
  @keyframes slide-in {
@@ -67,11 +67,11 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
67
67
  display: flex;
68
68
  justify-content: space-between;
69
69
  align-items: center;
70
- padding: 16px 0px;
70
+ padding: 16px 24px;
71
71
  position: sticky;
72
72
  top: 0px;
73
- background: #fff;
74
- margin: 0 -14px;
73
+ background: var(--_base-white);
74
+ border-bottom: 1px solid var(--_gray-200);
75
75
 
76
76
  h2 {
77
77
  font-size: 18px;
@@ -88,6 +88,10 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
88
88
  }
89
89
  }
90
90
 
91
+ .share_cart_body {
92
+ padding: 16px 24px;
93
+ }
94
+
91
95
  // Form fields
92
96
  .form-group {
93
97
  display: flex;
@@ -109,6 +113,7 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
109
113
 
110
114
  &:focus {
111
115
  border-color: $primary-color;
116
+ outline: 2px solid var(--_primary-200);
112
117
  }
113
118
  }
114
119
 
@@ -130,11 +135,11 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
130
135
  display: flex;
131
136
  flex-wrap: wrap;
132
137
  align-items: center;
133
- gap: 6px;
134
- padding: 8px 0px;
135
- border: 1px solid #ccc;
136
- border-radius: 8px;
137
- min-height: 44px;
138
+ // gap: 6px;
139
+ // padding: 8px 0px;
140
+ // border: 1px solid #ccc;
141
+ // border-radius: 8px;
142
+ // min-height: 44px;
138
143
  cursor: text;
139
144
  }
140
145
 
@@ -181,7 +186,13 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
181
186
  border: none;
182
187
  color: $text-color;
183
188
  cursor: pointer;
184
- font-weight: 500;
189
+ font-weight: 600;
190
+
191
+ padding: 12px 16px;
192
+ border-radius: 6px;
193
+ &:hover {
194
+ background: var(--_gray-100);
195
+ }
185
196
  }
186
197
 
187
198
  .share-btn {
@@ -209,16 +220,18 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
209
220
  }
210
221
  }
211
222
 
212
- .form-group.checkbox-group {
223
+ .form-group.get_promotons {
213
224
  display: flex;
214
- align-items: center;
225
+ // align-items: center;
215
226
  gap: 8px; // spacing between checkbox and label
216
227
  margin-top: 12px;
228
+ flex-direction: row;
217
229
 
218
230
  input[type="checkbox"] {
219
231
  width: 16px;
220
232
  height: 16px;
221
233
  cursor: pointer;
234
+ accent-color: var(--_primary-400);
222
235
  }
223
236
 
224
237
  label {
@@ -6,6 +6,11 @@ export declare const FB_CELL_HEIGHT = 70;
6
6
  export declare const FB_CONTAINER_PADDING = 20;
7
7
  export declare const FB_GRID_MIN_WIDTH = 4;
8
8
  export declare const FB_GRID_MOBILE_MIN_WIDTH = 2;
9
+ export declare enum FormType {
10
+ Contact = 1,
11
+ Login = 2,
12
+ SignUp = 3
13
+ }
9
14
  export declare enum FBModeEnum {
10
15
  Edit = 1,
11
16
  Preview = 2,
@@ -102,11 +107,11 @@ export declare enum FormIconEnum {
102
107
  Address = "address-fb",
103
108
  ColorPicker = "colorpicker-fb",
104
109
  InputText = "input-fb",
105
- Number = "number-fb",
106
110
  Percent = "percent-fb",
107
111
  ShortAnswer = "short-answer-fb",
108
112
  LongAnswer = "long-answer-fb",
109
- nk = "link-fb",
113
+ Number = "number-fb",
114
+ Link = "link-fb",
110
115
  FileUpload = "upload-fb",
111
116
  ImageUpload = "image-upload-fb",
112
117
  Rating = "star-rating-fb",
@@ -409,3 +414,10 @@ export declare function createAttributeFieldMap(attr: any): {
409
414
  };
410
415
  type: FormComponentTypeEnum;
411
416
  };
417
+ export declare function getCompTypeByAttrId(dataTypeId: AttributeDataType): {
418
+ id: FormElementIdEnum;
419
+ icon: FormIconEnum;
420
+ type: FormComponentTypeEnum;
421
+ fieldType: FormElementTypeEnum;
422
+ key: string;
423
+ };
@@ -14,7 +14,9 @@ export declare enum SelectorKeysEnum {
14
14
  TOTAL_AMOUNT_DESIGN = "totalAmountDesign",
15
15
  SECONDARY_TEXT_DESIGN = "secondaryTextDesign",
16
16
  PRIMARY_BUTTON_DESIGN = "primaryButtonDesign",
17
- SECONDARY_BUTTON_DESIGN = "secondaryButtonDesign"
17
+ SECONDARY_BUTTON_DESIGN = "secondaryButtonDesign",
18
+ HOVER_STATE = "hoverState",
19
+ DEFAULT_STATE = "defaultState"
18
20
  }
19
21
  export declare const getDefaultData: () => {
20
22
  layout: {
@@ -230,64 +232,130 @@ export declare const getDefaultData: () => {
230
232
  selectorKey: SelectorKeysEnum;
231
233
  };
232
234
  primaryButtonDesign: {
233
- theme: CMSIBCommonInterface;
234
- font: CMSIBCommonInterface;
235
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
236
- textColor: CMSIBCommonInterface;
237
- bold: CMSIBCommonInterface;
238
- italic: CMSIBCommonInterface;
239
- linethrough: CMSIBCommonInterface;
240
- underline: CMSIBCommonInterface;
241
- textAlign: CMSIBCommonInterface;
242
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
243
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
244
- borderColor: CMSIBCommonInterface;
245
- borderStyle: CMSIBCommonInterface;
246
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
247
- showBorder: CMSIBCommonInterface;
248
- backgroundColor: CMSIBCommonInterface;
249
- showShadow: CMSIBCommonInterface;
250
- shadowColor: CMSIBCommonInterface;
251
- blur: import("../../interfaces/global").CMSIBSizeInterface;
252
- spread: import("../../interfaces/global").CMSIBSizeInterface;
253
- angle: import("../../interfaces/global").CMSIBSizeInterface;
254
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
255
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
256
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
257
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
258
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
259
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
260
235
  selectorKey: SelectorKeysEnum;
236
+ hoverState: {
237
+ theme: CMSIBCommonInterface;
238
+ font: CMSIBCommonInterface;
239
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
240
+ textColor: CMSIBCommonInterface;
241
+ bold: CMSIBCommonInterface;
242
+ italic: CMSIBCommonInterface;
243
+ linethrough: CMSIBCommonInterface;
244
+ underline: CMSIBCommonInterface;
245
+ textAlign: CMSIBCommonInterface;
246
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
247
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
248
+ borderColor: CMSIBCommonInterface;
249
+ borderStyle: CMSIBCommonInterface;
250
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
251
+ showBorder: CMSIBCommonInterface;
252
+ backgroundColor: CMSIBCommonInterface;
253
+ showShadow: CMSIBCommonInterface;
254
+ shadowColor: CMSIBCommonInterface;
255
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
256
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
257
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
258
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
259
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
260
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
261
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
262
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
263
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
264
+ selectorKey: SelectorKeysEnum;
265
+ };
266
+ defaultState: {
267
+ theme: CMSIBCommonInterface;
268
+ font: CMSIBCommonInterface;
269
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
270
+ textColor: CMSIBCommonInterface;
271
+ bold: CMSIBCommonInterface;
272
+ italic: CMSIBCommonInterface;
273
+ linethrough: CMSIBCommonInterface;
274
+ underline: CMSIBCommonInterface;
275
+ textAlign: CMSIBCommonInterface;
276
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
277
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
278
+ borderColor: CMSIBCommonInterface;
279
+ borderStyle: CMSIBCommonInterface;
280
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
281
+ showBorder: CMSIBCommonInterface;
282
+ backgroundColor: CMSIBCommonInterface;
283
+ showShadow: CMSIBCommonInterface;
284
+ shadowColor: CMSIBCommonInterface;
285
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
286
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
287
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
288
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
289
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
290
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
291
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
292
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
293
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
294
+ selectorKey: SelectorKeysEnum;
295
+ };
261
296
  };
262
297
  secondaryButtonDesign: {
263
- theme: CMSIBCommonInterface;
264
- font: CMSIBCommonInterface;
265
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
266
- textColor: CMSIBCommonInterface;
267
- bold: CMSIBCommonInterface;
268
- italic: CMSIBCommonInterface;
269
- linethrough: CMSIBCommonInterface;
270
- underline: CMSIBCommonInterface;
271
- textAlign: CMSIBCommonInterface;
272
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
273
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
274
- borderColor: CMSIBCommonInterface;
275
- borderStyle: CMSIBCommonInterface;
276
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
277
- showBorder: CMSIBCommonInterface;
278
- backgroundColor: CMSIBCommonInterface;
279
- showShadow: CMSIBCommonInterface;
280
- shadowColor: CMSIBCommonInterface;
281
- blur: import("../../interfaces/global").CMSIBSizeInterface;
282
- spread: import("../../interfaces/global").CMSIBSizeInterface;
283
- angle: import("../../interfaces/global").CMSIBSizeInterface;
284
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
285
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
286
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
287
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
288
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
289
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
290
298
  selectorKey: SelectorKeysEnum;
299
+ hoverState: {
300
+ theme: CMSIBCommonInterface;
301
+ font: CMSIBCommonInterface;
302
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
303
+ textColor: CMSIBCommonInterface;
304
+ bold: CMSIBCommonInterface;
305
+ italic: CMSIBCommonInterface;
306
+ linethrough: CMSIBCommonInterface;
307
+ underline: CMSIBCommonInterface;
308
+ textAlign: CMSIBCommonInterface;
309
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
310
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
311
+ borderColor: CMSIBCommonInterface;
312
+ borderStyle: CMSIBCommonInterface;
313
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
314
+ showBorder: CMSIBCommonInterface;
315
+ backgroundColor: CMSIBCommonInterface;
316
+ showShadow: CMSIBCommonInterface;
317
+ shadowColor: CMSIBCommonInterface;
318
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
319
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
320
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
321
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
322
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
323
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
324
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
325
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
326
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
327
+ selectorKey: SelectorKeysEnum;
328
+ };
329
+ defaultState: {
330
+ theme: CMSIBCommonInterface;
331
+ font: CMSIBCommonInterface;
332
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
333
+ textColor: CMSIBCommonInterface;
334
+ bold: CMSIBCommonInterface;
335
+ italic: CMSIBCommonInterface;
336
+ linethrough: CMSIBCommonInterface;
337
+ underline: CMSIBCommonInterface;
338
+ textAlign: CMSIBCommonInterface;
339
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
340
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
341
+ borderColor: CMSIBCommonInterface;
342
+ borderStyle: CMSIBCommonInterface;
343
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
344
+ showBorder: CMSIBCommonInterface;
345
+ backgroundColor: CMSIBCommonInterface;
346
+ showShadow: CMSIBCommonInterface;
347
+ shadowColor: CMSIBCommonInterface;
348
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
349
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
350
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
351
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
352
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
353
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
354
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
355
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
356
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
357
+ selectorKey: SelectorKeysEnum;
358
+ };
291
359
  };
292
360
  };
293
361
  content: {
@@ -168,64 +168,130 @@ export declare const getDefaultData: () => {
168
168
  selectorKey: SelectorKeysEnum;
169
169
  };
170
170
  inputButtonDesign: {
171
- theme: import("../../interfaces/global").CMSIBCommonInterface;
172
- font: import("../../interfaces/global").CMSIBCommonInterface;
173
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
174
- textColor: import("../../interfaces/global").CMSIBCommonInterface;
175
- bold: import("../../interfaces/global").CMSIBCommonInterface;
176
- italic: import("../../interfaces/global").CMSIBCommonInterface;
177
- linethrough: import("../../interfaces/global").CMSIBCommonInterface;
178
- underline: import("../../interfaces/global").CMSIBCommonInterface;
179
- textAlign: import("../../interfaces/global").CMSIBCommonInterface;
180
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
181
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
182
- borderColor: import("../../interfaces/global").CMSIBCommonInterface;
183
- borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
184
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
185
- showBorder: import("../../interfaces/global").CMSIBCommonInterface;
186
- backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
187
- showShadow: import("../../interfaces/global").CMSIBCommonInterface;
188
- shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
189
- blur: import("../../interfaces/global").CMSIBSizeInterface;
190
- spread: import("../../interfaces/global").CMSIBSizeInterface;
191
- angle: import("../../interfaces/global").CMSIBSizeInterface;
192
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
193
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
194
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
195
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
196
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
197
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
198
171
  selectorKey: SelectorKeysEnum;
172
+ defaultState: {
173
+ theme: import("../../interfaces/global").CMSIBCommonInterface;
174
+ font: import("../../interfaces/global").CMSIBCommonInterface;
175
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
176
+ textColor: import("../../interfaces/global").CMSIBCommonInterface;
177
+ bold: import("../../interfaces/global").CMSIBCommonInterface;
178
+ italic: import("../../interfaces/global").CMSIBCommonInterface;
179
+ linethrough: import("../../interfaces/global").CMSIBCommonInterface;
180
+ underline: import("../../interfaces/global").CMSIBCommonInterface;
181
+ textAlign: import("../../interfaces/global").CMSIBCommonInterface;
182
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
183
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
184
+ borderColor: import("../../interfaces/global").CMSIBCommonInterface;
185
+ borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
186
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
187
+ showBorder: import("../../interfaces/global").CMSIBCommonInterface;
188
+ backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
189
+ showShadow: import("../../interfaces/global").CMSIBCommonInterface;
190
+ shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
191
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
192
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
193
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
194
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
195
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
196
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
197
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
198
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
199
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
200
+ selectorKey: SelectorKeysEnum;
201
+ };
202
+ hoverState: {
203
+ theme: import("../../interfaces/global").CMSIBCommonInterface;
204
+ font: import("../../interfaces/global").CMSIBCommonInterface;
205
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
206
+ textColor: import("../../interfaces/global").CMSIBCommonInterface;
207
+ bold: import("../../interfaces/global").CMSIBCommonInterface;
208
+ italic: import("../../interfaces/global").CMSIBCommonInterface;
209
+ linethrough: import("../../interfaces/global").CMSIBCommonInterface;
210
+ underline: import("../../interfaces/global").CMSIBCommonInterface;
211
+ textAlign: import("../../interfaces/global").CMSIBCommonInterface;
212
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
213
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
214
+ borderColor: import("../../interfaces/global").CMSIBCommonInterface;
215
+ borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
216
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
217
+ showBorder: import("../../interfaces/global").CMSIBCommonInterface;
218
+ backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
219
+ showShadow: import("../../interfaces/global").CMSIBCommonInterface;
220
+ shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
221
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
222
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
223
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
224
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
225
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
226
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
227
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
228
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
229
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
230
+ selectorKey: SelectorKeysEnum;
231
+ };
199
232
  };
200
233
  secondaryInputButtonDesign: {
201
- theme: import("../../interfaces/global").CMSIBCommonInterface;
202
- font: import("../../interfaces/global").CMSIBCommonInterface;
203
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
204
- textColor: import("../../interfaces/global").CMSIBCommonInterface;
205
- bold: import("../../interfaces/global").CMSIBCommonInterface;
206
- italic: import("../../interfaces/global").CMSIBCommonInterface;
207
- linethrough: import("../../interfaces/global").CMSIBCommonInterface;
208
- underline: import("../../interfaces/global").CMSIBCommonInterface;
209
- textAlign: import("../../interfaces/global").CMSIBCommonInterface;
210
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
211
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
212
- borderColor: import("../../interfaces/global").CMSIBCommonInterface;
213
- borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
214
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
215
- showBorder: import("../../interfaces/global").CMSIBCommonInterface;
216
- backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
217
- showShadow: import("../../interfaces/global").CMSIBCommonInterface;
218
- shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
219
- blur: import("../../interfaces/global").CMSIBSizeInterface;
220
- spread: import("../../interfaces/global").CMSIBSizeInterface;
221
- angle: import("../../interfaces/global").CMSIBSizeInterface;
222
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
223
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
224
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
225
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
226
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
227
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
228
234
  selectorKey: SelectorKeysEnum;
235
+ defaultState: {
236
+ theme: import("../../interfaces/global").CMSIBCommonInterface;
237
+ font: import("../../interfaces/global").CMSIBCommonInterface;
238
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
239
+ textColor: import("../../interfaces/global").CMSIBCommonInterface;
240
+ bold: import("../../interfaces/global").CMSIBCommonInterface;
241
+ italic: import("../../interfaces/global").CMSIBCommonInterface;
242
+ linethrough: import("../../interfaces/global").CMSIBCommonInterface;
243
+ underline: import("../../interfaces/global").CMSIBCommonInterface;
244
+ textAlign: import("../../interfaces/global").CMSIBCommonInterface;
245
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
246
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
247
+ borderColor: import("../../interfaces/global").CMSIBCommonInterface;
248
+ borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
249
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
250
+ showBorder: import("../../interfaces/global").CMSIBCommonInterface;
251
+ backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
252
+ showShadow: import("../../interfaces/global").CMSIBCommonInterface;
253
+ shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
254
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
255
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
256
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
257
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
258
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
259
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
260
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
261
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
262
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
263
+ selectorKey: SelectorKeysEnum;
264
+ };
265
+ hoverState: {
266
+ theme: import("../../interfaces/global").CMSIBCommonInterface;
267
+ font: import("../../interfaces/global").CMSIBCommonInterface;
268
+ fontSize: import("../../interfaces/global").CMSIBSizeInterface;
269
+ textColor: import("../../interfaces/global").CMSIBCommonInterface;
270
+ bold: import("../../interfaces/global").CMSIBCommonInterface;
271
+ italic: import("../../interfaces/global").CMSIBCommonInterface;
272
+ linethrough: import("../../interfaces/global").CMSIBCommonInterface;
273
+ underline: import("../../interfaces/global").CMSIBCommonInterface;
274
+ textAlign: import("../../interfaces/global").CMSIBCommonInterface;
275
+ characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
276
+ lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
277
+ borderColor: import("../../interfaces/global").CMSIBCommonInterface;
278
+ borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
279
+ borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
280
+ showBorder: import("../../interfaces/global").CMSIBCommonInterface;
281
+ backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
282
+ showShadow: import("../../interfaces/global").CMSIBCommonInterface;
283
+ shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
284
+ blur: import("../../interfaces/global").CMSIBSizeInterface;
285
+ spread: import("../../interfaces/global").CMSIBSizeInterface;
286
+ angle: import("../../interfaces/global").CMSIBSizeInterface;
287
+ borderRadius: import("../../interfaces/global").CSSPaddingValues;
288
+ exposure: import("../../interfaces/global").CMSIBSizeInterface;
289
+ contrast: import("../../interfaces/global").CMSIBSizeInterface;
290
+ saturation: import("../../interfaces/global").CMSIBSizeInterface;
291
+ highlights: import("../../interfaces/global").CMSIBSizeInterface;
292
+ shadows: import("../../interfaces/global").CMSIBSizeInterface;
293
+ selectorKey: SelectorKeysEnum;
294
+ };
229
295
  };
230
296
  inputHeadingsDesign: {
231
297
  theme: import("../../interfaces/global").CMSIBCommonInterface;
@@ -288,36 +354,6 @@ export declare const getDefaultData: () => {
288
354
  lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
289
355
  selectorKey: SelectorKeysEnum;
290
356
  };
291
- discardButtonDesign: {
292
- theme: import("../../interfaces/global").CMSIBCommonInterface;
293
- font: import("../../interfaces/global").CMSIBCommonInterface;
294
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
295
- textColor: import("../../interfaces/global").CMSIBCommonInterface;
296
- bold: import("../../interfaces/global").CMSIBCommonInterface;
297
- italic: import("../../interfaces/global").CMSIBCommonInterface;
298
- linethrough: import("../../interfaces/global").CMSIBCommonInterface;
299
- underline: import("../../interfaces/global").CMSIBCommonInterface;
300
- textAlign: import("../../interfaces/global").CMSIBCommonInterface;
301
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
302
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
303
- borderColor: import("../../interfaces/global").CMSIBCommonInterface;
304
- borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
305
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
306
- showBorder: import("../../interfaces/global").CMSIBCommonInterface;
307
- backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
308
- showShadow: import("../../interfaces/global").CMSIBCommonInterface;
309
- shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
310
- blur: import("../../interfaces/global").CMSIBSizeInterface;
311
- spread: import("../../interfaces/global").CMSIBSizeInterface;
312
- angle: import("../../interfaces/global").CMSIBSizeInterface;
313
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
314
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
315
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
316
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
317
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
318
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
319
- selectorKey: SelectorKeysEnum;
320
- };
321
357
  noteContainerDesign: {
322
358
  icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
323
359
  showIcon: import("../../interfaces/global").CMSIBCommonInterface | undefined;
@@ -379,16 +415,6 @@ export declare const getDefaultData: () => {
379
415
  property: string;
380
416
  propertyType: CMSElementEditTypes;
381
417
  };
382
- showDescription: {
383
- value: boolean;
384
- property: string;
385
- propertyType: CMSElementEditTypes;
386
- };
387
- description: {
388
- value: string;
389
- property: string;
390
- propertyType: CMSElementEditTypes;
391
- };
392
418
  shippingAddressLabel: {
393
419
  value: string;
394
420
  property: string;