@sc-360-v2/storefront-cms-library 0.4.30 → 0.4.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.
@@ -1,5 +1,6 @@
1
1
  import { CMSElementEditTypes } from "../../enums";
2
2
  import { CMSIBCommonInterface } from "../../interfaces/global";
3
+ import { ButtonSelectorKeysEnum } from "./button";
3
4
  import { CMSElementEditPopupInterface } from "./common";
4
5
  export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
5
6
  }
@@ -288,72 +289,896 @@ export declare const getDefaultData: () => {
288
289
  selectorKey: SelectorKeysEnum;
289
290
  };
290
291
  bundleNavigationButtonDesign: {
291
- icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
292
- showIcon: CMSIBCommonInterface | undefined;
293
- iconSize: import("../../interfaces/global").CMSIBSizeInterface;
294
- iconColor: CMSIBCommonInterface;
295
- borderColor: CMSIBCommonInterface;
296
- borderStyle: CMSIBCommonInterface;
297
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
298
- showBorder: CMSIBCommonInterface;
299
- backgroundColor: CMSIBCommonInterface;
300
- showShadow: CMSIBCommonInterface;
301
- shadowColor: CMSIBCommonInterface;
302
- blur: import("../../interfaces/global").CMSIBSizeInterface;
303
- spread: import("../../interfaces/global").CMSIBSizeInterface;
304
- angle: import("../../interfaces/global").CMSIBSizeInterface;
305
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
306
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
307
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
308
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
309
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
310
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
311
- theme: CMSIBCommonInterface;
312
- font: CMSIBCommonInterface;
313
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
314
- textColor: CMSIBCommonInterface;
315
- bold: CMSIBCommonInterface;
316
- italic: CMSIBCommonInterface;
317
- linethrough: CMSIBCommonInterface;
318
- underline: CMSIBCommonInterface;
319
- textAlign: CMSIBCommonInterface;
320
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
321
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
322
292
  selectorKey: SelectorKeysEnum;
293
+ defaultState: {
294
+ backgroundColor: {
295
+ parentRef: string;
296
+ value?: any;
297
+ property?: any;
298
+ propertyType?: any;
299
+ isReadOnly?: boolean | undefined;
300
+ };
301
+ borderColor: {
302
+ parentRef: string;
303
+ value?: any;
304
+ property?: any;
305
+ propertyType?: any;
306
+ isReadOnly?: boolean | undefined;
307
+ };
308
+ borderStyle: {
309
+ parentRef: string;
310
+ value?: any;
311
+ property?: any;
312
+ propertyType?: any;
313
+ isReadOnly?: boolean | undefined;
314
+ };
315
+ borderPerSlide: {
316
+ parentRef: string;
317
+ isAll: boolean;
318
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
319
+ property: string;
320
+ iscss?: boolean | undefined;
321
+ propertyType?: any;
322
+ };
323
+ showBorder: {
324
+ value: boolean;
325
+ parentRef: string;
326
+ property?: any;
327
+ propertyType?: any;
328
+ isReadOnly?: boolean | undefined;
329
+ };
330
+ showShadow: {
331
+ parentRef: string;
332
+ value?: any;
333
+ property?: any;
334
+ propertyType?: any;
335
+ isReadOnly?: boolean | undefined;
336
+ };
337
+ shadowColor: {
338
+ parentRef: string;
339
+ value?: any;
340
+ property?: any;
341
+ propertyType?: any;
342
+ isReadOnly?: boolean | undefined;
343
+ };
344
+ blur: {
345
+ parentRef: string;
346
+ unit?: string | number | undefined;
347
+ value?: any;
348
+ property?: any;
349
+ propertyType?: any;
350
+ isReadOnly?: boolean | undefined;
351
+ };
352
+ spread: {
353
+ parentRef: string;
354
+ unit?: string | number | undefined;
355
+ value?: any;
356
+ property?: any;
357
+ propertyType?: any;
358
+ isReadOnly?: boolean | undefined;
359
+ };
360
+ angle: {
361
+ parentRef: string;
362
+ unit?: string | number | undefined;
363
+ value?: any;
364
+ property?: any;
365
+ propertyType?: any;
366
+ isReadOnly?: boolean | undefined;
367
+ };
368
+ borderRadius: {
369
+ parentRef: string;
370
+ isAll: boolean;
371
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
372
+ property: string;
373
+ iscss?: boolean | undefined;
374
+ propertyType?: any;
375
+ };
376
+ font: {
377
+ parentRef: string;
378
+ value?: any;
379
+ property?: any;
380
+ propertyType?: any;
381
+ isReadOnly?: boolean | undefined;
382
+ };
383
+ fontSize: {
384
+ parentRef: string;
385
+ unit?: string | number | undefined;
386
+ value?: any;
387
+ property?: any;
388
+ propertyType?: any;
389
+ isReadOnly?: boolean | undefined;
390
+ };
391
+ textColor: {
392
+ parentRef: string;
393
+ value?: any;
394
+ property?: any;
395
+ propertyType?: any;
396
+ isReadOnly?: boolean | undefined;
397
+ };
398
+ bold: {
399
+ value: string;
400
+ parentRef: string;
401
+ property?: any;
402
+ propertyType?: any;
403
+ isReadOnly?: boolean | undefined;
404
+ };
405
+ italic: {
406
+ parentRef: string;
407
+ value?: any;
408
+ property?: any;
409
+ propertyType?: any;
410
+ isReadOnly?: boolean | undefined;
411
+ };
412
+ linethrough: {
413
+ parentRef: string;
414
+ value?: any;
415
+ property?: any;
416
+ propertyType?: any;
417
+ isReadOnly?: boolean | undefined;
418
+ };
419
+ underline: {
420
+ parentRef: string;
421
+ value?: any;
422
+ property?: any;
423
+ propertyType?: any;
424
+ isReadOnly?: boolean | undefined;
425
+ };
426
+ textAlign: {
427
+ parentRef: string;
428
+ value?: any;
429
+ property?: any;
430
+ propertyType?: any;
431
+ isReadOnly?: boolean | undefined;
432
+ };
433
+ characterSpacing: {
434
+ parentRef: string;
435
+ unit?: string | number | undefined;
436
+ value?: any;
437
+ property?: any;
438
+ propertyType?: any;
439
+ isReadOnly?: boolean | undefined;
440
+ };
441
+ lineHeight: {
442
+ parentRef: string;
443
+ unit?: string | number | undefined;
444
+ value?: any;
445
+ property?: any;
446
+ propertyType?: any;
447
+ isReadOnly?: boolean | undefined;
448
+ };
449
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
450
+ showIcon: {
451
+ parentRef: string;
452
+ value?: any;
453
+ property?: any;
454
+ propertyType?: any;
455
+ isReadOnly?: boolean | undefined;
456
+ };
457
+ iconSize: {
458
+ parentRef: string;
459
+ unit?: string | number | undefined;
460
+ value?: any;
461
+ property?: any;
462
+ propertyType?: any;
463
+ isReadOnly?: boolean | undefined;
464
+ };
465
+ iconColor: {
466
+ parentRef: string;
467
+ value?: any;
468
+ property?: any;
469
+ propertyType?: any;
470
+ isReadOnly?: boolean | undefined;
471
+ };
472
+ buttonStyle: {
473
+ parentRef: string;
474
+ propertyType: CMSElementEditTypes;
475
+ };
476
+ buttonText: {
477
+ value: string;
478
+ property: string;
479
+ propertyType: CMSElementEditTypes;
480
+ };
481
+ iconPadding: {
482
+ value: number;
483
+ property: string;
484
+ parentRef: string;
485
+ propertyType: CMSElementEditTypes;
486
+ };
487
+ iconPosition: {
488
+ parentRef: string;
489
+ propertyType: CMSElementEditTypes;
490
+ };
491
+ iconAndTextSpacing: {
492
+ property: string;
493
+ unit: number;
494
+ parentRef: string;
495
+ propertyType: CMSElementEditTypes;
496
+ };
497
+ alignment: {
498
+ property: string;
499
+ parentRef: string;
500
+ propertyType: CMSElementEditTypes;
501
+ };
502
+ buttonType: {
503
+ value: string;
504
+ propertyType: CMSElementEditTypes;
505
+ };
506
+ width: {
507
+ value: string;
508
+ unit: number;
509
+ };
510
+ padding: any;
511
+ selectorKey: ButtonSelectorKeysEnum;
512
+ };
513
+ hoverState: {
514
+ backgroundColor: {
515
+ parentRef: string;
516
+ value?: any;
517
+ property?: any;
518
+ propertyType?: any;
519
+ isReadOnly?: boolean | undefined;
520
+ };
521
+ borderColor: {
522
+ parentRef: string;
523
+ value?: any;
524
+ property?: any;
525
+ propertyType?: any;
526
+ isReadOnly?: boolean | undefined;
527
+ };
528
+ borderStyle: {
529
+ parentRef: string;
530
+ value?: any;
531
+ property?: any;
532
+ propertyType?: any;
533
+ isReadOnly?: boolean | undefined;
534
+ };
535
+ borderPerSlide: {
536
+ parentRef: string;
537
+ isAll: boolean;
538
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
539
+ property: string;
540
+ iscss?: boolean | undefined;
541
+ propertyType?: any;
542
+ };
543
+ showBorder: {
544
+ value: boolean;
545
+ parentRef: string;
546
+ property?: any;
547
+ propertyType?: any;
548
+ isReadOnly?: boolean | undefined;
549
+ };
550
+ showShadow: {
551
+ parentRef: string;
552
+ value?: any;
553
+ property?: any;
554
+ propertyType?: any;
555
+ isReadOnly?: boolean | undefined;
556
+ };
557
+ shadowColor: {
558
+ parentRef: string;
559
+ value?: any;
560
+ property?: any;
561
+ propertyType?: any;
562
+ isReadOnly?: boolean | undefined;
563
+ };
564
+ blur: {
565
+ parentRef: string;
566
+ unit?: string | number | undefined;
567
+ value?: any;
568
+ property?: any;
569
+ propertyType?: any;
570
+ isReadOnly?: boolean | undefined;
571
+ };
572
+ spread: {
573
+ parentRef: string;
574
+ unit?: string | number | undefined;
575
+ value?: any;
576
+ property?: any;
577
+ propertyType?: any;
578
+ isReadOnly?: boolean | undefined;
579
+ };
580
+ angle: {
581
+ parentRef: string;
582
+ unit?: string | number | undefined;
583
+ value?: any;
584
+ property?: any;
585
+ propertyType?: any;
586
+ isReadOnly?: boolean | undefined;
587
+ };
588
+ borderRadius: {
589
+ parentRef: string;
590
+ isAll: boolean;
591
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
592
+ property: string;
593
+ iscss?: boolean | undefined;
594
+ propertyType?: any;
595
+ };
596
+ font: {
597
+ parentRef: string;
598
+ value?: any;
599
+ property?: any;
600
+ propertyType?: any;
601
+ isReadOnly?: boolean | undefined;
602
+ };
603
+ fontSize: {
604
+ parentRef: string;
605
+ unit?: string | number | undefined;
606
+ value?: any;
607
+ property?: any;
608
+ propertyType?: any;
609
+ isReadOnly?: boolean | undefined;
610
+ };
611
+ textColor: {
612
+ parentRef: string;
613
+ value?: any;
614
+ property?: any;
615
+ propertyType?: any;
616
+ isReadOnly?: boolean | undefined;
617
+ };
618
+ bold: {
619
+ value: string;
620
+ parentRef: string;
621
+ property?: any;
622
+ propertyType?: any;
623
+ isReadOnly?: boolean | undefined;
624
+ };
625
+ italic: {
626
+ parentRef: string;
627
+ value?: any;
628
+ property?: any;
629
+ propertyType?: any;
630
+ isReadOnly?: boolean | undefined;
631
+ };
632
+ linethrough: {
633
+ parentRef: string;
634
+ value?: any;
635
+ property?: any;
636
+ propertyType?: any;
637
+ isReadOnly?: boolean | undefined;
638
+ };
639
+ underline: {
640
+ parentRef: string;
641
+ value?: any;
642
+ property?: any;
643
+ propertyType?: any;
644
+ isReadOnly?: boolean | undefined;
645
+ };
646
+ textAlign: {
647
+ parentRef: string;
648
+ value?: any;
649
+ property?: any;
650
+ propertyType?: any;
651
+ isReadOnly?: boolean | undefined;
652
+ };
653
+ characterSpacing: {
654
+ parentRef: string;
655
+ unit?: string | number | undefined;
656
+ value?: any;
657
+ property?: any;
658
+ propertyType?: any;
659
+ isReadOnly?: boolean | undefined;
660
+ };
661
+ lineHeight: {
662
+ parentRef: string;
663
+ unit?: string | number | undefined;
664
+ value?: any;
665
+ property?: any;
666
+ propertyType?: any;
667
+ isReadOnly?: boolean | undefined;
668
+ };
669
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
670
+ showIcon: {
671
+ parentRef: string;
672
+ value?: any;
673
+ property?: any;
674
+ propertyType?: any;
675
+ isReadOnly?: boolean | undefined;
676
+ };
677
+ iconSize: {
678
+ parentRef: string;
679
+ unit?: string | number | undefined;
680
+ value?: any;
681
+ property?: any;
682
+ propertyType?: any;
683
+ isReadOnly?: boolean | undefined;
684
+ };
685
+ iconColor: {
686
+ parentRef: string;
687
+ value?: any;
688
+ property?: any;
689
+ propertyType?: any;
690
+ isReadOnly?: boolean | undefined;
691
+ };
692
+ buttonStyle: {
693
+ parentRef: string;
694
+ propertyType: CMSElementEditTypes;
695
+ };
696
+ buttonText: {
697
+ value: string;
698
+ property: string;
699
+ propertyType: CMSElementEditTypes;
700
+ };
701
+ iconPadding: {
702
+ value: number;
703
+ property: string;
704
+ parentRef: string;
705
+ propertyType: CMSElementEditTypes;
706
+ };
707
+ iconPosition: {
708
+ parentRef: string;
709
+ propertyType: CMSElementEditTypes;
710
+ };
711
+ iconAndTextSpacing: {
712
+ property: string;
713
+ unit: number;
714
+ parentRef: string;
715
+ propertyType: CMSElementEditTypes;
716
+ };
717
+ alignment: {
718
+ property: string;
719
+ parentRef: string;
720
+ propertyType: CMSElementEditTypes;
721
+ };
722
+ buttonType: {
723
+ value: string;
724
+ propertyType: CMSElementEditTypes;
725
+ };
726
+ width: {
727
+ value: string;
728
+ unit: number;
729
+ };
730
+ padding: any;
731
+ selectorKey: ButtonSelectorKeysEnum;
732
+ };
733
+ selectedState: {
734
+ selectorKey: ButtonSelectorKeysEnum;
735
+ };
323
736
  };
