@moderneinc/neo-design 2.7.0 → 2.8.0-next.1c6418
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +372 -372
- package/dist/semantic-colors.css +106 -106
- package/dist/semantic-colors.d.ts +178 -178
- package/dist/semantic-colors.js +124 -124
- package/dist/semantic-typography.css +46 -46
- package/dist/semantic-typography.d.ts +58 -58
- package/dist/semantic-typography.js +8 -8
- package/dist/shadows.css +6 -6
- package/dist/shadows.d.ts +62 -62
- package/dist/shadows.js +76 -76
- package/dist/spacing.css +12 -12
- package/dist/spacing.d.ts +24 -24
- package/dist/spacing.js +25 -25
- package/dist/typography.css +24 -24
- package/dist/typography.d.ts +50 -50
- package/dist/typography.js +50 -50
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -529,151 +529,179 @@ declare namespace colors_d {
|
|
|
529
529
|
* @generated
|
|
530
530
|
*/
|
|
531
531
|
|
|
532
|
-
type
|
|
532
|
+
type Icons = {
|
|
533
|
+
hoverBorder: '#dce0ff';
|
|
534
|
+
pressedBackground: '#dce0ff';
|
|
533
535
|
/**
|
|
534
536
|
* @scopes All Fills, Stroke Color
|
|
535
537
|
*/
|
|
536
|
-
|
|
538
|
+
hover: '#1e2ec2';
|
|
537
539
|
/**
|
|
538
540
|
* @scopes All Fills, Stroke Color
|
|
539
541
|
*/
|
|
540
|
-
|
|
542
|
+
hoverBackground: '#f2f3ff';
|
|
541
543
|
/**
|
|
542
544
|
* @scopes All Fills, Stroke Color
|
|
543
545
|
*/
|
|
544
|
-
|
|
545
|
-
};
|
|
546
|
-
|
|
547
|
-
declare const activity: Activity;
|
|
548
|
-
|
|
549
|
-
type Border = {
|
|
546
|
+
disabled: '#d1d5db';
|
|
550
547
|
/**
|
|
551
548
|
* @scopes All Fills, Stroke Color
|
|
552
549
|
*/
|
|
553
|
-
|
|
550
|
+
placeholder: '#9ca3af';
|
|
554
551
|
/**
|
|
555
552
|
* @scopes All Fills, Stroke Color
|
|
556
553
|
*/
|
|
557
|
-
|
|
558
|
-
focus: '#3bcca6';
|
|
559
|
-
};
|
|
560
|
-
|
|
561
|
-
declare const border: Border;
|
|
562
|
-
|
|
563
|
-
type Buttons = {
|
|
554
|
+
pressed: '#131e7a';
|
|
564
555
|
/**
|
|
565
556
|
* @scopes All Fills, Stroke Color
|
|
566
557
|
*/
|
|
567
|
-
|
|
558
|
+
utility: '#9ca3af';
|
|
568
559
|
/**
|
|
569
560
|
* @scopes All Fills, Stroke Color
|
|
570
561
|
*/
|
|
571
|
-
navigationActive: '#ffffff';
|
|
572
|
-
primary: {
|
|
573
|
-
pressed: '#131e7a';
|
|
574
|
-
default: '#2f42ff';
|
|
575
|
-
hover: '#1e2ec2';
|
|
576
|
-
disabled: '#f3f4f6';
|
|
577
|
-
};
|
|
578
|
-
secondary: {
|
|
579
|
-
defaultBorder: '#b6bfff';
|
|
580
|
-
hoverBackground: '#f2f3ff';
|
|
581
|
-
pressedBackground: '#dce0ff';
|
|
582
|
-
disabledBackground: '#f9fafb';
|
|
583
|
-
defaultBackground: '#ffffff';
|
|
584
562
|
default: '#1f2937';
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
pressed: '#131e7a';
|
|
590
|
-
disabled: '#9ca3af';
|
|
591
|
-
};
|
|
592
|
-
navigation: {
|
|
593
|
-
defaultBorder: '#b6bfff';
|
|
594
|
-
hoverBackground: '#f3f4f6';
|
|
595
|
-
pressedBackground: '#e5e7eb';
|
|
596
|
-
activeBorder: '#2f42ff';
|
|
597
|
-
};
|
|
563
|
+
/**
|
|
564
|
+
* @scopes All Fills, Stroke Color
|
|
565
|
+
*/
|
|
566
|
+
active: '#2f42ff';
|
|
598
567
|
};
|
|
599
568
|
|
|
600
|
-
declare const
|
|
569
|
+
declare const icons: Icons;
|
|
601
570
|
|
|
602
|
-
type
|
|
571
|
+
type Surfaces = {
|
|
572
|
+
highlightBackground: 'rgba(38, 55, 230, 0)';
|
|
573
|
+
activeHighlight: 'rgba(182, 191, 255, 0.4)';
|
|
603
574
|
/**
|
|
604
575
|
* @scopes All Fills, Stroke Color
|
|
605
576
|
*/
|
|
606
|
-
|
|
577
|
+
page: '#f4f4f4';
|
|
607
578
|
/**
|
|
608
579
|
* @scopes All Fills, Stroke Color
|
|
609
580
|
*/
|
|
610
|
-
|
|
581
|
+
card: '#ffffff';
|
|
611
582
|
/**
|
|
612
583
|
* @scopes All Fills, Stroke Color
|
|
613
584
|
*/
|
|
614
|
-
|
|
585
|
+
cardHeader: '#f3f4f6';
|
|
615
586
|
/**
|
|
616
587
|
* @scopes All Fills, Stroke Color
|
|
617
588
|
*/
|
|
618
|
-
|
|
589
|
+
tabActive: '#f3f4f6';
|
|
619
590
|
/**
|
|
620
591
|
* @scopes All Fills, Stroke Color
|
|
621
592
|
*/
|
|
622
|
-
|
|
593
|
+
listHover: '#f9fafb';
|
|
623
594
|
/**
|
|
624
595
|
* @scopes All Fills, Stroke Color
|
|
625
596
|
*/
|
|
626
|
-
|
|
597
|
+
tableDisabledRow: '#f3f4f6';
|
|
627
598
|
/**
|
|
628
599
|
* @scopes All Fills, Stroke Color
|
|
629
600
|
*/
|
|
630
|
-
|
|
601
|
+
tableBackground: '#ffffff';
|
|
631
602
|
/**
|
|
632
603
|
* @scopes All Fills, Stroke Color
|
|
633
604
|
*/
|
|
634
|
-
|
|
635
|
-
};
|
|
636
|
-
|
|
637
|
-
declare const data: Data;
|
|
638
|
-
|
|
639
|
-
type Icons = {
|
|
605
|
+
shadowNeutral: 'rgba(31, 41, 55, 0.1)';
|
|
640
606
|
/**
|
|
641
607
|
* @scopes All Fills, Stroke Color
|
|
642
608
|
*/
|
|
643
|
-
|
|
609
|
+
shadowPrimary: 'rgba(47, 66, 255, 0.1)';
|
|
644
610
|
/**
|
|
645
611
|
* @scopes All Fills, Stroke Color
|
|
646
612
|
*/
|
|
647
|
-
|
|
613
|
+
tooltip: '#4b5563';
|
|
648
614
|
/**
|
|
649
615
|
* @scopes All Fills, Stroke Color
|
|
650
616
|
*/
|
|
651
|
-
|
|
617
|
+
scrim: 'rgba(31, 41, 55, 0.2)';
|
|
652
618
|
/**
|
|
653
619
|
* @scopes All Fills, Stroke Color
|
|
654
620
|
*/
|
|
655
|
-
|
|
621
|
+
tabSecondaryBackground: '#e5e7eb';
|
|
656
622
|
/**
|
|
657
623
|
* @scopes All Fills, Stroke Color
|
|
658
624
|
*/
|
|
659
|
-
|
|
625
|
+
snackbarDarkMode: '#ffffff';
|
|
660
626
|
/**
|
|
661
627
|
* @scopes All Fills, Stroke Color
|
|
662
628
|
*/
|
|
663
|
-
|
|
629
|
+
snackbarBrand: '#131e7a';
|
|
664
630
|
/**
|
|
665
631
|
* @scopes All Fills, Stroke Color
|
|
666
632
|
*/
|
|
667
|
-
|
|
633
|
+
snackbarLightMode: '#4b5563';
|
|
668
634
|
/**
|
|
669
635
|
* @scopes All Fills, Stroke Color
|
|
670
636
|
*/
|
|
637
|
+
white: '#ffffff';
|
|
638
|
+
/**
|
|
639
|
+
* @scopes All Fills, Stroke Color
|
|
640
|
+
*/
|
|
641
|
+
black: '#000000';
|
|
642
|
+
};
|
|
643
|
+
|
|
644
|
+
declare const surfaces: Surfaces;
|
|
645
|
+
|
|
646
|
+
type Typography = {
|
|
647
|
+
searchInput: '#ffffff';
|
|
648
|
+
input: {
|
|
671
649
|
placeholder: '#9ca3af';
|
|
672
|
-
|
|
673
|
-
|
|
650
|
+
default: '#1f2937';
|
|
651
|
+
label: '#1f2937';
|
|
652
|
+
helper: '#4b5563';
|
|
653
|
+
};
|
|
654
|
+
code: {
|
|
655
|
+
primary: '#1f2937';
|
|
656
|
+
secondary: '#9ca3af';
|
|
657
|
+
};
|
|
658
|
+
button: {
|
|
659
|
+
disabled: '#9ca3af';
|
|
660
|
+
};
|
|
661
|
+
tab: {
|
|
662
|
+
inactive: '#4b5563';
|
|
663
|
+
active: '#2f42ff';
|
|
664
|
+
};
|
|
665
|
+
link: {
|
|
666
|
+
primary: '#2f42ff';
|
|
667
|
+
disabled: '#b6bfff';
|
|
668
|
+
default: '#1f2937';
|
|
669
|
+
white: '#ffffff';
|
|
670
|
+
};
|
|
671
|
+
/**
|
|
672
|
+
* @scopes All Fills, Stroke Color
|
|
673
|
+
*/
|
|
674
|
+
error: '#cb3446';
|
|
675
|
+
/**
|
|
676
|
+
* @scopes All Fills, Stroke Color
|
|
677
|
+
*/
|
|
678
|
+
success: '#4ca75a';
|
|
679
|
+
/**
|
|
680
|
+
* @scopes All Fills, Stroke Color
|
|
681
|
+
*/
|
|
682
|
+
warning: '#1f2937';
|
|
683
|
+
/**
|
|
684
|
+
* @scopes All Fills, Stroke Color
|
|
685
|
+
*/
|
|
686
|
+
tooltip: '#ffffff';
|
|
687
|
+
navigation: {
|
|
688
|
+
default: '#1f2937';
|
|
689
|
+
};
|
|
690
|
+
/**
|
|
691
|
+
* @scopes All Fills, Stroke Color
|
|
692
|
+
*/
|
|
693
|
+
legal: '#9ca3af';
|
|
694
|
+
/**
|
|
695
|
+
* @scopes All Fills, Stroke Color
|
|
696
|
+
*/
|
|
697
|
+
bodySecondary: '#6b7280';
|
|
698
|
+
/**
|
|
699
|
+
* @scopes All Fills, Stroke Color
|
|
700
|
+
*/
|
|
701
|
+
body: '#1f2937';
|
|
674
702
|
};
|
|
675
703
|
|
|
676
|
-
declare const
|
|
704
|
+
declare const typography: Typography;
|
|
677
705
|
|
|
678
706
|
type Input$1 = {
|
|
679
707
|
/**
|
|
@@ -683,49 +711,49 @@ checkbox: '#d1d5db';
|
|
|
683
711
|
/**
|
|
684
712
|
* @scopes All Fills, Stroke Color
|
|
685
713
|
*/
|
|
686
|
-
|
|
714
|
+
hoverBackground: '#f3f4f6';
|
|
687
715
|
/**
|
|
688
716
|
* @scopes All Fills, Stroke Color
|
|
689
717
|
*/
|
|
690
|
-
|
|
718
|
+
background: '#ffffff';
|
|
691
719
|
/**
|
|
692
720
|
* @scopes All Fills, Stroke Color
|
|
693
721
|
*/
|
|
694
|
-
|
|
722
|
+
disabledBackground: '#f9fafb';
|
|
695
723
|
};
|
|
696
724
|
|
|
697
725
|
declare const input$1: Input$1;
|
|
698
726
|
|
|
699
727
|
type Status = {
|
|
700
728
|
success: {
|
|
701
|
-
dark: '#2c6c36';
|
|
702
|
-
default: '#4ca75a';
|
|
703
729
|
light: '#f3fff5';
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
dark: '#856000';
|
|
708
|
-
default: '#ffb800';
|
|
709
|
-
light: '#fff8e5';
|
|
710
|
-
transparent: '#ffb800';
|
|
730
|
+
default: '#4ca75a';
|
|
731
|
+
transparent: 'rgba(76, 167, 90, 0.5)';
|
|
732
|
+
dark: '#2c6c36';
|
|
711
733
|
};
|
|
712
734
|
error: {
|
|
713
|
-
dark: '#a92232';
|
|
714
735
|
light: '#ffedef';
|
|
715
736
|
default: '#ed4a5d';
|
|
716
|
-
transparent: '
|
|
737
|
+
transparent: 'rgba(237, 74, 93, 0.5)';
|
|
738
|
+
dark: '#a92232';
|
|
739
|
+
};
|
|
740
|
+
warning: {
|
|
741
|
+
light: '#fff8e5';
|
|
742
|
+
default: '#ffb800';
|
|
743
|
+
transparent: 'rgba(255, 184, 0, 0.5)';
|
|
744
|
+
dark: '#856000';
|
|
717
745
|
};
|
|
718
746
|
info: {
|
|
719
747
|
dark: '#1e2ec2';
|
|
720
748
|
default: '#2f42ff';
|
|
721
749
|
light: '#f2f3ff';
|
|
722
|
-
transparent: '
|
|
750
|
+
transparent: 'rgba(47, 66, 255, 0.5)';
|
|
723
751
|
};
|
|
724
752
|
neutral: {
|
|
725
753
|
dark: '#374151';
|
|
726
754
|
default: '#6b7280';
|
|
727
755
|
light: '#f3f4f6';
|
|
728
|
-
transparent: '
|
|
756
|
+
transparent: 'rgba(107, 114, 128, 0.5)';
|
|
729
757
|
};
|
|
730
758
|
avatar: {
|
|
731
759
|
initials: {
|
|
@@ -742,140 +770,112 @@ background7: '#ffebb7';
|
|
|
742
770
|
|
|
743
771
|
declare const status: Status;
|
|
744
772
|
|
|
745
|
-
type
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
/**
|
|
767
|
-
* @scopes All Fills, Stroke Color
|
|
768
|
-
*/
|
|
769
|
-
tabActive: '#f3f4f6';
|
|
770
|
-
/**
|
|
771
|
-
* @scopes All Fills, Stroke Color
|
|
772
|
-
*/
|
|
773
|
-
listHover: '#f9fafb';
|
|
774
|
-
/**
|
|
775
|
-
* @scopes All Fills, Stroke Color
|
|
776
|
-
*/
|
|
777
|
-
tableDisabledRow: '#f3f4f6';
|
|
778
|
-
/**
|
|
779
|
-
* @scopes All Fills, Stroke Color
|
|
780
|
-
*/
|
|
781
|
-
tableBackground: '#ffffff';
|
|
782
|
-
/**
|
|
783
|
-
* @scopes All Fills, Stroke Color
|
|
784
|
-
*/
|
|
785
|
-
tabSecondaryBackground: '#e5e7eb';
|
|
773
|
+
type Buttons = {
|
|
774
|
+
primary: {
|
|
775
|
+
hover: '#1e2ec2';
|
|
776
|
+
disabled: '#f3f4f6';
|
|
777
|
+
pressed: '#131e7a';
|
|
778
|
+
default: '#2f42ff';
|
|
779
|
+
};
|
|
780
|
+
secondary: {
|
|
781
|
+
defaultBorder: '#b6bfff';
|
|
782
|
+
hoverBackground: '#f2f3ff';
|
|
783
|
+
pressedBackground: '#dce0ff';
|
|
784
|
+
disabledBackground: '#f9fafb';
|
|
785
|
+
defaultBackground: '#ffffff';
|
|
786
|
+
default: '#1f2937';
|
|
787
|
+
};
|
|
788
|
+
tertiary: {
|
|
789
|
+
default: '#2f42ff';
|
|
790
|
+
hover: '#1e2ec2';
|
|
791
|
+
pressed: '#131e7a';
|
|
792
|
+
disabled: '#9ca3af';
|
|
793
|
+
};
|
|
786
794
|
/**
|
|
787
795
|
* @scopes All Fills, Stroke Color
|
|
788
796
|
*/
|
|
789
|
-
|
|
797
|
+
destructive: '#cb3446';
|
|
790
798
|
/**
|
|
791
799
|
* @scopes All Fills, Stroke Color
|
|
792
800
|
*/
|
|
793
|
-
|
|
801
|
+
navigationActive: '#ffffff';
|
|
802
|
+
navigation: {
|
|
803
|
+
defaultBorder: '#b6bfff';
|
|
804
|
+
hoverBackground: '#f3f4f6';
|
|
805
|
+
pressedBackground: '#e5e7eb';
|
|
806
|
+
activeBorder: '#2f42ff';
|
|
807
|
+
};
|
|
808
|
+
};
|
|
809
|
+
|
|
810
|
+
declare const buttons: Buttons;
|
|
811
|
+
|
|
812
|
+
type Border = {
|
|
794
813
|
/**
|
|
795
814
|
* @scopes All Fills, Stroke Color
|
|
796
815
|
*/
|
|
797
|
-
|
|
816
|
+
primary: '#d1d5db';
|
|
798
817
|
/**
|
|
799
818
|
* @scopes All Fills, Stroke Color
|
|
800
819
|
*/
|
|
801
|
-
|
|
820
|
+
secondary: '#e5e7eb';
|
|
821
|
+
focus: '#3bcca6';
|
|
822
|
+
};
|
|
823
|
+
|
|
824
|
+
declare const border: Border;
|
|
825
|
+
|
|
826
|
+
type Activity = {
|
|
802
827
|
/**
|
|
803
828
|
* @scopes All Fills, Stroke Color
|
|
804
829
|
*/
|
|
805
|
-
|
|
830
|
+
recipeRun: '#992fb9';
|
|
806
831
|
/**
|
|
807
832
|
* @scopes All Fills, Stroke Color
|
|
808
833
|
*/
|
|
809
|
-
|
|
834
|
+
commitJob: '#2f42ff';
|
|
810
835
|
/**
|
|
811
836
|
* @scopes All Fills, Stroke Color
|
|
812
837
|
*/
|
|
813
|
-
|
|
814
|
-
highlightBackground: '#2637e6';
|
|
815
|
-
activeHighlight: '#b6bfff';
|
|
838
|
+
visualization: '#27aa88';
|
|
816
839
|
};
|
|
817
840
|
|
|
818
|
-
declare const
|
|
841
|
+
declare const activity: Activity;
|
|
819
842
|
|
|
820
|
-
type
|
|
843
|
+
type Data = {
|
|
821
844
|
/**
|
|
822
845
|
* @scopes All Fills, Stroke Color
|
|
823
846
|
*/
|
|
824
|
-
|
|
825
|
-
button: {
|
|
826
|
-
disabled: '#9ca3af';
|
|
827
|
-
};
|
|
828
|
-
input: {
|
|
829
|
-
placeholder: '#9ca3af';
|
|
830
|
-
default: '#1f2937';
|
|
831
|
-
label: '#1f2937';
|
|
832
|
-
helper: '#4b5563';
|
|
833
|
-
};
|
|
834
|
-
code: {
|
|
835
|
-
primary: '#1f2937';
|
|
836
|
-
secondary: '#9ca3af';
|
|
837
|
-
};
|
|
838
|
-
tab: {
|
|
839
|
-
inactive: '#4b5563';
|
|
840
|
-
active: '#2f42ff';
|
|
841
|
-
};
|
|
842
|
-
link: {
|
|
843
|
-
primary: '#2f42ff';
|
|
844
|
-
disabled: '#b6bfff';
|
|
845
|
-
default: '#1f2937';
|
|
846
|
-
white: '#ffffff';
|
|
847
|
-
};
|
|
847
|
+
green: '#4ca75a';
|
|
848
848
|
/**
|
|
849
849
|
* @scopes All Fills, Stroke Color
|
|
850
850
|
*/
|
|
851
|
-
|
|
851
|
+
yellow: '#fdda04';
|
|
852
852
|
/**
|
|
853
853
|
* @scopes All Fills, Stroke Color
|
|
854
854
|
*/
|
|
855
|
-
|
|
855
|
+
orange1: '#ffc008';
|
|
856
856
|
/**
|
|
857
857
|
* @scopes All Fills, Stroke Color
|
|
858
858
|
*/
|
|
859
|
-
|
|
859
|
+
orange2: '#ff9800';
|
|
860
860
|
/**
|
|
861
861
|
* @scopes All Fills, Stroke Color
|
|
862
862
|
*/
|
|
863
|
-
|
|
863
|
+
orange3: '#f9a91b';
|
|
864
864
|
/**
|
|
865
865
|
* @scopes All Fills, Stroke Color
|
|
866
866
|
*/
|
|
867
|
-
|
|
867
|
+
red1: '#ff5c24';
|
|
868
868
|
/**
|
|
869
869
|
* @scopes All Fills, Stroke Color
|
|
870
870
|
*/
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
871
|
+
red2: '#ed4134';
|
|
872
|
+
/**
|
|
873
|
+
* @scopes All Fills, Stroke Color
|
|
874
|
+
*/
|
|
875
|
+
red3: '#cb3446';
|
|
876
876
|
};
|
|
877
877
|
|
|
878
|
-
declare const
|
|
878
|
+
declare const data: Data;
|
|
879
879
|
|
|
880
880
|
type Tab$1 = {
|
|
881
881
|
/**
|
|
@@ -901,15 +901,15 @@ declare const code: Code;
|
|
|
901
901
|
declare const brand: '#2f42ff';
|
|
902
902
|
|
|
903
903
|
declare const _default$4: {
|
|
904
|
-
activity: typeof activity,
|
|
905
|
-
border: typeof border,
|
|
906
|
-
buttons: typeof buttons,
|
|
907
|
-
data: typeof data,
|
|
908
904
|
icons: typeof icons,
|
|
909
|
-
input: typeof input$1,
|
|
910
|
-
status: typeof status,
|
|
911
905
|
surfaces: typeof surfaces,
|
|
912
906
|
typography: typeof typography,
|
|
907
|
+
input: typeof input$1,
|
|
908
|
+
status: typeof status,
|
|
909
|
+
buttons: typeof buttons,
|
|
910
|
+
border: typeof border,
|
|
911
|
+
activity: typeof activity,
|
|
912
|
+
data: typeof data,
|
|
913
913
|
tab: typeof tab$1,
|
|
914
914
|
code: typeof code,
|
|
915
915
|
brand: typeof brand,
|
|
@@ -946,36 +946,18 @@ declare namespace semanticColors_d {
|
|
|
946
946
|
*/
|
|
947
947
|
|
|
948
948
|
type Titles = {
|
|
949
|
-
moddyHeader: {
|
|
950
|
-
fontFamily: 'Inter';
|
|
951
|
-
fontSize: 28;
|
|
952
|
-
fontWeight: 500;
|
|
953
|
-
lineHeight: '120%';
|
|
954
|
-
};
|
|
955
|
-
pageHeader: {
|
|
956
|
-
fontFamily: 'Inter';
|
|
957
|
-
fontSize: 21;
|
|
958
|
-
fontWeight: 400;
|
|
959
|
-
lineHeight: '140%';
|
|
960
|
-
};
|
|
961
|
-
codeHeader: {
|
|
962
|
-
fontFamily: 'JetBrains Mono NL';
|
|
963
|
-
fontSize: 21;
|
|
964
|
-
fontWeight: 400;
|
|
965
|
-
lineHeight: '2rem';
|
|
966
|
-
};
|
|
967
949
|
pageSubheader: {
|
|
950
|
+
lineHeight: '1.5rem';
|
|
968
951
|
fontFamily: 'Inter';
|
|
969
952
|
fontSize: 18;
|
|
970
953
|
fontWeight: 500;
|
|
971
|
-
lineHeight: '1.5rem';
|
|
972
954
|
};
|
|
973
955
|
sectionHeader: {
|
|
974
956
|
default: {
|
|
957
|
+
lineHeight: '1.5rem';
|
|
975
958
|
fontFamily: 'Inter';
|
|
976
959
|
fontSize: 16;
|
|
977
960
|
fontWeight: 400;
|
|
978
|
-
lineHeight: '1.5rem';
|
|
979
961
|
};
|
|
980
962
|
medium: {
|
|
981
963
|
fontFamily: 'Inter';
|
|
@@ -990,6 +972,24 @@ fontWeight: 600;
|
|
|
990
972
|
lineHeight: '1.5rem';
|
|
991
973
|
};
|
|
992
974
|
};
|
|
975
|
+
codeHeader: {
|
|
976
|
+
lineHeight: '2rem';
|
|
977
|
+
fontFamily: 'JetBrains Mono NL';
|
|
978
|
+
fontSize: 21;
|
|
979
|
+
fontWeight: 400;
|
|
980
|
+
};
|
|
981
|
+
moddyHeader: {
|
|
982
|
+
lineHeight: '120%';
|
|
983
|
+
fontFamily: 'Inter';
|
|
984
|
+
fontSize: 28;
|
|
985
|
+
fontWeight: 500;
|
|
986
|
+
};
|
|
987
|
+
pageHeader: {
|
|
988
|
+
lineHeight: '140%';
|
|
989
|
+
fontFamily: 'Inter';
|
|
990
|
+
fontSize: 21;
|
|
991
|
+
fontWeight: 400;
|
|
992
|
+
};
|
|
993
993
|
};
|
|
994
994
|
|
|
995
995
|
declare const titles: Titles;
|
|
@@ -1001,18 +1001,6 @@ fontSize: 16;
|
|
|
1001
1001
|
fontWeight: 400;
|
|
1002
1002
|
lineHeight: '1.5rem';
|
|
1003
1003
|
};
|
|
1004
|
-
medium: {
|
|
1005
|
-
fontFamily: 'Inter';
|
|
1006
|
-
fontSize: 16;
|
|
1007
|
-
fontWeight: 500;
|
|
1008
|
-
lineHeight: '1.5rem';
|
|
1009
|
-
};
|
|
1010
|
-
semiBold: {
|
|
1011
|
-
fontFamily: 'Inter';
|
|
1012
|
-
fontSize: 16;
|
|
1013
|
-
fontWeight: 600;
|
|
1014
|
-
lineHeight: '1.5rem';
|
|
1015
|
-
};
|
|
1016
1004
|
small: {
|
|
1017
1005
|
regular: {
|
|
1018
1006
|
fontFamily: 'Inter';
|
|
@@ -1020,18 +1008,18 @@ fontSize: 14;
|
|
|
1020
1008
|
fontWeight: 400;
|
|
1021
1009
|
lineHeight: '1.5rem';
|
|
1022
1010
|
};
|
|
1023
|
-
medium: {
|
|
1024
|
-
fontFamily: 'Inter';
|
|
1025
|
-
fontSize: 14;
|
|
1026
|
-
fontWeight: 500;
|
|
1027
|
-
lineHeight: '1.5rem';
|
|
1028
|
-
};
|
|
1029
1011
|
semiBold: {
|
|
1030
1012
|
fontFamily: 'Inter';
|
|
1031
1013
|
fontSize: 14;
|
|
1032
1014
|
fontWeight: 600;
|
|
1033
1015
|
lineHeight: '150%';
|
|
1034
1016
|
};
|
|
1017
|
+
medium: {
|
|
1018
|
+
fontFamily: 'Inter';
|
|
1019
|
+
fontSize: 14;
|
|
1020
|
+
fontWeight: 500;
|
|
1021
|
+
lineHeight: '1.5rem';
|
|
1022
|
+
};
|
|
1035
1023
|
};
|
|
1036
1024
|
xs: {
|
|
1037
1025
|
regular: {
|
|
@@ -1040,25 +1028,19 @@ fontSize: 12;
|
|
|
1040
1028
|
fontWeight: 400;
|
|
1041
1029
|
lineHeight: '1rem';
|
|
1042
1030
|
};
|
|
1043
|
-
medium: {
|
|
1044
|
-
fontFamily: 'Inter';
|
|
1045
|
-
fontSize: 12;
|
|
1046
|
-
fontWeight: 500;
|
|
1047
|
-
lineHeight: '1rem';
|
|
1048
|
-
};
|
|
1049
1031
|
semiBold: {
|
|
1050
1032
|
fontFamily: 'Inter';
|
|
1051
1033
|
fontSize: 12;
|
|
1052
1034
|
fontWeight: 600;
|
|
1053
1035
|
lineHeight: '150%';
|
|
1054
1036
|
};
|
|
1055
|
-
|
|
1056
|
-
xxs: {
|
|
1037
|
+
medium: {
|
|
1057
1038
|
fontFamily: 'Inter';
|
|
1058
|
-
fontSize:
|
|
1059
|
-
fontWeight:
|
|
1039
|
+
fontSize: 12;
|
|
1040
|
+
fontWeight: 500;
|
|
1060
1041
|
lineHeight: '1rem';
|
|
1061
1042
|
};
|
|
1043
|
+
};
|
|
1062
1044
|
code: {
|
|
1063
1045
|
small: {
|
|
1064
1046
|
fontFamily: 'JetBrains Mono NL';
|
|
@@ -1073,6 +1055,24 @@ fontWeight: 400;
|
|
|
1073
1055
|
lineHeight: '1.5rem';
|
|
1074
1056
|
};
|
|
1075
1057
|
};
|
|
1058
|
+
xxs: {
|
|
1059
|
+
fontFamily: 'Inter';
|
|
1060
|
+
fontSize: 10;
|
|
1061
|
+
fontWeight: 400;
|
|
1062
|
+
lineHeight: '1rem';
|
|
1063
|
+
};
|
|
1064
|
+
semiBold: {
|
|
1065
|
+
fontFamily: 'Inter';
|
|
1066
|
+
fontSize: 16;
|
|
1067
|
+
fontWeight: 600;
|
|
1068
|
+
lineHeight: '1.5rem';
|
|
1069
|
+
};
|
|
1070
|
+
medium: {
|
|
1071
|
+
fontFamily: 'Inter';
|
|
1072
|
+
fontSize: 16;
|
|
1073
|
+
fontWeight: 500;
|
|
1074
|
+
lineHeight: '1.5rem';
|
|
1075
|
+
};
|
|
1076
1076
|
};
|
|
1077
1077
|
|
|
1078
1078
|
declare const body: Body;
|
|
@@ -1082,16 +1082,16 @@ fontFamily: 'Inter';
|
|
|
1082
1082
|
fontSize: 10;
|
|
1083
1083
|
fontWeight: 400;
|
|
1084
1084
|
lineHeight: '1rem';
|
|
1085
|
-
|
|
1085
|
+
selected: {
|
|
1086
1086
|
fontFamily: 'Inter';
|
|
1087
1087
|
fontSize: 10;
|
|
1088
|
-
fontWeight:
|
|
1088
|
+
fontWeight: 600;
|
|
1089
1089
|
lineHeight: '1rem';
|
|
1090
1090
|
};
|
|
1091
|
-
|
|
1091
|
+
default: {
|
|
1092
1092
|
fontFamily: 'Inter';
|
|
1093
1093
|
fontSize: 10;
|
|
1094
|
-
fontWeight:
|
|
1094
|
+
fontWeight: 400;
|
|
1095
1095
|
lineHeight: '1rem';
|
|
1096
1096
|
};
|
|
1097
1097
|
};
|
|
@@ -1125,31 +1125,31 @@ lineHeight: '1.25rem';
|
|
|
1125
1125
|
declare const button: Button;
|
|
1126
1126
|
|
|
1127
1127
|
type Link = {
|
|
1128
|
-
|
|
1128
|
+
hover: {
|
|
1129
1129
|
fontFamily: 'Inter';
|
|
1130
1130
|
fontSize: 16;
|
|
1131
1131
|
fontWeight: 400;
|
|
1132
1132
|
lineHeight: '1.5rem';
|
|
1133
|
+
textDecoration: 'underline';
|
|
1133
1134
|
};
|
|
1134
|
-
|
|
1135
|
+
default: {
|
|
1135
1136
|
fontFamily: 'Inter';
|
|
1136
1137
|
fontSize: 16;
|
|
1137
1138
|
fontWeight: 400;
|
|
1138
1139
|
lineHeight: '1.5rem';
|
|
1139
|
-
textDecoration: 'underline';
|
|
1140
1140
|
};
|
|
1141
|
-
|
|
1141
|
+
smallHover: {
|
|
1142
1142
|
fontFamily: 'Inter';
|
|
1143
1143
|
fontSize: 14;
|
|
1144
1144
|
fontWeight: 500;
|
|
1145
1145
|
lineHeight: '1.5rem';
|
|
1146
|
+
textDecoration: 'underline';
|
|
1146
1147
|
};
|
|
1147
|
-
|
|
1148
|
+
small: {
|
|
1148
1149
|
fontFamily: 'Inter';
|
|
1149
1150
|
fontSize: 14;
|
|
1150
1151
|
fontWeight: 500;
|
|
1151
1152
|
lineHeight: '1.5rem';
|
|
1152
|
-
textDecoration: 'underline';
|
|
1153
1153
|
};
|
|
1154
1154
|
large: {
|
|
1155
1155
|
fontFamily: 'Inter';
|
|
@@ -1270,7 +1270,7 @@ declare namespace semanticTypography_d {
|
|
|
1270
1270
|
* @generated
|
|
1271
1271
|
*/
|
|
1272
1272
|
|
|
1273
|
-
type
|
|
1273
|
+
type NeutralSmall = {
|
|
1274
1274
|
/**
|
|
1275
1275
|
* @scopes Effect Float
|
|
1276
1276
|
*/
|
|
@@ -1278,7 +1278,7 @@ x: 0;
|
|
|
1278
1278
|
/**
|
|
1279
1279
|
* @scopes Effect Float
|
|
1280
1280
|
*/
|
|
1281
|
-
y:
|
|
1281
|
+
y: 1;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* @scopes Effect Color
|
|
1284
1284
|
*/
|
|
@@ -1286,16 +1286,16 @@ shadow: 'rgba(31, 41, 55, 0.1)';
|
|
|
1286
1286
|
/**
|
|
1287
1287
|
* @scopes Effect Float
|
|
1288
1288
|
*/
|
|
1289
|
-
blur:
|
|
1289
|
+
blur: 3;
|
|
1290
1290
|
/**
|
|
1291
1291
|
* @scopes Effect Float
|
|
1292
1292
|
*/
|
|
1293
1293
|
spread: 0;
|
|
1294
1294
|
};
|
|
1295
1295
|
|
|
1296
|
-
declare const
|
|
1296
|
+
declare const neutralSmall: NeutralSmall;
|
|
1297
1297
|
|
|
1298
|
-
type
|
|
1298
|
+
type NeutralRegular = {
|
|
1299
1299
|
/**
|
|
1300
1300
|
* @scopes Effect Float
|
|
1301
1301
|
*/
|
|
@@ -1303,7 +1303,7 @@ x: 0;
|
|
|
1303
1303
|
/**
|
|
1304
1304
|
* @scopes Effect Float
|
|
1305
1305
|
*/
|
|
1306
|
-
y:
|
|
1306
|
+
y: 2;
|
|
1307
1307
|
/**
|
|
1308
1308
|
* @scopes Effect Color
|
|
1309
1309
|
*/
|
|
@@ -1311,16 +1311,16 @@ shadow: 'rgba(31, 41, 55, 0.1)';
|
|
|
1311
1311
|
/**
|
|
1312
1312
|
* @scopes Effect Float
|
|
1313
1313
|
*/
|
|
1314
|
-
blur:
|
|
1314
|
+
blur: 4;
|
|
1315
1315
|
/**
|
|
1316
1316
|
* @scopes Effect Float
|
|
1317
1317
|
*/
|
|
1318
1318
|
spread: 0;
|
|
1319
1319
|
};
|
|
1320
1320
|
|
|
1321
|
-
declare const
|
|
1321
|
+
declare const neutralRegular: NeutralRegular;
|
|
1322
1322
|
|
|
1323
|
-
type
|
|
1323
|
+
type NeutralMedium = {
|
|
1324
1324
|
/**
|
|
1325
1325
|
* @scopes Effect Float
|
|
1326
1326
|
*/
|
|
@@ -1343,9 +1343,9 @@ blur: 15;
|
|
|
1343
1343
|
spread: 0;
|
|
1344
1344
|
};
|
|
1345
1345
|
|
|
1346
|
-
declare const
|
|
1346
|
+
declare const neutralMedium: NeutralMedium;
|
|
1347
1347
|
|
|
1348
|
-
type
|
|
1348
|
+
type PrimarySmall = {
|
|
1349
1349
|
/**
|
|
1350
1350
|
* @scopes Effect Float
|
|
1351
1351
|
*/
|
|
@@ -1353,32 +1353,32 @@ x: 0;
|
|
|
1353
1353
|
/**
|
|
1354
1354
|
* @scopes Effect Float
|
|
1355
1355
|
*/
|
|
1356
|
-
y:
|
|
1356
|
+
y: 1;
|
|
1357
1357
|
/**
|
|
1358
1358
|
* @scopes Effect Color
|
|
1359
1359
|
*/
|
|
1360
|
-
shadow: 'rgba(
|
|
1360
|
+
shadow: 'rgba(47, 66, 255, 0.1)';
|
|
1361
1361
|
/**
|
|
1362
1362
|
* @scopes Effect Float
|
|
1363
1363
|
*/
|
|
1364
|
-
blur:
|
|
1364
|
+
blur: 3;
|
|
1365
1365
|
/**
|
|
1366
1366
|
* @scopes Effect Float
|
|
1367
1367
|
*/
|
|
1368
1368
|
spread: 0;
|
|
1369
1369
|
};
|
|
1370
1370
|
|
|
1371
|
-
declare const
|
|
1371
|
+
declare const primarySmall: PrimarySmall;
|
|
1372
1372
|
|
|
1373
|
-
type
|
|
1373
|
+
type NeutralLarge1 = {
|
|
1374
1374
|
/**
|
|
1375
1375
|
* @scopes Effect Float
|
|
1376
1376
|
*/
|
|
1377
|
-
|
|
1377
|
+
blur: 4;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* @scopes Effect Float
|
|
1380
1380
|
*/
|
|
1381
|
-
|
|
1381
|
+
spread: 0;
|
|
1382
1382
|
/**
|
|
1383
1383
|
* @scopes Effect Color
|
|
1384
1384
|
*/
|
|
@@ -1386,16 +1386,16 @@ shadow: 'rgba(31, 41, 55, 0.1)';
|
|
|
1386
1386
|
/**
|
|
1387
1387
|
* @scopes Effect Float
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
y: 4;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* @scopes Effect Float
|
|
1392
1392
|
*/
|
|
1393
|
-
|
|
1393
|
+
x: 0;
|
|
1394
1394
|
};
|
|
1395
1395
|
|
|
1396
|
-
declare const
|
|
1396
|
+
declare const neutralLarge1: NeutralLarge1;
|
|
1397
1397
|
|
|
1398
|
-
type
|
|
1398
|
+
type PrimaryRegular = {
|
|
1399
1399
|
/**
|
|
1400
1400
|
* @scopes Effect Float
|
|
1401
1401
|
*/
|
|
@@ -1403,24 +1403,24 @@ x: 0;
|
|
|
1403
1403
|
/**
|
|
1404
1404
|
* @scopes Effect Float
|
|
1405
1405
|
*/
|
|
1406
|
-
y:
|
|
1406
|
+
y: 4;
|
|
1407
1407
|
/**
|
|
1408
1408
|
* @scopes Effect Color
|
|
1409
1409
|
*/
|
|
1410
|
-
shadow: 'rgba(
|
|
1410
|
+
shadow: 'rgba(47, 66, 255, 0.1)';
|
|
1411
1411
|
/**
|
|
1412
1412
|
* @scopes Effect Float
|
|
1413
1413
|
*/
|
|
1414
|
-
blur:
|
|
1414
|
+
blur: 8;
|
|
1415
1415
|
/**
|
|
1416
1416
|
* @scopes Effect Float
|
|
1417
1417
|
*/
|
|
1418
1418
|
spread: 0;
|
|
1419
1419
|
};
|
|
1420
1420
|
|
|
1421
|
-
declare const
|
|
1421
|
+
declare const primaryRegular: PrimaryRegular;
|
|
1422
1422
|
|
|
1423
|
-
type
|
|
1423
|
+
type PrimaryMedium = {
|
|
1424
1424
|
/**
|
|
1425
1425
|
* @scopes Effect Float
|
|
1426
1426
|
*/
|
|
@@ -1432,7 +1432,7 @@ y: 8;
|
|
|
1432
1432
|
/**
|
|
1433
1433
|
* @scopes Effect Color
|
|
1434
1434
|
*/
|
|
1435
|
-
shadow: 'rgba(
|
|
1435
|
+
shadow: 'rgba(47, 66, 255, 0.1)';
|
|
1436
1436
|
/**
|
|
1437
1437
|
* @scopes Effect Float
|
|
1438
1438
|
*/
|
|
@@ -1443,9 +1443,9 @@ blur: 15;
|
|
|
1443
1443
|
spread: 0;
|
|
1444
1444
|
};
|
|
1445
1445
|
|
|
1446
|
-
declare const
|
|
1446
|
+
declare const primaryMedium: PrimaryMedium;
|
|
1447
1447
|
|
|
1448
|
-
type
|
|
1448
|
+
type PrimaryLarge = {
|
|
1449
1449
|
/**
|
|
1450
1450
|
* @scopes Effect Float
|
|
1451
1451
|
*/
|
|
@@ -1453,7 +1453,7 @@ x: 0;
|
|
|
1453
1453
|
/**
|
|
1454
1454
|
* @scopes Effect Float
|
|
1455
1455
|
*/
|
|
1456
|
-
y:
|
|
1456
|
+
y: 8;
|
|
1457
1457
|
/**
|
|
1458
1458
|
* @scopes Effect Color
|
|
1459
1459
|
*/
|
|
@@ -1461,16 +1461,16 @@ shadow: 'rgba(47, 66, 255, 0.1)';
|
|
|
1461
1461
|
/**
|
|
1462
1462
|
* @scopes Effect Float
|
|
1463
1463
|
*/
|
|
1464
|
-
blur:
|
|
1464
|
+
blur: 24;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* @scopes Effect Float
|
|
1467
1467
|
*/
|
|
1468
1468
|
spread: 0;
|
|
1469
1469
|
};
|
|
1470
1470
|
|
|
1471
|
-
declare const
|
|
1471
|
+
declare const primaryLarge: PrimaryLarge;
|
|
1472
1472
|
|
|
1473
|
-
type
|
|
1473
|
+
type NeutralLarge2 = {
|
|
1474
1474
|
/**
|
|
1475
1475
|
* @scopes Effect Float
|
|
1476
1476
|
*/
|
|
@@ -1478,7 +1478,7 @@ x: 0;
|
|
|
1478
1478
|
/**
|
|
1479
1479
|
* @scopes Effect Float
|
|
1480
1480
|
*/
|
|
1481
|
-
y:
|
|
1481
|
+
y: 8;
|
|
1482
1482
|
/**
|
|
1483
1483
|
* @scopes Effect Color
|
|
1484
1484
|
*/
|
|
@@ -1486,16 +1486,16 @@ shadow: 'rgba(31, 41, 55, 0.1)';
|
|
|
1486
1486
|
/**
|
|
1487
1487
|
* @scopes Effect Float
|
|
1488
1488
|
*/
|
|
1489
|
-
blur:
|
|
1489
|
+
blur: 24;
|
|
1490
1490
|
/**
|
|
1491
1491
|
* @scopes Effect Float
|
|
1492
1492
|
*/
|
|
1493
1493
|
spread: 0;
|
|
1494
1494
|
};
|
|
1495
1495
|
|
|
1496
|
-
declare const
|
|
1496
|
+
declare const neutralLarge2: NeutralLarge2;
|
|
1497
1497
|
|
|
1498
|
-
type
|
|
1498
|
+
type Card = {
|
|
1499
1499
|
/**
|
|
1500
1500
|
* @scopes Effect Float
|
|
1501
1501
|
*/
|
|
@@ -1503,24 +1503,24 @@ x: 0;
|
|
|
1503
1503
|
/**
|
|
1504
1504
|
* @scopes Effect Float
|
|
1505
1505
|
*/
|
|
1506
|
-
y:
|
|
1506
|
+
y: 2;
|
|
1507
1507
|
/**
|
|
1508
1508
|
* @scopes Effect Color
|
|
1509
1509
|
*/
|
|
1510
|
-
shadow: 'rgba(
|
|
1510
|
+
shadow: 'rgba(31, 41, 55, 0.1)';
|
|
1511
1511
|
/**
|
|
1512
1512
|
* @scopes Effect Float
|
|
1513
1513
|
*/
|
|
1514
|
-
blur:
|
|
1514
|
+
blur: 4;
|
|
1515
1515
|
/**
|
|
1516
1516
|
* @scopes Effect Float
|
|
1517
1517
|
*/
|
|
1518
1518
|
spread: 0;
|
|
1519
1519
|
};
|
|
1520
1520
|
|
|
1521
|
-
declare const
|
|
1521
|
+
declare const card: Card;
|
|
1522
1522
|
|
|
1523
|
-
type
|
|
1523
|
+
type HardLine = {
|
|
1524
1524
|
/**
|
|
1525
1525
|
* @scopes Effect Float
|
|
1526
1526
|
*/
|
|
@@ -1528,24 +1528,24 @@ x: 0;
|
|
|
1528
1528
|
/**
|
|
1529
1529
|
* @scopes Effect Float
|
|
1530
1530
|
*/
|
|
1531
|
-
y:
|
|
1531
|
+
y: 1;
|
|
1532
1532
|
/**
|
|
1533
1533
|
* @scopes Effect Color
|
|
1534
1534
|
*/
|
|
1535
|
-
shadow: 'rgba(
|
|
1535
|
+
shadow: 'rgba(31, 41, 55, 0.1)';
|
|
1536
1536
|
/**
|
|
1537
1537
|
* @scopes Effect Float
|
|
1538
1538
|
*/
|
|
1539
|
-
blur:
|
|
1539
|
+
blur: 2;
|
|
1540
1540
|
/**
|
|
1541
1541
|
* @scopes Effect Float
|
|
1542
1542
|
*/
|
|
1543
1543
|
spread: 0;
|
|
1544
1544
|
};
|
|
1545
1545
|
|
|
1546
|
-
declare const
|
|
1546
|
+
declare const hardLine: HardLine;
|
|
1547
1547
|
|
|
1548
|
-
type
|
|
1548
|
+
type Dropdown = {
|
|
1549
1549
|
/**
|
|
1550
1550
|
* @scopes Effect Float
|
|
1551
1551
|
*/
|
|
@@ -1557,20 +1557,20 @@ y: 8;
|
|
|
1557
1557
|
/**
|
|
1558
1558
|
* @scopes Effect Color
|
|
1559
1559
|
*/
|
|
1560
|
-
shadow: 'rgba(
|
|
1560
|
+
shadow: 'rgba(31, 41, 55, 0.1)';
|
|
1561
1561
|
/**
|
|
1562
1562
|
* @scopes Effect Float
|
|
1563
1563
|
*/
|
|
1564
|
-
blur:
|
|
1564
|
+
blur: 15;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* @scopes Effect Float
|
|
1567
1567
|
*/
|
|
1568
1568
|
spread: 0;
|
|
1569
1569
|
};
|
|
1570
1570
|
|
|
1571
|
-
declare const
|
|
1571
|
+
declare const dropdown: Dropdown;
|
|
1572
1572
|
|
|
1573
|
-
type
|
|
1573
|
+
type Drawer = {
|
|
1574
1574
|
/**
|
|
1575
1575
|
* @scopes Effect Float
|
|
1576
1576
|
*/
|
|
@@ -1586,16 +1586,16 @@ shadow: 'rgba(31, 41, 55, 0.1)';
|
|
|
1586
1586
|
/**
|
|
1587
1587
|
* @scopes Effect Float
|
|
1588
1588
|
*/
|
|
1589
|
-
blur:
|
|
1589
|
+
blur: 15;
|
|
1590
1590
|
/**
|
|
1591
1591
|
* @scopes Effect Float
|
|
1592
1592
|
*/
|
|
1593
1593
|
spread: 0;
|
|
1594
1594
|
};
|
|
1595
1595
|
|
|
1596
|
-
declare const
|
|
1596
|
+
declare const drawer: Drawer;
|
|
1597
1597
|
|
|
1598
|
-
type
|
|
1598
|
+
type Modal = {
|
|
1599
1599
|
/**
|
|
1600
1600
|
* @scopes Effect Float
|
|
1601
1601
|
*/
|
|
@@ -1603,7 +1603,7 @@ x: 0;
|
|
|
1603
1603
|
/**
|
|
1604
1604
|
* @scopes Effect Float
|
|
1605
1605
|
*/
|
|
1606
|
-
y:
|
|
1606
|
+
y: 8;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* @scopes Effect Color
|
|
1609
1609
|
*/
|
|
@@ -1611,20 +1611,16 @@ shadow: 'rgba(31, 41, 55, 0.1)';
|
|
|
1611
1611
|
/**
|
|
1612
1612
|
* @scopes Effect Float
|
|
1613
1613
|
*/
|
|
1614
|
-
blur:
|
|
1614
|
+
blur: 15;
|
|
1615
1615
|
/**
|
|
1616
1616
|
* @scopes Effect Float
|
|
1617
1617
|
*/
|
|
1618
1618
|
spread: 0;
|
|
1619
1619
|
};
|
|
1620
1620
|
|
|
1621
|
-
declare const
|
|
1621
|
+
declare const modal: Modal;
|
|
1622
1622
|
|
|
1623
1623
|
declare const _default$2: {
|
|
1624
|
-
modal: typeof modal,
|
|
1625
|
-
dropdown: typeof dropdown,
|
|
1626
|
-
drawer: typeof drawer,
|
|
1627
|
-
card: typeof card,
|
|
1628
1624
|
neutralSmall: typeof neutralSmall,
|
|
1629
1625
|
neutralRegular: typeof neutralRegular,
|
|
1630
1626
|
neutralMedium: typeof neutralMedium,
|
|
@@ -1634,7 +1630,11 @@ primaryRegular: typeof primaryRegular,
|
|
|
1634
1630
|
primaryMedium: typeof primaryMedium,
|
|
1635
1631
|
primaryLarge: typeof primaryLarge,
|
|
1636
1632
|
neutralLarge2: typeof neutralLarge2,
|
|
1633
|
+
card: typeof card,
|
|
1637
1634
|
hardLine: typeof hardLine,
|
|
1635
|
+
dropdown: typeof dropdown,
|
|
1636
|
+
drawer: typeof drawer,
|
|
1637
|
+
modal: typeof modal,
|
|
1638
1638
|
};
|
|
1639
1639
|
|
|
1640
1640
|
type shadows_d_Card = Card;
|
|
@@ -1720,59 +1720,59 @@ declare const spacing_2: 16;
|
|
|
1720
1720
|
/**
|
|
1721
1721
|
* @scopes Width Height, Gap
|
|
1722
1722
|
*/
|
|
1723
|
-
declare const
|
|
1723
|
+
declare const spacing_3: 24;
|
|
1724
1724
|
|
|
1725
1725
|
/**
|
|
1726
1726
|
* @scopes Width Height, Gap
|
|
1727
1727
|
*/
|
|
1728
|
-
declare const
|
|
1728
|
+
declare const spacing_2_3_4: 22;
|
|
1729
1729
|
|
|
1730
1730
|
/**
|
|
1731
1731
|
* @scopes Width Height, Gap
|
|
1732
1732
|
*/
|
|
1733
|
-
declare const
|
|
1733
|
+
declare const spacing_2_1_2: 20;
|
|
1734
1734
|
|
|
1735
1735
|
/**
|
|
1736
1736
|
* @scopes Width Height, Gap
|
|
1737
1737
|
*/
|
|
1738
|
-
declare const
|
|
1738
|
+
declare const spacing_2_1_4: 18;
|
|
1739
1739
|
|
|
1740
1740
|
/**
|
|
1741
1741
|
* @scopes Width Height, Gap
|
|
1742
1742
|
*/
|
|
1743
|
-
declare const
|
|
1743
|
+
declare const spacing_4: 32;
|
|
1744
1744
|
|
|
1745
1745
|
/**
|
|
1746
1746
|
* @scopes Width Height, Gap
|
|
1747
1747
|
*/
|
|
1748
|
-
declare const
|
|
1748
|
+
declare const spacing_3_3_4: 30;
|
|
1749
1749
|
|
|
1750
1750
|
/**
|
|
1751
1751
|
* @scopes Width Height, Gap
|
|
1752
1752
|
*/
|
|
1753
|
-
declare const
|
|
1753
|
+
declare const spacing_3_1_2: 28;
|
|
1754
1754
|
|
|
1755
1755
|
/**
|
|
1756
1756
|
* @scopes Width Height, Gap
|
|
1757
1757
|
*/
|
|
1758
|
-
declare const
|
|
1758
|
+
declare const spacing_3_1_4: 26;
|
|
1759
1759
|
|
|
1760
1760
|
declare const spacing_5: 40;
|
|
1761
1761
|
|
|
1762
|
-
declare const
|
|
1762
|
+
declare const spacing_6: 48;
|
|
1763
|
+
|
|
1764
|
+
declare const spacing_8: 64;
|
|
1765
|
+
|
|
1766
|
+
declare const spacing_10: 80;
|
|
1763
1767
|
|
|
1764
1768
|
declare const spacing_5_1_2: 44;
|
|
1765
1769
|
|
|
1766
|
-
declare const
|
|
1770
|
+
declare const spacing_5_1_4: 42;
|
|
1767
1771
|
|
|
1768
1772
|
declare const spacing_7: 56;
|
|
1769
1773
|
|
|
1770
|
-
declare const spacing_8: 64;
|
|
1771
|
-
|
|
1772
1774
|
declare const spacing_9: 56;
|
|
1773
1775
|
|
|
1774
|
-
declare const spacing_10: 80;
|
|
1775
|
-
|
|
1776
1776
|
declare const _default$1: {
|
|
1777
1777
|
spacing_1_4: typeof spacing_1_4,
|
|
1778
1778
|
spacing_1_2: typeof spacing_1_2,
|
|
@@ -1782,22 +1782,22 @@ spacing_1_1_4: typeof spacing_1_1_4,
|
|
|
1782
1782
|
spacing_1_1_2: typeof spacing_1_1_2,
|
|
1783
1783
|
spacing_1_3_4: typeof spacing_1_3_4,
|
|
1784
1784
|
spacing_2: typeof spacing_2,
|
|
1785
|
-
spacing_2_1_4: typeof spacing_2_1_4,
|
|
1786
|
-
spacing_2_1_2: typeof spacing_2_1_2,
|
|
1787
|
-
spacing_2_3_4: typeof spacing_2_3_4,
|
|
1788
1785
|
spacing_3: typeof spacing_3,
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1786
|
+
spacing_2_3_4: typeof spacing_2_3_4,
|
|
1787
|
+
spacing_2_1_2: typeof spacing_2_1_2,
|
|
1788
|
+
spacing_2_1_4: typeof spacing_2_1_4,
|
|
1792
1789
|
spacing_4: typeof spacing_4,
|
|
1790
|
+
spacing_3_3_4: typeof spacing_3_3_4,
|
|
1791
|
+
spacing_3_1_2: typeof spacing_3_1_2,
|
|
1792
|
+
spacing_3_1_4: typeof spacing_3_1_4,
|
|
1793
1793
|
spacing_5: typeof spacing_5,
|
|
1794
|
-
spacing_5_1_4: typeof spacing_5_1_4,
|
|
1795
|
-
spacing_5_1_2: typeof spacing_5_1_2,
|
|
1796
1794
|
spacing_6: typeof spacing_6,
|
|
1797
|
-
spacing_7: typeof spacing_7,
|
|
1798
1795
|
spacing_8: typeof spacing_8,
|
|
1799
|
-
spacing_9: typeof spacing_9,
|
|
1800
1796
|
spacing_10: typeof spacing_10,
|
|
1797
|
+
spacing_5_1_2: typeof spacing_5_1_2,
|
|
1798
|
+
spacing_5_1_4: typeof spacing_5_1_4,
|
|
1799
|
+
spacing_7: typeof spacing_7,
|
|
1800
|
+
spacing_9: typeof spacing_9,
|
|
1801
1801
|
};
|
|
1802
1802
|
|
|
1803
1803
|
declare const spacing_d_spacing_1: typeof spacing_1;
|
|
@@ -1860,27 +1860,45 @@ declare namespace spacing_d {
|
|
|
1860
1860
|
* @generated
|
|
1861
1861
|
*/
|
|
1862
1862
|
|
|
1863
|
-
type
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1863
|
+
type LineHeight = {
|
|
1864
|
+
/**
|
|
1865
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1866
|
+
*/
|
|
1867
|
+
s: 20;
|
|
1868
|
+
/**
|
|
1869
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1870
|
+
*/
|
|
1871
|
+
m: 24;
|
|
1872
|
+
/**
|
|
1873
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1874
|
+
*/
|
|
1875
|
+
l: 28;
|
|
1876
|
+
/**
|
|
1877
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1878
|
+
*/
|
|
1879
|
+
xl: 32;
|
|
1880
|
+
/**
|
|
1881
|
+
* value in pixels
|
|
1882
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1883
|
+
*/
|
|
1884
|
+
xs: 16;
|
|
1867
1885
|
};
|
|
1868
1886
|
|
|
1869
|
-
declare const
|
|
1887
|
+
declare const lineHeight: LineHeight;
|
|
1870
1888
|
|
|
1871
1889
|
type FontSize = {
|
|
1872
1890
|
/**
|
|
1873
1891
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1874
1892
|
*/
|
|
1875
|
-
|
|
1893
|
+
caption: 13;
|
|
1876
1894
|
/**
|
|
1877
1895
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1878
1896
|
*/
|
|
1879
|
-
|
|
1897
|
+
code: 14;
|
|
1880
1898
|
/**
|
|
1881
1899
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1882
1900
|
*/
|
|
1883
|
-
|
|
1901
|
+
xs: 12;
|
|
1884
1902
|
/**
|
|
1885
1903
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1886
1904
|
*/
|
|
@@ -1888,15 +1906,15 @@ h6: 16;
|
|
|
1888
1906
|
/**
|
|
1889
1907
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1890
1908
|
*/
|
|
1891
|
-
|
|
1909
|
+
xxs: 10;
|
|
1892
1910
|
/**
|
|
1893
1911
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1894
1912
|
*/
|
|
1895
|
-
|
|
1913
|
+
sm: 14;
|
|
1896
1914
|
/**
|
|
1897
1915
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1898
1916
|
*/
|
|
1899
|
-
|
|
1917
|
+
default: 16;
|
|
1900
1918
|
/**
|
|
1901
1919
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1902
1920
|
*/
|
|
@@ -1921,6 +1939,20 @@ h1: 28;
|
|
|
1921
1939
|
|
|
1922
1940
|
declare const fontSize: FontSize;
|
|
1923
1941
|
|
|
1942
|
+
type TextDecoration = {
|
|
1943
|
+
underline: 'underline';
|
|
1944
|
+
};
|
|
1945
|
+
|
|
1946
|
+
declare const textDecoration: TextDecoration;
|
|
1947
|
+
|
|
1948
|
+
type FontFamily = {
|
|
1949
|
+
body: 'Inter';
|
|
1950
|
+
code: 'JetBrains Mono NL';
|
|
1951
|
+
heading: 'Inter';
|
|
1952
|
+
};
|
|
1953
|
+
|
|
1954
|
+
declare const fontFamily: FontFamily;
|
|
1955
|
+
|
|
1924
1956
|
type FontWeight = {
|
|
1925
1957
|
/**
|
|
1926
1958
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
@@ -1929,11 +1961,11 @@ thin: 100;
|
|
|
1929
1961
|
/**
|
|
1930
1962
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1931
1963
|
*/
|
|
1932
|
-
|
|
1964
|
+
regular: 400;
|
|
1933
1965
|
/**
|
|
1934
1966
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1935
1967
|
*/
|
|
1936
|
-
|
|
1968
|
+
bold: 700;
|
|
1937
1969
|
/**
|
|
1938
1970
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1939
1971
|
*/
|
|
@@ -1941,11 +1973,11 @@ medium: 500;
|
|
|
1941
1973
|
/**
|
|
1942
1974
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1943
1975
|
*/
|
|
1944
|
-
|
|
1976
|
+
light: 300;
|
|
1945
1977
|
/**
|
|
1946
1978
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1947
1979
|
*/
|
|
1948
|
-
|
|
1980
|
+
semiBold: 600;
|
|
1949
1981
|
/**
|
|
1950
1982
|
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1951
1983
|
*/
|
|
@@ -1954,44 +1986,12 @@ extraBold: 800;
|
|
|
1954
1986
|
|
|
1955
1987
|
declare const fontWeight: FontWeight;
|
|
1956
1988
|
|
|
1957
|
-
type LineHeight = {
|
|
1958
|
-
/**
|
|
1959
|
-
* value in pixels
|
|
1960
|
-
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1961
|
-
*/
|
|
1962
|
-
xs: 16;
|
|
1963
|
-
/**
|
|
1964
|
-
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1965
|
-
*/
|
|
1966
|
-
s: 20;
|
|
1967
|
-
/**
|
|
1968
|
-
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1969
|
-
*/
|
|
1970
|
-
m: 24;
|
|
1971
|
-
/**
|
|
1972
|
-
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1973
|
-
*/
|
|
1974
|
-
l: 28;
|
|
1975
|
-
/**
|
|
1976
|
-
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
1977
|
-
*/
|
|
1978
|
-
xl: 32;
|
|
1979
|
-
};
|
|
1980
|
-
|
|
1981
|
-
declare const lineHeight: LineHeight;
|
|
1982
|
-
|
|
1983
|
-
type TextDecoration = {
|
|
1984
|
-
underline: 'underline';
|
|
1985
|
-
};
|
|
1986
|
-
|
|
1987
|
-
declare const textDecoration: TextDecoration;
|
|
1988
|
-
|
|
1989
1989
|
declare const _default: {
|
|
1990
|
-
fontFamily: typeof fontFamily,
|
|
1991
|
-
fontSize: typeof fontSize,
|
|
1992
|
-
fontWeight: typeof fontWeight,
|
|
1993
1990
|
lineHeight: typeof lineHeight,
|
|
1991
|
+
fontSize: typeof fontSize,
|
|
1994
1992
|
textDecoration: typeof textDecoration,
|
|
1993
|
+
fontFamily: typeof fontFamily,
|
|
1994
|
+
fontWeight: typeof fontWeight,
|
|
1995
1995
|
};
|
|
1996
1996
|
|
|
1997
1997
|
type typography_d_FontFamily = FontFamily;
|