@mozaic-ds/angular 0.24.0-beta.2 → 0.24.0-beta.4
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/adeo/assets/tokens/adeo/css/_variables.scss +50 -200
- package/adeo/assets/tokens/adeo/js/tokens.js +575 -575
- package/adeo/assets/tokens/adeo/js/tokensObject.js +12457 -9652
- package/adeo/assets/tokens/adeo/scss/_tokens.scss +240 -239
- package/adeo/assets/tokens/bricoman/android/colors.xml +483 -0
- package/adeo/assets/tokens/bricoman/android/font_dimens.xml +18 -0
- package/adeo/assets/tokens/bricoman/css/_variables.scss +477 -0
- package/adeo/assets/tokens/bricoman/css/root.scss +479 -0
- package/adeo/assets/tokens/bricoman/ios/StyleDictionaryColor.h +491 -0
- package/adeo/assets/tokens/bricoman/ios/StyleDictionaryColor.m +503 -0
- package/adeo/assets/tokens/bricoman/ios/StyleDictionaryColor.swift +486 -0
- package/adeo/assets/tokens/bricoman/ios/StyleDictionarySize.h +69 -0
- package/adeo/assets/tokens/bricoman/ios/StyleDictionarySize.m +70 -0
- package/adeo/assets/tokens/bricoman/ios/StyleDictionarySize.swift +71 -0
- package/adeo/assets/tokens/bricoman/js/tokens.js +575 -0
- package/adeo/assets/tokens/bricoman/js/tokensObject.js +12444 -0
- package/adeo/assets/tokens/bricoman/scss/_tokens.scss +1630 -0
- package/adeo/components/breadcrumb/breadcrumb.component.d.ts +2 -1
- package/adeo/components/datatable/moz-datatable.component.d.ts +2 -0
- package/adeo/components/header/header.component.d.ts +33 -0
- package/adeo/components/header/header.module.d.ts +10 -0
- package/adeo/components/header/index.d.ts +3 -0
- package/adeo/components/header/model/header.d.ts +5 -0
- package/adeo/components/header/public-api.d.ts +1 -0
- package/adeo/components/kpi/index.d.ts +3 -0
- package/adeo/components/kpi/kpi.component.d.ts +14 -0
- package/adeo/components/kpi/kpi.module.d.ts +9 -0
- package/adeo/components/kpi/model/kpi.d.ts +4 -0
- package/adeo/components/kpi/public-api.d.ts +1 -0
- package/adeo/components/progress-bar/progress-bar.component.d.ts +2 -2
- package/adeo/components/public-api.d.ts +2 -0
- package/adeo/esm2020/components/autocomplete/autocomplete.component.mjs +6 -3
- package/adeo/esm2020/components/breadcrumb/breadcrumb.component.mjs +6 -3
- package/adeo/esm2020/components/datatable/components/footer/moz-datatable-footer.component.mjs +13 -3
- package/adeo/esm2020/components/datatable/moz-datatable.component.mjs +13 -3
- package/adeo/esm2020/components/dropdown/dropdown.component.mjs +6 -3
- package/adeo/esm2020/components/header/header.component.mjs +129 -0
- package/adeo/esm2020/components/header/header.module.mjs +20 -0
- package/adeo/esm2020/components/header/index.mjs +4 -0
- package/adeo/esm2020/components/header/model/header.mjs +6 -0
- package/adeo/esm2020/components/header/public-api.mjs +2 -0
- package/adeo/esm2020/components/kpi/index.mjs +4 -0
- package/adeo/esm2020/components/kpi/kpi.component.mjs +47 -0
- package/adeo/esm2020/components/kpi/kpi.module.mjs +19 -0
- package/adeo/esm2020/components/kpi/model/kpi.mjs +6 -0
- package/adeo/esm2020/components/kpi/public-api.mjs +2 -0
- package/adeo/esm2020/components/pagination/pagination.component.mjs +2 -2
- package/adeo/esm2020/components/progress-bar/progress-bar.component.mjs +6 -6
- package/adeo/esm2020/components/public-api.mjs +3 -1
- package/adeo/esm2020/components/tabs/tabs.component.mjs +3 -3
- package/adeo/fesm2015/mozaic-ds-angular.mjs +262 -24
- package/adeo/fesm2015/mozaic-ds-angular.mjs.map +1 -1
- package/adeo/fesm2020/mozaic-ds-angular.mjs +253 -20
- package/adeo/fesm2020/mozaic-ds-angular.mjs.map +1 -1
- package/adeo/package.json +1 -1
- package/assets/tokens/adeo/css/_variables.scss +50 -200
- package/assets/tokens/adeo/js/tokens.js +575 -575
- package/assets/tokens/adeo/js/tokensObject.js +12457 -9652
- package/assets/tokens/adeo/scss/_tokens.scss +240 -239
- package/assets/tokens/bricoman/android/colors.xml +483 -0
- package/assets/tokens/bricoman/android/font_dimens.xml +18 -0
- package/assets/tokens/bricoman/css/_variables.scss +477 -0
- package/assets/tokens/bricoman/css/root.scss +479 -0
- package/assets/tokens/bricoman/ios/StyleDictionaryColor.h +491 -0
- package/assets/tokens/bricoman/ios/StyleDictionaryColor.m +503 -0
- package/assets/tokens/bricoman/ios/StyleDictionaryColor.swift +486 -0
- package/assets/tokens/bricoman/ios/StyleDictionarySize.h +69 -0
- package/assets/tokens/bricoman/ios/StyleDictionarySize.m +70 -0
- package/assets/tokens/bricoman/ios/StyleDictionarySize.swift +71 -0
- package/assets/tokens/bricoman/js/tokens.js +575 -0
- package/assets/tokens/bricoman/js/tokensObject.js +12444 -0
- package/assets/tokens/bricoman/scss/_tokens.scss +1630 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +2 -1
- package/components/datatable/moz-datatable.component.d.ts +2 -0
- package/components/header/header.component.d.ts +33 -0
- package/components/header/header.module.d.ts +10 -0
- package/components/header/index.d.ts +3 -0
- package/components/header/model/header.d.ts +5 -0
- package/components/header/public-api.d.ts +1 -0
- package/components/kpi/index.d.ts +3 -0
- package/components/kpi/kpi.component.d.ts +14 -0
- package/components/kpi/kpi.module.d.ts +9 -0
- package/components/kpi/model/kpi.d.ts +4 -0
- package/components/kpi/public-api.d.ts +1 -0
- package/components/progress-bar/progress-bar.component.d.ts +2 -2
- package/components/public-api.d.ts +2 -0
- package/esm2020/components/autocomplete/autocomplete.component.mjs +6 -3
- package/esm2020/components/breadcrumb/breadcrumb.component.mjs +6 -3
- package/esm2020/components/datatable/components/footer/moz-datatable-footer.component.mjs +13 -3
- package/esm2020/components/datatable/moz-datatable.component.mjs +13 -3
- package/esm2020/components/dropdown/dropdown.component.mjs +6 -3
- package/esm2020/components/header/header.component.mjs +129 -0
- package/esm2020/components/header/header.module.mjs +20 -0
- package/esm2020/components/header/index.mjs +4 -0
- package/esm2020/components/header/model/header.mjs +6 -0
- package/esm2020/components/header/public-api.mjs +2 -0
- package/esm2020/components/kpi/index.mjs +4 -0
- package/esm2020/components/kpi/kpi.component.mjs +47 -0
- package/esm2020/components/kpi/kpi.module.mjs +19 -0
- package/esm2020/components/kpi/model/kpi.mjs +6 -0
- package/esm2020/components/kpi/public-api.mjs +2 -0
- package/esm2020/components/pagination/pagination.component.mjs +2 -2
- package/esm2020/components/progress-bar/progress-bar.component.mjs +6 -6
- package/esm2020/components/public-api.mjs +3 -1
- package/esm2020/components/tabs/tabs.component.mjs +3 -3
- package/fesm2015/mozaic-ds-angular.mjs +262 -24
- package/fesm2015/mozaic-ds-angular.mjs.map +1 -1
- package/fesm2020/mozaic-ds-angular.mjs +253 -20
- package/fesm2020/mozaic-ds-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
$border-s: 1 !default;
|
|
2
3
|
$border-m: 2 !default;
|
|
3
4
|
$border-l: 3 !default;
|
|
@@ -586,35 +587,35 @@ $tokens: (
|
|
|
586
587
|
'border': (
|
|
587
588
|
's': $border-s,
|
|
588
589
|
'm': $border-m,
|
|
589
|
-
'l': $border-l
|
|
590
|
+
'l': $border-l
|
|
590
591
|
),
|
|
591
592
|
'color': (
|
|
592
593
|
'badge': (
|
|
593
594
|
'info': (
|
|
594
595
|
'background': $color-badge-info-background,
|
|
595
596
|
'border': $color-badge-info-border,
|
|
596
|
-
'text': $color-badge-info-text
|
|
597
|
+
'text': $color-badge-info-text
|
|
597
598
|
),
|
|
598
599
|
'success': (
|
|
599
600
|
'background': $color-badge-success-background,
|
|
600
601
|
'border': $color-badge-success-border,
|
|
601
|
-
'text': $color-badge-success-text
|
|
602
|
+
'text': $color-badge-success-text
|
|
602
603
|
),
|
|
603
604
|
'warning': (
|
|
604
605
|
'background': $color-badge-warning-background,
|
|
605
606
|
'border': $color-badge-warning-border,
|
|
606
|
-
'text': $color-badge-warning-text
|
|
607
|
+
'text': $color-badge-warning-text
|
|
607
608
|
),
|
|
608
609
|
'danger': (
|
|
609
610
|
'background': $color-badge-danger-background,
|
|
610
611
|
'border': $color-badge-danger-border,
|
|
611
|
-
'text': $color-badge-danger-text
|
|
612
|
+
'text': $color-badge-danger-text
|
|
612
613
|
),
|
|
613
614
|
'neutral': (
|
|
614
615
|
'background': $color-badge-neutral-background,
|
|
615
616
|
'border': $color-badge-neutral-border,
|
|
616
|
-
'text': $color-badge-neutral-text
|
|
617
|
-
)
|
|
617
|
+
'text': $color-badge-neutral-text
|
|
618
|
+
)
|
|
618
619
|
),
|
|
619
620
|
'primary-01': (
|
|
620
621
|
'100': $color-primary-01-100,
|
|
@@ -625,7 +626,7 @@ $tokens: (
|
|
|
625
626
|
'600': $color-primary-01-600,
|
|
626
627
|
'700': $color-primary-01-700,
|
|
627
628
|
'800': $color-primary-01-800,
|
|
628
|
-
'900': $color-primary-01-900
|
|
629
|
+
'900': $color-primary-01-900
|
|
629
630
|
),
|
|
630
631
|
'primary-02': (
|
|
631
632
|
'100': $color-primary-02-100,
|
|
@@ -636,7 +637,7 @@ $tokens: (
|
|
|
636
637
|
'600': $color-primary-02-600,
|
|
637
638
|
'700': $color-primary-02-700,
|
|
638
639
|
'800': $color-primary-02-800,
|
|
639
|
-
'900': $color-primary-02-900
|
|
640
|
+
'900': $color-primary-02-900
|
|
640
641
|
),
|
|
641
642
|
'grey': (
|
|
642
643
|
'100': $color-grey-100,
|
|
@@ -649,7 +650,7 @@ $tokens: (
|
|
|
649
650
|
'800': $color-grey-800,
|
|
650
651
|
'900': $color-grey-900,
|
|
651
652
|
'999': $color-grey-999,
|
|
652
|
-
'000': $color-grey-000
|
|
653
|
+
'000': $color-grey-000
|
|
653
654
|
),
|
|
654
655
|
'secondary-blue': (
|
|
655
656
|
'100': $color-secondary-blue-100,
|
|
@@ -660,7 +661,7 @@ $tokens: (
|
|
|
660
661
|
'600': $color-secondary-blue-600,
|
|
661
662
|
'700': $color-secondary-blue-700,
|
|
662
663
|
'800': $color-secondary-blue-800,
|
|
663
|
-
'900': $color-secondary-blue-900
|
|
664
|
+
'900': $color-secondary-blue-900
|
|
664
665
|
),
|
|
665
666
|
'secondary-green': (
|
|
666
667
|
'100': $color-secondary-green-100,
|
|
@@ -671,7 +672,7 @@ $tokens: (
|
|
|
671
672
|
'600': $color-secondary-green-600,
|
|
672
673
|
'700': $color-secondary-green-700,
|
|
673
674
|
'800': $color-secondary-green-800,
|
|
674
|
-
'900': $color-secondary-green-900
|
|
675
|
+
'900': $color-secondary-green-900
|
|
675
676
|
),
|
|
676
677
|
'secondary-purple': (
|
|
677
678
|
'100': $color-secondary-purple-100,
|
|
@@ -682,7 +683,7 @@ $tokens: (
|
|
|
682
683
|
'600': $color-secondary-purple-600,
|
|
683
684
|
'700': $color-secondary-purple-700,
|
|
684
685
|
'800': $color-secondary-purple-800,
|
|
685
|
-
'900': $color-secondary-purple-900
|
|
686
|
+
'900': $color-secondary-purple-900
|
|
686
687
|
),
|
|
687
688
|
'secondary-red': (
|
|
688
689
|
'100': $color-secondary-red-100,
|
|
@@ -693,7 +694,7 @@ $tokens: (
|
|
|
693
694
|
'600': $color-secondary-red-600,
|
|
694
695
|
'700': $color-secondary-red-700,
|
|
695
696
|
'800': $color-secondary-red-800,
|
|
696
|
-
'900': $color-secondary-red-900
|
|
697
|
+
'900': $color-secondary-red-900
|
|
697
698
|
),
|
|
698
699
|
'secondary-orange': (
|
|
699
700
|
'100': $color-secondary-orange-100,
|
|
@@ -704,7 +705,7 @@ $tokens: (
|
|
|
704
705
|
'600': $color-secondary-orange-600,
|
|
705
706
|
'700': $color-secondary-orange-700,
|
|
706
707
|
'800': $color-secondary-orange-800,
|
|
707
|
-
'900': $color-secondary-orange-900
|
|
708
|
+
'900': $color-secondary-orange-900
|
|
708
709
|
),
|
|
709
710
|
'secondary-yellow': (
|
|
710
711
|
'100': $color-secondary-yellow-100,
|
|
@@ -715,7 +716,7 @@ $tokens: (
|
|
|
715
716
|
'600': $color-secondary-yellow-600,
|
|
716
717
|
'700': $color-secondary-yellow-700,
|
|
717
718
|
'800': $color-secondary-yellow-800,
|
|
718
|
-
'900': $color-secondary-yellow-900
|
|
719
|
+
'900': $color-secondary-yellow-900
|
|
719
720
|
),
|
|
720
721
|
'danger': (
|
|
721
722
|
'100': $color-danger-100,
|
|
@@ -726,7 +727,7 @@ $tokens: (
|
|
|
726
727
|
'600': $color-danger-600,
|
|
727
728
|
'700': $color-danger-700,
|
|
728
729
|
'800': $color-danger-800,
|
|
729
|
-
'900': $color-danger-900
|
|
730
|
+
'900': $color-danger-900
|
|
730
731
|
),
|
|
731
732
|
'info': (
|
|
732
733
|
'100': $color-info-100,
|
|
@@ -737,7 +738,7 @@ $tokens: (
|
|
|
737
738
|
'600': $color-info-600,
|
|
738
739
|
'700': $color-info-700,
|
|
739
740
|
'800': $color-info-800,
|
|
740
|
-
'900': $color-info-900
|
|
741
|
+
'900': $color-info-900
|
|
741
742
|
),
|
|
742
743
|
'warning': (
|
|
743
744
|
'100': $color-warning-100,
|
|
@@ -748,7 +749,7 @@ $tokens: (
|
|
|
748
749
|
'600': $color-warning-600,
|
|
749
750
|
'700': $color-warning-700,
|
|
750
751
|
'800': $color-warning-800,
|
|
751
|
-
'900': $color-warning-900
|
|
752
|
+
'900': $color-warning-900
|
|
752
753
|
),
|
|
753
754
|
'success': (
|
|
754
755
|
'100': $color-success-100,
|
|
@@ -759,284 +760,284 @@ $tokens: (
|
|
|
759
760
|
'600': $color-success-600,
|
|
760
761
|
'700': $color-success-700,
|
|
761
762
|
'800': $color-success-800,
|
|
762
|
-
'900': $color-success-900
|
|
763
|
+
'900': $color-success-900
|
|
763
764
|
),
|
|
764
765
|
'breadcrumb': (
|
|
765
766
|
'arrow': $color-breadcrumb-arrow,
|
|
766
|
-
'arrow-invert': $color-breadcrumb-arrow-invert
|
|
767
|
+
'arrow-invert': $color-breadcrumb-arrow-invert
|
|
767
768
|
),
|
|
768
769
|
'button': (
|
|
769
770
|
'solid': (
|
|
770
771
|
'background': $color-button-solid-background,
|
|
771
772
|
'font': $color-button-solid-font,
|
|
772
773
|
'focus': (
|
|
773
|
-
'border': $color-button-solid-focus-border
|
|
774
|
+
'border': $color-button-solid-focus-border
|
|
774
775
|
),
|
|
775
776
|
'disabled': (
|
|
776
777
|
'background': $color-button-solid-disabled-background,
|
|
777
|
-
'font': $color-button-solid-disabled-font
|
|
778
|
+
'font': $color-button-solid-disabled-font
|
|
778
779
|
),
|
|
779
780
|
'active': (
|
|
780
|
-
'background': $color-button-solid-active-background
|
|
781
|
+
'background': $color-button-solid-active-background
|
|
781
782
|
),
|
|
782
783
|
'hover': (
|
|
783
784
|
'background': $color-button-solid-hover-background,
|
|
784
|
-
'font': $color-button-solid-hover-font
|
|
785
|
-
)
|
|
785
|
+
'font': $color-button-solid-hover-font
|
|
786
|
+
)
|
|
786
787
|
),
|
|
787
788
|
'solid-primary-02': (
|
|
788
789
|
'background': $color-button-solid-primary-02-background,
|
|
789
790
|
'font': $color-button-solid-primary-02-font,
|
|
790
791
|
'focus': (
|
|
791
|
-
'border': $color-button-solid-primary-02-focus-border
|
|
792
|
+
'border': $color-button-solid-primary-02-focus-border
|
|
792
793
|
),
|
|
793
794
|
'disabled': (
|
|
794
795
|
'background': $color-button-solid-primary-02-disabled-background,
|
|
795
|
-
'font': $color-button-solid-primary-02-disabled-font
|
|
796
|
+
'font': $color-button-solid-primary-02-disabled-font
|
|
796
797
|
),
|
|
797
798
|
'active': (
|
|
798
|
-
'background': $color-button-solid-primary-02-active-background
|
|
799
|
+
'background': $color-button-solid-primary-02-active-background
|
|
799
800
|
),
|
|
800
801
|
'hover': (
|
|
801
802
|
'background': $color-button-solid-primary-02-hover-background,
|
|
802
|
-
'font': $color-button-solid-primary-02-hover-font
|
|
803
|
-
)
|
|
803
|
+
'font': $color-button-solid-primary-02-hover-font
|
|
804
|
+
)
|
|
804
805
|
),
|
|
805
806
|
'solid-neutral': (
|
|
806
807
|
'background': $color-button-solid-neutral-background,
|
|
807
808
|
'font': $color-button-solid-neutral-font,
|
|
808
809
|
'focus': (
|
|
809
|
-
'border': $color-button-solid-neutral-focus-border
|
|
810
|
+
'border': $color-button-solid-neutral-focus-border
|
|
810
811
|
),
|
|
811
812
|
'disabled': (
|
|
812
813
|
'background': $color-button-solid-neutral-disabled-background,
|
|
813
|
-
'font': $color-button-solid-neutral-disabled-font
|
|
814
|
+
'font': $color-button-solid-neutral-disabled-font
|
|
814
815
|
),
|
|
815
816
|
'active': (
|
|
816
|
-
'background': $color-button-solid-neutral-active-background
|
|
817
|
+
'background': $color-button-solid-neutral-active-background
|
|
817
818
|
),
|
|
818
819
|
'hover': (
|
|
819
820
|
'background': $color-button-solid-neutral-hover-background,
|
|
820
|
-
'font': $color-button-solid-neutral-hover-font
|
|
821
|
-
)
|
|
821
|
+
'font': $color-button-solid-neutral-hover-font
|
|
822
|
+
)
|
|
822
823
|
),
|
|
823
824
|
'solid-danger': (
|
|
824
825
|
'background': $color-button-solid-danger-background,
|
|
825
826
|
'font': $color-button-solid-danger-font,
|
|
826
827
|
'focus': (
|
|
827
|
-
'border': $color-button-solid-danger-focus-border
|
|
828
|
+
'border': $color-button-solid-danger-focus-border
|
|
828
829
|
),
|
|
829
830
|
'disabled': (
|
|
830
831
|
'background': $color-button-solid-danger-disabled-background,
|
|
831
|
-
'font': $color-button-solid-danger-disabled-font
|
|
832
|
+
'font': $color-button-solid-danger-disabled-font
|
|
832
833
|
),
|
|
833
834
|
'active': (
|
|
834
|
-
'background': $color-button-solid-danger-active-background
|
|
835
|
+
'background': $color-button-solid-danger-active-background
|
|
835
836
|
),
|
|
836
837
|
'hover': (
|
|
837
838
|
'background': $color-button-solid-danger-hover-background,
|
|
838
|
-
'font': $color-button-solid-danger-hover-font
|
|
839
|
-
)
|
|
839
|
+
'font': $color-button-solid-danger-hover-font
|
|
840
|
+
)
|
|
840
841
|
),
|
|
841
842
|
'bordered': (
|
|
842
843
|
'background': $color-button-bordered-background,
|
|
843
844
|
'border': $color-button-bordered-border,
|
|
844
845
|
'font': $color-button-bordered-font,
|
|
845
846
|
'focus': (
|
|
846
|
-
'border': $color-button-bordered-focus-border
|
|
847
|
+
'border': $color-button-bordered-focus-border
|
|
847
848
|
),
|
|
848
849
|
'disabled': (
|
|
849
850
|
'background': $color-button-bordered-disabled-background,
|
|
850
|
-
'font': $color-button-bordered-disabled-font
|
|
851
|
+
'font': $color-button-bordered-disabled-font
|
|
851
852
|
),
|
|
852
853
|
'active': (
|
|
853
854
|
'background': $color-button-bordered-active-background,
|
|
854
|
-
'font': $color-button-bordered-active-font
|
|
855
|
+
'font': $color-button-bordered-active-font
|
|
855
856
|
),
|
|
856
857
|
'hover': (
|
|
857
858
|
'background': $color-button-bordered-hover-background,
|
|
858
|
-
'font': $color-button-bordered-hover-font
|
|
859
|
-
)
|
|
859
|
+
'font': $color-button-bordered-hover-font
|
|
860
|
+
)
|
|
860
861
|
),
|
|
861
862
|
'bordered-primary-02': (
|
|
862
863
|
'background': $color-button-bordered-primary-02-background,
|
|
863
864
|
'border': $color-button-bordered-primary-02-border,
|
|
864
865
|
'font': $color-button-bordered-primary-02-font,
|
|
865
866
|
'focus': (
|
|
866
|
-
'border': $color-button-bordered-primary-02-focus-border
|
|
867
|
+
'border': $color-button-bordered-primary-02-focus-border
|
|
867
868
|
),
|
|
868
869
|
'disabled': (
|
|
869
870
|
'background': $color-button-bordered-primary-02-disabled-background,
|
|
870
|
-
'font': $color-button-bordered-primary-02-disabled-font
|
|
871
|
+
'font': $color-button-bordered-primary-02-disabled-font
|
|
871
872
|
),
|
|
872
873
|
'active': (
|
|
873
|
-
'background': $color-button-bordered-primary-02-active-background
|
|
874
|
+
'background': $color-button-bordered-primary-02-active-background
|
|
874
875
|
),
|
|
875
876
|
'hover': (
|
|
876
|
-
'background': $color-button-bordered-primary-02-hover-background
|
|
877
|
-
)
|
|
877
|
+
'background': $color-button-bordered-primary-02-hover-background
|
|
878
|
+
)
|
|
878
879
|
),
|
|
879
880
|
'bordered-neutral': (
|
|
880
881
|
'background': $color-button-bordered-neutral-background,
|
|
881
882
|
'border': $color-button-bordered-neutral-border,
|
|
882
883
|
'font': $color-button-bordered-neutral-font,
|
|
883
884
|
'focus': (
|
|
884
|
-
'border': $color-button-bordered-neutral-focus-border
|
|
885
|
+
'border': $color-button-bordered-neutral-focus-border
|
|
885
886
|
),
|
|
886
887
|
'disabled': (
|
|
887
888
|
'background': $color-button-bordered-neutral-disabled-background,
|
|
888
|
-
'font': $color-button-bordered-neutral-disabled-font
|
|
889
|
+
'font': $color-button-bordered-neutral-disabled-font
|
|
889
890
|
),
|
|
890
891
|
'active': (
|
|
891
|
-
'background': $color-button-bordered-neutral-active-background
|
|
892
|
+
'background': $color-button-bordered-neutral-active-background
|
|
892
893
|
),
|
|
893
894
|
'hover': (
|
|
894
|
-
'background': $color-button-bordered-neutral-hover-background
|
|
895
|
-
)
|
|
895
|
+
'background': $color-button-bordered-neutral-hover-background
|
|
896
|
+
)
|
|
896
897
|
),
|
|
897
898
|
'bordered-danger': (
|
|
898
899
|
'background': $color-button-bordered-danger-background,
|
|
899
900
|
'border': $color-button-bordered-danger-border,
|
|
900
901
|
'font': $color-button-bordered-danger-font,
|
|
901
902
|
'focus': (
|
|
902
|
-
'border': $color-button-bordered-danger-focus-border
|
|
903
|
+
'border': $color-button-bordered-danger-focus-border
|
|
903
904
|
),
|
|
904
905
|
'disabled': (
|
|
905
906
|
'background': $color-button-bordered-danger-disabled-background,
|
|
906
|
-
'font': $color-button-bordered-danger-disabled-font
|
|
907
|
+
'font': $color-button-bordered-danger-disabled-font
|
|
907
908
|
),
|
|
908
909
|
'active': (
|
|
909
910
|
'background': $color-button-bordered-danger-active-background,
|
|
910
|
-
'font': $color-button-bordered-danger-active-font
|
|
911
|
+
'font': $color-button-bordered-danger-active-font
|
|
911
912
|
),
|
|
912
913
|
'hover': (
|
|
913
914
|
'background': $color-button-bordered-danger-hover-background,
|
|
914
|
-
'font': $color-button-bordered-danger-hover-font
|
|
915
|
-
)
|
|
916
|
-
)
|
|
915
|
+
'font': $color-button-bordered-danger-hover-font
|
|
916
|
+
)
|
|
917
|
+
)
|
|
917
918
|
),
|
|
918
919
|
'card': (
|
|
919
920
|
'bordered': (
|
|
920
921
|
'background': $color-card-bordered-background,
|
|
921
|
-
'border': $color-card-bordered-border
|
|
922
|
-
)
|
|
922
|
+
'border': $color-card-bordered-border
|
|
923
|
+
)
|
|
923
924
|
),
|
|
924
925
|
'datatable': (
|
|
925
926
|
'filters': (
|
|
926
|
-
'border': $color-datatable-filters-border
|
|
927
|
+
'border': $color-datatable-filters-border
|
|
927
928
|
),
|
|
928
929
|
'container': (
|
|
929
|
-
'background': $color-datatable-container-background
|
|
930
|
+
'background': $color-datatable-container-background
|
|
930
931
|
),
|
|
931
932
|
'thead': (
|
|
932
|
-
'font': $color-datatable-thead-font
|
|
933
|
+
'font': $color-datatable-thead-font
|
|
933
934
|
),
|
|
934
935
|
'sort-arrow': (
|
|
935
936
|
'default': $color-datatable-sort-arrow-default,
|
|
936
|
-
'active': $color-datatable-sort-arrow-active
|
|
937
|
+
'active': $color-datatable-sort-arrow-active
|
|
937
938
|
),
|
|
938
939
|
'cell': (
|
|
939
940
|
'font': $color-datatable-cell-font,
|
|
940
941
|
'background': (
|
|
941
942
|
'hover': $color-datatable-cell-background-hover,
|
|
942
|
-
'selected': $color-datatable-cell-background-selected
|
|
943
|
-
)
|
|
943
|
+
'selected': $color-datatable-cell-background-selected
|
|
944
|
+
)
|
|
944
945
|
),
|
|
945
946
|
'subtable': (
|
|
946
947
|
'background': $color-datatable-subtable-background,
|
|
947
948
|
'border': $color-datatable-subtable-border,
|
|
948
|
-
'font': $color-datatable-subtable-font
|
|
949
|
+
'font': $color-datatable-subtable-font
|
|
949
950
|
),
|
|
950
951
|
'icon': $color-datatable-icon,
|
|
951
952
|
'empty': (
|
|
952
953
|
'background': $color-datatable-empty-background,
|
|
953
|
-
'color': $color-datatable-empty-color
|
|
954
|
-
)
|
|
954
|
+
'color': $color-datatable-empty-color
|
|
955
|
+
)
|
|
955
956
|
),
|
|
956
957
|
'dialog': (
|
|
957
958
|
'background': $color-dialog-background,
|
|
958
959
|
'icon': $color-dialog-icon,
|
|
959
960
|
'close': $color-dialog-close,
|
|
960
961
|
'footer': (
|
|
961
|
-
'shadow': $color-dialog-footer-shadow
|
|
962
|
-
)
|
|
962
|
+
'shadow': $color-dialog-footer-shadow
|
|
963
|
+
)
|
|
963
964
|
),
|
|
964
965
|
'divider': (
|
|
965
966
|
'lightest': $color-divider-lightest,
|
|
966
967
|
'light': $color-divider-light,
|
|
967
968
|
'default': $color-divider-default,
|
|
968
|
-
'dark': $color-divider-dark
|
|
969
|
+
'dark': $color-divider-dark
|
|
969
970
|
),
|
|
970
971
|
'fields': (
|
|
971
972
|
'error': $color-fields-error,
|
|
972
973
|
'label': $color-fields-label,
|
|
973
974
|
'requirement': $color-fields-requirement,
|
|
974
|
-
'help': $color-fields-help
|
|
975
|
+
'help': $color-fields-help
|
|
975
976
|
),
|
|
976
977
|
'fileuploader': (
|
|
977
978
|
'font': $color-fileuploader-font,
|
|
978
979
|
'files': (
|
|
979
980
|
'list': $color-fileuploader-files-list,
|
|
980
|
-
'delete': $color-fileuploader-files-delete
|
|
981
|
+
'delete': $color-fileuploader-files-delete
|
|
981
982
|
),
|
|
982
983
|
'valid': $color-fileuploader-valid,
|
|
983
|
-
'alert': $color-fileuploader-alert
|
|
984
|
+
'alert': $color-fileuploader-alert
|
|
984
985
|
),
|
|
985
986
|
'flag': (
|
|
986
987
|
'solid': (
|
|
987
988
|
'background': $color-flag-solid-background,
|
|
988
989
|
'border': $color-flag-solid-border,
|
|
989
|
-
'text': $color-flag-solid-text
|
|
990
|
+
'text': $color-flag-solid-text
|
|
990
991
|
),
|
|
991
992
|
'solid-primary-02': (
|
|
992
993
|
'background': $color-flag-solid-primary-02-background,
|
|
993
994
|
'border': $color-flag-solid-primary-02-border,
|
|
994
|
-
'text': $color-flag-solid-primary-02-text
|
|
995
|
+
'text': $color-flag-solid-primary-02-text
|
|
995
996
|
),
|
|
996
997
|
'solid-dark': (
|
|
997
998
|
'background': $color-flag-solid-dark-background,
|
|
998
999
|
'border': $color-flag-solid-dark-border,
|
|
999
|
-
'text': $color-flag-solid-dark-text
|
|
1000
|
+
'text': $color-flag-solid-dark-text
|
|
1000
1001
|
),
|
|
1001
1002
|
'solid-light': (
|
|
1002
1003
|
'background': $color-flag-solid-light-background,
|
|
1003
1004
|
'border': $color-flag-solid-light-border,
|
|
1004
|
-
'text': $color-flag-solid-light-text
|
|
1005
|
+
'text': $color-flag-solid-light-text
|
|
1005
1006
|
),
|
|
1006
1007
|
'solid-danger': (
|
|
1007
1008
|
'background': $color-flag-solid-danger-background,
|
|
1008
1009
|
'border': $color-flag-solid-danger-border,
|
|
1009
|
-
'text': $color-flag-solid-danger-text
|
|
1010
|
+
'text': $color-flag-solid-danger-text
|
|
1010
1011
|
),
|
|
1011
1012
|
'bordered': (
|
|
1012
1013
|
'background': $color-flag-bordered-background,
|
|
1013
1014
|
'border': $color-flag-bordered-border,
|
|
1014
|
-
'text': $color-flag-bordered-text
|
|
1015
|
+
'text': $color-flag-bordered-text
|
|
1015
1016
|
),
|
|
1016
1017
|
'bordered-primary-02': (
|
|
1017
1018
|
'background': $color-flag-bordered-primary-02-background,
|
|
1018
1019
|
'border': $color-flag-bordered-primary-02-border,
|
|
1019
|
-
'text': $color-flag-bordered-primary-02-text
|
|
1020
|
+
'text': $color-flag-bordered-primary-02-text
|
|
1020
1021
|
),
|
|
1021
1022
|
'bordered-dark': (
|
|
1022
1023
|
'background': $color-flag-bordered-dark-background,
|
|
1023
1024
|
'border': $color-flag-bordered-dark-border,
|
|
1024
|
-
'text': $color-flag-bordered-dark-text
|
|
1025
|
+
'text': $color-flag-bordered-dark-text
|
|
1025
1026
|
),
|
|
1026
1027
|
'bordered-light': (
|
|
1027
1028
|
'background': $color-flag-bordered-light-background,
|
|
1028
1029
|
'border': $color-flag-bordered-light-border,
|
|
1029
|
-
'text': $color-flag-bordered-light-text
|
|
1030
|
+
'text': $color-flag-bordered-light-text
|
|
1030
1031
|
),
|
|
1031
1032
|
'bordered-danger': (
|
|
1032
1033
|
'background': $color-flag-bordered-danger-background,
|
|
1033
1034
|
'border': $color-flag-bordered-danger-border,
|
|
1034
|
-
'text': $color-flag-bordered-danger-text
|
|
1035
|
-
)
|
|
1035
|
+
'text': $color-flag-bordered-danger-text
|
|
1036
|
+
)
|
|
1036
1037
|
),
|
|
1037
1038
|
'focus': (
|
|
1038
1039
|
'gap': $color-focus-gap,
|
|
1039
|
-
'border': $color-focus-border
|
|
1040
|
+
'border': $color-focus-border
|
|
1040
1041
|
),
|
|
1041
1042
|
'font': (
|
|
1042
1043
|
'primary-01': $color-font-primary-01,
|
|
@@ -1049,18 +1050,18 @@ $tokens: (
|
|
|
1049
1050
|
'info': $color-font-info,
|
|
1050
1051
|
'success': $color-font-success,
|
|
1051
1052
|
'warning': $color-font-warning,
|
|
1052
|
-
'danger': $color-font-danger
|
|
1053
|
+
'danger': $color-font-danger
|
|
1053
1054
|
),
|
|
1054
1055
|
'heading': (
|
|
1055
1056
|
'underline': (
|
|
1056
1057
|
'default': $color-heading-underline-default,
|
|
1057
|
-
'lightest': $color-heading-underline-lightest
|
|
1058
|
-
)
|
|
1058
|
+
'lightest': $color-heading-underline-lightest
|
|
1059
|
+
)
|
|
1059
1060
|
),
|
|
1060
1061
|
'hero': (
|
|
1061
1062
|
'cover': (
|
|
1062
|
-
'background': $color-hero-cover-background
|
|
1063
|
-
)
|
|
1063
|
+
'background': $color-hero-cover-background
|
|
1064
|
+
)
|
|
1064
1065
|
),
|
|
1065
1066
|
'input': (
|
|
1066
1067
|
'text': $color-input-text,
|
|
@@ -1071,34 +1072,34 @@ $tokens: (
|
|
|
1071
1072
|
'background': $color-input-disabled-background,
|
|
1072
1073
|
'border': $color-input-disabled-border,
|
|
1073
1074
|
'icon': $color-input-disabled-icon,
|
|
1074
|
-
'label': $color-input-disabled-label
|
|
1075
|
+
'label': $color-input-disabled-label
|
|
1075
1076
|
),
|
|
1076
1077
|
'hover': (
|
|
1077
|
-
'border': $color-input-hover-border
|
|
1078
|
+
'border': $color-input-hover-border
|
|
1078
1079
|
),
|
|
1079
1080
|
'focus': (
|
|
1080
|
-
'border': $color-input-focus-border
|
|
1081
|
+
'border': $color-input-focus-border
|
|
1081
1082
|
),
|
|
1082
1083
|
'valid': (
|
|
1083
1084
|
'border': $color-input-valid-border,
|
|
1084
1085
|
'hover': (
|
|
1085
|
-
'border': $color-input-valid-hover-border
|
|
1086
|
-
)
|
|
1086
|
+
'border': $color-input-valid-hover-border
|
|
1087
|
+
)
|
|
1087
1088
|
),
|
|
1088
1089
|
'invalid': (
|
|
1089
1090
|
'border': $color-input-invalid-border,
|
|
1090
1091
|
'hover': (
|
|
1091
|
-
'border': $color-input-invalid-hover-border
|
|
1092
|
-
)
|
|
1092
|
+
'border': $color-input-invalid-hover-border
|
|
1093
|
+
)
|
|
1093
1094
|
),
|
|
1094
1095
|
'checked': (
|
|
1095
1096
|
'border': $color-input-checked-border,
|
|
1096
1097
|
'background': $color-input-checked-background,
|
|
1097
1098
|
'icon': $color-input-checked-icon,
|
|
1098
1099
|
'hover': (
|
|
1099
|
-
'border': $color-input-checked-hover-border
|
|
1100
|
-
)
|
|
1101
|
-
)
|
|
1100
|
+
'border': $color-input-checked-hover-border
|
|
1101
|
+
)
|
|
1102
|
+
)
|
|
1102
1103
|
),
|
|
1103
1104
|
'link': (
|
|
1104
1105
|
'dark': (
|
|
@@ -1106,36 +1107,36 @@ $tokens: (
|
|
|
1106
1107
|
'visited': $color-link-dark-visited,
|
|
1107
1108
|
'active': $color-link-dark-active,
|
|
1108
1109
|
'disabled': $color-link-dark-disabled,
|
|
1109
|
-
'hover': $color-link-dark-hover
|
|
1110
|
+
'hover': $color-link-dark-hover
|
|
1110
1111
|
),
|
|
1111
1112
|
'light': (
|
|
1112
1113
|
'base': $color-link-light-base,
|
|
1113
1114
|
'visited': $color-link-light-visited,
|
|
1114
1115
|
'active': $color-link-light-active,
|
|
1115
1116
|
'disabled': $color-link-light-disabled,
|
|
1116
|
-
'hover': $color-link-light-hover
|
|
1117
|
+
'hover': $color-link-light-hover
|
|
1117
1118
|
),
|
|
1118
1119
|
'primary': (
|
|
1119
1120
|
'base': $color-link-primary-base,
|
|
1120
1121
|
'visited': $color-link-primary-visited,
|
|
1121
1122
|
'active': $color-link-primary-active,
|
|
1122
1123
|
'disabled': $color-link-primary-disabled,
|
|
1123
|
-
'hover': $color-link-primary-hover
|
|
1124
|
+
'hover': $color-link-primary-hover
|
|
1124
1125
|
),
|
|
1125
1126
|
'primary-02': (
|
|
1126
1127
|
'base': $color-link-primary-02-base,
|
|
1127
1128
|
'visited': $color-link-primary-02-visited,
|
|
1128
1129
|
'active': $color-link-primary-02-active,
|
|
1129
1130
|
'disabled': $color-link-primary-02-disabled,
|
|
1130
|
-
'hover': $color-link-primary-02-hover
|
|
1131
|
+
'hover': $color-link-primary-02-hover
|
|
1131
1132
|
),
|
|
1132
1133
|
'danger': (
|
|
1133
1134
|
'base': $color-link-danger-base,
|
|
1134
1135
|
'visited': $color-link-danger-visited,
|
|
1135
1136
|
'active': $color-link-danger-active,
|
|
1136
1137
|
'disabled': $color-link-danger-disabled,
|
|
1137
|
-
'hover': $color-link-danger-hover
|
|
1138
|
-
)
|
|
1138
|
+
'hover': $color-link-danger-hover
|
|
1139
|
+
)
|
|
1139
1140
|
),
|
|
1140
1141
|
'listbox': (
|
|
1141
1142
|
'background': $color-listbox-background,
|
|
@@ -1144,223 +1145,223 @@ $tokens: (
|
|
|
1144
1145
|
'border': $color-listbox-tile-border,
|
|
1145
1146
|
'shadow': $color-listbox-tile-shadow,
|
|
1146
1147
|
'hover': (
|
|
1147
|
-
'background': $color-listbox-tile-hover-background
|
|
1148
|
-
)
|
|
1148
|
+
'background': $color-listbox-tile-hover-background
|
|
1149
|
+
)
|
|
1149
1150
|
),
|
|
1150
1151
|
'disabled': (
|
|
1151
|
-
'background': $color-listbox-disabled-background
|
|
1152
|
-
)
|
|
1152
|
+
'background': $color-listbox-disabled-background
|
|
1153
|
+
)
|
|
1153
1154
|
),
|
|
1154
1155
|
'menu': (
|
|
1155
1156
|
'is-active': $color-menu-is-active,
|
|
1156
1157
|
'hover': $color-menu-hover,
|
|
1157
|
-
'active': $color-menu-active
|
|
1158
|
+
'active': $color-menu-active
|
|
1158
1159
|
),
|
|
1159
1160
|
'notification': (
|
|
1160
1161
|
'font': $color-notification-font,
|
|
1161
1162
|
'information': (
|
|
1162
1163
|
'background': $color-notification-information-background,
|
|
1163
1164
|
'border': $color-notification-information-border,
|
|
1164
|
-
'icon': $color-notification-information-icon
|
|
1165
|
+
'icon': $color-notification-information-icon
|
|
1165
1166
|
),
|
|
1166
1167
|
'success': (
|
|
1167
1168
|
'background': $color-notification-success-background,
|
|
1168
1169
|
'border': $color-notification-success-border,
|
|
1169
|
-
'icon': $color-notification-success-icon
|
|
1170
|
+
'icon': $color-notification-success-icon
|
|
1170
1171
|
),
|
|
1171
1172
|
'warning': (
|
|
1172
1173
|
'background': $color-notification-warning-background,
|
|
1173
1174
|
'border': $color-notification-warning-border,
|
|
1174
|
-
'icon': $color-notification-warning-icon
|
|
1175
|
+
'icon': $color-notification-warning-icon
|
|
1175
1176
|
),
|
|
1176
1177
|
'danger': (
|
|
1177
1178
|
'background': $color-notification-danger-background,
|
|
1178
1179
|
'border': $color-notification-danger-border,
|
|
1179
|
-
'icon': $color-notification-danger-icon
|
|
1180
|
-
)
|
|
1180
|
+
'icon': $color-notification-danger-icon
|
|
1181
|
+
)
|
|
1181
1182
|
),
|
|
1182
1183
|
'option-button': (
|
|
1183
1184
|
'label': (
|
|
1184
|
-
'shadow': $color-option-button-label-shadow
|
|
1185
|
+
'shadow': $color-option-button-label-shadow
|
|
1185
1186
|
),
|
|
1186
1187
|
'hover': (
|
|
1187
1188
|
'label': (
|
|
1188
|
-
'shadow': $color-option-button-hover-label-shadow
|
|
1189
|
-
)
|
|
1189
|
+
'shadow': $color-option-button-hover-label-shadow
|
|
1190
|
+
)
|
|
1190
1191
|
),
|
|
1191
1192
|
'checked': (
|
|
1192
1193
|
'label': (
|
|
1193
1194
|
'border': $color-option-button-checked-label-border,
|
|
1194
|
-
'shadow': $color-option-button-checked-label-shadow
|
|
1195
|
-
)
|
|
1195
|
+
'shadow': $color-option-button-checked-label-shadow
|
|
1196
|
+
)
|
|
1196
1197
|
),
|
|
1197
1198
|
'disabled': (
|
|
1198
1199
|
'label': (
|
|
1199
|
-
'background': $color-option-button-disabled-label-background
|
|
1200
|
-
)
|
|
1201
|
-
)
|
|
1200
|
+
'background': $color-option-button-disabled-label-background
|
|
1201
|
+
)
|
|
1202
|
+
)
|
|
1202
1203
|
),
|
|
1203
1204
|
'option-card': (
|
|
1204
1205
|
'label': (
|
|
1205
|
-
'shadow': $color-option-card-label-shadow
|
|
1206
|
+
'shadow': $color-option-card-label-shadow
|
|
1206
1207
|
),
|
|
1207
1208
|
'hover': (
|
|
1208
1209
|
'label': (
|
|
1209
|
-
'shadow': $color-option-card-hover-label-shadow
|
|
1210
|
-
)
|
|
1210
|
+
'shadow': $color-option-card-hover-label-shadow
|
|
1211
|
+
)
|
|
1211
1212
|
),
|
|
1212
1213
|
'checked': (
|
|
1213
1214
|
'label': (
|
|
1214
1215
|
'border': $color-option-card-checked-label-border,
|
|
1215
|
-
'shadow': $color-option-card-checked-label-shadow
|
|
1216
|
-
)
|
|
1216
|
+
'shadow': $color-option-card-checked-label-shadow
|
|
1217
|
+
)
|
|
1217
1218
|
),
|
|
1218
1219
|
'disabled': (
|
|
1219
1220
|
'content': $color-option-card-disabled-content,
|
|
1220
|
-
'label': $color-option-card-disabled-label
|
|
1221
|
-
)
|
|
1221
|
+
'label': $color-option-card-disabled-label
|
|
1222
|
+
)
|
|
1222
1223
|
),
|
|
1223
1224
|
'overlay': (
|
|
1224
1225
|
'background': $color-overlay-background,
|
|
1225
1226
|
'loader': (
|
|
1226
|
-
'background': $color-overlay-loader-background
|
|
1227
|
-
)
|
|
1227
|
+
'background': $color-overlay-loader-background
|
|
1228
|
+
)
|
|
1228
1229
|
),
|
|
1229
1230
|
'password-input': (
|
|
1230
1231
|
'button': (
|
|
1231
1232
|
'hover': (
|
|
1232
|
-
'background': $color-password-input-button-hover-background
|
|
1233
|
-
)
|
|
1234
|
-
)
|
|
1233
|
+
'background': $color-password-input-button-hover-background
|
|
1234
|
+
)
|
|
1235
|
+
)
|
|
1235
1236
|
),
|
|
1236
1237
|
'phone-number': (
|
|
1237
1238
|
'button': (
|
|
1238
|
-
'border': $color-phone-number-button-border
|
|
1239
|
+
'border': $color-phone-number-button-border
|
|
1239
1240
|
),
|
|
1240
1241
|
'list': (
|
|
1241
|
-
'background': $color-phone-number-list-background
|
|
1242
|
+
'background': $color-phone-number-list-background
|
|
1242
1243
|
),
|
|
1243
1244
|
'item': (
|
|
1244
1245
|
'border': $color-phone-number-item-border,
|
|
1245
1246
|
'focus': (
|
|
1246
|
-
'background': $color-phone-number-item-focus-background
|
|
1247
|
-
)
|
|
1248
|
-
)
|
|
1247
|
+
'background': $color-phone-number-item-focus-background
|
|
1248
|
+
)
|
|
1249
|
+
)
|
|
1249
1250
|
),
|
|
1250
1251
|
'progress': (
|
|
1251
1252
|
'background': $color-progress-background,
|
|
1252
1253
|
'indicator': $color-progress-indicator,
|
|
1253
1254
|
'percentage': (
|
|
1254
1255
|
'default': $color-progress-percentage-default,
|
|
1255
|
-
'half': $color-progress-percentage-half
|
|
1256
|
-
)
|
|
1256
|
+
'half': $color-progress-percentage-half
|
|
1257
|
+
)
|
|
1257
1258
|
),
|
|
1258
1259
|
'segmented-control': (
|
|
1259
1260
|
'is-active': $color-segmented-control-is-active,
|
|
1260
1261
|
'hover': $color-segmented-control-hover,
|
|
1261
1262
|
'active': $color-segmented-control-active,
|
|
1262
|
-
'background': $color-segmented-control-background
|
|
1263
|
+
'background': $color-segmented-control-background
|
|
1263
1264
|
),
|
|
1264
1265
|
'sidebar': (
|
|
1265
1266
|
'background': $color-sidebar-background,
|
|
1266
1267
|
'feature': (
|
|
1267
1268
|
'background': $color-sidebar-feature-background,
|
|
1268
1269
|
'hover': (
|
|
1269
|
-
'background': $color-sidebar-feature-hover-background
|
|
1270
|
+
'background': $color-sidebar-feature-hover-background
|
|
1270
1271
|
),
|
|
1271
1272
|
'selected': (
|
|
1272
|
-
'background': $color-sidebar-feature-selected-background
|
|
1273
|
+
'background': $color-sidebar-feature-selected-background
|
|
1273
1274
|
),
|
|
1274
1275
|
'disabled': (
|
|
1275
|
-
'background': $color-sidebar-feature-disabled-background
|
|
1276
|
-
)
|
|
1276
|
+
'background': $color-sidebar-feature-disabled-background
|
|
1277
|
+
)
|
|
1277
1278
|
),
|
|
1278
1279
|
'user': (
|
|
1279
|
-
'background': $color-sidebar-user-background
|
|
1280
|
+
'background': $color-sidebar-user-background
|
|
1280
1281
|
),
|
|
1281
1282
|
'divider': (
|
|
1282
|
-
'background': $color-sidebar-divider-background
|
|
1283
|
+
'background': $color-sidebar-divider-background
|
|
1283
1284
|
),
|
|
1284
1285
|
'icon': $color-sidebar-icon,
|
|
1285
1286
|
'text': (
|
|
1286
1287
|
'background': $color-sidebar-text-background,
|
|
1287
|
-
'color': $color-sidebar-text-color
|
|
1288
|
+
'color': $color-sidebar-text-color
|
|
1288
1289
|
),
|
|
1289
1290
|
'scroll': (
|
|
1290
1291
|
'background': $color-sidebar-scroll-background,
|
|
1291
|
-
'color': $color-sidebar-scroll-color
|
|
1292
|
-
)
|
|
1292
|
+
'color': $color-sidebar-scroll-color
|
|
1293
|
+
)
|
|
1293
1294
|
),
|
|
1294
1295
|
'star': (
|
|
1295
1296
|
'empty': $color-star-empty,
|
|
1296
1297
|
'focus': $color-star-focus,
|
|
1297
1298
|
'full': $color-star-full,
|
|
1298
|
-
'hover': $color-star-hover
|
|
1299
|
+
'hover': $color-star-hover
|
|
1299
1300
|
),
|
|
1300
1301
|
'stepper': (
|
|
1301
1302
|
'item': (
|
|
1302
1303
|
'background': $color-stepper-item-background,
|
|
1303
1304
|
'current': (
|
|
1304
|
-
'background': $color-stepper-item-current-background
|
|
1305
|
-
)
|
|
1305
|
+
'background': $color-stepper-item-current-background
|
|
1306
|
+
)
|
|
1306
1307
|
),
|
|
1307
1308
|
'link': (
|
|
1308
1309
|
'hover': (
|
|
1309
|
-
'text': $color-stepper-link-hover-text
|
|
1310
|
-
)
|
|
1310
|
+
'text': $color-stepper-link-hover-text
|
|
1311
|
+
)
|
|
1311
1312
|
),
|
|
1312
1313
|
'indicator': (
|
|
1313
1314
|
'background': $color-stepper-indicator-background,
|
|
1314
1315
|
'border': $color-stepper-indicator-border,
|
|
1315
1316
|
'current': (
|
|
1316
1317
|
'background': $color-stepper-indicator-current-background,
|
|
1317
|
-
'border': $color-stepper-indicator-current-border
|
|
1318
|
-
)
|
|
1318
|
+
'border': $color-stepper-indicator-current-border
|
|
1319
|
+
)
|
|
1319
1320
|
),
|
|
1320
1321
|
'icon': $color-stepper-icon,
|
|
1321
|
-
'title': $color-stepper-title
|
|
1322
|
+
'title': $color-stepper-title
|
|
1322
1323
|
),
|
|
1323
1324
|
'tabs': (
|
|
1324
1325
|
'background': $color-tabs-background,
|
|
1325
1326
|
'shadow': $color-tabs-shadow,
|
|
1326
1327
|
'default': $color-tabs-default,
|
|
1327
1328
|
'element': (
|
|
1328
|
-
'background': $color-tabs-element-background
|
|
1329
|
+
'background': $color-tabs-element-background
|
|
1329
1330
|
),
|
|
1330
1331
|
'hover': (
|
|
1331
|
-
'background': $color-tabs-hover-background
|
|
1332
|
+
'background': $color-tabs-hover-background
|
|
1332
1333
|
),
|
|
1333
1334
|
'disabled': (
|
|
1334
|
-
'background': $color-tabs-disabled-background
|
|
1335
|
+
'background': $color-tabs-disabled-background
|
|
1335
1336
|
),
|
|
1336
1337
|
'active': (
|
|
1337
1338
|
'background': $color-tabs-active-background,
|
|
1338
|
-
'text': $color-tabs-active-text
|
|
1339
|
+
'text': $color-tabs-active-text
|
|
1339
1340
|
),
|
|
1340
1341
|
'selected': (
|
|
1341
1342
|
'border': $color-tabs-selected-border,
|
|
1342
1343
|
'text': $color-tabs-selected-text,
|
|
1343
1344
|
'active': (
|
|
1344
|
-
'text': $color-tabs-selected-active-text
|
|
1345
|
+
'text': $color-tabs-selected-active-text
|
|
1345
1346
|
),
|
|
1346
1347
|
'hover': (
|
|
1347
|
-
'text': $color-tabs-selected-hover-text
|
|
1348
|
-
)
|
|
1348
|
+
'text': $color-tabs-selected-hover-text
|
|
1349
|
+
)
|
|
1349
1350
|
),
|
|
1350
|
-
'active-disabled': $color-tabs-active-disabled
|
|
1351
|
+
'active-disabled': $color-tabs-active-disabled
|
|
1351
1352
|
),
|
|
1352
1353
|
'tag': (
|
|
1353
1354
|
'text': (
|
|
1354
1355
|
'light': (
|
|
1355
1356
|
'background': $color-tag-text-light-background,
|
|
1356
1357
|
'border': $color-tag-text-light-border,
|
|
1357
|
-
'text': $color-tag-text-light-text
|
|
1358
|
+
'text': $color-tag-text-light-text
|
|
1358
1359
|
),
|
|
1359
1360
|
'dark': (
|
|
1360
1361
|
'background': $color-tag-text-dark-background,
|
|
1361
1362
|
'border': $color-tag-text-dark-border,
|
|
1362
|
-
'text': $color-tag-text-dark-text
|
|
1363
|
-
)
|
|
1363
|
+
'text': $color-tag-text-dark-text
|
|
1364
|
+
)
|
|
1364
1365
|
),
|
|
1365
1366
|
'link': (
|
|
1366
1367
|
'light': (
|
|
@@ -1368,23 +1369,23 @@ $tokens: (
|
|
|
1368
1369
|
'border': $color-tag-link-light-border,
|
|
1369
1370
|
'text': $color-tag-link-light-text,
|
|
1370
1371
|
'hover': (
|
|
1371
|
-
'background': $color-tag-link-light-hover-background
|
|
1372
|
+
'background': $color-tag-link-light-hover-background
|
|
1372
1373
|
),
|
|
1373
1374
|
'active': (
|
|
1374
|
-
'background': $color-tag-link-light-active-background
|
|
1375
|
-
)
|
|
1375
|
+
'background': $color-tag-link-light-active-background
|
|
1376
|
+
)
|
|
1376
1377
|
),
|
|
1377
1378
|
'dark': (
|
|
1378
1379
|
'background': $color-tag-link-dark-background,
|
|
1379
1380
|
'border': $color-tag-link-dark-border,
|
|
1380
1381
|
'text': $color-tag-link-dark-text,
|
|
1381
1382
|
'hover': (
|
|
1382
|
-
'background': $color-tag-link-dark-hover-background
|
|
1383
|
+
'background': $color-tag-link-dark-hover-background
|
|
1383
1384
|
),
|
|
1384
1385
|
'active': (
|
|
1385
|
-
'background': $color-tag-link-dark-active-background
|
|
1386
|
-
)
|
|
1387
|
-
)
|
|
1386
|
+
'background': $color-tag-link-dark-active-background
|
|
1387
|
+
)
|
|
1388
|
+
)
|
|
1388
1389
|
),
|
|
1389
1390
|
'selectable': (
|
|
1390
1391
|
'light': (
|
|
@@ -1392,50 +1393,50 @@ $tokens: (
|
|
|
1392
1393
|
'border': $color-tag-selectable-light-border,
|
|
1393
1394
|
'text': $color-tag-selectable-light-text,
|
|
1394
1395
|
'hover': (
|
|
1395
|
-
'background': $color-tag-selectable-light-hover-background
|
|
1396
|
+
'background': $color-tag-selectable-light-hover-background
|
|
1396
1397
|
),
|
|
1397
1398
|
'active': (
|
|
1398
1399
|
'background': $color-tag-selectable-light-active-background,
|
|
1399
1400
|
'border': $color-tag-selectable-light-active-border,
|
|
1400
|
-
'text': $color-tag-selectable-light-active-text
|
|
1401
|
+
'text': $color-tag-selectable-light-active-text
|
|
1401
1402
|
),
|
|
1402
1403
|
'disabled': (
|
|
1403
1404
|
'background': $color-tag-selectable-light-disabled-background,
|
|
1404
|
-
'text': $color-tag-selectable-light-disabled-text
|
|
1405
|
+
'text': $color-tag-selectable-light-disabled-text
|
|
1405
1406
|
),
|
|
1406
1407
|
'selected': (
|
|
1407
1408
|
'background': $color-tag-selectable-light-selected-background,
|
|
1408
1409
|
'text': $color-tag-selectable-light-selected-text,
|
|
1409
1410
|
'hover': (
|
|
1410
|
-
'background': $color-tag-selectable-light-selected-hover-background
|
|
1411
|
-
)
|
|
1412
|
-
)
|
|
1411
|
+
'background': $color-tag-selectable-light-selected-hover-background
|
|
1412
|
+
)
|
|
1413
|
+
)
|
|
1413
1414
|
),
|
|
1414
1415
|
'dark': (
|
|
1415
1416
|
'background': $color-tag-selectable-dark-background,
|
|
1416
1417
|
'border': $color-tag-selectable-dark-border,
|
|
1417
1418
|
'text': $color-tag-selectable-dark-text,
|
|
1418
1419
|
'hover': (
|
|
1419
|
-
'background': $color-tag-selectable-dark-hover-background
|
|
1420
|
+
'background': $color-tag-selectable-dark-hover-background
|
|
1420
1421
|
),
|
|
1421
1422
|
'active': (
|
|
1422
1423
|
'background': $color-tag-selectable-dark-active-background,
|
|
1423
1424
|
'border': $color-tag-selectable-dark-active-border,
|
|
1424
|
-
'text': $color-tag-selectable-dark-active-text
|
|
1425
|
+
'text': $color-tag-selectable-dark-active-text
|
|
1425
1426
|
),
|
|
1426
1427
|
'selected': (
|
|
1427
1428
|
'background': $color-tag-selectable-dark-selected-background,
|
|
1428
1429
|
'border': $color-tag-selectable-dark-selected-border,
|
|
1429
1430
|
'text': $color-tag-selectable-dark-selected-text,
|
|
1430
1431
|
'hover': (
|
|
1431
|
-
'background': $color-tag-selectable-dark-selected-hover-background
|
|
1432
|
-
)
|
|
1432
|
+
'background': $color-tag-selectable-dark-selected-hover-background
|
|
1433
|
+
)
|
|
1433
1434
|
),
|
|
1434
1435
|
'disabled': (
|
|
1435
1436
|
'background': $color-tag-selectable-dark-disabled-background,
|
|
1436
|
-
'text': $color-tag-selectable-dark-disabled-text
|
|
1437
|
-
)
|
|
1438
|
-
)
|
|
1437
|
+
'text': $color-tag-selectable-dark-disabled-text
|
|
1438
|
+
)
|
|
1439
|
+
)
|
|
1439
1440
|
),
|
|
1440
1441
|
'removable': (
|
|
1441
1442
|
'light': (
|
|
@@ -1443,51 +1444,51 @@ $tokens: (
|
|
|
1443
1444
|
'text': $color-tag-removable-light-text,
|
|
1444
1445
|
'icon': $color-tag-removable-light-icon,
|
|
1445
1446
|
'hover': (
|
|
1446
|
-
'background': $color-tag-removable-light-hover-background
|
|
1447
|
+
'background': $color-tag-removable-light-hover-background
|
|
1447
1448
|
),
|
|
1448
1449
|
'active': (
|
|
1449
|
-
'background': $color-tag-removable-light-active-background
|
|
1450
|
-
)
|
|
1450
|
+
'background': $color-tag-removable-light-active-background
|
|
1451
|
+
)
|
|
1451
1452
|
),
|
|
1452
1453
|
'dark': (
|
|
1453
1454
|
'background': $color-tag-removable-dark-background,
|
|
1454
1455
|
'text': $color-tag-removable-dark-text,
|
|
1455
1456
|
'icon': $color-tag-removable-dark-icon,
|
|
1456
1457
|
'hover': (
|
|
1457
|
-
'background': $color-tag-removable-dark-hover-background
|
|
1458
|
+
'background': $color-tag-removable-dark-hover-background
|
|
1458
1459
|
),
|
|
1459
1460
|
'active': (
|
|
1460
|
-
'background': $color-tag-removable-dark-active-background
|
|
1461
|
-
)
|
|
1462
|
-
)
|
|
1463
|
-
)
|
|
1461
|
+
'background': $color-tag-removable-dark-active-background
|
|
1462
|
+
)
|
|
1463
|
+
)
|
|
1464
|
+
)
|
|
1464
1465
|
),
|
|
1465
1466
|
'toggle': (
|
|
1466
1467
|
'label': $color-toggle-label,
|
|
1467
1468
|
'off': (
|
|
1468
1469
|
'background': $color-toggle-off-background,
|
|
1469
|
-
'circle': $color-toggle-off-circle
|
|
1470
|
+
'circle': $color-toggle-off-circle
|
|
1470
1471
|
),
|
|
1471
1472
|
'on': (
|
|
1472
1473
|
'background': $color-toggle-on-background,
|
|
1473
|
-
'circle': $color-toggle-on-circle
|
|
1474
|
+
'circle': $color-toggle-on-circle
|
|
1474
1475
|
),
|
|
1475
1476
|
'hover': (
|
|
1476
|
-
'circle': $color-toggle-hover-circle
|
|
1477
|
+
'circle': $color-toggle-hover-circle
|
|
1477
1478
|
),
|
|
1478
1479
|
'disabled': (
|
|
1479
1480
|
'background': $color-toggle-disabled-background,
|
|
1480
1481
|
'circle': $color-toggle-disabled-circle,
|
|
1481
|
-
'label': $color-toggle-disabled-label
|
|
1482
|
+
'label': $color-toggle-disabled-label
|
|
1482
1483
|
),
|
|
1483
1484
|
'disabled-checked': (
|
|
1484
1485
|
'background': $color-toggle-disabled-checked-background,
|
|
1485
|
-
'circle': $color-toggle-disabled-checked-circle
|
|
1486
|
-
)
|
|
1486
|
+
'circle': $color-toggle-disabled-checked-circle
|
|
1487
|
+
)
|
|
1487
1488
|
),
|
|
1488
1489
|
'tooltip': (
|
|
1489
1490
|
'background': $color-tooltip-background,
|
|
1490
|
-
'border': $color-tooltip-border
|
|
1491
|
+
'border': $color-tooltip-border
|
|
1491
1492
|
),
|
|
1492
1493
|
'secondary-sandgrey': (
|
|
1493
1494
|
'100': $color-secondary-sandgrey-100,
|
|
@@ -1498,14 +1499,14 @@ $tokens: (
|
|
|
1498
1499
|
'600': $color-secondary-sandgrey-600,
|
|
1499
1500
|
'700': $color-secondary-sandgrey-700,
|
|
1500
1501
|
'800': $color-secondary-sandgrey-800,
|
|
1501
|
-
'900': $color-secondary-sandgrey-900
|
|
1502
|
-
)
|
|
1502
|
+
'900': $color-secondary-sandgrey-900
|
|
1503
|
+
)
|
|
1503
1504
|
),
|
|
1504
1505
|
'preset': $preset,
|
|
1505
1506
|
'radius': (
|
|
1506
1507
|
's': $radius-s,
|
|
1507
1508
|
'm': $radius-m,
|
|
1508
|
-
'l': $radius-l
|
|
1509
|
+
'l': $radius-l
|
|
1509
1510
|
),
|
|
1510
1511
|
'shadow': (
|
|
1511
1512
|
's': (
|
|
@@ -1513,22 +1514,22 @@ $tokens: (
|
|
|
1513
1514
|
'y': $shadow-s-y,
|
|
1514
1515
|
'blur': $shadow-s-blur,
|
|
1515
1516
|
'spread': $shadow-s-spread,
|
|
1516
|
-
'opacity': $shadow-s-opacity
|
|
1517
|
+
'opacity': $shadow-s-opacity
|
|
1517
1518
|
),
|
|
1518
1519
|
'm': (
|
|
1519
1520
|
'x': $shadow-m-x,
|
|
1520
1521
|
'y': $shadow-m-y,
|
|
1521
1522
|
'blur': $shadow-m-blur,
|
|
1522
1523
|
'spread': $shadow-m-spread,
|
|
1523
|
-
'opacity': $shadow-m-opacity
|
|
1524
|
+
'opacity': $shadow-m-opacity
|
|
1524
1525
|
),
|
|
1525
1526
|
'l': (
|
|
1526
1527
|
'x': $shadow-l-x,
|
|
1527
1528
|
'y': $shadow-l-y,
|
|
1528
1529
|
'blur': $shadow-l-blur,
|
|
1529
1530
|
'spread': $shadow-l-spread,
|
|
1530
|
-
'opacity': $shadow-l-opacity
|
|
1531
|
-
)
|
|
1531
|
+
'opacity': $shadow-l-opacity
|
|
1532
|
+
)
|
|
1532
1533
|
),
|
|
1533
1534
|
'magic-unit': $magic-unit,
|
|
1534
1535
|
'local-rem-value': $local-rem-value,
|
|
@@ -1545,88 +1546,88 @@ $tokens: (
|
|
|
1545
1546
|
'06': $size-font-06,
|
|
1546
1547
|
'07': $size-font-07,
|
|
1547
1548
|
'08': $size-font-08,
|
|
1548
|
-
'09': $size-font-09
|
|
1549
|
+
'09': $size-font-09
|
|
1549
1550
|
),
|
|
1550
1551
|
'line': (
|
|
1551
1552
|
'10': (
|
|
1552
1553
|
'xs': $size-line-10-xs,
|
|
1553
1554
|
's': $size-line-10-s,
|
|
1554
1555
|
'm': $size-line-10-m,
|
|
1555
|
-
'l': $size-line-10-l
|
|
1556
|
+
'l': $size-line-10-l
|
|
1556
1557
|
),
|
|
1557
1558
|
'11': (
|
|
1558
1559
|
'xs': $size-line-11-xs,
|
|
1559
1560
|
's': $size-line-11-s,
|
|
1560
1561
|
'm': $size-line-11-m,
|
|
1561
|
-
'l': $size-line-11-l
|
|
1562
|
+
'l': $size-line-11-l
|
|
1562
1563
|
),
|
|
1563
1564
|
'12': (
|
|
1564
1565
|
'xs': $size-line-12-xs,
|
|
1565
1566
|
's': $size-line-12-s,
|
|
1566
1567
|
'm': $size-line-12-m,
|
|
1567
|
-
'l': $size-line-12-l
|
|
1568
|
+
'l': $size-line-12-l
|
|
1568
1569
|
),
|
|
1569
1570
|
'01': (
|
|
1570
1571
|
'xs': $size-line-01-xs,
|
|
1571
1572
|
's': $size-line-01-s,
|
|
1572
1573
|
'm': $size-line-01-m,
|
|
1573
|
-
'l': $size-line-01-l
|
|
1574
|
+
'l': $size-line-01-l
|
|
1574
1575
|
),
|
|
1575
1576
|
'02': (
|
|
1576
1577
|
'xs': $size-line-02-xs,
|
|
1577
1578
|
's': $size-line-02-s,
|
|
1578
1579
|
'm': $size-line-02-m,
|
|
1579
|
-
'l': $size-line-02-l
|
|
1580
|
+
'l': $size-line-02-l
|
|
1580
1581
|
),
|
|
1581
1582
|
'03': (
|
|
1582
1583
|
'xs': $size-line-03-xs,
|
|
1583
1584
|
's': $size-line-03-s,
|
|
1584
1585
|
'm': $size-line-03-m,
|
|
1585
|
-
'l': $size-line-03-l
|
|
1586
|
+
'l': $size-line-03-l
|
|
1586
1587
|
),
|
|
1587
1588
|
'04': (
|
|
1588
1589
|
'xs': $size-line-04-xs,
|
|
1589
1590
|
's': $size-line-04-s,
|
|
1590
1591
|
'm': $size-line-04-m,
|
|
1591
|
-
'l': $size-line-04-l
|
|
1592
|
+
'l': $size-line-04-l
|
|
1592
1593
|
),
|
|
1593
1594
|
'05': (
|
|
1594
1595
|
'xs': $size-line-05-xs,
|
|
1595
1596
|
's': $size-line-05-s,
|
|
1596
1597
|
'm': $size-line-05-m,
|
|
1597
|
-
'l': $size-line-05-l
|
|
1598
|
+
'l': $size-line-05-l
|
|
1598
1599
|
),
|
|
1599
1600
|
'06': (
|
|
1600
1601
|
'xs': $size-line-06-xs,
|
|
1601
1602
|
's': $size-line-06-s,
|
|
1602
1603
|
'm': $size-line-06-m,
|
|
1603
|
-
'l': $size-line-06-l
|
|
1604
|
+
'l': $size-line-06-l
|
|
1604
1605
|
),
|
|
1605
1606
|
'07': (
|
|
1606
1607
|
'xs': $size-line-07-xs,
|
|
1607
1608
|
's': $size-line-07-s,
|
|
1608
1609
|
'm': $size-line-07-m,
|
|
1609
|
-
'l': $size-line-07-l
|
|
1610
|
+
'l': $size-line-07-l
|
|
1610
1611
|
),
|
|
1611
1612
|
'08': (
|
|
1612
1613
|
'xs': $size-line-08-xs,
|
|
1613
1614
|
's': $size-line-08-s,
|
|
1614
1615
|
'm': $size-line-08-m,
|
|
1615
|
-
'l': $size-line-08-l
|
|
1616
|
+
'l': $size-line-08-l
|
|
1616
1617
|
),
|
|
1617
1618
|
'09': (
|
|
1618
1619
|
'xs': $size-line-09-xs,
|
|
1619
1620
|
's': $size-line-09-s,
|
|
1620
1621
|
'm': $size-line-09-m,
|
|
1621
|
-
'l': $size-line-09-l
|
|
1622
|
-
)
|
|
1622
|
+
'l': $size-line-09-l
|
|
1623
|
+
)
|
|
1623
1624
|
),
|
|
1624
1625
|
'gutter': (
|
|
1625
1626
|
'screen': (
|
|
1626
1627
|
's': $size-gutter-screen-s,
|
|
1627
|
-
'm': $size-gutter-screen-m
|
|
1628
|
-
)
|
|
1629
|
-
)
|
|
1628
|
+
'm': $size-gutter-screen-m
|
|
1629
|
+
)
|
|
1630
|
+
)
|
|
1630
1631
|
),
|
|
1631
1632
|
'screen': (
|
|
1632
1633
|
's': $screen-s,
|
|
@@ -1640,6 +1641,6 @@ $tokens: (
|
|
|
1640
1641
|
'xl': $screen-xl,
|
|
1641
1642
|
'xl-medium': $screen-xl-medium,
|
|
1642
1643
|
'xl-large': $screen-xl-large,
|
|
1643
|
-
'xxl': $screen-xxl
|
|
1644
|
-
)
|
|
1644
|
+
'xxl': $screen-xxl
|
|
1645
|
+
)
|
|
1645
1646
|
);
|