@atlaskit/tokens 1.35.0 → 1.37.0
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/CHANGELOG.md +12 -0
- package/codemods/css-to-design-tokens/__tests__/css-to-design-tokens.test.tsx +489 -0
- package/codemods/css-to-design-tokens/__tests__/utils.test.tsx +145 -0
- package/codemods/css-to-design-tokens/lib/colors.tsx +71 -0
- package/codemods/css-to-design-tokens/lib/declaration.tsx +43 -0
- package/codemods/css-to-design-tokens/lib/legacy-colors.tsx +336 -0
- package/codemods/css-to-design-tokens/lib/meta.tsx +173 -0
- package/codemods/css-to-design-tokens/lib/tokens.tsx +54 -0
- package/codemods/css-to-design-tokens/lib/value.tsx +85 -0
- package/codemods/css-to-design-tokens/transform.tsx +99 -0
- package/codemods/hypermod.config.tsx +9 -0
- package/codemods/theme-to-design-tokens/__tests__/theme-to-design-tokens.test.tsx +1104 -0
- package/codemods/theme-to-design-tokens/transform.tsx +628 -0
- package/codemods/theme-to-design-tokens/utils/ast-meta.tsx +159 -0
- package/codemods/theme-to-design-tokens/utils/ast.tsx +46 -0
- package/codemods/theme-to-design-tokens/utils/color.tsx +45 -0
- package/codemods/theme-to-design-tokens/utils/css-utils.tsx +38 -0
- package/codemods/theme-to-design-tokens/utils/fuzzy-search.tsx +326 -0
- package/codemods/theme-to-design-tokens/utils/legacy-colors.tsx +232 -0
- package/codemods/theme-to-design-tokens/utils/named-colors.tsx +150 -0
- package/codemods/theme-to-design-tokens/utils/string-utils.tsx +22 -0
- package/codemods/utils/tokens.tsx +376 -0
- package/dist/cjs/artifacts/replacement-mapping.js +1 -13
- package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +17 -25
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +89 -1
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/es2019/artifacts/replacement-mapping.js +1 -13
- package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +5 -1
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +17 -25
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +89 -1
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/esm/artifacts/replacement-mapping.js +1 -13
- package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +17 -25
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +89 -1
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/types.d.ts +2 -3
- package/dist/types-ts4.5/artifacts/replacement-mapping.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
- package/dist/types-ts4.5/types.d.ts +2 -3
- package/figma/atlassian-typography-adg3.json +38 -1
- package/figma/atlassian-typography-minor3.json +38 -1
- package/package.json +5 -1
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* These changes will then be picked up by our tooling which will attempt to
|
|
13
13
|
* migrate as many of these renames as possible.
|
|
14
14
|
*
|
|
15
|
-
* @codegen <<SignedSource::
|
|
15
|
+
* @codegen <<SignedSource::89c10efc85f250da0db65341b911ad2e>>
|
|
16
16
|
* @codegenCommand yarn build tokens
|
|
17
17
|
*/
|
|
18
18
|
|
|
@@ -76,18 +76,6 @@ const replacementMapper = [{
|
|
|
76
76
|
}, {
|
|
77
77
|
"path": "font.size.600",
|
|
78
78
|
"state": "deprecated"
|
|
79
|
-
}, {
|
|
80
|
-
"path": "font.weight.bold",
|
|
81
|
-
"state": "deprecated"
|
|
82
|
-
}, {
|
|
83
|
-
"path": "font.weight.medium",
|
|
84
|
-
"state": "deprecated"
|
|
85
|
-
}, {
|
|
86
|
-
"path": "font.weight.regular",
|
|
87
|
-
"state": "deprecated"
|
|
88
|
-
}, {
|
|
89
|
-
"path": "font.weight.semibold",
|
|
90
|
-
"state": "deprecated"
|
|
91
79
|
}, {
|
|
92
80
|
"path": "font.lineHeight.1",
|
|
93
81
|
"state": "deprecated"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::6f19563c59b6fe6474e82b98deb29395>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
export default `
|
|
@@ -30,6 +30,10 @@ html[data-theme~="typography:typography-minor3"] {
|
|
|
30
30
|
--ds-font-family-monospace: ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace;
|
|
31
31
|
--ds-font-family-sans: ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
|
|
32
32
|
--ds-font-family-brand: Charlie Sans;
|
|
33
|
+
--ds-font-weight-bold: 700;
|
|
34
|
+
--ds-font-weight-medium: 500;
|
|
35
|
+
--ds-font-weight-regular: 400;
|
|
36
|
+
--ds-font-weight-semibold: 600;
|
|
33
37
|
@media not all and (min-width: 64rem) {
|
|
34
38
|
--ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
|
|
35
39
|
--ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::61dd6fdb38f371b93ae7d91770bd4e77>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
const tokens = [{
|
|
@@ -869,10 +869,9 @@ const tokens = [{
|
|
|
869
869
|
}, {
|
|
870
870
|
"attributes": {
|
|
871
871
|
"group": "fontWeight",
|
|
872
|
-
"state": "
|
|
872
|
+
"state": "active",
|
|
873
873
|
"introduced": "0.10.33",
|
|
874
|
-
"description": "Helpful guidance goes here"
|
|
875
|
-
"deprecated": "1.29.0"
|
|
874
|
+
"description": "Helpful guidance goes here"
|
|
876
875
|
},
|
|
877
876
|
"value": "700",
|
|
878
877
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -880,10 +879,9 @@ const tokens = [{
|
|
|
880
879
|
"original": {
|
|
881
880
|
"attributes": {
|
|
882
881
|
"group": "fontWeight",
|
|
883
|
-
"state": "
|
|
882
|
+
"state": "active",
|
|
884
883
|
"introduced": "0.10.33",
|
|
885
|
-
"description": "Helpful guidance goes here"
|
|
886
|
-
"deprecated": "1.29.0"
|
|
884
|
+
"description": "Helpful guidance goes here"
|
|
887
885
|
},
|
|
888
886
|
"value": "FontWeight700"
|
|
889
887
|
},
|
|
@@ -893,10 +891,9 @@ const tokens = [{
|
|
|
893
891
|
}, {
|
|
894
892
|
"attributes": {
|
|
895
893
|
"group": "fontWeight",
|
|
896
|
-
"state": "
|
|
894
|
+
"state": "active",
|
|
897
895
|
"introduced": "0.10.33",
|
|
898
|
-
"description": "Helpful guidance goes here"
|
|
899
|
-
"deprecated": "1.29.0"
|
|
896
|
+
"description": "Helpful guidance goes here"
|
|
900
897
|
},
|
|
901
898
|
"value": "500",
|
|
902
899
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -904,10 +901,9 @@ const tokens = [{
|
|
|
904
901
|
"original": {
|
|
905
902
|
"attributes": {
|
|
906
903
|
"group": "fontWeight",
|
|
907
|
-
"state": "
|
|
904
|
+
"state": "active",
|
|
908
905
|
"introduced": "0.10.33",
|
|
909
|
-
"description": "Helpful guidance goes here"
|
|
910
|
-
"deprecated": "1.29.0"
|
|
906
|
+
"description": "Helpful guidance goes here"
|
|
911
907
|
},
|
|
912
908
|
"value": "FontWeight500"
|
|
913
909
|
},
|
|
@@ -917,10 +913,9 @@ const tokens = [{
|
|
|
917
913
|
}, {
|
|
918
914
|
"attributes": {
|
|
919
915
|
"group": "fontWeight",
|
|
920
|
-
"state": "
|
|
916
|
+
"state": "active",
|
|
921
917
|
"introduced": "0.10.33",
|
|
922
|
-
"description": "Helpful guidance goes here"
|
|
923
|
-
"deprecated": "1.29.0"
|
|
918
|
+
"description": "Helpful guidance goes here"
|
|
924
919
|
},
|
|
925
920
|
"value": "400",
|
|
926
921
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -928,10 +923,9 @@ const tokens = [{
|
|
|
928
923
|
"original": {
|
|
929
924
|
"attributes": {
|
|
930
925
|
"group": "fontWeight",
|
|
931
|
-
"state": "
|
|
926
|
+
"state": "active",
|
|
932
927
|
"introduced": "0.10.33",
|
|
933
|
-
"description": "Helpful guidance goes here"
|
|
934
|
-
"deprecated": "1.29.0"
|
|
928
|
+
"description": "Helpful guidance goes here"
|
|
935
929
|
},
|
|
936
930
|
"value": "FontWeight400"
|
|
937
931
|
},
|
|
@@ -941,10 +935,9 @@ const tokens = [{
|
|
|
941
935
|
}, {
|
|
942
936
|
"attributes": {
|
|
943
937
|
"group": "fontWeight",
|
|
944
|
-
"state": "
|
|
938
|
+
"state": "active",
|
|
945
939
|
"introduced": "0.10.33",
|
|
946
|
-
"description": "Helpful guidance goes here"
|
|
947
|
-
"deprecated": "1.29.0"
|
|
940
|
+
"description": "Helpful guidance goes here"
|
|
948
941
|
},
|
|
949
942
|
"value": "600",
|
|
950
943
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -952,10 +945,9 @@ const tokens = [{
|
|
|
952
945
|
"original": {
|
|
953
946
|
"attributes": {
|
|
954
947
|
"group": "fontWeight",
|
|
955
|
-
"state": "
|
|
948
|
+
"state": "active",
|
|
956
949
|
"introduced": "0.10.33",
|
|
957
|
-
"description": "Helpful guidance goes here"
|
|
958
|
-
"deprecated": "1.29.0"
|
|
950
|
+
"description": "Helpful guidance goes here"
|
|
959
951
|
},
|
|
960
952
|
"value": "FontWeight600"
|
|
961
953
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::50936ff02c06fe3c1fc566afdf1e5301>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
const tokens = [{
|
|
@@ -674,5 +674,93 @@ const tokens = [{
|
|
|
674
674
|
"name": "font.family.brand",
|
|
675
675
|
"path": ["font", "family", "brand"],
|
|
676
676
|
"cleanName": "font.family.brand"
|
|
677
|
+
}, {
|
|
678
|
+
"attributes": {
|
|
679
|
+
"group": "fontWeight",
|
|
680
|
+
"state": "active",
|
|
681
|
+
"introduced": "0.10.33",
|
|
682
|
+
"description": "Helpful guidance goes here"
|
|
683
|
+
},
|
|
684
|
+
"value": "700",
|
|
685
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
686
|
+
"isSource": true,
|
|
687
|
+
"original": {
|
|
688
|
+
"attributes": {
|
|
689
|
+
"group": "fontWeight",
|
|
690
|
+
"state": "active",
|
|
691
|
+
"introduced": "0.10.33",
|
|
692
|
+
"description": "Helpful guidance goes here"
|
|
693
|
+
},
|
|
694
|
+
"value": "FontWeight700"
|
|
695
|
+
},
|
|
696
|
+
"name": "font.weight.bold",
|
|
697
|
+
"path": ["font", "weight", "bold"],
|
|
698
|
+
"cleanName": "font.weight.bold"
|
|
699
|
+
}, {
|
|
700
|
+
"attributes": {
|
|
701
|
+
"group": "fontWeight",
|
|
702
|
+
"state": "active",
|
|
703
|
+
"introduced": "0.10.33",
|
|
704
|
+
"description": "Helpful guidance goes here"
|
|
705
|
+
},
|
|
706
|
+
"value": "500",
|
|
707
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
708
|
+
"isSource": true,
|
|
709
|
+
"original": {
|
|
710
|
+
"attributes": {
|
|
711
|
+
"group": "fontWeight",
|
|
712
|
+
"state": "active",
|
|
713
|
+
"introduced": "0.10.33",
|
|
714
|
+
"description": "Helpful guidance goes here"
|
|
715
|
+
},
|
|
716
|
+
"value": "FontWeight500"
|
|
717
|
+
},
|
|
718
|
+
"name": "font.weight.medium",
|
|
719
|
+
"path": ["font", "weight", "medium"],
|
|
720
|
+
"cleanName": "font.weight.medium"
|
|
721
|
+
}, {
|
|
722
|
+
"attributes": {
|
|
723
|
+
"group": "fontWeight",
|
|
724
|
+
"state": "active",
|
|
725
|
+
"introduced": "0.10.33",
|
|
726
|
+
"description": "Helpful guidance goes here"
|
|
727
|
+
},
|
|
728
|
+
"value": "400",
|
|
729
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
730
|
+
"isSource": true,
|
|
731
|
+
"original": {
|
|
732
|
+
"attributes": {
|
|
733
|
+
"group": "fontWeight",
|
|
734
|
+
"state": "active",
|
|
735
|
+
"introduced": "0.10.33",
|
|
736
|
+
"description": "Helpful guidance goes here"
|
|
737
|
+
},
|
|
738
|
+
"value": "FontWeight400"
|
|
739
|
+
},
|
|
740
|
+
"name": "font.weight.regular",
|
|
741
|
+
"path": ["font", "weight", "regular"],
|
|
742
|
+
"cleanName": "font.weight.regular"
|
|
743
|
+
}, {
|
|
744
|
+
"attributes": {
|
|
745
|
+
"group": "fontWeight",
|
|
746
|
+
"state": "active",
|
|
747
|
+
"introduced": "0.10.33",
|
|
748
|
+
"description": "Helpful guidance goes here"
|
|
749
|
+
},
|
|
750
|
+
"value": "600",
|
|
751
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
752
|
+
"isSource": true,
|
|
753
|
+
"original": {
|
|
754
|
+
"attributes": {
|
|
755
|
+
"group": "fontWeight",
|
|
756
|
+
"state": "active",
|
|
757
|
+
"introduced": "0.10.33",
|
|
758
|
+
"description": "Helpful guidance goes here"
|
|
759
|
+
},
|
|
760
|
+
"value": "FontWeight600"
|
|
761
|
+
},
|
|
762
|
+
"name": "font.weight.semibold",
|
|
763
|
+
"path": ["font", "weight", "semibold"],
|
|
764
|
+
"cleanName": "font.weight.semibold"
|
|
677
765
|
}];
|
|
678
766
|
export default tokens;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import warnOnce from '@atlaskit/ds-lib/warn-once';
|
|
2
2
|
import tokens from './artifacts/token-names';
|
|
3
3
|
const name = "@atlaskit/tokens";
|
|
4
|
-
const version = "1.
|
|
4
|
+
const version = "1.37.0";
|
|
5
5
|
/**
|
|
6
6
|
* Takes a dot-separated token name and and an optional fallback, and returns the current computed CSS value for the
|
|
7
7
|
* resulting CSS Custom Property.
|
package/dist/es2019/get-token.js
CHANGED
|
@@ -2,7 +2,7 @@ import warnOnce from '@atlaskit/ds-lib/warn-once';
|
|
|
2
2
|
import tokens from './artifacts/token-names';
|
|
3
3
|
import { TOKEN_NOT_FOUND_CSS_VAR } from './constants';
|
|
4
4
|
const name = "@atlaskit/tokens";
|
|
5
|
-
const version = "1.
|
|
5
|
+
const version = "1.37.0";
|
|
6
6
|
/**
|
|
7
7
|
* Takes a dot-separated token name and an optional fallback, and returns the CSS custom property for the corresponding token.
|
|
8
8
|
* This should be used to implement design decisions throughout your application.
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* These changes will then be picked up by our tooling which will attempt to
|
|
13
13
|
* migrate as many of these renames as possible.
|
|
14
14
|
*
|
|
15
|
-
* @codegen <<SignedSource::
|
|
15
|
+
* @codegen <<SignedSource::89c10efc85f250da0db65341b911ad2e>>
|
|
16
16
|
* @codegenCommand yarn build tokens
|
|
17
17
|
*/
|
|
18
18
|
|
|
@@ -76,18 +76,6 @@ var replacementMapper = [{
|
|
|
76
76
|
}, {
|
|
77
77
|
"path": "font.size.600",
|
|
78
78
|
"state": "deprecated"
|
|
79
|
-
}, {
|
|
80
|
-
"path": "font.weight.bold",
|
|
81
|
-
"state": "deprecated"
|
|
82
|
-
}, {
|
|
83
|
-
"path": "font.weight.medium",
|
|
84
|
-
"state": "deprecated"
|
|
85
|
-
}, {
|
|
86
|
-
"path": "font.weight.regular",
|
|
87
|
-
"state": "deprecated"
|
|
88
|
-
}, {
|
|
89
|
-
"path": "font.weight.semibold",
|
|
90
|
-
"state": "deprecated"
|
|
91
79
|
}, {
|
|
92
80
|
"path": "font.lineHeight.1",
|
|
93
81
|
"state": "deprecated"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::6f19563c59b6fe6474e82b98deb29395>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
|
-
export default "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-family-body: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
|
|
6
|
+
export default "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-family-body: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::61dd6fdb38f371b93ae7d91770bd4e77>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
var tokens = [{
|
|
@@ -869,10 +869,9 @@ var tokens = [{
|
|
|
869
869
|
}, {
|
|
870
870
|
"attributes": {
|
|
871
871
|
"group": "fontWeight",
|
|
872
|
-
"state": "
|
|
872
|
+
"state": "active",
|
|
873
873
|
"introduced": "0.10.33",
|
|
874
|
-
"description": "Helpful guidance goes here"
|
|
875
|
-
"deprecated": "1.29.0"
|
|
874
|
+
"description": "Helpful guidance goes here"
|
|
876
875
|
},
|
|
877
876
|
"value": "700",
|
|
878
877
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -880,10 +879,9 @@ var tokens = [{
|
|
|
880
879
|
"original": {
|
|
881
880
|
"attributes": {
|
|
882
881
|
"group": "fontWeight",
|
|
883
|
-
"state": "
|
|
882
|
+
"state": "active",
|
|
884
883
|
"introduced": "0.10.33",
|
|
885
|
-
"description": "Helpful guidance goes here"
|
|
886
|
-
"deprecated": "1.29.0"
|
|
884
|
+
"description": "Helpful guidance goes here"
|
|
887
885
|
},
|
|
888
886
|
"value": "FontWeight700"
|
|
889
887
|
},
|
|
@@ -893,10 +891,9 @@ var tokens = [{
|
|
|
893
891
|
}, {
|
|
894
892
|
"attributes": {
|
|
895
893
|
"group": "fontWeight",
|
|
896
|
-
"state": "
|
|
894
|
+
"state": "active",
|
|
897
895
|
"introduced": "0.10.33",
|
|
898
|
-
"description": "Helpful guidance goes here"
|
|
899
|
-
"deprecated": "1.29.0"
|
|
896
|
+
"description": "Helpful guidance goes here"
|
|
900
897
|
},
|
|
901
898
|
"value": "500",
|
|
902
899
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -904,10 +901,9 @@ var tokens = [{
|
|
|
904
901
|
"original": {
|
|
905
902
|
"attributes": {
|
|
906
903
|
"group": "fontWeight",
|
|
907
|
-
"state": "
|
|
904
|
+
"state": "active",
|
|
908
905
|
"introduced": "0.10.33",
|
|
909
|
-
"description": "Helpful guidance goes here"
|
|
910
|
-
"deprecated": "1.29.0"
|
|
906
|
+
"description": "Helpful guidance goes here"
|
|
911
907
|
},
|
|
912
908
|
"value": "FontWeight500"
|
|
913
909
|
},
|
|
@@ -917,10 +913,9 @@ var tokens = [{
|
|
|
917
913
|
}, {
|
|
918
914
|
"attributes": {
|
|
919
915
|
"group": "fontWeight",
|
|
920
|
-
"state": "
|
|
916
|
+
"state": "active",
|
|
921
917
|
"introduced": "0.10.33",
|
|
922
|
-
"description": "Helpful guidance goes here"
|
|
923
|
-
"deprecated": "1.29.0"
|
|
918
|
+
"description": "Helpful guidance goes here"
|
|
924
919
|
},
|
|
925
920
|
"value": "400",
|
|
926
921
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -928,10 +923,9 @@ var tokens = [{
|
|
|
928
923
|
"original": {
|
|
929
924
|
"attributes": {
|
|
930
925
|
"group": "fontWeight",
|
|
931
|
-
"state": "
|
|
926
|
+
"state": "active",
|
|
932
927
|
"introduced": "0.10.33",
|
|
933
|
-
"description": "Helpful guidance goes here"
|
|
934
|
-
"deprecated": "1.29.0"
|
|
928
|
+
"description": "Helpful guidance goes here"
|
|
935
929
|
},
|
|
936
930
|
"value": "FontWeight400"
|
|
937
931
|
},
|
|
@@ -941,10 +935,9 @@ var tokens = [{
|
|
|
941
935
|
}, {
|
|
942
936
|
"attributes": {
|
|
943
937
|
"group": "fontWeight",
|
|
944
|
-
"state": "
|
|
938
|
+
"state": "active",
|
|
945
939
|
"introduced": "0.10.33",
|
|
946
|
-
"description": "Helpful guidance goes here"
|
|
947
|
-
"deprecated": "1.29.0"
|
|
940
|
+
"description": "Helpful guidance goes here"
|
|
948
941
|
},
|
|
949
942
|
"value": "600",
|
|
950
943
|
"filePath": "schema/themes/atlassian-typography-adg3/font-weight.tsx",
|
|
@@ -952,10 +945,9 @@ var tokens = [{
|
|
|
952
945
|
"original": {
|
|
953
946
|
"attributes": {
|
|
954
947
|
"group": "fontWeight",
|
|
955
|
-
"state": "
|
|
948
|
+
"state": "active",
|
|
956
949
|
"introduced": "0.10.33",
|
|
957
|
-
"description": "Helpful guidance goes here"
|
|
958
|
-
"deprecated": "1.29.0"
|
|
950
|
+
"description": "Helpful guidance goes here"
|
|
959
951
|
},
|
|
960
952
|
"value": "FontWeight600"
|
|
961
953
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::50936ff02c06fe3c1fc566afdf1e5301>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
var tokens = [{
|
|
@@ -674,5 +674,93 @@ var tokens = [{
|
|
|
674
674
|
"name": "font.family.brand",
|
|
675
675
|
"path": ["font", "family", "brand"],
|
|
676
676
|
"cleanName": "font.family.brand"
|
|
677
|
+
}, {
|
|
678
|
+
"attributes": {
|
|
679
|
+
"group": "fontWeight",
|
|
680
|
+
"state": "active",
|
|
681
|
+
"introduced": "0.10.33",
|
|
682
|
+
"description": "Helpful guidance goes here"
|
|
683
|
+
},
|
|
684
|
+
"value": "700",
|
|
685
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
686
|
+
"isSource": true,
|
|
687
|
+
"original": {
|
|
688
|
+
"attributes": {
|
|
689
|
+
"group": "fontWeight",
|
|
690
|
+
"state": "active",
|
|
691
|
+
"introduced": "0.10.33",
|
|
692
|
+
"description": "Helpful guidance goes here"
|
|
693
|
+
},
|
|
694
|
+
"value": "FontWeight700"
|
|
695
|
+
},
|
|
696
|
+
"name": "font.weight.bold",
|
|
697
|
+
"path": ["font", "weight", "bold"],
|
|
698
|
+
"cleanName": "font.weight.bold"
|
|
699
|
+
}, {
|
|
700
|
+
"attributes": {
|
|
701
|
+
"group": "fontWeight",
|
|
702
|
+
"state": "active",
|
|
703
|
+
"introduced": "0.10.33",
|
|
704
|
+
"description": "Helpful guidance goes here"
|
|
705
|
+
},
|
|
706
|
+
"value": "500",
|
|
707
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
708
|
+
"isSource": true,
|
|
709
|
+
"original": {
|
|
710
|
+
"attributes": {
|
|
711
|
+
"group": "fontWeight",
|
|
712
|
+
"state": "active",
|
|
713
|
+
"introduced": "0.10.33",
|
|
714
|
+
"description": "Helpful guidance goes here"
|
|
715
|
+
},
|
|
716
|
+
"value": "FontWeight500"
|
|
717
|
+
},
|
|
718
|
+
"name": "font.weight.medium",
|
|
719
|
+
"path": ["font", "weight", "medium"],
|
|
720
|
+
"cleanName": "font.weight.medium"
|
|
721
|
+
}, {
|
|
722
|
+
"attributes": {
|
|
723
|
+
"group": "fontWeight",
|
|
724
|
+
"state": "active",
|
|
725
|
+
"introduced": "0.10.33",
|
|
726
|
+
"description": "Helpful guidance goes here"
|
|
727
|
+
},
|
|
728
|
+
"value": "400",
|
|
729
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
730
|
+
"isSource": true,
|
|
731
|
+
"original": {
|
|
732
|
+
"attributes": {
|
|
733
|
+
"group": "fontWeight",
|
|
734
|
+
"state": "active",
|
|
735
|
+
"introduced": "0.10.33",
|
|
736
|
+
"description": "Helpful guidance goes here"
|
|
737
|
+
},
|
|
738
|
+
"value": "FontWeight400"
|
|
739
|
+
},
|
|
740
|
+
"name": "font.weight.regular",
|
|
741
|
+
"path": ["font", "weight", "regular"],
|
|
742
|
+
"cleanName": "font.weight.regular"
|
|
743
|
+
}, {
|
|
744
|
+
"attributes": {
|
|
745
|
+
"group": "fontWeight",
|
|
746
|
+
"state": "active",
|
|
747
|
+
"introduced": "0.10.33",
|
|
748
|
+
"description": "Helpful guidance goes here"
|
|
749
|
+
},
|
|
750
|
+
"value": "600",
|
|
751
|
+
"filePath": "schema/themes/atlassian-typography-minor3/font-weight.tsx",
|
|
752
|
+
"isSource": true,
|
|
753
|
+
"original": {
|
|
754
|
+
"attributes": {
|
|
755
|
+
"group": "fontWeight",
|
|
756
|
+
"state": "active",
|
|
757
|
+
"introduced": "0.10.33",
|
|
758
|
+
"description": "Helpful guidance goes here"
|
|
759
|
+
},
|
|
760
|
+
"value": "FontWeight600"
|
|
761
|
+
},
|
|
762
|
+
"name": "font.weight.semibold",
|
|
763
|
+
"path": ["font", "weight", "semibold"],
|
|
764
|
+
"cleanName": "font.weight.semibold"
|
|
677
765
|
}];
|
|
678
766
|
export default tokens;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import warnOnce from '@atlaskit/ds-lib/warn-once';
|
|
2
2
|
import tokens from './artifacts/token-names';
|
|
3
3
|
var name = "@atlaskit/tokens";
|
|
4
|
-
var version = "1.
|
|
4
|
+
var version = "1.37.0";
|
|
5
5
|
/**
|
|
6
6
|
* Takes a dot-separated token name and and an optional fallback, and returns the current computed CSS value for the
|
|
7
7
|
* resulting CSS Custom Property.
|
package/dist/esm/get-token.js
CHANGED
|
@@ -2,7 +2,7 @@ import warnOnce from '@atlaskit/ds-lib/warn-once';
|
|
|
2
2
|
import tokens from './artifacts/token-names';
|
|
3
3
|
import { TOKEN_NOT_FOUND_CSS_VAR } from './constants';
|
|
4
4
|
var name = "@atlaskit/tokens";
|
|
5
|
-
var version = "1.
|
|
5
|
+
var version = "1.37.0";
|
|
6
6
|
/**
|
|
7
7
|
* Takes a dot-separated token name and an optional fallback, and returns the CSS custom property for the corresponding token.
|
|
8
8
|
* This should be used to implement design decisions throughout your application.
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* These changes will then be picked up by our tooling which will attempt to
|
|
13
13
|
* migrate as many of these renames as possible.
|
|
14
14
|
*
|
|
15
|
-
* @codegen <<SignedSource::
|
|
15
|
+
* @codegen <<SignedSource::89c10efc85f250da0db65341b911ad2e>>
|
|
16
16
|
* @codegenCommand yarn build tokens
|
|
17
17
|
*/
|
|
18
18
|
import tokens from './token-names';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::6f19563c59b6fe6474e82b98deb29395>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
|
-
declare const _default: "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-family-body: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
|
|
6
|
+
declare const _default: "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-family-body: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
|
|
7
7
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::61dd6fdb38f371b93ae7d91770bd4e77>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
declare const tokens: ({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::50936ff02c06fe3c1fc566afdf1e5301>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
declare const tokens: ({
|