@enki-tek/fms-web-components 0.0.59 → 0.0.60

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 (37) hide show
  1. package/components/Accordion/Accordion.svelte +3 -3
  2. package/components/Accordion/AccordionItem.svelte +3 -3
  3. package/components/Badge/Badge.svelte +3 -3
  4. package/components/Breadcrumb/Breadcrumb.svelte +3 -3
  5. package/components/Button/Button.scss +135 -2
  6. package/components/Button/Button.svelte +140 -8
  7. package/components/Button/ButtonFilter.svelte +3 -3
  8. package/components/Button/FilterOption.svelte +3 -3
  9. package/components/Button/buttonConfig.js +0 -18
  10. package/components/CardIcon/CardIcon.svelte +3 -3
  11. package/components/CardIcon/CardiconBody.svelte +3 -3
  12. package/components/CardIcon/CardiconSubtitle.svelte +3 -3
  13. package/components/CardIcon/CardiconTitle.svelte +3 -3
  14. package/components/CheckBox/Checkbox.svelte +3 -3
  15. package/components/Dropdown/Dropdown.svelte +3 -3
  16. package/components/Dropdown/DropdownItem.svelte +3 -3
  17. package/components/EnkiSidbar/EnkiSidebar.svelte +3 -3
  18. package/components/EnkiSidbar/NavIcon.svelte +3 -3
  19. package/components/EnkiSidbar/NavItem.svelte +3 -3
  20. package/components/EnkiSidbar/NavLink.svelte +3 -3
  21. package/components/Header/Brand.svelte +3 -3
  22. package/components/Header/Header.svelte +3 -3
  23. package/components/Header/HeaderItem.svelte +3 -3
  24. package/components/Header/UserAvatar.svelte +3 -3
  25. package/components/ModalWindow/Modal.svelte +3 -3
  26. package/components/ModalWindow/ModalBody.svelte +3 -3
  27. package/components/ModalWindow/ModalFooter.svelte +3 -3
  28. package/components/ModalWindow/ModalHeader.svelte +3 -3
  29. package/components/Pagination/Pagination.svelte +3 -3
  30. package/components/RadioButton/RadioButton.svelte +3 -3
  31. package/components/Sidebar/Sidebar.svelte +3 -3
  32. package/components/Switches/Switch.svelte +3 -3
  33. package/components/Tab/Tab.svelte +3 -3
  34. package/components/TextField/TextField.svelte +3 -3
  35. package/components/Tooltip/Tooltip.svelte +3 -3
  36. package/components/variable.scss +1 -1
  37. package/package.json +1 -1
@@ -53,7 +53,7 @@ export let stayOpen = true;
53
53
  background-color: #B02A37;
54
54
  }
55
55
  :global(.ebg-dangerLight) {
56
- background-color: #FE4747;
56
+ background-color: #f8d7da;
57
57
  }
58
58
  :global(.ebg-warning) {
59
59
  background-color: #FFBA3A;
@@ -249,7 +249,7 @@ export let stayOpen = true;
249
249
  color: #B02A37;
250
250
  }
251
251
  :global(.etext-dangerLight) {
252
- color: #FE4747;
252
+ color: #f8d7da;
253
253
  }
254
254
  :global(.etext-info) {
255
255
  color: #0DCAF0;
@@ -438,7 +438,7 @@ export let stayOpen = true;
438
438
  outline: 1px solid #B02A37;
439
439
  }
440
440
  :global(.eoutline-dangerLight) {
441
- outline: 1px solid #FE4747;
441
+ outline: 1px solid #f8d7da;
442
442
  }
443
443
  :global(.eoutline-success) {
444
444
  outline: 1px solid #00A96B;
@@ -54,7 +54,7 @@ export let header;
54
54
  background-color: #B02A37;
55
55
  }
56
56
  :global(.ebg-dangerLight) {
57
- background-color: #FE4747;
57
+ background-color: #f8d7da;
58
58
  }
