@fluentui/react-theme 9.0.0-rc.4 → 9.0.0-rc.7
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.json +136 -1
- package/CHANGELOG.md +77 -40
- package/dist/{react-theme.d.ts → index.d.ts} +102 -1
- package/lib/alias/darkColor.d.ts +2 -0
- package/lib/alias/{dark.js → darkColor.js} +20 -31
- package/lib/alias/darkColor.js.map +1 -0
- package/lib/alias/darkColorPalette.d.ts +2 -0
- package/lib/alias/darkColorPalette.js +19 -0
- package/lib/alias/darkColorPalette.js.map +1 -0
- package/lib/alias/highContrastColor.d.ts +2 -0
- package/lib/alias/{highContrast.js → highContrastColor.js} +8 -19
- package/lib/alias/highContrastColor.js.map +1 -0
- package/lib/alias/highContrastColorPalette.d.ts +2 -0
- package/lib/alias/highContrastColorPalette.js +19 -0
- package/lib/alias/highContrastColorPalette.js.map +1 -0
- package/lib/alias/lightColor.d.ts +2 -0
- package/lib/alias/{light.js → lightColor.js} +9 -20
- package/lib/alias/lightColor.js.map +1 -0
- package/lib/alias/lightColorPalette.d.ts +2 -0
- package/lib/alias/lightColorPalette.js +19 -0
- package/lib/alias/lightColorPalette.js.map +1 -0
- package/lib/alias/teamsDarkColor.d.ts +2 -0
- package/lib/alias/{teamsDark.js → teamsDarkColor.js} +20 -31
- package/lib/alias/teamsDarkColor.js.map +1 -0
- package/lib/alias/teamsDarkColorPalette.d.ts +2 -0
- package/lib/alias/teamsDarkColorPalette.js +19 -0
- package/lib/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib/global/brandColors.js +16 -16
- package/lib/global/brandColors.js.map +1 -1
- package/lib/global/colors.d.ts +1 -0
- package/lib/global/colors.js +17 -5
- package/lib/global/colors.js.map +1 -1
- package/lib/global/curves.d.ts +2 -0
- package/lib/global/curves.js +12 -0
- package/lib/global/curves.js.map +1 -0
- package/lib/global/durations.d.ts +2 -0
- package/lib/global/durations.js +10 -0
- package/lib/global/durations.js.map +1 -0
- package/lib/global/index.d.ts +5 -0
- package/lib/global/index.js +5 -0
- package/lib/global/index.js.map +1 -1
- package/lib/global/spacings.d.ts +4 -0
- package/lib/global/spacings.js +40 -0
- package/lib/global/spacings.js.map +1 -0
- package/lib/global/typographyStyles.d.ts +5 -0
- package/lib/global/typographyStyles.js +104 -0
- package/lib/global/typographyStyles.js.map +1 -0
- package/lib/index.d.ts +4 -3
- package/lib/index.js +3 -2
- package/lib/index.js.map +1 -1
- package/lib/tokens.js +48 -1
- package/lib/tokens.js.map +1 -1
- package/lib/types.d.ts +90 -1
- package/lib/types.js.map +1 -1
- package/lib/utils/createDarkTheme.js +9 -1
- package/lib/utils/createDarkTheme.js.map +1 -1
- package/lib/utils/createHighContrastTheme.js +9 -1
- package/lib/utils/createHighContrastTheme.js.map +1 -1
- package/lib/utils/createLightTheme.js +9 -1
- package/lib/utils/createLightTheme.js.map +1 -1
- package/lib/utils/createTeamsDarkTheme.js +9 -1
- package/lib/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib-commonjs/alias/darkColor.d.ts +2 -0
- package/lib-commonjs/alias/{dark.js → darkColor.js} +20 -31
- package/lib-commonjs/alias/darkColor.js.map +1 -0
- package/lib-commonjs/alias/darkColorPalette.d.ts +2 -0
- package/lib-commonjs/alias/darkColorPalette.js +27 -0
- package/lib-commonjs/alias/darkColorPalette.js.map +1 -0
- package/lib-commonjs/alias/highContrastColor.d.ts +2 -0
- package/lib-commonjs/alias/{highContrast.js → highContrastColor.js} +8 -19
- package/lib-commonjs/alias/highContrastColor.js.map +1 -0
- package/lib-commonjs/alias/highContrastColorPalette.d.ts +2 -0
- package/lib-commonjs/alias/highContrastColorPalette.js +27 -0
- package/lib-commonjs/alias/highContrastColorPalette.js.map +1 -0
- package/lib-commonjs/alias/lightColor.d.ts +2 -0
- package/lib-commonjs/alias/{light.js → lightColor.js} +9 -20
- package/lib-commonjs/alias/lightColor.js.map +1 -0
- package/lib-commonjs/alias/lightColorPalette.d.ts +2 -0
- package/lib-commonjs/alias/lightColorPalette.js +27 -0
- package/lib-commonjs/alias/lightColorPalette.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColor.d.ts +2 -0
- package/lib-commonjs/alias/{teamsDark.js → teamsDarkColor.js} +20 -31
- package/lib-commonjs/alias/teamsDarkColor.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.d.ts +2 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js +27 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib-commonjs/global/brandColors.js +16 -16
- package/lib-commonjs/global/brandColors.js.map +1 -1
- package/lib-commonjs/global/colors.d.ts +1 -0
- package/lib-commonjs/global/colors.js +18 -6
- package/lib-commonjs/global/colors.js.map +1 -1
- package/lib-commonjs/global/curves.d.ts +2 -0
- package/lib-commonjs/global/curves.js +18 -0
- package/lib-commonjs/global/curves.js.map +1 -0
- package/lib-commonjs/global/durations.d.ts +2 -0
- package/lib-commonjs/global/durations.js +16 -0
- package/lib-commonjs/global/durations.js.map +1 -0
- package/lib-commonjs/global/index.d.ts +5 -0
- package/lib-commonjs/global/index.js +10 -0
- package/lib-commonjs/global/index.js.map +1 -1
- package/lib-commonjs/global/spacings.d.ts +4 -0
- package/lib-commonjs/global/spacings.js +46 -0
- package/lib-commonjs/global/spacings.js.map +1 -0
- package/lib-commonjs/global/typographyStyles.d.ts +5 -0
- package/lib-commonjs/global/typographyStyles.js +112 -0
- package/lib-commonjs/global/typographyStyles.js.map +1 -0
- package/lib-commonjs/index.d.ts +4 -3
- package/lib-commonjs/index.js +73 -4
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/tokens.js +48 -1
- package/lib-commonjs/tokens.js.map +1 -1
- package/lib-commonjs/types.d.ts +90 -1
- package/lib-commonjs/utils/createDarkTheme.js +15 -3
- package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/createHighContrastTheme.js +15 -3
- package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
- package/lib-commonjs/utils/createLightTheme.js +15 -3
- package/lib-commonjs/utils/createLightTheme.js.map +1 -1
- package/lib-commonjs/utils/createTeamsDarkTheme.js +15 -3
- package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
- package/package.json +5 -8
- package/lib/alias/dark.d.ts +0 -3
- package/lib/alias/dark.js.map +0 -1
- package/lib/alias/highContrast.d.ts +0 -3
- package/lib/alias/highContrast.js.map +0 -1
- package/lib/alias/light.d.ts +0 -3
- package/lib/alias/light.js.map +0 -1
- package/lib/alias/teamsDark.d.ts +0 -3
- package/lib/alias/teamsDark.js.map +0 -1
- package/lib-commonjs/alias/dark.d.ts +0 -3
- package/lib-commonjs/alias/dark.js.map +0 -1
- package/lib-commonjs/alias/highContrast.d.ts +0 -3
- package/lib-commonjs/alias/highContrast.js.map +0 -1
- package/lib-commonjs/alias/light.d.ts +0 -3
- package/lib-commonjs/alias/light.js.map +0 -1
- package/lib-commonjs/alias/teamsDark.d.ts +0 -3
- package/lib-commonjs/alias/teamsDark.js.map +0 -1
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,142 @@
|
|
2
2
|
"name": "@fluentui/react-theme",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
5
|
+
"date": "Thu, 05 May 2022 18:24:34 GMT",
|
6
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.7",
|
7
|
+
"version": "9.0.0-rc.7",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "miroslav.stastny@microsoft.com",
|
12
|
+
"package": "@fluentui/react-theme",
|
13
|
+
"commit": "cb0b4bd7ac79ccf27539a12104f651f5d330e464",
|
14
|
+
"comment": "Export TypographyStyle type"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "humberto_makoto@hotmail.com",
|
18
|
+
"package": "@fluentui/react-theme",
|
19
|
+
"commit": "975977d075e01a9091fcf2b9b84c14f829135fa7",
|
20
|
+
"comment": "Removing star exports."
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "gcox@microsoft.com",
|
24
|
+
"package": "@fluentui/react-theme",
|
25
|
+
"commit": "d325a31bcd5d144e2a40ee4bf085e8ef6b3f5d73",
|
26
|
+
"comment": "Added ms suffix to durations"
|
27
|
+
}
|
28
|
+
],
|
29
|
+
"none": [
|
30
|
+
{
|
31
|
+
"author": "miroslav.stastny@microsoft.com",
|
32
|
+
"package": "@fluentui/react-theme",
|
33
|
+
"commit": "00a4a1dd582f5695b7cb9bba48fb8537534bbec0",
|
34
|
+
"comment": "Generate theme tokens using token pipeline"
|
35
|
+
}
|
36
|
+
]
|
37
|
+
}
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"date": "Wed, 04 May 2022 13:26:33 GMT",
|
41
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.6",
|
42
|
+
"version": "9.0.0-rc.6",
|
43
|
+
"comments": {
|
44
|
+
"prerelease": [
|
45
|
+
{
|
46
|
+
"author": "gcox@microsoft.com",
|
47
|
+
"package": "@fluentui/react-theme",
|
48
|
+
"commit": "27ba5613b1253801c3ae4e2aba0fc9eb2ae464b8",
|
49
|
+
"comment": "Add px suffix to spacings"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"author": "gcox@microsoft.com",
|
53
|
+
"package": "@fluentui/react-theme",
|
54
|
+
"commit": "75ad2567f62e804a8deb3ea6016ba8a674c45627",
|
55
|
+
"comment": "Fixed typo in typography"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"author": "gcox@microsoft.com",
|
59
|
+
"package": "@fluentui/react-theme",
|
60
|
+
"commit": "7ad290b51135cb84c84e7dd8771bd712892c7484",
|
61
|
+
"comment": "Fixed line-height in title2"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"author": "gcox@microsoft.com",
|
65
|
+
"package": "@fluentui/react-theme",
|
66
|
+
"commit": "57583bfffa6bf28be389dec6c642f36ed253ecdd",
|
67
|
+
"comment": "Added global theme types and tokens"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"author": "miroslav.stastny@microsoft.com",
|
71
|
+
"package": "@fluentui/react-theme",
|
72
|
+
"commit": "3e0ff753cbb3375f28477b2249ecd8b012e2e946",
|
73
|
+
"comment": "fix(react-theme): Update CompoundBrandBackground and BrandStroke1"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"author": "gcox@microsoft.com",
|
77
|
+
"package": "@fluentui/react-theme",
|
78
|
+
"commit": "354c4f6290d7957345fd53a8f26c8f5472ff92db",
|
79
|
+
"comment": "Add base font family per figma"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"author": "gcox@microsoft.com",
|
83
|
+
"package": "@fluentui/react-theme",
|
84
|
+
"commit": "78da3be7484d156379a105048c535767f7e1b85f",
|
85
|
+
"comment": "Added typeography styles"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"author": "miroslav.stastny@microsoft.com",
|
89
|
+
"package": "@fluentui/react-theme",
|
90
|
+
"commit": "e45629a0978492d5a8a44934f5263e47862ac8b3",
|
91
|
+
"comment": "feat(react-theme): Add colorNeutralForeground2Link color tokens"
|
92
|
+
}
|
93
|
+
],
|
94
|
+
"none": [
|
95
|
+
{
|
96
|
+
"author": "tristan.watanabe@gmail.com",
|
97
|
+
"package": "@fluentui/react-theme",
|
98
|
+
"commit": "8ec3d32fa26e6cf803ab9d18671fd51ba06c74ab",
|
99
|
+
"comment": "react-theme: Move to new common folder."
|
100
|
+
}
|
101
|
+
]
|
102
|
+
}
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"date": "Tue, 19 Apr 2022 19:17:02 GMT",
|
106
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.5",
|
107
|
+
"version": "9.0.0-rc.5",
|
108
|
+
"comments": {
|
109
|
+
"none": [
|
110
|
+
{
|
111
|
+
"author": "elcraig@microsoft.com",
|
112
|
+
"package": "@fluentui/react-theme",
|
113
|
+
"commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
|
114
|
+
"comment": "Update React dev deps and hoist them to the repo root"
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"author": "mgodbolt@microsoft.com",
|
118
|
+
"package": "@fluentui/react-theme",
|
119
|
+
"commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
|
120
|
+
"comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
|
121
|
+
}
|
122
|
+
],
|
123
|
+
"prerelease": [
|
124
|
+
{
|
125
|
+
"author": "miroslav.stastny@microsoft.com",
|
126
|
+
"package": "@fluentui/react-theme",
|
127
|
+
"commit": "d7e4ddf20d1ecb71d3dfc450c65ffde8c7394e3b",
|
128
|
+
"comment": "fix(react-theme): Update yellow shared color"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"author": "miroslav.stastny@microsoft.com",
|
132
|
+
"package": "@fluentui/react-theme",
|
133
|
+
"commit": "a91094de0bcf0467126052b6785fcbddd5ef0045",
|
134
|
+
"comment": "feat(react-theme): update color tokens"
|
135
|
+
}
|
136
|
+
]
|
137
|
+
}
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"date": "Fri, 04 Mar 2022 05:17:31 GMT",
|
6
141
|
"tag": "@fluentui/react-theme_v9.0.0-rc.4",
|
7
142
|
"version": "9.0.0-rc.4",
|
8
143
|
"comments": {
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,49 @@
|
|
1
1
|
# Change Log - @fluentui/react-theme
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Thu, 05 May 2022 18:24:34 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.7)
|
8
|
+
|
9
|
+
Thu, 05 May 2022 18:24:34 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.6..@fluentui/react-theme_v9.0.0-rc.7)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- Export TypographyStyle type ([PR #22832](https://github.com/microsoft/fluentui/pull/22832) by miroslav.stastny@microsoft.com)
|
15
|
+
- Removing star exports. ([PR #22810](https://github.com/microsoft/fluentui/pull/22810) by humberto_makoto@hotmail.com)
|
16
|
+
- Added ms suffix to durations ([PR #22831](https://github.com/microsoft/fluentui/pull/22831) by gcox@microsoft.com)
|
17
|
+
|
18
|
+
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.6)
|
19
|
+
|
20
|
+
Wed, 04 May 2022 13:26:33 GMT
|
21
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.5..@fluentui/react-theme_v9.0.0-rc.6)
|
22
|
+
|
23
|
+
### Changes
|
24
|
+
|
25
|
+
- Add px suffix to spacings ([PR #22722](https://github.com/microsoft/fluentui/pull/22722) by gcox@microsoft.com)
|
26
|
+
- Fixed typo in typography ([PR #22625](https://github.com/microsoft/fluentui/pull/22625) by gcox@microsoft.com)
|
27
|
+
- Fixed line-height in title2 ([PR #22716](https://github.com/microsoft/fluentui/pull/22716) by gcox@microsoft.com)
|
28
|
+
- Added global theme types and tokens ([PR #22607](https://github.com/microsoft/fluentui/pull/22607) by gcox@microsoft.com)
|
29
|
+
- fix(react-theme): Update CompoundBrandBackground and BrandStroke1 ([PR #22751](https://github.com/microsoft/fluentui/pull/22751) by miroslav.stastny@microsoft.com)
|
30
|
+
- Add base font family per figma ([PR #22627](https://github.com/microsoft/fluentui/pull/22627) by gcox@microsoft.com)
|
31
|
+
- Added typeography styles ([PR #22610](https://github.com/microsoft/fluentui/pull/22610) by gcox@microsoft.com)
|
32
|
+
- feat(react-theme): Add colorNeutralForeground2Link color tokens ([PR #22570](https://github.com/microsoft/fluentui/pull/22570) by miroslav.stastny@microsoft.com)
|
33
|
+
|
34
|
+
## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.5)
|
35
|
+
|
36
|
+
Tue, 19 Apr 2022 19:17:02 GMT
|
37
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.4..@fluentui/react-theme_v9.0.0-rc.5)
|
38
|
+
|
39
|
+
### Changes
|
40
|
+
|
41
|
+
- fix(react-theme): Update yellow shared color ([PR #22450](https://github.com/microsoft/fluentui/pull/22450) by miroslav.stastny@microsoft.com)
|
42
|
+
- feat(react-theme): update color tokens ([PR #22238](https://github.com/microsoft/fluentui/pull/22238) by miroslav.stastny@microsoft.com)
|
43
|
+
|
7
44
|
## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.4)
|
8
45
|
|
9
|
-
Fri, 04 Mar 2022 05:
|
46
|
+
Fri, 04 Mar 2022 05:17:31 GMT
|
10
47
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.3..@fluentui/react-theme_v9.0.0-rc.4)
|
11
48
|
|
12
49
|
### Changes
|
@@ -15,7 +52,7 @@ Fri, 04 Mar 2022 05:15:45 GMT
|
|
15
52
|
|
16
53
|
## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.3)
|
17
54
|
|
18
|
-
Fri, 18 Feb 2022 13:35:36 GMT
|
55
|
+
Fri, 18 Feb 2022 13:35:36 GMT
|
19
56
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.1..@fluentui/react-theme_v9.0.0-rc.3)
|
20
57
|
|
21
58
|
### Changes
|
@@ -24,7 +61,7 @@ Fri, 18 Feb 2022 13:35:36 GMT
|
|
24
61
|
|
25
62
|
## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.1)
|
26
63
|
|
27
|
-
Thu, 10 Feb 2022 08:51:02 GMT
|
64
|
+
Thu, 10 Feb 2022 08:51:02 GMT
|
28
65
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v9.0.0-rc.1)
|
29
66
|
|
30
67
|
### Changes
|
@@ -41,7 +78,7 @@ Thu, 10 Feb 2022 08:51:02 GMT
|
|
41
78
|
|
42
79
|
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.4)
|
43
80
|
|
44
|
-
Thu, 25 Nov 2021 08:34:16 GMT
|
81
|
+
Thu, 25 Nov 2021 08:34:16 GMT
|
45
82
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.3..@fluentui/react-theme_v9.0.0-beta.4)
|
46
83
|
|
47
84
|
### Changes
|
@@ -50,7 +87,7 @@ Thu, 25 Nov 2021 08:34:16 GMT
|
|
50
87
|
|
51
88
|
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.3)
|
52
89
|
|
53
|
-
Fri, 12 Nov 2021 13:25:09 GMT
|
90
|
+
Fri, 12 Nov 2021 13:25:09 GMT
|
54
91
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.2..@fluentui/react-theme_v9.0.0-beta.3)
|
55
92
|
|
56
93
|
### Changes
|
@@ -60,7 +97,7 @@ Fri, 12 Nov 2021 13:25:09 GMT
|
|
60
97
|
|
61
98
|
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.2)
|
62
99
|
|
63
|
-
Wed, 27 Oct 2021 12:14:23 GMT
|
100
|
+
Wed, 27 Oct 2021 12:14:23 GMT
|
64
101
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.1..@fluentui/react-theme_v9.0.0-beta.2)
|
65
102
|
|
66
103
|
### Changes
|
@@ -70,7 +107,7 @@ Wed, 27 Oct 2021 12:14:23 GMT
|
|
70
107
|
|
71
108
|
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.1)
|
72
109
|
|
73
|
-
Wed, 06 Oct 2021 10:37:22 GMT
|
110
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
74
111
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.26..@fluentui/react-theme_v9.0.0-beta.1)
|
75
112
|
|
76
113
|
### Changes
|
@@ -79,7 +116,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
|
|
79
116
|
|
80
117
|
## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.26)
|
81
118
|
|
82
|
-
Fri, 01 Oct 2021 14:13:08 GMT
|
119
|
+
Fri, 01 Oct 2021 14:13:08 GMT
|
83
120
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.24..@fluentui/react-theme_v9.0.0-alpha.26)
|
84
121
|
|
85
122
|
### Changes
|
@@ -88,7 +125,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
|
|
88
125
|
|
89
126
|
## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.24)
|
90
127
|
|
91
|
-
Wed, 29 Sep 2021 08:06:11 GMT
|
128
|
+
Wed, 29 Sep 2021 08:06:11 GMT
|
92
129
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.23..@fluentui/react-theme_v9.0.0-alpha.24)
|
93
130
|
|
94
131
|
### Changes
|
@@ -97,7 +134,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
|
|
97
134
|
|
98
135
|
## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.23)
|
99
136
|
|
100
|
-
Tue, 21 Sep 2021 07:42:34 GMT
|
137
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
101
138
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.22..@fluentui/react-theme_v9.0.0-alpha.23)
|
102
139
|
|
103
140
|
### Changes
|
@@ -106,7 +143,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
|
|
106
143
|
|
107
144
|
## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.22)
|
108
145
|
|
109
|
-
Tue, 24 Aug 2021 07:34:48 GMT
|
146
|
+
Tue, 24 Aug 2021 07:34:48 GMT
|
110
147
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.21..@fluentui/react-theme_v9.0.0-alpha.22)
|
111
148
|
|
112
149
|
### Changes
|
@@ -115,7 +152,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
|
|
115
152
|
|
116
153
|
## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.21)
|
117
154
|
|
118
|
-
Fri, 20 Aug 2021 07:37:28 GMT
|
155
|
+
Fri, 20 Aug 2021 07:37:28 GMT
|
119
156
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.20..@fluentui/react-theme_v9.0.0-alpha.21)
|
120
157
|
|
121
158
|
### Changes
|
@@ -124,7 +161,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
|
|
124
161
|
|
125
162
|
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.20)
|
126
163
|
|
127
|
-
Tue, 03 Aug 2021 07:39:30 GMT
|
164
|
+
Tue, 03 Aug 2021 07:39:30 GMT
|
128
165
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.19..@fluentui/react-theme_v9.0.0-alpha.20)
|
129
166
|
|
130
167
|
### Patches
|
@@ -138,7 +175,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
|
|
138
175
|
|
139
176
|
## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.19)
|
140
177
|
|
141
|
-
Mon, 26 Jul 2021 07:37:30 GMT
|
178
|
+
Mon, 26 Jul 2021 07:37:30 GMT
|
142
179
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.18..@fluentui/react-theme_v9.0.0-alpha.19)
|
143
180
|
|
144
181
|
### Changes
|
@@ -147,7 +184,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
|
|
147
184
|
|
148
185
|
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.18)
|
149
186
|
|
150
|
-
Fri, 23 Jul 2021 07:38:19 GMT
|
187
|
+
Fri, 23 Jul 2021 07:38:19 GMT
|
151
188
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.17..@fluentui/react-theme_v9.0.0-alpha.18)
|
152
189
|
|
153
190
|
### Changes
|
@@ -156,7 +193,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
|
|
156
193
|
|
157
194
|
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.17)
|
158
195
|
|
159
|
-
Fri, 09 Jul 2021 07:39:31 GMT
|
196
|
+
Fri, 09 Jul 2021 07:39:31 GMT
|
160
197
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.16..@fluentui/react-theme_v9.0.0-alpha.17)
|
161
198
|
|
162
199
|
### Patches
|
@@ -166,7 +203,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
|
|
166
203
|
|
167
204
|
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.16)
|
168
205
|
|
169
|
-
Fri, 02 Jul 2021 07:37:06 GMT
|
206
|
+
Fri, 02 Jul 2021 07:37:06 GMT
|
170
207
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.15..@fluentui/react-theme_v9.0.0-alpha.16)
|
171
208
|
|
172
209
|
### Changes
|
@@ -175,7 +212,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
|
|
175
212
|
|
176
213
|
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.15)
|
177
214
|
|
178
|
-
Mon, 07 Jun 2021 07:38:15 GMT
|
215
|
+
Mon, 07 Jun 2021 07:38:15 GMT
|
179
216
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.14..@fluentui/react-theme_v9.0.0-alpha.15)
|
180
217
|
|
181
218
|
### Patches
|
@@ -185,7 +222,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
|
|
185
222
|
|
186
223
|
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.14)
|
187
224
|
|
188
|
-
Thu, 03 Jun 2021 07:36:03 GMT
|
225
|
+
Thu, 03 Jun 2021 07:36:03 GMT
|
189
226
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.13..@fluentui/react-theme_v9.0.0-alpha.14)
|
190
227
|
|
191
228
|
### Changes
|
@@ -194,7 +231,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
|
|
194
231
|
|
195
232
|
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.13)
|
196
233
|
|
197
|
-
Thu, 20 May 2021 07:41:54 GMT
|
234
|
+
Thu, 20 May 2021 07:41:54 GMT
|
198
235
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.12..@fluentui/react-theme_v9.0.0-alpha.13)
|
199
236
|
|
200
237
|
### Patches
|
@@ -204,7 +241,7 @@ Thu, 20 May 2021 07:41:54 GMT
|
|
204
241
|
|
205
242
|
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.12)
|
206
243
|
|
207
|
-
Wed, 19 May 2021 07:34:20 GMT
|
244
|
+
Wed, 19 May 2021 07:34:20 GMT
|
208
245
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.11..@fluentui/react-theme_v9.0.0-alpha.12)
|
209
246
|
|
210
247
|
### Changes
|
@@ -213,7 +250,7 @@ Wed, 19 May 2021 07:34:20 GMT
|
|
213
250
|
|
214
251
|
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.11)
|
215
252
|
|
216
|
-
Thu, 13 May 2021 07:36:55 GMT
|
253
|
+
Thu, 13 May 2021 07:36:55 GMT
|
217
254
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.10..@fluentui/react-theme_v9.0.0-alpha.11)
|
218
255
|
|
219
256
|
### Changes
|
@@ -222,7 +259,7 @@ Thu, 13 May 2021 07:36:55 GMT
|
|
222
259
|
|
223
260
|
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.10)
|
224
261
|
|
225
|
-
Fri, 30 Apr 2021 07:42:23 GMT
|
262
|
+
Fri, 30 Apr 2021 07:42:23 GMT
|
226
263
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.9..@fluentui/react-theme_v9.0.0-alpha.10)
|
227
264
|
|
228
265
|
### Patches
|
@@ -236,7 +273,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
|
|
236
273
|
|
237
274
|
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.9)
|
238
275
|
|
239
|
-
Fri, 23 Apr 2021 07:37:10 GMT
|
276
|
+
Fri, 23 Apr 2021 07:37:10 GMT
|
240
277
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.8..@fluentui/react-theme_v9.0.0-alpha.9)
|
241
278
|
|
242
279
|
### Patches
|
@@ -246,7 +283,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
|
|
246
283
|
|
247
284
|
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.8)
|
248
285
|
|
249
|
-
Thu, 08 Apr 2021 07:33:06 GMT
|
286
|
+
Thu, 08 Apr 2021 07:33:06 GMT
|
250
287
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.7..@fluentui/react-theme_v9.0.0-alpha.8)
|
251
288
|
|
252
289
|
### Changes
|
@@ -255,7 +292,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
|
|
255
292
|
|
256
293
|
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.7)
|
257
294
|
|
258
|
-
Wed, 31 Mar 2021 00:53:43 GMT
|
295
|
+
Wed, 31 Mar 2021 00:53:43 GMT
|
259
296
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.6..@fluentui/react-theme_v9.0.0-alpha.7)
|
260
297
|
|
261
298
|
### Patches
|
@@ -265,7 +302,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
|
|
265
302
|
|
266
303
|
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.6)
|
267
304
|
|
268
|
-
Mon, 15 Mar 2021 07:36:20 GMT
|
305
|
+
Mon, 15 Mar 2021 07:36:20 GMT
|
269
306
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.5..@fluentui/react-theme_v9.0.0-alpha.6)
|
270
307
|
|
271
308
|
### Changes
|
@@ -274,7 +311,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
|
|
274
311
|
|
275
312
|
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.5)
|
276
313
|
|
277
|
-
Wed, 03 Mar 2021 00:10:09 GMT
|
314
|
+
Wed, 03 Mar 2021 00:10:09 GMT
|
278
315
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.4..@fluentui/react-theme_v9.0.0-alpha.5)
|
279
316
|
|
280
317
|
### Changes
|
@@ -283,7 +320,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
|
|
283
320
|
|
284
321
|
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.4)
|
285
322
|
|
286
|
-
Tue, 02 Mar 2021 07:24:27 GMT
|
323
|
+
Tue, 02 Mar 2021 07:24:27 GMT
|
287
324
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.3..@fluentui/react-theme_v9.0.0-alpha.4)
|
288
325
|
|
289
326
|
### Changes
|
@@ -293,7 +330,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
|
|
293
330
|
|
294
331
|
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.3)
|
295
332
|
|
296
|
-
Fri, 26 Feb 2021 01:16:27 GMT
|
333
|
+
Fri, 26 Feb 2021 01:16:27 GMT
|
297
334
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.2..@fluentui/react-theme_v9.0.0-alpha.3)
|
298
335
|
|
299
336
|
### Patches
|
@@ -309,7 +346,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
|
|
309
346
|
|
310
347
|
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.2)
|
311
348
|
|
312
|
-
Thu, 25 Feb 2021 20:16:39 GMT
|
349
|
+
Thu, 25 Feb 2021 20:16:39 GMT
|
313
350
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.1..@fluentui/react-theme_v9.0.0-alpha.2)
|
314
351
|
|
315
352
|
### Changes
|
@@ -318,7 +355,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
|
|
318
355
|
|
319
356
|
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.1)
|
320
357
|
|
321
|
-
Wed, 24 Feb 2021 00:05:29 GMT
|
358
|
+
Wed, 24 Feb 2021 00:05:29 GMT
|
322
359
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.3..@fluentui/react-theme_v9.0.0-alpha.1)
|
323
360
|
|
324
361
|
### Changes
|
@@ -327,7 +364,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
|
|
327
364
|
|
328
365
|
## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.3)
|
329
366
|
|
330
|
-
Mon, 22 Feb 2021 12:26:22 GMT
|
367
|
+
Mon, 22 Feb 2021 12:26:22 GMT
|
331
368
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.2..@fluentui/react-theme_v0.3.3)
|
332
369
|
|
333
370
|
### Patches
|
@@ -340,7 +377,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
|
|
340
377
|
|
341
378
|
## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.2)
|
342
379
|
|
343
|
-
Thu, 18 Feb 2021 19:38:50 GMT
|
380
|
+
Thu, 18 Feb 2021 19:38:50 GMT
|
344
381
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.2)
|
345
382
|
|
346
383
|
### Patches
|
@@ -353,7 +390,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
|
|
353
390
|
|
354
391
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
355
392
|
|
356
|
-
Thu, 18 Feb 2021 12:27:34 GMT
|
393
|
+
Thu, 18 Feb 2021 12:27:34 GMT
|
357
394
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
|
358
395
|
|
359
396
|
### Changes
|
@@ -365,7 +402,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
|
|
365
402
|
|
366
403
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
367
404
|
|
368
|
-
Mon, 15 Feb 2021 12:22:00 GMT
|
405
|
+
Mon, 15 Feb 2021 12:22:00 GMT
|
369
406
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
|
370
407
|
|
371
408
|
### Changes
|
@@ -374,7 +411,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
|
|
374
411
|
|
375
412
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
376
413
|
|
377
|
-
Thu, 11 Feb 2021 00:58:10 GMT
|
414
|
+
Thu, 11 Feb 2021 00:58:10 GMT
|
378
415
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
|
379
416
|
|
380
417
|
### Changes
|
@@ -383,7 +420,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
|
|
383
420
|
|
384
421
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
385
422
|
|
386
|
-
Tue, 09 Feb 2021 00:56:52 GMT
|
423
|
+
Tue, 09 Feb 2021 00:56:52 GMT
|
387
424
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.0..@fluentui/react-theme_v0.3.1)
|
388
425
|
|
389
426
|
### Patches
|
@@ -392,7 +429,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
|
|
392
429
|
|
393
430
|
## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.0)
|
394
431
|
|
395
|
-
Mon, 08 Feb 2021 12:23:08 GMT
|
432
|
+
Mon, 08 Feb 2021 12:23:08 GMT
|
396
433
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.2.0..@fluentui/react-theme_v0.3.0)
|
397
434
|
|
398
435
|
### Minor changes
|
@@ -140,6 +140,10 @@ export declare type ColorTokens = {
|
|
140
140
|
colorBrandForegroundLinkHover: string;
|
141
141
|
colorBrandForegroundLinkPressed: string;
|
142
142
|
colorBrandForegroundLinkSelected: string;
|
143
|
+
colorNeutralForeground2Link: string;
|
144
|
+
colorNeutralForeground2LinkHover: string;
|
145
|
+
colorNeutralForeground2LinkPressed: string;
|
146
|
+
colorNeutralForeground2LinkSelected: string;
|
143
147
|
colorCompoundBrandForeground1: string;
|
144
148
|
colorCompoundBrandForeground1Hover: string;
|
145
149
|
colorCompoundBrandForeground1Pressed: string;
|
@@ -203,6 +207,8 @@ export declare type ColorTokens = {
|
|
203
207
|
colorNeutralBackgroundInvertedDisabled: string;
|
204
208
|
colorNeutralStencil1: string;
|
205
209
|
colorNeutralStencil2: string;
|
210
|
+
colorBackgroundOverlay: string;
|
211
|
+
colorScrollbarOverlay: string;
|
206
212
|
colorBrandBackground: string;
|
207
213
|
colorBrandBackgroundHover: string;
|
208
214
|
colorBrandBackgroundPressed: string;
|
@@ -261,6 +267,28 @@ export declare const createLightTheme: (brand: BrandVariants) => Theme;
|
|
261
267
|
|
262
268
|
export declare const createTeamsDarkTheme: (brand: BrandVariants) => Theme;
|
263
269
|
|
270
|
+
export declare type CurveTokens = {
|
271
|
+
curveAccelerateMax: string;
|
272
|
+
curveAccelerateMid: string;
|
273
|
+
curveAccelerateMin: string;
|
274
|
+
curveDecelerateMax: string;
|
275
|
+
curveDecelerateMid: string;
|
276
|
+
curveDecelerateMin: string;
|
277
|
+
curveEasyEaseMax: string;
|
278
|
+
curveEasyEase: string;
|
279
|
+
curveLinear: string;
|
280
|
+
};
|
281
|
+
|
282
|
+
export declare type DurationTokens = {
|
283
|
+
durationUltraFast: string;
|
284
|
+
durationFaster: string;
|
285
|
+
durationFast: string;
|
286
|
+
durationNormal: string;
|
287
|
+
durationSlow: string;
|
288
|
+
durationSlower: string;
|
289
|
+
durationUltraSlow: string;
|
290
|
+
};
|
291
|
+
|
264
292
|
export declare type FontFamilyTokens = {
|
265
293
|
fontFamilyBase: string;
|
266
294
|
fontFamilyMonospace: string;
|
@@ -286,6 +314,20 @@ export declare type FontWeightTokens = {
|
|
286
314
|
fontWeightSemibold: number;
|
287
315
|
};
|
288
316
|
|
317
|
+
export declare type HorizontalSpacingTokens = {
|
318
|
+
spacingHorizontalNone: string;
|
319
|
+
spacingHorizontalXXS: string;
|
320
|
+
spacingHorizontalXS: string;
|
321
|
+
spacingHorizontalSNudge: string;
|
322
|
+
spacingHorizontalS: string;
|
323
|
+
spacingHorizontalMNudge: string;
|
324
|
+
spacingHorizontalM: string;
|
325
|
+
spacingHorizontalL: string;
|
326
|
+
spacingHorizontalXL: string;
|
327
|
+
spacingHorizontalXXL: string;
|
328
|
+
spacingHorizontalXXXL: string;
|
329
|
+
};
|
330
|
+
|
289
331
|
export declare type LineHeightTokens = {
|
290
332
|
lineHeightBase100: string;
|
291
333
|
lineHeightBase200: string;
|
@@ -322,6 +364,20 @@ export declare type ShadowTokens = {
|
|
322
364
|
shadow64: string;
|
323
365
|
};
|
324
366
|
|
367
|
+
export declare type SpacingTokens = {
|
368
|
+
none: string;
|
369
|
+
xxs: string;
|
370
|
+
xs: string;
|
371
|
+
sNudge: string;
|
372
|
+
s: string;
|
373
|
+
mNudge: string;
|
374
|
+
m: string;
|
375
|
+
l: string;
|
376
|
+
xl: string;
|
377
|
+
xxl: string;
|
378
|
+
xxxl: string;
|
379
|
+
};
|
380
|
+
|
325
381
|
export declare type StrokeWidthTokens = {
|
326
382
|
strokeWidthThin: string;
|
327
383
|
strokeWidthThick: string;
|
@@ -335,7 +391,7 @@ export declare const teamsHighContrastTheme: Theme;
|
|
335
391
|
|
336
392
|
export declare const teamsLightTheme: Theme;
|
337
393
|
|
338
|
-
export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & ShadowTokens & ShadowBrandTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
|
394
|
+
export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & HorizontalSpacingTokens & VerticalSpacingTokens & DurationTokens & CurveTokens & ShadowTokens & ShadowBrandTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
|
339
395
|
|
340
396
|
/**
|
341
397
|
* Programmatically generates a tokens to css variables mapping object from the keys in a theme.
|
@@ -349,6 +405,51 @@ export declare function themeToTokensObject<TTheme extends Theme>(theme: TTheme)
|
|
349
405
|
|
350
406
|
export declare const tokens: Record<keyof Theme, string>;
|
351
407
|
|
408
|
+
export declare type TypographyStyle = {
|
409
|
+
fontFamily: string;
|
410
|
+
fontSize: string;
|
411
|
+
fontWeight: string;
|
412
|
+
lineHeight: string;
|
413
|
+
};
|
414
|
+
|
415
|
+
export declare type TypographyStyles = {
|
416
|
+
body1: TypographyStyle;
|
417
|
+
body1Strong: TypographyStyle;
|
418
|
+
body1Stronger: TypographyStyle;
|
419
|
+
caption1: TypographyStyle;
|
420
|
+
caption1Strong: TypographyStyle;
|
421
|
+
caption1Stronger: TypographyStyle;
|
422
|
+
caption2: TypographyStyle;
|
423
|
+
caption2Strong: TypographyStyle;
|
424
|
+
subtitle1: TypographyStyle;
|
425
|
+
subtitle2: TypographyStyle;
|
426
|
+
subtitle2Stronger: TypographyStyle;
|
427
|
+
title1: TypographyStyle;
|
428
|
+
title2: TypographyStyle;
|
429
|
+
title3: TypographyStyle;
|
430
|
+
largeTitle: TypographyStyle;
|
431
|
+
display: TypographyStyle;
|
432
|
+
};
|
433
|
+
|
434
|
+
/**
|
435
|
+
* Global typography styles (fontSize, fontWeight, and lineHeight)
|
436
|
+
*/
|
437
|
+
export declare const typographyStyles: TypographyStyles;
|
438
|
+
|
439
|
+
export declare type VerticalSpacingTokens = {
|
440
|
+
spacingVerticalNone: string;
|
441
|
+
spacingVerticalXXS: string;
|
442
|
+
spacingVerticalXS: string;
|
443
|
+
spacingVerticalSNudge: string;
|
444
|
+
spacingVerticalS: string;
|
445
|
+
spacingVerticalMNudge: string;
|
446
|
+
spacingVerticalM: string;
|
447
|
+
spacingVerticalL: string;
|
448
|
+
spacingVerticalXL: string;
|
449
|
+
spacingVerticalXXL: string;
|
450
|
+
spacingVerticalXXXL: string;
|
451
|
+
};
|
452
|
+
|
352
453
|
export declare const webDarkTheme: Theme;
|
353
454
|
|
354
455
|
export declare const webHighContrastTheme: Theme;
|