@atlaskit/tokens 1.14.1 → 1.15.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/dist/cjs/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/cjs/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +277 -37
- package/dist/cjs/artifacts/theme-import-map.js +10 -4
- package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +13 -0
- package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +26 -2
- package/dist/cjs/artifacts/token-names.js +22 -1
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +1084 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/cjs/babel-plugin/plugin.js +34 -3
- package/dist/cjs/constants.js +1 -3
- package/dist/cjs/entry-points/tokens-raw.js +2 -2
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/typography-palette.js +121 -16
- package/dist/cjs/theme-config.js +12 -4
- package/dist/cjs/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/cjs/tokens/atlassian-typography/theme.js +140 -0
- package/dist/cjs/tokens/atlassian-typography/utils.js +29 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +29 -0
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.js +8 -8
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.js +4 -4
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +140 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/utils.js +29 -0
- package/dist/cjs/tokens/default/typography/font-family.js +24 -0
- package/dist/cjs/tokens/default/typography/font.js +133 -0
- package/dist/cjs/tokens/default/typography/letter-spacing.js +54 -0
- package/dist/cjs/tokens/default/typography/line-height.js +8 -0
- package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +277 -37
- package/dist/es2019/artifacts/theme-import-map.js +6 -4
- package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +50 -0
- package/dist/es2019/artifacts/themes/atlassian-typography.js +23 -21
- package/dist/es2019/artifacts/token-default-values.js +26 -2
- package/dist/es2019/artifacts/token-names.js +22 -1
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/es2019/babel-plugin/plugin.js +34 -4
- package/dist/es2019/constants.js +0 -1
- package/dist/es2019/entry-points/tokens-raw.js +1 -1
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/typography-palette.js +123 -17
- package/dist/es2019/theme-config.js +12 -4
- package/dist/es2019/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/es2019/tokens/atlassian-typography/theme.js +133 -0
- package/dist/es2019/tokens/atlassian-typography/utils.js +22 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +22 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +31 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +19 -0
- package/dist/es2019/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +133 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/utils.js +22 -0
- package/dist/es2019/tokens/default/typography/font-family.js +24 -0
- package/dist/es2019/tokens/default/typography/font.js +126 -0
- package/dist/es2019/tokens/default/typography/letter-spacing.js +47 -0
- package/dist/es2019/tokens/default/typography/line-height.js +8 -0
- package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +277 -37
- package/dist/esm/artifacts/theme-import-map.js +8 -4
- package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +6 -0
- package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +26 -2
- package/dist/esm/artifacts/token-names.js +22 -1
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/esm/babel-plugin/plugin.js +34 -3
- package/dist/esm/constants.js +0 -1
- package/dist/esm/entry-points/tokens-raw.js +1 -1
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/typography-palette.js +121 -16
- package/dist/esm/theme-config.js +12 -4
- package/dist/esm/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/esm/tokens/atlassian-typography/theme.js +133 -0
- package/dist/esm/tokens/atlassian-typography/utils.js +22 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +22 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +31 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +19 -0
- package/dist/esm/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
- package/dist/esm/tokens/atlassian-typography-adg3/theme.js +133 -0
- package/dist/esm/tokens/atlassian-typography-adg3/utils.js +22 -0
- package/dist/esm/tokens/default/typography/font-family.js +24 -0
- package/dist/esm/tokens/default/typography/font.js +126 -0
- package/dist/esm/tokens/default/typography/letter-spacing.js +47 -0
- package/dist/esm/tokens/default/typography/line-height.js +8 -0
- package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
- package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +26 -2
- package/dist/types/artifacts/token-names.d.ts +43 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
- package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/babel-plugin/plugin.d.ts +3 -0
- package/dist/types/constants.d.ts +0 -1
- package/dist/types/entry-points/tokens-raw.d.ts +1 -1
- package/dist/types/palettes/typography-palette.d.ts +8 -6
- package/dist/types/theme-config.d.ts +4 -4
- package/dist/types/tokens/atlassian-typography/theme.d.ts +10 -0
- package/dist/types/tokens/atlassian-typography/utils.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
- package/dist/types/tokens/atlassian-typography-adg3/utils.d.ts +4 -0
- package/dist/types/tokens/default/typography/font.d.ts +20 -0
- package/dist/types/tokens/default/typography/letter-spacing.d.ts +4 -0
- package/dist/types/types.d.ts +111 -22
- package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +26 -2
- package/dist/types-ts4.5/artifacts/token-names.d.ts +43 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
- 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/babel-plugin/plugin.d.ts +3 -0
- package/dist/types-ts4.5/constants.d.ts +0 -1
- package/dist/types-ts4.5/entry-points/tokens-raw.d.ts +1 -1
- package/dist/types-ts4.5/palettes/typography-palette.d.ts +8 -6
- package/dist/types-ts4.5/theme-config.d.ts +5 -3
- package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +10 -0
- package/dist/types-ts4.5/tokens/atlassian-typography/utils.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/utils.d.ts +4 -0
- package/dist/types-ts4.5/tokens/default/typography/font.d.ts +20 -0
- package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +4 -0
- package/dist/types-ts4.5/types.d.ts +111 -22
- package/figma/atlassian-typography-adg3.json +150 -0
- package/figma/atlassian-typography.json +19 -82
- package/package.json +1 -1
- package/report.api.md +60 -2
- package/tmp/api-report-tmp.d.ts +49 -7
- package/dist/cjs/version.json +0 -7
- package/dist/es2019/tokens/atlassian-typography/font-size.js +0 -31
- package/dist/es2019/tokens/atlassian-typography/font-weight.js +0 -19
- package/dist/es2019/version.json +0 -7
- package/dist/esm/tokens/atlassian-typography/font-size.js +0 -31
- package/dist/esm/tokens/atlassian-typography/font-weight.js +0 -19
- package/dist/esm/version.json +0 -7
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Typography adg3",
|
|
3
|
+
"tokens": {
|
|
4
|
+
"Typography adg3/font.family.code": {
|
|
5
|
+
"attributes": {
|
|
6
|
+
"group": "fontFamily",
|
|
7
|
+
"state": "experimental",
|
|
8
|
+
"introduced": "1.14.0",
|
|
9
|
+
"description": "Helpful guidance goes here"
|
|
10
|
+
},
|
|
11
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace"
|
|
12
|
+
},
|
|
13
|
+
"Typography adg3/font.family.monospace": {
|
|
14
|
+
"attributes": {
|
|
15
|
+
"group": "fontFamily",
|
|
16
|
+
"state": "active",
|
|
17
|
+
"introduced": "0.10.33",
|
|
18
|
+
"description": "Helpful guidance goes here"
|
|
19
|
+
},
|
|
20
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace"
|
|
21
|
+
},
|
|
22
|
+
"Typography adg3/font.family.product": {
|
|
23
|
+
"attributes": {
|
|
24
|
+
"group": "fontFamily",
|
|
25
|
+
"state": "experimental",
|
|
26
|
+
"introduced": "1.14.0",
|
|
27
|
+
"description": "Helpful guidance goes here"
|
|
28
|
+
},
|
|
29
|
+
"value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif"
|
|
30
|
+
},
|
|
31
|
+
"Typography adg3/font.family.sans": {
|
|
32
|
+
"attributes": {
|
|
33
|
+
"group": "fontFamily",
|
|
34
|
+
"state": "active",
|
|
35
|
+
"introduced": "0.10.33",
|
|
36
|
+
"description": "Helpful guidance goes here"
|
|
37
|
+
},
|
|
38
|
+
"value": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif"
|
|
39
|
+
},
|
|
40
|
+
"Typography adg3/font.family.brand": {
|
|
41
|
+
"attributes": {
|
|
42
|
+
"group": "fontFamily",
|
|
43
|
+
"state": "experimental",
|
|
44
|
+
"introduced": "1.14.0",
|
|
45
|
+
"description": "Helpful guidance goes here"
|
|
46
|
+
},
|
|
47
|
+
"value": "Charlie Sans"
|
|
48
|
+
},
|
|
49
|
+
"Typography adg3/font.weight.bold": {
|
|
50
|
+
"attributes": {
|
|
51
|
+
"group": "fontWeight",
|
|
52
|
+
"state": "active",
|
|
53
|
+
"introduced": "0.10.33",
|
|
54
|
+
"description": "Helpful guidance goes here"
|
|
55
|
+
},
|
|
56
|
+
"value": "700"
|
|
57
|
+
},
|
|
58
|
+
"Typography adg3/font.weight.medium": {
|
|
59
|
+
"attributes": {
|
|
60
|
+
"group": "fontWeight",
|
|
61
|
+
"state": "active",
|
|
62
|
+
"introduced": "0.10.33",
|
|
63
|
+
"description": "Helpful guidance goes here"
|
|
64
|
+
},
|
|
65
|
+
"value": "500"
|
|
66
|
+
},
|
|
67
|
+
"Typography adg3/font.weight.regular": {
|
|
68
|
+
"attributes": {
|
|
69
|
+
"group": "fontWeight",
|
|
70
|
+
"state": "active",
|
|
71
|
+
"introduced": "0.10.33",
|
|
72
|
+
"description": "Helpful guidance goes here"
|
|
73
|
+
},
|
|
74
|
+
"value": "400"
|
|
75
|
+
},
|
|
76
|
+
"Typography adg3/font.weight.semibold": {
|
|
77
|
+
"attributes": {
|
|
78
|
+
"group": "fontWeight",
|
|
79
|
+
"state": "active",
|
|
80
|
+
"introduced": "0.10.33",
|
|
81
|
+
"description": "Helpful guidance goes here"
|
|
82
|
+
},
|
|
83
|
+
"value": "600"
|
|
84
|
+
},
|
|
85
|
+
"Typography adg3/font.lineHeight.1": {
|
|
86
|
+
"attributes": {
|
|
87
|
+
"group": "lineHeight",
|
|
88
|
+
"state": "active",
|
|
89
|
+
"introduced": "0.10.33",
|
|
90
|
+
"description": "Used single-line text."
|
|
91
|
+
},
|
|
92
|
+
"value": "1"
|
|
93
|
+
},
|
|
94
|
+
"Typography adg3/font.lineHeight.100": {
|
|
95
|
+
"attributes": {
|
|
96
|
+
"group": "lineHeight",
|
|
97
|
+
"state": "active",
|
|
98
|
+
"introduced": "0.10.33",
|
|
99
|
+
"description": "Helpful guidance goes here"
|
|
100
|
+
},
|
|
101
|
+
"value": 16
|
|
102
|
+
},
|
|
103
|
+
"Typography adg3/font.lineHeight.200": {
|
|
104
|
+
"attributes": {
|
|
105
|
+
"group": "lineHeight",
|
|
106
|
+
"state": "active",
|
|
107
|
+
"introduced": "0.10.33",
|
|
108
|
+
"description": "Helpful guidance goes here"
|
|
109
|
+
},
|
|
110
|
+
"value": 20
|
|
111
|
+
},
|
|
112
|
+
"Typography adg3/font.lineHeight.300": {
|
|
113
|
+
"attributes": {
|
|
114
|
+
"group": "lineHeight",
|
|
115
|
+
"state": "active",
|
|
116
|
+
"introduced": "0.10.33",
|
|
117
|
+
"description": "Helpful guidance goes here"
|
|
118
|
+
},
|
|
119
|
+
"value": 24
|
|
120
|
+
},
|
|
121
|
+
"Typography adg3/font.lineHeight.400": {
|
|
122
|
+
"attributes": {
|
|
123
|
+
"group": "lineHeight",
|
|
124
|
+
"state": "active",
|
|
125
|
+
"introduced": "0.10.33",
|
|
126
|
+
"description": "Helpful guidance goes here"
|
|
127
|
+
},
|
|
128
|
+
"value": 28
|
|
129
|
+
},
|
|
130
|
+
"Typography adg3/font.lineHeight.500": {
|
|
131
|
+
"attributes": {
|
|
132
|
+
"group": "lineHeight",
|
|
133
|
+
"state": "active",
|
|
134
|
+
"introduced": "0.10.33",
|
|
135
|
+
"description": "Helpful guidance goes here"
|
|
136
|
+
},
|
|
137
|
+
"value": 32
|
|
138
|
+
},
|
|
139
|
+
"Typography adg3/font.lineHeight.600": {
|
|
140
|
+
"attributes": {
|
|
141
|
+
"group": "lineHeight",
|
|
142
|
+
"state": "active",
|
|
143
|
+
"introduced": "0.10.33",
|
|
144
|
+
"description": "Helpful guidance goes here"
|
|
145
|
+
},
|
|
146
|
+
"value": 40
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"renameMap": {}
|
|
150
|
+
}
|
|
@@ -1,113 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "Typography",
|
|
3
3
|
"tokens": {
|
|
4
|
-
"Typography/font.family.
|
|
4
|
+
"Typography/font.family.code": {
|
|
5
5
|
"attributes": {
|
|
6
6
|
"group": "fontFamily",
|
|
7
|
-
"state": "
|
|
8
|
-
"introduced": "
|
|
7
|
+
"state": "experimental",
|
|
8
|
+
"introduced": "1.14.0",
|
|
9
9
|
"description": "Helpful guidance goes here"
|
|
10
10
|
},
|
|
11
|
-
"value": "
|
|
11
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace"
|
|
12
12
|
},
|
|
13
|
-
"Typography/font.family.
|
|
13
|
+
"Typography/font.family.monospace": {
|
|
14
14
|
"attributes": {
|
|
15
15
|
"group": "fontFamily",
|
|
16
16
|
"state": "active",
|
|
17
17
|
"introduced": "0.10.33",
|
|
18
18
|
"description": "Helpful guidance goes here"
|
|
19
19
|
},
|
|
20
|
-
"value": "-
|
|
21
|
-
},
|
|
22
|
-
"Typography/font.weight.bold": {
|
|
23
|
-
"attributes": {
|
|
24
|
-
"group": "fontWeight",
|
|
25
|
-
"state": "active",
|
|
26
|
-
"introduced": "0.10.33",
|
|
27
|
-
"description": "Helpful guidance goes here"
|
|
28
|
-
},
|
|
29
|
-
"value": "700"
|
|
30
|
-
},
|
|
31
|
-
"Typography/font.weight.medium": {
|
|
32
|
-
"attributes": {
|
|
33
|
-
"group": "fontWeight",
|
|
34
|
-
"state": "active",
|
|
35
|
-
"introduced": "0.10.33",
|
|
36
|
-
"description": "Helpful guidance goes here"
|
|
37
|
-
},
|
|
38
|
-
"value": "500"
|
|
39
|
-
},
|
|
40
|
-
"Typography/font.weight.regular": {
|
|
41
|
-
"attributes": {
|
|
42
|
-
"group": "fontWeight",
|
|
43
|
-
"state": "active",
|
|
44
|
-
"introduced": "0.10.33",
|
|
45
|
-
"description": "Helpful guidance goes here"
|
|
46
|
-
},
|
|
47
|
-
"value": "400"
|
|
20
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace"
|
|
48
21
|
},
|
|
49
|
-
"Typography/font.
|
|
22
|
+
"Typography/font.family.product": {
|
|
50
23
|
"attributes": {
|
|
51
|
-
"group": "
|
|
52
|
-
"state": "
|
|
53
|
-
"introduced": "
|
|
54
|
-
"description": "Helpful guidance goes here"
|
|
55
|
-
},
|
|
56
|
-
"value": "600"
|
|
57
|
-
},
|
|
58
|
-
"Typography/font.lineHeight.100": {
|
|
59
|
-
"attributes": {
|
|
60
|
-
"group": "lineHeight",
|
|
61
|
-
"state": "active",
|
|
62
|
-
"introduced": "0.10.33",
|
|
63
|
-
"description": "Helpful guidance goes here"
|
|
64
|
-
},
|
|
65
|
-
"value": 16
|
|
66
|
-
},
|
|
67
|
-
"Typography/font.lineHeight.200": {
|
|
68
|
-
"attributes": {
|
|
69
|
-
"group": "lineHeight",
|
|
70
|
-
"state": "active",
|
|
71
|
-
"introduced": "0.10.33",
|
|
72
|
-
"description": "Helpful guidance goes here"
|
|
73
|
-
},
|
|
74
|
-
"value": 20
|
|
75
|
-
},
|
|
76
|
-
"Typography/font.lineHeight.300": {
|
|
77
|
-
"attributes": {
|
|
78
|
-
"group": "lineHeight",
|
|
79
|
-
"state": "active",
|
|
80
|
-
"introduced": "0.10.33",
|
|
81
|
-
"description": "Helpful guidance goes here"
|
|
82
|
-
},
|
|
83
|
-
"value": 24
|
|
84
|
-
},
|
|
85
|
-
"Typography/font.lineHeight.400": {
|
|
86
|
-
"attributes": {
|
|
87
|
-
"group": "lineHeight",
|
|
88
|
-
"state": "active",
|
|
89
|
-
"introduced": "0.10.33",
|
|
24
|
+
"group": "fontFamily",
|
|
25
|
+
"state": "experimental",
|
|
26
|
+
"introduced": "1.14.0",
|
|
90
27
|
"description": "Helpful guidance goes here"
|
|
91
28
|
},
|
|
92
|
-
"value":
|
|
29
|
+
"value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif"
|
|
93
30
|
},
|
|
94
|
-
"Typography/font.
|
|
31
|
+
"Typography/font.family.sans": {
|
|
95
32
|
"attributes": {
|
|
96
|
-
"group": "
|
|
33
|
+
"group": "fontFamily",
|
|
97
34
|
"state": "active",
|
|
98
35
|
"introduced": "0.10.33",
|
|
99
36
|
"description": "Helpful guidance goes here"
|
|
100
37
|
},
|
|
101
|
-
"value":
|
|
38
|
+
"value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif"
|
|
102
39
|
},
|
|
103
|
-
"Typography/font.
|
|
40
|
+
"Typography/font.family.brand": {
|
|
104
41
|
"attributes": {
|
|
105
|
-
"group": "
|
|
106
|
-
"state": "
|
|
107
|
-
"introduced": "
|
|
42
|
+
"group": "fontFamily",
|
|
43
|
+
"state": "experimental",
|
|
44
|
+
"introduced": "1.14.0",
|
|
108
45
|
"description": "Helpful guidance goes here"
|
|
109
46
|
},
|
|
110
|
-
"value":
|
|
47
|
+
"value": "Charlie Sans"
|
|
111
48
|
}
|
|
112
49
|
},
|
|
113
50
|
"renameMap": {}
|
package/package.json
CHANGED
package/report.api.md
CHANGED
|
@@ -340,6 +340,12 @@ export type ActiveTokens =
|
|
|
340
340
|
| 'elevation.surface.sunken'
|
|
341
341
|
| 'font.family.monospace'
|
|
342
342
|
| 'font.family.sans'
|
|
343
|
+
| 'font.letterSpacing.0'
|
|
344
|
+
| 'font.letterSpacing.100'
|
|
345
|
+
| 'font.letterSpacing.200'
|
|
346
|
+
| 'font.letterSpacing.300'
|
|
347
|
+
| 'font.letterSpacing.400'
|
|
348
|
+
| 'font.lineHeight.1'
|
|
343
349
|
| 'font.lineHeight.100'
|
|
344
350
|
| 'font.lineHeight.200'
|
|
345
351
|
| 'font.lineHeight.300'
|
|
@@ -880,8 +886,28 @@ type CSSTokenMap = {
|
|
|
880
886
|
'space.600': 'var(--ds-space-600)';
|
|
881
887
|
'space.800': 'var(--ds-space-800)';
|
|
882
888
|
'space.1000': 'var(--ds-space-1000)';
|
|
889
|
+
'font.body': 'var(--ds-font-body)';
|
|
890
|
+
'font.body.sm': 'var(--ds-font-body-sm)';
|
|
891
|
+
'font.code': 'var(--ds-font-code)';
|
|
892
|
+
'font.heading.lg': 'var(--ds-font-heading-lg)';
|
|
893
|
+
'font.heading.md': 'var(--ds-font-heading-md)';
|
|
894
|
+
'font.heading.sm': 'var(--ds-font-heading-sm)';
|
|
895
|
+
'font.heading.xl': 'var(--ds-font-heading-xl)';
|
|
896
|
+
'font.heading.xs': 'var(--ds-font-heading-xs)';
|
|
897
|
+
'font.heading.xxl': 'var(--ds-font-heading-xxl)';
|
|
898
|
+
'font.heading.xxs': 'var(--ds-font-heading-xxs)';
|
|
899
|
+
'font.letterSpacing.0': 'var(--ds-font-letterSpacing-0)';
|
|
900
|
+
'font.letterSpacing.100': 'var(--ds-font-letterSpacing-100)';
|
|
901
|
+
'font.letterSpacing.200': 'var(--ds-font-letterSpacing-200)';
|
|
902
|
+
'font.letterSpacing.300': 'var(--ds-font-letterSpacing-300)';
|
|
903
|
+
'font.letterSpacing.400': 'var(--ds-font-letterSpacing-400)';
|
|
904
|
+
'font.ui': 'var(--ds-font-ui)';
|
|
905
|
+
'font.ui.sm': 'var(--ds-font-ui-sm)';
|
|
906
|
+
'font.family.code': 'var(--ds-font-family-code)';
|
|
883
907
|
'font.family.monospace': 'var(--ds-font-family-monospace)';
|
|
908
|
+
'font.family.product': 'var(--ds-font-family-product)';
|
|
884
909
|
'font.family.sans': 'var(--ds-font-family-sans)';
|
|
910
|
+
'font.family.brand': 'var(--ds-font-family-brand)';
|
|
885
911
|
'font.size.050': 'var(--ds-font-size-050)';
|
|
886
912
|
'font.size.075': 'var(--ds-font-size-075)';
|
|
887
913
|
'font.size.100': 'var(--ds-font-size-100)';
|
|
@@ -894,6 +920,7 @@ type CSSTokenMap = {
|
|
|
894
920
|
'font.weight.medium': 'var(--ds-font-weight-medium)';
|
|
895
921
|
'font.weight.regular': 'var(--ds-font-weight-regular)';
|
|
896
922
|
'font.weight.semibold': 'var(--ds-font-weight-semibold)';
|
|
923
|
+
'font.lineHeight.1': 'var(--ds-font-lineHeight-1)';
|
|
897
924
|
'font.lineHeight.100': 'var(--ds-font-lineHeight-100)';
|
|
898
925
|
'font.lineHeight.200': 'var(--ds-font-lineHeight-200)';
|
|
899
926
|
'font.lineHeight.300': 'var(--ds-font-lineHeight-300)';
|
|
@@ -994,6 +1021,7 @@ export type Groups =
|
|
|
994
1021
|
| 'fontFamily'
|
|
995
1022
|
| 'fontSize'
|
|
996
1023
|
| 'fontWeight'
|
|
1024
|
+
| 'letterSpacing'
|
|
997
1025
|
| 'lineHeight'
|
|
998
1026
|
| 'opacity'
|
|
999
1027
|
| 'paint'
|
|
@@ -1324,6 +1352,12 @@ type InternalTokenIds =
|
|
|
1324
1352
|
| 'elevation.surface.sunken'
|
|
1325
1353
|
| 'font.family.monospace'
|
|
1326
1354
|
| 'font.family.sans'
|
|
1355
|
+
| 'font.letterSpacing.0'
|
|
1356
|
+
| 'font.letterSpacing.100'
|
|
1357
|
+
| 'font.letterSpacing.200'
|
|
1358
|
+
| 'font.letterSpacing.300'
|
|
1359
|
+
| 'font.letterSpacing.400'
|
|
1360
|
+
| 'font.lineHeight.1'
|
|
1327
1361
|
| 'font.lineHeight.100'
|
|
1328
1362
|
| 'font.lineHeight.200'
|
|
1329
1363
|
| 'font.lineHeight.300'
|
|
@@ -1469,6 +1503,7 @@ const themeIds: readonly [
|
|
|
1469
1503
|
'spacing',
|
|
1470
1504
|
'typography',
|
|
1471
1505
|
'shape',
|
|
1506
|
+
'typography-adg3',
|
|
1472
1507
|
];
|
|
1473
1508
|
|
|
1474
1509
|
// @public (undocumented)
|
|
@@ -1483,6 +1518,7 @@ const themeIdsWithOverrides: readonly [
|
|
|
1483
1518
|
'spacing',
|
|
1484
1519
|
'typography',
|
|
1485
1520
|
'shape',
|
|
1521
|
+
'typography-adg3',
|
|
1486
1522
|
'light-new-input-border',
|
|
1487
1523
|
'dark-new-input-border',
|
|
1488
1524
|
];
|
|
@@ -1534,7 +1570,8 @@ export type Themes =
|
|
|
1534
1570
|
| 'atlassian-light'
|
|
1535
1571
|
| 'atlassian-shape'
|
|
1536
1572
|
| 'atlassian-spacing'
|
|
1537
|
-
| 'atlassian-typography'
|
|
1573
|
+
| 'atlassian-typography'
|
|
1574
|
+
| 'atlassian-typography-adg3';
|
|
1538
1575
|
|
|
1539
1576
|
// @public
|
|
1540
1577
|
export interface ThemeState {
|
|
@@ -1549,7 +1586,7 @@ export interface ThemeState {
|
|
|
1549
1586
|
// (undocumented)
|
|
1550
1587
|
spacing?: Extract<ThemeIds, 'spacing'>;
|
|
1551
1588
|
// (undocumented)
|
|
1552
|
-
typography?: Extract<ThemeIds, 'typography'>;
|
|
1589
|
+
typography?: Extract<ThemeIds, 'typography' | 'typography-adg3'>;
|
|
1553
1590
|
// (undocumented)
|
|
1554
1591
|
UNSAFE_themeOptions?: ThemeOptionsSchema;
|
|
1555
1592
|
}
|
|
@@ -1922,8 +1959,28 @@ const tokens: {
|
|
|
1922
1959
|
readonly 'space.600': '--ds-space-600';
|
|
1923
1960
|
readonly 'space.800': '--ds-space-800';
|
|
1924
1961
|
readonly 'space.1000': '--ds-space-1000';
|
|
1962
|
+
readonly 'font.body': '--ds-font-body';
|
|
1963
|
+
readonly 'font.body.sm': '--ds-font-body-sm';
|
|
1964
|
+
readonly 'font.code': '--ds-font-code';
|
|
1965
|
+
readonly 'font.heading.lg': '--ds-font-heading-lg';
|
|
1966
|
+
readonly 'font.heading.md': '--ds-font-heading-md';
|
|
1967
|
+
readonly 'font.heading.sm': '--ds-font-heading-sm';
|
|
1968
|
+
readonly 'font.heading.xl': '--ds-font-heading-xl';
|
|
1969
|
+
readonly 'font.heading.xs': '--ds-font-heading-xs';
|
|
1970
|
+
readonly 'font.heading.xxl': '--ds-font-heading-xxl';
|
|
1971
|
+
readonly 'font.heading.xxs': '--ds-font-heading-xxs';
|
|
1972
|
+
readonly 'font.letterSpacing.0': '--ds-font-letterSpacing-0';
|
|
1973
|
+
readonly 'font.letterSpacing.100': '--ds-font-letterSpacing-100';
|
|
1974
|
+
readonly 'font.letterSpacing.200': '--ds-font-letterSpacing-200';
|
|
1975
|
+
readonly 'font.letterSpacing.300': '--ds-font-letterSpacing-300';
|
|
1976
|
+
readonly 'font.letterSpacing.400': '--ds-font-letterSpacing-400';
|
|
1977
|
+
readonly 'font.ui': '--ds-font-ui';
|
|
1978
|
+
readonly 'font.ui.sm': '--ds-font-ui-sm';
|
|
1979
|
+
readonly 'font.family.code': '--ds-font-family-code';
|
|
1925
1980
|
readonly 'font.family.monospace': '--ds-font-family-monospace';
|
|
1981
|
+
readonly 'font.family.product': '--ds-font-family-product';
|
|
1926
1982
|
readonly 'font.family.sans': '--ds-font-family-sans';
|
|
1983
|
+
readonly 'font.family.brand': '--ds-font-family-brand';
|
|
1927
1984
|
readonly 'font.size.050': '--ds-font-size-050';
|
|
1928
1985
|
readonly 'font.size.075': '--ds-font-size-075';
|
|
1929
1986
|
readonly 'font.size.100': '--ds-font-size-100';
|
|
@@ -1936,6 +1993,7 @@ const tokens: {
|
|
|
1936
1993
|
readonly 'font.weight.medium': '--ds-font-weight-medium';
|
|
1937
1994
|
readonly 'font.weight.regular': '--ds-font-weight-regular';
|
|
1938
1995
|
readonly 'font.weight.semibold': '--ds-font-weight-semibold';
|
|
1996
|
+
readonly 'font.lineHeight.1': '--ds-font-lineHeight-1';
|
|
1939
1997
|
readonly 'font.lineHeight.100': '--ds-font-lineHeight-100';
|
|
1940
1998
|
readonly 'font.lineHeight.200': '--ds-font-lineHeight-200';
|
|
1941
1999
|
readonly 'font.lineHeight.300': '--ds-font-lineHeight-300';
|