59
59
  :global(.ebg-warning) {
60
60
  background-color: #FFBA3A;
@@ -250,7 +250,7 @@ export let header;
250
250
  color: #B02A37;
251
251
  }
252
252
  :global(.etext-dangerLight) {
253
- color: #FE4747;
253
+ color: #f8d7da;
254
254
  }
255
255
  :global(.etext-info) {
256
256
  color: #0DCAF0;
@@ -439,7 +439,7 @@ export let header;
439
439
  outline: 1px solid #B02A37;
440
440
  }
441
441
  :global(.eoutline-dangerLight) {
442
- outline: 1px solid #FE4747;
442
+ outline: 1px solid #f8d7da;
443
443
  }
444
444
  :global(.eoutline-success) {
445
445
  outline: 1px solid #00A96B;
@@ -59,7 +59,7 @@ if (badgeConfig.hasOwnProperty(config)) {
59
59
  background-color: #B02A37;
60
60
  }
61
61
  :global(.ebg-dangerLight) {
62
- background-color: #FE4747;
62
+ background-color: #f8d7da;
63
63
  }
64
64
  :global(.ebg-warning) {
65
65
  background-color: #FFBA3A;
@@ -255,7 +255,7 @@ if (badgeConfig.hasOwnProperty(config)) {
255
255
  color: #B02A37;
256
256
  }
257
257
  :global(.etext-dangerLight) {
258
- color: #FE4747;
258
+ color: #f8d7da;
259
259
  }
260
260
  :global(.etext-info) {
261
261
  color: #0DCAF0;
@@ -444,7 +444,7 @@ if (badgeConfig.hasOwnProperty(config)) {
444
444
  outline: 1px solid #B02A37;
445
445
  }
446
446
  :global(.eoutline-dangerLight) {
447
- outline: 1px solid #FE4747;
447
+ outline: 1px solid #f8d7da;
448
448
  }
449
449
  :global(.eoutline-success) {
450
450
  outline: 1px solid #00A96B;
@@ -69,7 +69,7 @@ let length = newBreadcrumbs.length;
69
69
  background-color: #B02A37;
70
70
  }
71
71
  :global(.ebg-dangerLight) {
72
- background-color: #FE4747;
72
+ background-color: #f8d7da;
73
73
  }
74
74
  :global(.ebg-warning) {
75
75
  background-color: #FFBA3A;
@@ -265,7 +265,7 @@ let length = newBreadcrumbs.length;
265
265
  color: #B02A37;
266
266
  }
267
267
  :global(.etext-dangerLight) {
268
- color: #FE4747;
268
+ color: #f8d7da;
269
269
  }
270
270
  :global(.etext-info) {
271
271
  color: #0DCAF0;
@@ -454,7 +454,7 @@ let length = newBreadcrumbs.length;
454
454
  outline: 1px solid #B02A37;
455
455
  }
456
456
  :global(.eoutline-dangerLight) {
457
- outline: 1px solid #FE4747;
457
+ outline: 1px solid #f8d7da;
458
458
  }
459
459
  :global(.eoutline-success) {
460
460
  outline: 1px solid #00A96B;
@@ -106,10 +106,10 @@
106
106
 
107
107
  // secondary color hover and acitve
108
108
  .ebg-secondary{
109
- background-color: $secondary !important;
109
+ background-color: $secondary;
110
110
  }
111
111
  .ebg-secondary:hover,.ebg-secondary:focus {
112
- background-color: $secondary-light;
112
+ background-color: $secondary-dark;
113
113
  transition: all $transitionTimeHover;
114
114
  }
115
115
 
@@ -726,45 +726,156 @@
726
726
  }
727
727
 
728
728
 
729
+
729
730
  //outline classess
730
731
  .eoutline-secondary {
731
732
  outline: 1px solid $secondary;
733
+ background-color: $white;
734
+ &:hover{
735
+ transition: all $transitionTimeHover;
736
+ background-color: $secondary-light;
737
+ color: $secondary-dark;
738
+ }
739
+ &:focus{
740
+ transition: all $transitionTimeHover;
741
+ background-color: $secondary-light;
742
+ color: $secondary-dark;
743
+ }
732
744
  }
733
745
 
734
746
  .eoutline-secondaryDark {
735
747
  outline: 1px solid $secondary-dark;
748
+ background-color: $white;
749
+ &:hover{
750
+ transition: all $transitionTimeHover;
751
+ background-color: $secondary-light;
752
+ color: $secondary-dark;
753
+ }
754
+ &:focus{
755
+ transition: all $transitionTimeHover;
756
+ background-color: $secondary-light;
757
+ color: $secondary-dark;
758
+ }
736
759
  }
737
760
 
738
761
  .eoutline-secondaryLight {
739
762
  outline: 1px solid $secondary-light;
763
+ background-color: $white;
764
+ &:hover{
765
+ transition: all $transitionTimeHover;
766
+ background-color: $secondary-light;
767
+ color: $secondary-dark;
768
+ }
769
+ &:focus{
770
+ transition: all $transitionTimeHover;
771
+ background-color: $secondary-light;
772
+ color: $secondary-dark;
773
+ }
740
774
  }
741
775
 
742
776
  .eoutline-primary {
743
777
  outline: 1px solid $primary;
778
+ background-color: $white;
779
+ &:hover{
780
+ transition: all $transitionTimeHover;
781
+ background-color: $primary-light;
782
+ color: $primary-dark;
783
+ }
784
+ &:focus{
785
+ transition: all $transitionTimeHover;
786
+ background-color: $primary-light;
787
+ color: $primary-dark;
788
+ }
744
789
  }
745
790
 
746
791
  .eoutline-primaryDark {
747
792
  outline: 1px solid $primary-dark;
793
+ background-color: $white;
794
+ &:hover{
795
+ transition: all $transitionTimeHover;
796
+ background-color: $primary-light;
797
+ color: $primary-dark;
798
+ }
799
+ &:focus{
800
+ transition: all $transitionTimeHover;
801
+ background-color: $primary-light;
802
+ color: $primary-dark;
803
+ }
748
804
  }
749
805
 
750
806
  .eoutline-primaryLight {
751
807
  outline: 1px solid $primary-light;
808
+ background-color: $white;
809
+ &:hover{
810
+ transition: all $transitionTimeHover;
811
+ background-color: $primary-light;
812
+ color: $primary-dark;
813
+ }
814
+ &:focus{
815
+ transition: all $transitionTimeHover;
816
+ background-color: $primary-light;
817
+ color: $primary-dark;
818
+ }
752
819
  }
753
820
 
754
821
  .eoutline-danger {
755
822
  outline: 1px solid $danger;
823
+ background-color: $white;
824
+ &:hover{
825
+ transition: all $transitionTimeHover;
826
+ background-color: $danger-light;
827
+ color: $danger-dark;
828
+ }
829
+ &:focus{
830
+ transition: all $transitionTimeHover;
831
+ background-color: $danger-light;
832
+ color: $danger-dark;
833
+ }
756
834
  }
757
835
 
758
836
  .eoutline-dangerDark {
759
837
  outline: 1px solid $danger-dark;
838
+ background-color: $white;
839
+ &:hover{
840
+ transition: all $transitionTimeHover;
841
+ background-color: $danger-light;
842
+ color: $danger-dark;
843
+ }
844
+ &:focus{
845
+ transition: all $transitionTimeHover;
846
+ background-color: $danger-light;
847
+ color: $danger-dark;
848
+ }
760
849
  }
761
850
 
762
851
  .eoutline-dangerLight {
763
852
  outline: 1px solid $danger-light;
853
+ background-color: $white;
854
+ &:hover{
855
+ transition: all $transitionTimeHover;
856
+ background-color: $danger-light;
857
+ color: $danger-dark;
858
+ }
859
+ &:focus{
860
+ transition: all $transitionTimeHover;
861
+ background-color: $danger-light;
862
+ color: $danger-dark;
863
+ }
764
864
  }
765
865
 
766
866
  .eoutline-success {
767
867
  outline: 1px solid $success;
868
+ background-color: $white;
869
+ &:hover{
870
+ transition: all $transitionTimeHover;
871
+ background-color: $success-light;
872
+ color: $success-dark;
873
+ }
874
+ &:focus{
875
+ transition: all $transitionTimeHover;
876
+ background-color: $success-light;
877
+ color: $success-dark;
878
+ }
768
879
  }
769
880
 
770
881
  .eoutline-successDark {
@@ -777,6 +888,17 @@
777
888
 
778
889
  .eoutline-info {
779
890
  outline: 1px solid $info;
891
+ background-color: $white;
892
+ &:hover{
893
+ transition: all $transitionTimeHover;
894
+ background-color: $info-light;
895
+ color: $info-dark;
896
+ }
897
+ &:focus{
898
+ transition: all $transitionTimeHover;
899
+ background-color: $info-light;
900
+ color: $info-dark;
901
+ }
780
902
  }
781
903
 
782
904
  .eoutline-infoDark {
@@ -789,6 +911,17 @@
789
911
 
790
912
  .eoutline-warning {
791
913
  outline: 1px solid $warning;
914
+ background-color: $white;
915
+ &:hover{
916
+ transition: all $transitionTimeHover;
917
+ background-color: $warning-light;
918
+ color: $warning-dark;
919
+ }
920
+ &:focus{
921
+ transition: all $transitionTimeHover;
922
+ background-color: $warning-light;
923
+ color: $warning-dark;
924
+ }
792
925
  }
793
926
 
794
927
  .eoutline-warningDark {
@@ -126,10 +126,10 @@
126
126
  color: #000000 !important;
127
127
  }
128
128
  .ebg-secondary {
129
- background-color: #3AC82E !important;
129
+ background-color: #3AC82E;
130
130
  }
131
131
  .ebg-secondary:hover, .ebg-secondary:focus {
132
- background-color: #CBFFC7;
132
+ background-color: #00A855;
133
133
  transition: all 0.3s;
134
134
  }
135
135
  .ebg-secondaryDark {
@@ -183,7 +183,7 @@
183
183
  background-color: #FE4747;
184
184
  }
185
185
  .ebg-dangerLight {
186
- background-color: #FE4747;
186
+ background-color: #f8d7da;
187
187
  }
188
188
  .ebg-dangerLight:hover, .ebg-dangerLight:focus {
189
189
  transition: all 0.3s;
@@ -420,7 +420,7 @@
420
420
  color: #B02A37;
421
421
  }
422
422
  .etext-dangerLight {
423
- color: #FE4747;
423
+ color: #f8d7da;
424
424
  }
425
425
  .etext-info {
426
426
  color: #0DCAF0;
@@ -586,33 +586,143 @@
586
586
  }
587
587
  .eoutline-secondary {
588
588
  outline: 1px solid #3AC82E;
589
+ background-color: #ffffff;
590
+ }
591
+ .eoutline-secondary:hover {
592
+ transition: all 0.3s;
593
+ background-color: #CBFFC7;
594
+ color: #00A855;
595
+ }
596
+ .eoutline-secondary:focus {
597
+ transition: all 0.3s;
598
+ background-color: #CBFFC7;
599
+ color: #00A855;
589
600
  }
590
601
  .eoutline-secondaryDark {
591
602
  outline: 1px solid #00A855;
603
+ background-color: #ffffff;
604
+ }
605
+ .eoutline-secondaryDark:hover {
606
+ transition: all 0.3s;
607
+ background-color: #CBFFC7;
608
+ color: #00A855;
609
+ }
610
+ .eoutline-secondaryDark:focus {
611
+ transition: all 0.3s;
612
+ background-color: #CBFFC7;
613
+ color: #00A855;
592
614
  }
593
615
  .eoutline-secondaryLight {
594
616
  outline: 1px solid #CBFFC7;
617
+ background-color: #ffffff;
618
+ }
619
+ .eoutline-secondaryLight:hover {
620
+ transition: all 0.3s;
621
+ background-color: #CBFFC7;
622
+ color: #00A855;
623
+ }
624
+ .eoutline-secondaryLight:focus {
625
+ transition: all 0.3s;
626
+ background-color: #CBFFC7;
627
+ color: #00A855;
595
628
  }
596
629
  .eoutline-primary {
597
630
  outline: 1px solid #00AEE5;
631
+ background-color: #ffffff;
632
+ }
633
+ .eoutline-primary:hover {
634
+ transition: all 0.3s;
635
+ background-color: #CEF3FF;
636
+ color: #007FD8;
637
+ }
638
+ .eoutline-primary:focus {
639
+ transition: all 0.3s;
640
+ background-color: #CEF3FF;
641
+ color: #007FD8;
598
642
  }
599
643
  .eoutline-primaryDark {
600
644
  outline: 1px solid #007FD8;
645
+ background-color: #ffffff;
646
+ }
647
+ .eoutline-primaryDark:hover {
648
+ transition: all 0.3s;
649
+ background-color: #CEF3FF;
650
+ color: #007FD8;
651
+ }
652
+ .eoutline-primaryDark:focus {
653
+ transition: all 0.3s;
654
+ background-color: #CEF3FF;
655
+ color: #007FD8;
601
656
  }
602
657
  .eoutline-primaryLight {
603
658
  outline: 1px solid #CEF3FF;
659
+ background-color: #ffffff;
660
+ }
661
+ .eoutline-primaryLight:hover {
662
+ transition: all 0.3s;
663
+ background-color: #CEF3FF;
664
+ color: #007FD8;
665
+ }
666
+ .eoutline-primaryLight:focus {
667
+ transition: all 0.3s;
668
+ background-color: #CEF3FF;
669
+ color: #007FD8;
604
670
  }
605
671
  .eoutline-danger {
606
672
  outline: 1px solid #FE4747;
673
+ background-color: #ffffff;
674
+ }
675
+ .eoutline-danger:hover {
676
+ transition: all 0.3s;
677
+ background-color: #f8d7da;
678
+ color: #B02A37;
679
+ }
680
+ .eoutline-danger:focus {
681
+ transition: all 0.3s;
682
+ background-color: #f8d7da;
683
+ color: #B02A37;
607
684
  }
608
685
  .eoutline-dangerDark {
609
686
  outline: 1px solid #B02A37;
687
+ background-color: #ffffff;
688
+ }
689
+ .eoutline-dangerDark:hover {
690
+ transition: all 0.3s;
691
+ background-color: #f8d7da;
692
+ color: #B02A37;
693
+ }
694
+ .eoutline-dangerDark:focus {
695
+ transition: all 0.3s;
696
+ background-color: #f8d7da;
697
+ color: #B02A37;
610
698
  }
611
699
  .eoutline-dangerLight {
612
- outline: 1px solid #FE4747;
700
+ outline: 1px solid #f8d7da;
701
+ background-color: #ffffff;
702
+ }
703
+ .eoutline-dangerLight:hover {
704
+ transition: all 0.3s;
705
+ background-color: #f8d7da;
706
+ color: #B02A37;
707
+ }
708
+ .eoutline-dangerLight:focus {
709
+ transition: all 0.3s;
710
+ background-color: #f8d7da;
711
+ color: #B02A37;
613
712
  }
614
713
  .eoutline-success {
615
714
  outline: 1px solid #00A96B;
715
+ background-color: #ffffff;
716
+ }
717
+ .eoutline-success:hover {
718
+ transition: all 0.3s;
719
+ background-color: #D1E7DD;
720
+ color: #146C43;
721
+ }
722
+ .eoutline-success:focus {
723
+ transition: all 0.3s;
724
+ background-color: #D1E7DD;
725
+ color: #146C43;
616
726
  }
617
727
  .eoutline-successDark {
618
728
  outline: 1px solid #146C43;
@@ -622,6 +732,17 @@
622
732
  }
623
733
  .eoutline-info {
624
734
  outline: 1px solid #0DCAF0;
735
+ background-color: #ffffff;
736
+ }
737
+ .eoutline-info:hover {
738
+ transition: all 0.3s;
739
+ background-color: #9EEAF9;
740
+ color: #087990;
741
+ }
742
+ .eoutline-info:focus {
743
+ transition: all 0.3s;
744
+ background-color: #9EEAF9;
745
+ color: #087990;
625
746
  }
626
747
  .eoutline-infoDark {
627
748
  outline: 1px solid #087990;
@@ -631,6 +752,17 @@
631
752
  }
632
753
  .eoutline-warning {
633
754
  outline: 1px solid #FFBA3A;
755
+ background-color: #ffffff;
756
+ }
757
+ .eoutline-warning:hover {
758
+ transition: all 0.3s;
759
+ background-color: #FFF3CD;
760
+ color: #997404;
761
+ }
762
+ .eoutline-warning:focus {
763
+ transition: all 0.3s;
764
+ background-color: #FFF3CD;
765
+ color: #997404;
634
766
  }
635
767
  .eoutline-warningDark {
636
768
  outline: 1px solid #997404;
@@ -669,7 +801,7 @@
669
801
  background-color: #B02A37;
670
802
  }
671
803
  :global(.ebg-dangerLight) {
672
- background-color: #FE4747;
804
+ background-color: #f8d7da;
673
805
  }
674
806
  :global(.ebg-warning) {
675
807
  background-color: #FFBA3A;
@@ -865,7 +997,7 @@
865
997
  color: #B02A37;
866
998
  }
867
999
  :global(.etext-dangerLight) {
868
- color: #FE4747;
1000
+ color: #f8d7da;
869
1001
  }
870
1002
  :global(.etext-info) {
871
1003
  color: #0DCAF0;
@@ -1054,7 +1186,7 @@
1054
1186
  outline: 1px solid #B02A37;
1055
1187
  }
1056
1188
  :global(.eoutline-dangerLight) {
1057
- outline: 1px solid #FE4747;
1189
+ outline: 1px solid #f8d7da;
1058
1190
  }
1059
1191
  :global(.eoutline-success) {
1060
1192
  outline: 1px solid #00A96B;
@@ -118,7 +118,7 @@
118
118
  background-color: #B02A37;
119
119
  }
120
120
  :global(.ebg-dangerLight) {
121
- background-color: #FE4747;
121
+ background-color: #f8d7da;
122
122
  }
123
123
  :global(.ebg-warning) {
124
124
  background-color: #FFBA3A;
@@ -314,7 +314,7 @@
314
314
  color: #B02A37;
315
315
  }
316
316
  :global(.etext-dangerLight) {
317
- color: #FE4747;
317
+ color: #f8d7da;
318
318
  }
319
319
  :global(.etext-info) {
320
320
  color: #0DCAF0;
@@ -503,7 +503,7 @@
503
503
  outline: 1px solid #B02A37;
504
504
  }
505
505
  :global(.eoutline-dangerLight) {
506
- outline: 1px solid #FE4747;
506
+ outline: 1px solid #f8d7da;
507
507
  }
508
508
  :global(.eoutline-success) {
509
509
  outline: 1px solid #00A96B;
@@ -104,7 +104,7 @@
104
104
  background-color: #B02A37;
105
105
  }
106
106
  :global(.ebg-dangerLight) {
107
- background-color: #FE4747;
107
+ background-color: #f8d7da;
108
108
  }
109
109
  :global(.ebg-warning) {
110
110
  background-color: #FFBA3A;
@@ -300,7 +300,7 @@
300
300
  color: #B02A37;
301
301
  }
302
302
  :global(.etext-dangerLight) {
303
- color: #FE4747;
303
+ color: #f8d7da;
304
304
  }
305
305
  :global(.etext-info) {
306
306
  color: #0DCAF0;
@@ -489,7 +489,7 @@
489
489
  outline: 1px solid #B02A37;
490
490
  }
491
491
  :global(.eoutline-dangerLight) {
492
- outline: 1px solid #FE4747;
492
+ outline: 1px solid #f8d7da;
493
493
  }
494
494
  :global(.eoutline-success) {
495
495
  outline: 1px solid #00A96B;
@@ -94,109 +94,91 @@ export const buttonConfig = {
94
94
 
95
95
  "secondaryOutlineBtnLarge" :[
96
96
  "ebtn-large",
97
- "ebg-none",
98
97
  "etext-secondary",
99
98
  "eoutline-secondary",
100
99
  ],
101
100
  "secondaryOutlineBtnMedium" :[
102
101
  "ebtn-medium",
103
- "ebg-none",
104
102
  "etext-secondary",
105
103
  "eoutline-secondary"
106
104
  ],
107
105
  "secondaryOutlineBtnSmall" :[
108
106
  "ebtn-small",
109
- "ebg-none",
110
107
  "etext-secondary",
111
108
  "eoutline-secondary"
112
109
  ],
113
110
  "primaryOutlineBtnLarge" :[
114
111
  "ebtn-large",
115
- "ebg-none",
116
112
  "etext-primary",
117
113
  "eoutline-primary"
118
114
  ],
119
115
  "primaryOutlineBtnMedium" :[
120
116
  "ebtn-medium",
121
- "ebg-none",
122
117
  "etext-primary",
123
118
  "eoutline-primary"
124
119
  ],
125
120
  "primaryOutlineBtnSmall" :[
126
121
  "ebtn-small",
127
- "ebg-none",
128
122
  "etext-primary",
129
123
  "eoutline-primary"
130
124
  ],
131
125
  "infoOutlineBtnLarge" :[
132
126
  "ebtn-large",
133
- "ebg-none",
134
127
  "etext-info",
135
128
  "eoutline-info"
136
129
  ],
137
130
  "infoOutlineBtnMedium" :[
138
131
  "ebtn-medium",
139
- "ebg-none",
140
132
  "etext-info",
141
133
  "eoutline-info"
142
134
  ],
143
135
  "infoOutlineBtnSmall" :[
144
136
  "ebtn-small",
145
- "ebg-none",
146
137
  "etext-info",
147
138
  "eoutline-info"
148
139
  ],
149
140
  "warningOutlineBtnSmall" :[
150
141
  "ebtn-small",
151
- "ebg-none",
152
142
  "etext-warning",
153
143
  "eoutline-warning"
154
144
  ],
155
145
  "warningOutlineBtnLarge" :[
156
146
  "ebtn-large",
157
- "ebg-none",
158
147
  "etext-warning",
159
148
  "eoutline-warning"
160
149
  ],
161
150
  "warningOutlineBtnMedium" :[
162
151
  "ebtn-medium",
163
- "ebg-none",
164
152
  "etext-warning",
165
153
  "eoutline-warning"
166
154
  ],
167
155
  "dangerOutlineBtnLarge" :[
168
156
  "ebtn-large",
169
- "ebg-none",
170
157
  "etext-danger",
171
158
  "eoutline-danger"
172
159
  ],
173
160
  "dangerOutlineBtnMedium" :[
174
161
  "ebtn-medium",
175
- "ebg-none",
176
162
  "etext-danger",
177
163
  "eoutline-danger"
178
164
  ],
179
165
  "dangerOutlineBtnSmall" :[
180
166
  "ebtn-small",
181
- "ebg-none",
182
167
  "etext-danger",
183
168
  "eoutline-danger"
184
169
  ],
185
170
  "successOutlineBtnLarge" :[
186
171
  "ebtn-large",
187
- "ebg-none",
188
172
  "etext-success",
189
173
  "eoutline-success"
190
174
  ],
191
175
  "successOutlineBtnMedium" :[
192
176
  "ebtn-medium",
193
- "ebg-none",
194
177
  "etext-success",
195
178
  "eoutline-success"
196
179
  ],
197
180
  "successOutlineBtnSmall" :[
198
181
  "ebtn-small",
199
- "ebg-none",
200
182
  "etext-success",
201
183
  "eoutline-success"
202
184
  ],