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

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 (49) hide show
  1. package/dist/animation-control.scss +23 -0
  2. package/dist/builder.js +1 -1
  3. package/dist/bulk-order-pad.scss +73 -13
  4. package/dist/cart-details.scss +573 -287
  5. package/dist/cart-summary.scss +102 -73
  6. package/dist/cartAttributes.scss +3 -0
  7. package/dist/cartDropdownOverlay.scss +11 -7
  8. package/dist/checkout.scss +1069 -944
  9. package/dist/contact-us.scss +3 -0
  10. package/dist/dropdownTemplate.scss +24 -3
  11. package/dist/employee-bulk-order.scss +36 -5
  12. package/dist/empty-states.scss +52 -0
  13. package/dist/fb-dropdown.scss +6 -2
  14. package/dist/form-preview.scss +24 -1
  15. package/dist/form-zindex-module.scss +25 -0
  16. package/dist/functions.scss +72 -2
  17. package/dist/icons.js +1 -1
  18. package/dist/index.js +1 -1
  19. package/dist/light-box-v2.scss +1 -1
  20. package/dist/modal.scss +96 -37
  21. package/dist/position-module.scss +74 -0
  22. package/dist/prefix-list.scss +55 -0
  23. package/dist/quick-order-pad.scss +49 -10
  24. package/dist/responsive-behaviour.scss +21 -0
  25. package/dist/section.scss +13 -9
  26. package/dist/shareCartSideBar.scss +17 -8
  27. package/dist/submit-quote.scss +115 -52
  28. package/dist/types/builder/elements/loader/index.d.ts +27 -0
  29. package/dist/types/builder/enums/index.d.ts +1 -0
  30. package/dist/types/builder/index.d.ts +2 -1
  31. package/dist/types/builder/interfaces/global.d.ts +13 -0
  32. package/dist/types/builder/tools/element-edit/amountEstimator.d.ts +441 -0
  33. package/dist/types/builder/tools/element-edit/buttonInstance.d.ts +364 -0
  34. package/dist/types/builder/tools/element-edit/cartSummary.d.ts +2 -2
  35. package/dist/types/builder/tools/element-edit/checkout.d.ts +8 -0
  36. package/dist/types/builder/tools/element-edit/common.d.ts +1 -0
  37. package/dist/types/builder/tools/element-edit/countdown.d.ts +384 -44
  38. package/dist/types/builder/tools/element-edit/dummy.d.ts +0 -0
  39. package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
  40. package/dist/types/builder/tools/element-edit/loader.d.ts +28 -0
  41. package/dist/types/builder/tools/element-edit/productActions.d.ts +390 -43
  42. package/dist/types/builder/tools/element-edit/quickLinks.d.ts +192 -22
  43. package/dist/types/builder/tools/element-edit/repeater.d.ts +439 -1
  44. package/dist/types/builder/tools/element-edit/table.d.ts +0 -1
  45. package/dist/types/builder/tools/element-edit/typographyInstance.d.ts +981 -0
  46. package/dist/types/builder/tools/element-edit/video.d.ts +192 -22
  47. package/dist/types/global/types.d.ts +2 -0
  48. package/dist/widget.scss +1 -0
  49. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ import { CMSElementEditTypes } from "../../enums";
1
2
  import { CMSIBCommonInterface } from "../../interfaces/global";