324
737
  bundleDetailsPageButtonDesign: {
325
- icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
326
- showIcon: CMSIBCommonInterface | undefined;
327
- iconSize: import("../../interfaces/global").CMSIBSizeInterface;
328
- iconColor: CMSIBCommonInterface;
329
- borderColor: CMSIBCommonInterface;
330
- borderStyle: CMSIBCommonInterface;
331
- borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
332
- showBorder: CMSIBCommonInterface;
333
- backgroundColor: CMSIBCommonInterface;
334
- showShadow: CMSIBCommonInterface;
335
- shadowColor: CMSIBCommonInterface;
336
- blur: import("../../interfaces/global").CMSIBSizeInterface;
337
- spread: import("../../interfaces/global").CMSIBSizeInterface;
338
- angle: import("../../interfaces/global").CMSIBSizeInterface;
339
- borderRadius: import("../../interfaces/global").CSSPaddingValues;
340
- exposure: import("../../interfaces/global").CMSIBSizeInterface;
341
- contrast: import("../../interfaces/global").CMSIBSizeInterface;
342
- saturation: import("../../interfaces/global").CMSIBSizeInterface;
343
- highlights: import("../../interfaces/global").CMSIBSizeInterface;
344
- shadows: import("../../interfaces/global").CMSIBSizeInterface;
345
- theme: CMSIBCommonInterface;
346
- font: CMSIBCommonInterface;
347
- fontSize: import("../../interfaces/global").CMSIBSizeInterface;
348
- textColor: CMSIBCommonInterface;
349
- bold: CMSIBCommonInterface;
350
- italic: CMSIBCommonInterface;
351
- linethrough: CMSIBCommonInterface;
352
- underline: CMSIBCommonInterface;
353
- textAlign: CMSIBCommonInterface;
354
- characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
355
- lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
356
738
  selectorKey: SelectorKeysEnum;
739
+ defaultState: {
740
+ backgroundColor: {
741
+ parentRef: string;
742
+ value?: any;
743
+ property?: any;
744
+ propertyType?: any;
745
+ isReadOnly?: boolean | undefined;
746
+ };
747
+ borderColor: {
748
+ parentRef: string;
749
+ value?: any;
750
+ property?: any;
751
+ propertyType?: any;
752
+ isReadOnly?: boolean | undefined;
753
+ };
754
+ borderStyle: {
755
+ parentRef: string;
756
+ value?: any;
757
+ property?: any;
758
+ propertyType?: any;
759
+ isReadOnly?: boolean | undefined;
760
+ };
761
+ borderPerSlide: {
762
+ parentRef: string;
763
+ isAll: boolean;
764
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
765
+ property: string;
766
+ iscss?: boolean | undefined;
767
+ propertyType?: any;
768
+ };
769
+ showBorder: {
770
+ value: boolean;
771
+ parentRef: string;
772
+ property?: any;
773
+ propertyType?: any;
774
+ isReadOnly?: boolean | undefined;
775
+ };
776
+ showShadow: {
777
+ parentRef: string;
778
+ value?: any;
779
+ property?: any;
780
+ propertyType?: any;
781
+ isReadOnly?: boolean | undefined;
782
+ };
783
+ shadowColor: {
784
+ parentRef: string;
785
+ value?: any;
786
+ property?: any;
787
+ propertyType?: any;
788
+ isReadOnly?: boolean | undefined;
789
+ };
790
+ blur: {
791
+ parentRef: string;
792
+ unit?: string | number | undefined;
793
+ value?: any;
794
+ property?: any;
795
+ propertyType?: any;
796
+ isReadOnly?: boolean | undefined;
797
+ };
798
+ spread: {
799
+ parentRef: string;
800
+ unit?: string | number | undefined;
801
+ value?: any;
802
+ property?: any;
803
+ propertyType?: any;
804
+ isReadOnly?: boolean | undefined;
805
+ };
806
+ angle: {
807
+ parentRef: string;
808
+ unit?: string | number | undefined;
809
+ value?: any;
810
+ property?: any;
811
+ propertyType?: any;
812
+ isReadOnly?: boolean | undefined;
813
+ };
814
+ borderRadius: {
815
+ parentRef: string;
816
+ isAll: boolean;
817
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
818
+ property: string;
819
+ iscss?: boolean | undefined;
820
+ propertyType?: any;
821
+ };
822
+ font: {
823
+ parentRef: string;
824
+ value?: any;
825
+ property?: any;
826
+ propertyType?: any;
827
+ isReadOnly?: boolean | undefined;
828
+ };
829
+ fontSize: {
830
+ parentRef: string;
831
+ unit?: string | number | undefined;
832
+ value?: any;
833
+ property?: any;
834
+ propertyType?: any;
835
+ isReadOnly?: boolean | undefined;
836
+ };
837
+ textColor: {
838
+ parentRef: string;
839
+ value?: any;
840
+ property?: any;
841
+ propertyType?: any;
842
+ isReadOnly?: boolean | undefined;
843
+ };
844
+ bold: {
845
+ value: string;
846
+ parentRef: string;
847
+ property?: any;
848
+ propertyType?: any;
849
+ isReadOnly?: boolean | undefined;
850
+ };
851
+ italic: {
852
+ parentRef: string;
853
+ value?: any;
854
+ property?: any;
855
+ propertyType?: any;
856
+ isReadOnly?: boolean | undefined;
857
+ };
858
+ linethrough: {
859
+ parentRef: string;
860
+ value?: any;
861
+ property?: any;
862
+ propertyType?: any;
863
+ isReadOnly?: boolean | undefined;
864
+ };
865
+ underline: {
866
+ parentRef: string;
867
+ value?: any;
868
+ property?: any;
869
+ propertyType?: any;
870
+ isReadOnly?: boolean | undefined;
871
+ };
872
+ textAlign: {
873
+ parentRef: string;
874
+ value?: any;
875
+ property?: any;
876
+ propertyType?: any;
877
+ isReadOnly?: boolean | undefined;
878
+ };
879
+ characterSpacing: {
880
+ parentRef: string;
881
+ unit?: string | number | undefined;
882
+ value?: any;
883
+ property?: any;
884
+ propertyType?: any;
885
+ isReadOnly?: boolean | undefined;
886
+ };
887
+ lineHeight: {
888
+ parentRef: string;
889
+ unit?: string | number | undefined;
890
+ value?: any;
891
+ property?: any;
892
+ propertyType?: any;
893
+ isReadOnly?: boolean | undefined;
894
+ };
895
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
896
+ showIcon: {
897
+ parentRef: string;
898
+ value?: any;
899
+ property?: any;
900
+ propertyType?: any;
901
+ isReadOnly?: boolean | undefined;
902
+ };
903
+ iconSize: {
904
+ parentRef: string;
905
+ unit?: string | number | undefined;
906
+ value?: any;
907
+ property?: any;
908
+ propertyType?: any;
909
+ isReadOnly?: boolean | undefined;
910
+ };
911
+ iconColor: {
912
+ parentRef: string;
913
+ value?: any;
914
+ property?: any;
915
+ propertyType?: any;
916
+ isReadOnly?: boolean | undefined;
917
+ };
918
+ buttonStyle: {
919
+ parentRef: string;
920
+ propertyType: CMSElementEditTypes;
921
+ };
922
+ buttonText: {
923
+ value: string;
924
+ property: string;
925
+ propertyType: CMSElementEditTypes;
926
+ };
927
+ iconPadding: {
928
+ value: number;
929
+ property: string;
930
+ parentRef: string;
931
+ propertyType: CMSElementEditTypes;
932
+ };
933
+ iconPosition: {
934
+ parentRef: string;
935
+ propertyType: CMSElementEditTypes;
936
+ };
937
+ iconAndTextSpacing: {
938
+ property: string;
939
+ unit: number;
940
+ parentRef: string;
941
+ propertyType: CMSElementEditTypes;
942
+ };
943
+ alignment: {
944
+ property: string;
945
+ parentRef: string;
946
+ propertyType: CMSElementEditTypes;
947
+ };
948
+ buttonType: {
949
+ value: string;
950
+ propertyType: CMSElementEditTypes;
951
+ };
952
+ width: {
953
+ value: string;
954
+ unit: number;
955
+ };
956
+ padding: any;
957
+ selectorKey: ButtonSelectorKeysEnum;
958
+ };
959
+ hoverState: {
960
+ backgroundColor: {
961
+ parentRef: string;
962
+ value?: any;
963
+ property?: any;
964
+ propertyType?: any;
965
+ isReadOnly?: boolean | undefined;
966
+ };
967
+ borderColor: {
968
+ parentRef: string;
969
+ value?: any;
970
+ property?: any;
971
+ propertyType?: any;
972
+ isReadOnly?: boolean | undefined;
973
+ };
974
+ borderStyle: {
975
+ parentRef: string;
976
+ value?: any;
977
+ property?: any;
978
+ propertyType?: any;
979
+ isReadOnly?: boolean | undefined;
980
+ };
981
+ borderPerSlide: {
982
+ parentRef: string;
983
+ isAll: boolean;
984
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
985
+ property: string;
986
+ iscss?: boolean | undefined;
987
+ propertyType?: any;
988
+ };
989
+ showBorder: {
990
+ value: boolean;
991
+ parentRef: string;
992
+ property?: any;
993
+ propertyType?: any;
994
+ isReadOnly?: boolean | undefined;
995
+ };
996
+ showShadow: {
997
+ parentRef: string;
998
+ value?: any;
999
+ property?: any;
1000
+ propertyType?: any;
1001
+ isReadOnly?: boolean | undefined;
1002
+ };
1003
+ shadowColor: {
1004
+ parentRef: string;
1005
+ value?: any;
1006
+ property?: any;
1007
+ propertyType?: any;
1008
+ isReadOnly?: boolean | undefined;
1009
+ };
1010
+ blur: {
1011
+ parentRef: string;
1012
+ unit?: string | number | undefined;
1013
+ value?: any;
1014
+ property?: any;
1015
+ propertyType?: any;
1016
+ isReadOnly?: boolean | undefined;
1017
+ };
1018
+ spread: {
1019
+ parentRef: string;
1020
+ unit?: string | number | undefined;
1021
+ value?: any;
1022
+ property?: any;
1023
+ propertyType?: any;
1024
+ isReadOnly?: boolean | undefined;
1025
+ };
1026
+ angle: {
1027
+ parentRef: string;
1028
+ unit?: string | number | undefined;
1029
+ value?: any;
1030
+ property?: any;
1031
+ propertyType?: any;
1032
+ isReadOnly?: boolean | undefined;
1033
+ };
1034
+ borderRadius: {
1035
+ parentRef: string;
1036
+ isAll: boolean;
1037
+ sides: import("../../interfaces/global").PaddingSides | import("../../interfaces/global").BorderSides;
1038
+ property: string;
1039
+ iscss?: boolean | undefined;
1040
+ propertyType?: any;
1041
+ };
1042
+ font: {
1043
+ parentRef: string;
1044
+ value?: any;
1045
+ property?: any;
1046
+ propertyType?: any;
1047
+ isReadOnly?: boolean | undefined;
1048
+ };
1049
+ fontSize: {
1050
+ parentRef: string;
1051
+ unit?: string | number | undefined;
1052
+ value?: any;
1053
+ property?: any;
1054
+ propertyType?: any;
1055
+ isReadOnly?: boolean | undefined;
1056
+ };
1057
+ textColor: {
1058
+ parentRef: string;
1059
+ value?: any;
1060
+ property?: any;
1061
+ propertyType?: any;
1062
+ isReadOnly?: boolean | undefined;
1063
+ };
1064
+ bold: {
1065
+ value: string;
1066
+ parentRef: string;
1067
+ property?: any;
1068
+ propertyType?: any;
1069
+ isReadOnly?: boolean | undefined;
1070
+ };
1071
+ italic: {
1072
+ parentRef: string;
1073
+ value?: any;
1074
+ property?: any;
1075
+ propertyType?: any;
1076
+ isReadOnly?: boolean | undefined;
1077
+ };
1078
+ linethrough: {
1079
+ parentRef: string;
1080
+ value?: any;
1081
+ property?: any;
1082
+ propertyType?: any;
1083
+ isReadOnly?: boolean | undefined;
1084
+ };
1085
+ underline: {
1086
+ parentRef: string;
1087
+ value?: any;
1088
+ property?: any;
1089
+ propertyType?: any;
1090
+ isReadOnly?: boolean | undefined;
1091
+ };
1092
+ textAlign: {
1093
+ parentRef: string;
1094
+ value?: any;
1095
+ property?: any;
1096
+ propertyType?: any;
1097
+ isReadOnly?: boolean | undefined;
1098
+ };
1099
+ characterSpacing: {
1100
+ parentRef: string;
1101
+ unit?: string | number | undefined;
1102
+ value?: any;
1103
+ property?: any;
1104
+ propertyType?: any;
1105
+ isReadOnly?: boolean | undefined;
1106
+ };
1107
+ lineHeight: {
1108
+ parentRef: string;
1109
+ unit?: string | number | undefined;
1110
+ value?: any;
1111
+ property?: any;
1112
+ propertyType?: any;
1113
+ isReadOnly?: boolean | undefined;
1114
+ };
1115
+ icon: import("../../interfaces/global").CMSIBIconInterface | undefined;
1116
+ showIcon: {
1117
+ parentRef: string;
1118
+ value?: any;
1119
+ property?: any;
1120
+ propertyType?: any;
1121
+ isReadOnly?: boolean | undefined;
1122
+ };
1123
+ iconSize: {
1124
+ parentRef: string;
1125
+ unit?: string | number | undefined;
1126
+ value?: any;
1127
+ property?: any;
1128
+ propertyType?: any;
1129
+ isReadOnly?: boolean | undefined;
1130
+ };
1131
+ iconColor: {
1132
+ parentRef: string;
1133
+ value?: any;
1134
+ property?: any;
1135
+ propertyType?: any;
1136
+ isReadOnly?: boolean | undefined;
1137
+ };
1138
+ buttonStyle: {
1139
+ parentRef: string;
1140
+ propertyType: CMSElementEditTypes;
1141
+ };
1142
+ buttonText: {
1143
+ value: string;
1144
+ property: string;
1145
+ propertyType: CMSElementEditTypes;
1146
+ };
1147
+ iconPadding: {
1148
+ value: number;
1149
+ property: string;
1150
+ parentRef: string;
1151
+ propertyType: CMSElementEditTypes;
1152
+ };
1153
+ iconPosition: {
1154
+ parentRef: string;
1155
+ propertyType: CMSElementEditTypes;
1156
+ };
1157
+ iconAndTextSpacing: {
1158
+ property: string;
1159
+ unit: number;
1160
+ parentRef: string;
1161
+ propertyType: CMSElementEditTypes;
1162
+ };
1163
+ alignment: {
1164
+ property: string;
1165
+ parentRef: string;
1166
+ propertyType: CMSElementEditTypes;
1167
+ };
1168
+ buttonType: {
1169
+ value: string;
1170
+ propertyType: CMSElementEditTypes;
1171
+ };
1172
+ width: {
1173
+ value: string;
1174
+ unit: number;
1175
+ };
1176
+ padding: any;
1177
+ selectorKey: ButtonSelectorKeysEnum;
1178
+ };
1179
+ selectedState: {
1180
+ selectorKey: ButtonSelectorKeysEnum;
1181
+ };
357
1182
  };
358
1183
  tileCardDesign: {
359
1184
  borderColor: CMSIBCommonInterface;