2
3
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
4
  interface selfLayoutInterface {
@@ -159,5 +160,445 @@ export declare enum AmountEstimatorsSelectorKeysEnum {
159
160
  DATA_CONNECTOR = "dataConnector",
160
161
  WIDGET_STYLE = "widgetStyle"
161
162
  }
163
+ export declare const ButtonProperties: {
164
+ backgroundColor: {
165
+ value: null;
166
+ parentRef: string;
167
+ property?: any;
168
+ propertyType?: any;
169
+ isReadOnly?: boolean | undefined;
170
+ };
171
+ borderColor: {
172
+ value: null;
173
+ parentRef: string;
174
+ property?: any;
175
+ propertyType?: any;
176
+ isReadOnly?: boolean | undefined;
177
+ };
178
+ borderStyle: {
179
+ value: null;
180
+ parentRef: string;
181
+ property?: any;
182
+ propertyType?: any;
183
+ isReadOnly?: boolean | undefined;
184
+ };
185
+ borderPerSlide: {
186
+ value: null;
187
+ parentRef: string;
188
+ isAll: boolean;
189
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
190
+ property: string;
191
+ iscss?: boolean | undefined;
192
+ propertyType?: any;
193
+ };
194
+ showBorder: {
195
+ value: boolean;
196
+ parentRef: string;
197
+ property?: any;
198
+ propertyType?: any;
199
+ isReadOnly?: boolean | undefined;
200
+ };
201
+ showShadow: {
202
+ value: null;
203
+ parentRef: string;
204
+ property?: any;
205
+ propertyType?: any;
206
+ isReadOnly?: boolean | undefined;
207
+ };
208
+ shadowColor: {
209
+ value: null;
210
+ parentRef: string;
211
+ property?: any;
212
+ propertyType?: any;
213
+ isReadOnly?: boolean | undefined;
214
+ };
215
+ blur: {
216
+ value: null;
217
+ parentRef: string;
218
+ unit?: string | number | undefined;
219
+ property?: any;
220
+ propertyType?: any;
221
+ isReadOnly?: boolean | undefined;
222
+ };
223
+ spread: {
224
+ value: null;
225
+ parentRef: string;
226
+ unit?: string | number | undefined;
227
+ property?: any;
228
+ propertyType?: any;
229
+ isReadOnly?: boolean | undefined;
230
+ };
231
+ angle: {
232
+ value: null;
233
+ parentRef: string;
234
+ unit?: string | number | undefined;
235
+ property?: any;
236
+ propertyType?: any;
237
+ isReadOnly?: boolean | undefined;
238
+ };
239
+ borderRadius: {
240
+ value: null;
241
+ parentRef: string;
242
+ isAll: boolean;
243
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
244
+ property: string;
245
+ iscss?: boolean | undefined;
246
+ propertyType?: any;
247
+ };
248
+ font: {
249
+ value: null;
250
+ parentRef: string;
251
+ property?: any;
252
+ propertyType?: any;
253
+ isReadOnly?: boolean | undefined;
254
+ };
255
+ fontSize: {
256
+ value: null;
257
+ parentRef: string;
258
+ unit?: string | number | undefined;
259
+ property?: any;
260
+ propertyType?: any;
261
+ isReadOnly?: boolean | undefined;
262
+ };
263
+ textColor: {
264
+ value: null;
265
+ parentRef: string;
266
+ property?: any;
267
+ propertyType?: any;
268
+ isReadOnly?: boolean | undefined;
269
+ };
270
+ bold: {
271
+ value: string;
272
+ parentRef: string;
273
+ property?: any;
274
+ propertyType?: any;
275
+ isReadOnly?: boolean | undefined;
276
+ };
277
+ italic: {
278
+ value: null;
279
+ parentRef: string;
280
+ property?: any;
281
+ propertyType?: any;
282
+ isReadOnly?: boolean | undefined;
283
+ };
284
+ linethrough: {
285
+ value: null;
286
+ parentRef: string;
287
+ property?: any;
288
+ propertyType?: any;
289
+ isReadOnly?: boolean | undefined;
290
+ };
291
+ underline: {
292
+ value: null;
293
+ parentRef: string;
294
+ property?: any;
295
+ propertyType?: any;
296
+ isReadOnly?: boolean | undefined;
297
+ };
298
+ textAlign: {
299
+ value: null;
300
+ parentRef: string;
301
+ property?: any;
302
+ propertyType?: any;
303
+ isReadOnly?: boolean | undefined;
304
+ };
305
+ characterSpacing: {
306
+ value: null;
307
+ parentRef: string;
308
+ unit?: string | number | undefined;
309
+ property?: any;
310
+ propertyType?: any;
311
+ isReadOnly?: boolean | undefined;
312
+ };
313
+ lineHeight: {
314
+ value: null;
315
+ parentRef: string;
316
+ unit?: string | number | undefined;
317
+ property?: any;
318
+ propertyType?: any;
319
+ isReadOnly?: boolean | undefined;
320
+ };
321
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
322
+ showIcon: {
323
+ value: null;
324
+ parentRef: string;
325
+ property?: any;
326
+ propertyType?: any;
327
+ isReadOnly?: boolean | undefined;
328
+ };
329
+ iconSize: {
330
+ value: null;
331
+ parentRef: string;
332
+ unit?: string | number | undefined;
333
+ property?: any;
334
+ propertyType?: any;
335
+ isReadOnly?: boolean | undefined;
336
+ };
337
+ iconColor: {
338
+ value: null;
339
+ parentRef: string;
340
+ property?: any;
341
+ propertyType?: any;
342
+ isReadOnly?: boolean | undefined;
343
+ };
344
+ buttonStyle: {
345
+ value: string;
346
+ parentRef: string;
347
+ propertyType: CMSElementEditTypes;
348
+ };
349
+ buttonText: {
350
+ value: string;
351
+ property: string;
352
+ propertyType: CMSElementEditTypes;
353
+ };
354
+ iconPadding: {
355
+ value: number;
356
+ property: string;
357
+ parentRef: string;
358
+ propertyType: CMSElementEditTypes;
359
+ };
360
+ iconPosition: {
361
+ value: string;
362
+ parentRef: string;
363
+ propertyType: CMSElementEditTypes;
364
+ };
365
+ iconAndTextSpacing: {
366
+ value: number;
367
+ property: string;
368
+ unit: number;
369
+ parentRef: string;
370
+ propertyType: CMSElementEditTypes;
371
+ };
372
+ alignment: {
373
+ value: string;
374
+ property: string;
375
+ parentRef: string;
376
+ propertyType: CMSElementEditTypes;
377
+ };
378
+ buttonType: {
379
+ value: string;
380
+ propertyType: CMSElementEditTypes;
381
+ };
382
+ };
383
+ export declare const ButtonPropertiesHover: {
384
+ backgroundColor: {
385
+ value: null;
386
+ parentRef: string;
387
+ property?: any;
388
+ propertyType?: any;
389
+ isReadOnly?: boolean | undefined;
390
+ };
391
+ borderColor: {
392
+ value: null;
393
+ parentRef: string;
394
+ property?: any;
395
+ propertyType?: any;
396
+ isReadOnly?: boolean | undefined;
397
+ };
398
+ borderStyle: {
399
+ value: null;
400
+ parentRef: string;
401
+ property?: any;
402
+ propertyType?: any;
403
+ isReadOnly?: boolean | undefined;
404
+ };
405
+ borderPerSlide: {
406
+ value: null;
407
+ parentRef: string;
408
+ isAll: boolean;
409
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
410
+ property: string;
411
+ iscss?: boolean | undefined;
412
+ propertyType?: any;
413
+ };
414
+ showBorder: {
415
+ value: boolean;
416
+ parentRef: string;
417
+ property?: any;
418
+ propertyType?: any;
419
+ isReadOnly?: boolean | undefined;
420
+ };
421
+ showShadow: {
422
+ value: null;
423
+ parentRef: string;
424
+ property?: any;
425
+ propertyType?: any;
426
+ isReadOnly?: boolean | undefined;
427
+ };
428
+ shadowColor: {
429
+ value: null;
430
+ parentRef: string;
431
+ property?: any;
432
+ propertyType?: any;
433
+ isReadOnly?: boolean | undefined;
434
+ };
435
+ blur: {
436
+ value: null;
437
+ parentRef: string;
438
+ unit?: string | number | undefined;
439
+ property?: any;
440
+ propertyType?: any;
441
+ isReadOnly?: boolean | undefined;
442
+ };
443
+ spread: {
444
+ value: null;
445
+ parentRef: string;
446
+ unit?: string | number | undefined;
447
+ property?: any;
448
+ propertyType?: any;
449
+ isReadOnly?: boolean | undefined;
450
+ };
451
+ angle: {
452
+ value: null;
453
+ parentRef: string;
454
+ unit?: string | number | undefined;
455
+ property?: any;
456
+ propertyType?: any;
457
+ isReadOnly?: boolean | undefined;
458
+ };
459
+ borderRadius: {
460
+ value: null;
461
+ parentRef: string;
462
+ isAll: boolean;
463
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
464
+ property: string;
465
+ iscss?: boolean | undefined;
466
+ propertyType?: any;
467
+ };
468
+ font: {
469
+ value: null;
470
+ parentRef: string;
471
+ property?: any;
472
+ propertyType?: any;
473
+ isReadOnly?: boolean | undefined;
474
+ };
475
+ fontSize: {
476
+ value: null;
477
+ parentRef: string;
478
+ unit?: string | number | undefined;
479
+ property?: any;
480
+ propertyType?: any;
481
+ isReadOnly?: boolean | undefined;
482
+ };
483
+ textColor: {
484
+ value: null;
485
+ parentRef: string;
486
+ property?: any;
487
+ propertyType?: any;
488
+ isReadOnly?: boolean | undefined;
489
+ };
490
+ bold: {
491
+ value: string;
492
+ parentRef: string;
493
+ property?: any;
494
+ propertyType?: any;
495
+ isReadOnly?: boolean | undefined;
496
+ };
497
+ italic: {
498
+ value: null;
499
+ parentRef: string;
500
+ property?: any;
501
+ propertyType?: any;
502
+ isReadOnly?: boolean | undefined;
503
+ };
504
+ linethrough: {
505
+ value: null;
506
+ parentRef: string;
507
+ property?: any;
508
+ propertyType?: any;
509
+ isReadOnly?: boolean | undefined;
510
+ };
511
+ underline: {
512
+ value: null;
513
+ parentRef: string;
514
+ property?: any;
515
+ propertyType?: any;
516
+ isReadOnly?: boolean | undefined;
517
+ };
518
+ textAlign: {
519
+ value: null;
520
+ parentRef: string;
521
+ property?: any;
522
+ propertyType?: any;
523
+ isReadOnly?: boolean | undefined;
524
+ };
525
+ characterSpacing: {
526
+ value: null;
527
+ parentRef: string;
528
+ unit?: string | number | undefined;
529
+ property?: any;
530
+ propertyType?: any;
531
+ isReadOnly?: boolean | undefined;
532
+ };
533
+ lineHeight: {
534
+ value: null;
535
+ parentRef: string;
536
+ unit?: string | number | undefined;
537
+ property?: any;
538
+ propertyType?: any;
539
+ isReadOnly?: boolean | undefined;
540
+ };
541
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
542
+ showIcon: {
543
+ value: null;
544
+ parentRef: string;
545
+ property?: any;
546
+ propertyType?: any;
547
+ isReadOnly?: boolean | undefined;
548
+ };
549
+ iconSize: {
550
+ value: null;
551
+ parentRef: string;
552
+ unit?: string | number | undefined;
553
+ property?: any;
554
+ propertyType?: any;
555
+ isReadOnly?: boolean | undefined;
556
+ };
557
+ iconColor: {
558
+ value: null;
559
+ parentRef: string;
560
+ property?: any;
561
+ propertyType?: any;
562
+ isReadOnly?: boolean | undefined;
563
+ };
564
+ buttonStyle: {
565
+ value: string;
566
+ parentRef: string;
567
+ propertyType: CMSElementEditTypes;
568
+ };
569
+ buttonText: {
570
+ value: string;
571
+ property: string;
572
+ propertyType: CMSElementEditTypes;
573
+ };
574
+ iconPadding: {
575
+ value: number;
576
+ property: string;
577
+ parentRef: string;
578
+ propertyType: CMSElementEditTypes;
579
+ };
580
+ iconPosition: {
581
+ value: string;
582
+ parentRef: string;
583
+ propertyType: CMSElementEditTypes;
584
+ };
585
+ iconAndTextSpacing: {
586
+ value: number;
587
+ property: string;
588
+ unit: number;
589
+ parentRef: string;
590
+ propertyType: CMSElementEditTypes;
591
+ };
592
+ alignment: {
593
+ value: string;
594
+ property: string;
595
+ parentRef: string;
596
+ propertyType: CMSElementEditTypes;
597
+ };
598
+ buttonType: {
599
+ value: string;
600
+ propertyType: CMSElementEditTypes;
601
+ };
602
+ };
162
603
  export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
163
604
  export {};