@fluentui/react-theme 9.0.0-rc.3 → 9.0.0-rc.6

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.
Files changed (137) hide show
  1. package/CHANGELOG.json +116 -1
  2. package/CHANGELOG.md +74 -39
  3. package/dist/{react-theme.d.ts → index.d.ts} +102 -1
  4. package/lib/alias/darkColor.d.ts +2 -0
  5. package/lib/alias/{dark.js → darkColor.js} +20 -31
  6. package/lib/alias/darkColor.js.map +1 -0
  7. package/lib/alias/darkColorPalette.d.ts +2 -0
  8. package/lib/alias/darkColorPalette.js +19 -0
  9. package/lib/alias/darkColorPalette.js.map +1 -0
  10. package/lib/alias/highContrastColor.d.ts +2 -0
  11. package/lib/alias/{highContrast.js → highContrastColor.js} +8 -19
  12. package/lib/alias/highContrastColor.js.map +1 -0
  13. package/lib/alias/highContrastColorPalette.d.ts +2 -0
  14. package/lib/alias/highContrastColorPalette.js +19 -0
  15. package/lib/alias/highContrastColorPalette.js.map +1 -0
  16. package/lib/alias/lightColor.d.ts +2 -0
  17. package/lib/alias/{light.js → lightColor.js} +9 -20
  18. package/lib/alias/lightColor.js.map +1 -0
  19. package/lib/alias/lightColorPalette.d.ts +2 -0
  20. package/lib/alias/lightColorPalette.js +19 -0
  21. package/lib/alias/lightColorPalette.js.map +1 -0
  22. package/lib/alias/teamsDarkColor.d.ts +2 -0
  23. package/lib/alias/{teamsDark.js → teamsDarkColor.js} +20 -31
  24. package/lib/alias/teamsDarkColor.js.map +1 -0
  25. package/lib/alias/teamsDarkColorPalette.d.ts +2 -0
  26. package/lib/alias/teamsDarkColorPalette.js +19 -0
  27. package/lib/alias/teamsDarkColorPalette.js.map +1 -0
  28. package/lib/global/brandColors.js +16 -16
  29. package/lib/global/brandColors.js.map +1 -1
  30. package/lib/global/colors.d.ts +1 -0
  31. package/lib/global/colors.js +17 -5
  32. package/lib/global/colors.js.map +1 -1
  33. package/lib/global/curves.d.ts +2 -0
  34. package/lib/global/curves.js +12 -0
  35. package/lib/global/curves.js.map +1 -0
  36. package/lib/global/durations.d.ts +2 -0
  37. package/lib/global/durations.js +10 -0
  38. package/lib/global/durations.js.map +1 -0
  39. package/lib/global/index.d.ts +5 -0
  40. package/lib/global/index.js +5 -0
  41. package/lib/global/index.js.map +1 -1
  42. package/lib/global/spacings.d.ts +4 -0
  43. package/lib/global/spacings.js +40 -0
  44. package/lib/global/spacings.js.map +1 -0
  45. package/lib/global/typographyStyles.d.ts +5 -0
  46. package/lib/global/typographyStyles.js +104 -0
  47. package/lib/global/typographyStyles.js.map +1 -0
  48. package/lib/index.d.ts +2 -1
  49. package/lib/index.js +1 -0
  50. package/lib/index.js.map +1 -1
  51. package/lib/tokens.js +48 -1
  52. package/lib/tokens.js.map +1 -1
  53. package/lib/types.d.ts +91 -1
  54. package/lib/types.js.map +1 -1
  55. package/lib/utils/createDarkTheme.js +9 -1
  56. package/lib/utils/createDarkTheme.js.map +1 -1
  57. package/lib/utils/createHighContrastTheme.js +9 -1
  58. package/lib/utils/createHighContrastTheme.js.map +1 -1
  59. package/lib/utils/createLightTheme.js +9 -1
  60. package/lib/utils/createLightTheme.js.map +1 -1
  61. package/lib/utils/createTeamsDarkTheme.js +9 -1
  62. package/lib/utils/createTeamsDarkTheme.js.map +1 -1
  63. package/lib-commonjs/alias/darkColor.d.ts +2 -0
  64. package/lib-commonjs/alias/{dark.js → darkColor.js} +20 -31
  65. package/lib-commonjs/alias/darkColor.js.map +1 -0
  66. package/lib-commonjs/alias/darkColorPalette.d.ts +2 -0
  67. package/lib-commonjs/alias/darkColorPalette.js +27 -0
  68. package/lib-commonjs/alias/darkColorPalette.js.map +1 -0
  69. package/lib-commonjs/alias/highContrastColor.d.ts +2 -0
  70. package/lib-commonjs/alias/{highContrast.js → highContrastColor.js} +8 -19
  71. package/lib-commonjs/alias/highContrastColor.js.map +1 -0
  72. package/lib-commonjs/alias/highContrastColorPalette.d.ts +2 -0
  73. package/lib-commonjs/alias/highContrastColorPalette.js +27 -0
  74. package/lib-commonjs/alias/highContrastColorPalette.js.map +1 -0
  75. package/lib-commonjs/alias/lightColor.d.ts +2 -0
  76. package/lib-commonjs/alias/{light.js → lightColor.js} +9 -20
  77. package/lib-commonjs/alias/lightColor.js.map +1 -0
  78. package/lib-commonjs/alias/lightColorPalette.d.ts +2 -0
  79. package/lib-commonjs/alias/lightColorPalette.js +27 -0
  80. package/lib-commonjs/alias/lightColorPalette.js.map +1 -0
  81. package/lib-commonjs/alias/teamsDarkColor.d.ts +2 -0
  82. package/lib-commonjs/alias/{teamsDark.js → teamsDarkColor.js} +20 -31
  83. package/lib-commonjs/alias/teamsDarkColor.js.map +1 -0
  84. package/lib-commonjs/alias/teamsDarkColorPalette.d.ts +2 -0
  85. package/lib-commonjs/alias/teamsDarkColorPalette.js +27 -0
  86. package/lib-commonjs/alias/teamsDarkColorPalette.js.map +1 -0
  87. package/lib-commonjs/global/brandColors.js +16 -16
  88. package/lib-commonjs/global/brandColors.js.map +1 -1
  89. package/lib-commonjs/global/colors.d.ts +1 -0
  90. package/lib-commonjs/global/colors.js +18 -6
  91. package/lib-commonjs/global/colors.js.map +1 -1
  92. package/lib-commonjs/global/curves.d.ts +2 -0
  93. package/lib-commonjs/global/curves.js +18 -0
  94. package/lib-commonjs/global/curves.js.map +1 -0
  95. package/lib-commonjs/global/durations.d.ts +2 -0
  96. package/lib-commonjs/global/durations.js +16 -0
  97. package/lib-commonjs/global/durations.js.map +1 -0
  98. package/lib-commonjs/global/index.d.ts +5 -0
  99. package/lib-commonjs/global/index.js +10 -0
  100. package/lib-commonjs/global/index.js.map +1 -1
  101. package/lib-commonjs/global/spacings.d.ts +4 -0
  102. package/lib-commonjs/global/spacings.js +46 -0
  103. package/lib-commonjs/global/spacings.js.map +1 -0
  104. package/lib-commonjs/global/typographyStyles.d.ts +5 -0
  105. package/lib-commonjs/global/typographyStyles.js +112 -0
  106. package/lib-commonjs/global/typographyStyles.js.map +1 -0
  107. package/lib-commonjs/index.d.ts +2 -1
  108. package/lib-commonjs/index.js +10 -1
  109. package/lib-commonjs/index.js.map +1 -1
  110. package/lib-commonjs/tokens.js +48 -1
  111. package/lib-commonjs/tokens.js.map +1 -1
  112. package/lib-commonjs/types.d.ts +91 -1
  113. package/lib-commonjs/utils/createDarkTheme.js +15 -3
  114. package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
  115. package/lib-commonjs/utils/createHighContrastTheme.js +15 -3
  116. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
  117. package/lib-commonjs/utils/createLightTheme.js +15 -3
  118. package/lib-commonjs/utils/createLightTheme.js.map +1 -1
  119. package/lib-commonjs/utils/createTeamsDarkTheme.js +15 -3
  120. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
  121. package/package.json +11 -8
  122. package/lib/alias/dark.d.ts +0 -3
  123. package/lib/alias/dark.js.map +0 -1
  124. package/lib/alias/highContrast.d.ts +0 -3
  125. package/lib/alias/highContrast.js.map +0 -1
  126. package/lib/alias/light.d.ts +0 -3
  127. package/lib/alias/light.js.map +0 -1
  128. package/lib/alias/teamsDark.d.ts +0 -3
  129. package/lib/alias/teamsDark.js.map +0 -1
  130. package/lib-commonjs/alias/dark.d.ts +0 -3
  131. package/lib-commonjs/alias/dark.js.map +0 -1
  132. package/lib-commonjs/alias/highContrast.d.ts +0 -3
  133. package/lib-commonjs/alias/highContrast.js.map +0 -1
  134. package/lib-commonjs/alias/light.d.ts +0 -3
  135. package/lib-commonjs/alias/light.js.map +0 -1
  136. package/lib-commonjs/alias/teamsDark.d.ts +0 -3
  137. package/lib-commonjs/alias/teamsDark.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,122 @@
2
2
  "name": "@fluentui/react-theme",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 18 Feb 2022 13:33:51 GMT",
5
+ "date": "Wed, 04 May 2022 13:24:01 GMT",
6
+ "tag": "@fluentui/react-theme_v9.0.0-rc.6",
7
+ "version": "9.0.0-rc.6",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "gcox@microsoft.com",
12
+ "package": "@fluentui/react-theme",
13
+ "commit": "27ba5613b1253801c3ae4e2aba0fc9eb2ae464b8",
14
+ "comment": "Add px suffix to spacings"
15
+ },
16
+ {
17
+ "author": "gcox@microsoft.com",
18
+ "package": "@fluentui/react-theme",
19
+ "commit": "75ad2567f62e804a8deb3ea6016ba8a674c45627",
20
+ "comment": "Fixed typo in typography"
21
+ },
22
+ {
23
+ "author": "gcox@microsoft.com",
24
+ "package": "@fluentui/react-theme",
25
+ "commit": "7ad290b51135cb84c84e7dd8771bd712892c7484",
26
+ "comment": "Fixed line-height in title2"
27
+ },
28
+ {
29
+ "author": "gcox@microsoft.com",
30
+ "package": "@fluentui/react-theme",
31
+ "commit": "57583bfffa6bf28be389dec6c642f36ed253ecdd",
32
+ "comment": "Added global theme types and tokens"
33
+ },
34
+ {
35
+ "author": "miroslav.stastny@microsoft.com",
36
+ "package": "@fluentui/react-theme",
37
+ "commit": "3e0ff753cbb3375f28477b2249ecd8b012e2e946",
38
+ "comment": "fix(react-theme): Update CompoundBrandBackground and BrandStroke1"
39
+ },
40
+ {
41
+ "author": "gcox@microsoft.com",
42
+ "package": "@fluentui/react-theme",
43
+ "commit": "354c4f6290d7957345fd53a8f26c8f5472ff92db",
44
+ "comment": "Add base font family per figma"
45
+ },
46
+ {
47
+ "author": "gcox@microsoft.com",
48
+ "package": "@fluentui/react-theme",
49
+ "commit": "78da3be7484d156379a105048c535767f7e1b85f",
50
+ "comment": "Added typeography styles"
51
+ },
52
+ {
53
+ "author": "miroslav.stastny@microsoft.com",
54
+ "package": "@fluentui/react-theme",
55
+ "commit": "e45629a0978492d5a8a44934f5263e47862ac8b3",
56
+ "comment": "feat(react-theme): Add colorNeutralForeground2Link color tokens"
57
+ }
58
+ ],
59
+ "none": [
60
+ {
61
+ "author": "tristan.watanabe@gmail.com",
62
+ "package": "@fluentui/react-theme",
63
+ "commit": "8ec3d32fa26e6cf803ab9d18671fd51ba06c74ab",
64
+ "comment": "react-theme: Move to new common folder."
65
+ }
66
+ ]
67
+ }
68
+ },
69
+ {
70
+ "date": "Tue, 19 Apr 2022 19:17:02 GMT",
71
+ "tag": "@fluentui/react-theme_v9.0.0-rc.5",
72
+ "version": "9.0.0-rc.5",
73
+ "comments": {
74
+ "none": [
75
+ {
76
+ "author": "elcraig@microsoft.com",
77
+ "package": "@fluentui/react-theme",
78
+ "commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
79
+ "comment": "Update React dev deps and hoist them to the repo root"
80
+ },
81
+ {
82
+ "author": "mgodbolt@microsoft.com",
83
+ "package": "@fluentui/react-theme",
84
+ "commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
85
+ "comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
86
+ }
87
+ ],
88
+ "prerelease": [
89
+ {
90
+ "author": "miroslav.stastny@microsoft.com",
91
+ "package": "@fluentui/react-theme",
92
+ "commit": "d7e4ddf20d1ecb71d3dfc450c65ffde8c7394e3b",
93
+ "comment": "fix(react-theme): Update yellow shared color"
94
+ },
95
+ {
96
+ "author": "miroslav.stastny@microsoft.com",
97
+ "package": "@fluentui/react-theme",
98
+ "commit": "a91094de0bcf0467126052b6785fcbddd5ef0045",
99
+ "comment": "feat(react-theme): update color tokens"
100
+ }
101
+ ]
102
+ }
103
+ },
104
+ {
105
+ "date": "Fri, 04 Mar 2022 05:17:31 GMT",
106
+ "tag": "@fluentui/react-theme_v9.0.0-rc.4",
107
+ "version": "9.0.0-rc.4",
108
+ "comments": {
109
+ "prerelease": [
110
+ {
111
+ "author": "dzearing@microsoft.com",
112
+ "package": "@fluentui/react-theme",
113
+ "commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
114
+ "comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
115
+ }
116
+ ]
117
+ }
118
+ },
119
+ {
120
+ "date": "Fri, 18 Feb 2022 13:35:36 GMT",
6
121
  "tag": "@fluentui/react-theme_v9.0.0-rc.3",
7
122
  "version": "9.0.0-rc.3",
8
123
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,47 @@
1
1
  # Change Log - @fluentui/react-theme
2
2
 
3
- This log was last generated on Fri, 18 Feb 2022 13:33:51 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 04 May 2022 13:24:01 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.6)
8
+
9
+ Wed, 04 May 2022 13:24:01 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.5..@fluentui/react-theme_v9.0.0-rc.6)
11
+
12
+ ### Changes
13
+
14
+ - Add px suffix to spacings ([PR #22722](https://github.com/microsoft/fluentui/pull/22722) by gcox@microsoft.com)
15
+ - Fixed typo in typography ([PR #22625](https://github.com/microsoft/fluentui/pull/22625) by gcox@microsoft.com)
16
+ - Fixed line-height in title2 ([PR #22716](https://github.com/microsoft/fluentui/pull/22716) by gcox@microsoft.com)
17
+ - Added global theme types and tokens ([PR #22607](https://github.com/microsoft/fluentui/pull/22607) by gcox@microsoft.com)
18
+ - fix(react-theme): Update CompoundBrandBackground and BrandStroke1 ([PR #22751](https://github.com/microsoft/fluentui/pull/22751) by miroslav.stastny@microsoft.com)
19
+ - Add base font family per figma ([PR #22627](https://github.com/microsoft/fluentui/pull/22627) by gcox@microsoft.com)
20
+ - Added typeography styles ([PR #22610](https://github.com/microsoft/fluentui/pull/22610) by gcox@microsoft.com)
21
+ - feat(react-theme): Add colorNeutralForeground2Link color tokens ([PR #22570](https://github.com/microsoft/fluentui/pull/22570) by miroslav.stastny@microsoft.com)
22
+
23
+ ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.5)
24
+
25
+ Tue, 19 Apr 2022 19:17:02 GMT
26
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.4..@fluentui/react-theme_v9.0.0-rc.5)
27
+
28
+ ### Changes
29
+
30
+ - fix(react-theme): Update yellow shared color ([PR #22450](https://github.com/microsoft/fluentui/pull/22450) by miroslav.stastny@microsoft.com)
31
+ - feat(react-theme): update color tokens ([PR #22238](https://github.com/microsoft/fluentui/pull/22238) by miroslav.stastny@microsoft.com)
32
+
33
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.4)
34
+
35
+ Fri, 04 Mar 2022 05:17:31 GMT
36
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.3..@fluentui/react-theme_v9.0.0-rc.4)
37
+
38
+ ### Changes
39
+
40
+ - Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
41
+
7
42
  ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.3)
8
43
 
9
- Fri, 18 Feb 2022 13:33:51 GMT
44
+ Fri, 18 Feb 2022 13:35:36 GMT
10
45
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.1..@fluentui/react-theme_v9.0.0-rc.3)
11
46
 
12
47
  ### Changes
@@ -15,7 +50,7 @@ Fri, 18 Feb 2022 13:33:51 GMT
15
50
 
16
51
  ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.1)
17
52
 
18
- Thu, 10 Feb 2022 08:51:02 GMT
53
+ Thu, 10 Feb 2022 08:51:02 GMT
19
54
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v9.0.0-rc.1)
20
55
 
21
56
  ### Changes
@@ -32,7 +67,7 @@ Thu, 10 Feb 2022 08:51:02 GMT
32
67
 
33
68
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.4)
34
69
 
35
- Thu, 25 Nov 2021 08:34:16 GMT
70
+ Thu, 25 Nov 2021 08:34:16 GMT
36
71
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.3..@fluentui/react-theme_v9.0.0-beta.4)
37
72
 
38
73
  ### Changes
@@ -41,7 +76,7 @@ Thu, 25 Nov 2021 08:34:16 GMT
41
76
 
42
77
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.3)
43
78
 
44
- Fri, 12 Nov 2021 13:25:09 GMT
79
+ Fri, 12 Nov 2021 13:25:09 GMT
45
80
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.2..@fluentui/react-theme_v9.0.0-beta.3)
46
81
 
47
82
  ### Changes
@@ -51,7 +86,7 @@ Fri, 12 Nov 2021 13:25:09 GMT
51
86
 
52
87
  ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.2)
53
88
 
54
- Wed, 27 Oct 2021 12:14:23 GMT
89
+ Wed, 27 Oct 2021 12:14:23 GMT
55
90
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.1..@fluentui/react-theme_v9.0.0-beta.2)
56
91
 
57
92
  ### Changes
@@ -61,7 +96,7 @@ Wed, 27 Oct 2021 12:14:23 GMT
61
96
 
62
97
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.1)
63
98
 
64
- Wed, 06 Oct 2021 10:37:22 GMT
99
+ Wed, 06 Oct 2021 10:37:22 GMT
65
100
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.26..@fluentui/react-theme_v9.0.0-beta.1)
66
101
 
67
102
  ### Changes
@@ -70,7 +105,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
70
105
 
71
106
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.26)
72
107
 
73
- Fri, 01 Oct 2021 14:13:08 GMT
108
+ Fri, 01 Oct 2021 14:13:08 GMT
74
109
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.24..@fluentui/react-theme_v9.0.0-alpha.26)
75
110
 
76
111
  ### Changes
@@ -79,7 +114,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
79
114
 
80
115
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.24)
81
116
 
82
- Wed, 29 Sep 2021 08:06:11 GMT
117
+ Wed, 29 Sep 2021 08:06:11 GMT
83
118
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.23..@fluentui/react-theme_v9.0.0-alpha.24)
84
119
 
85
120
  ### Changes
@@ -88,7 +123,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
88
123
 
89
124
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.23)
90
125
 
91
- Tue, 21 Sep 2021 07:42:34 GMT
126
+ Tue, 21 Sep 2021 07:42:34 GMT
92
127
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.22..@fluentui/react-theme_v9.0.0-alpha.23)
93
128
 
94
129
  ### Changes
@@ -97,7 +132,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
97
132
 
98
133
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.22)
99
134
 
100
- Tue, 24 Aug 2021 07:34:48 GMT
135
+ Tue, 24 Aug 2021 07:34:48 GMT
101
136
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.21..@fluentui/react-theme_v9.0.0-alpha.22)
102
137
 
103
138
  ### Changes
@@ -106,7 +141,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
106
141
 
107
142
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.21)
108
143
 
109
- Fri, 20 Aug 2021 07:37:28 GMT
144
+ Fri, 20 Aug 2021 07:37:28 GMT
110
145
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.20..@fluentui/react-theme_v9.0.0-alpha.21)
111
146
 
112
147
  ### Changes
@@ -115,7 +150,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
115
150
 
116
151
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.20)
117
152
 
118
- Tue, 03 Aug 2021 07:39:30 GMT
153
+ Tue, 03 Aug 2021 07:39:30 GMT
119
154
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.19..@fluentui/react-theme_v9.0.0-alpha.20)
120
155
 
121
156
  ### Patches
@@ -129,7 +164,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
129
164
 
130
165
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.19)
131
166
 
132
- Mon, 26 Jul 2021 07:37:30 GMT
167
+ Mon, 26 Jul 2021 07:37:30 GMT
133
168
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.18..@fluentui/react-theme_v9.0.0-alpha.19)
134
169
 
135
170
  ### Changes
@@ -138,7 +173,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
138
173
 
139
174
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.18)
140
175
 
141
- Fri, 23 Jul 2021 07:38:19 GMT
176
+ Fri, 23 Jul 2021 07:38:19 GMT
142
177
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.17..@fluentui/react-theme_v9.0.0-alpha.18)
143
178
 
144
179
  ### Changes
@@ -147,7 +182,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
147
182
 
148
183
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.17)
149
184
 
150
- Fri, 09 Jul 2021 07:39:31 GMT
185
+ Fri, 09 Jul 2021 07:39:31 GMT
151
186
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.16..@fluentui/react-theme_v9.0.0-alpha.17)
152
187
 
153
188
  ### Patches
@@ -157,7 +192,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
157
192
 
158
193
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.16)
159
194
 
160
- Fri, 02 Jul 2021 07:37:06 GMT
195
+ Fri, 02 Jul 2021 07:37:06 GMT
161
196
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.15..@fluentui/react-theme_v9.0.0-alpha.16)
162
197
 
163
198
  ### Changes
@@ -166,7 +201,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
166
201
 
167
202
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.15)
168
203
 
169
- Mon, 07 Jun 2021 07:38:15 GMT
204
+ Mon, 07 Jun 2021 07:38:15 GMT
170
205
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.14..@fluentui/react-theme_v9.0.0-alpha.15)
171
206
 
172
207
  ### Patches
@@ -176,7 +211,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
176
211
 
177
212
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.14)
178
213
 
179
- Thu, 03 Jun 2021 07:36:03 GMT
214
+ Thu, 03 Jun 2021 07:36:03 GMT
180
215
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.13..@fluentui/react-theme_v9.0.0-alpha.14)
181
216
 
182
217
  ### Changes
@@ -185,7 +220,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
185
220
 
186
221
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.13)
187
222
 
188
- Thu, 20 May 2021 07:41:54 GMT
223
+ Thu, 20 May 2021 07:41:54 GMT
189
224
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.12..@fluentui/react-theme_v9.0.0-alpha.13)
190
225
 
191
226
  ### Patches
@@ -195,7 +230,7 @@ Thu, 20 May 2021 07:41:54 GMT
195
230
 
196
231
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.12)
197
232
 
198
- Wed, 19 May 2021 07:34:20 GMT
233
+ Wed, 19 May 2021 07:34:20 GMT
199
234
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.11..@fluentui/react-theme_v9.0.0-alpha.12)
200
235
 
201
236
  ### Changes
@@ -204,7 +239,7 @@ Wed, 19 May 2021 07:34:20 GMT
204
239
 
205
240
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.11)
206
241
 
207
- Thu, 13 May 2021 07:36:55 GMT
242
+ Thu, 13 May 2021 07:36:55 GMT
208
243
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.10..@fluentui/react-theme_v9.0.0-alpha.11)
209
244
 
210
245
  ### Changes
@@ -213,7 +248,7 @@ Thu, 13 May 2021 07:36:55 GMT
213
248
 
214
249
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.10)
215
250
 
216
- Fri, 30 Apr 2021 07:42:23 GMT
251
+ Fri, 30 Apr 2021 07:42:23 GMT
217
252
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.9..@fluentui/react-theme_v9.0.0-alpha.10)
218
253
 
219
254
  ### Patches
@@ -227,7 +262,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
227
262
 
228
263
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.9)
229
264
 
230
- Fri, 23 Apr 2021 07:37:10 GMT
265
+ Fri, 23 Apr 2021 07:37:10 GMT
231
266
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.8..@fluentui/react-theme_v9.0.0-alpha.9)
232
267
 
233
268
  ### Patches
@@ -237,7 +272,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
237
272
 
238
273
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.8)
239
274
 
240
- Thu, 08 Apr 2021 07:33:06 GMT
275
+ Thu, 08 Apr 2021 07:33:06 GMT
241
276
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.7..@fluentui/react-theme_v9.0.0-alpha.8)
242
277
 
243
278
  ### Changes
@@ -246,7 +281,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
246
281
 
247
282
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.7)
248
283
 
249
- Wed, 31 Mar 2021 00:53:43 GMT
284
+ Wed, 31 Mar 2021 00:53:43 GMT
250
285
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.6..@fluentui/react-theme_v9.0.0-alpha.7)
251
286
 
252
287
  ### Patches
@@ -256,7 +291,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
256
291
 
257
292
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.6)
258
293
 
259
- Mon, 15 Mar 2021 07:36:20 GMT
294
+ Mon, 15 Mar 2021 07:36:20 GMT
260
295
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.5..@fluentui/react-theme_v9.0.0-alpha.6)
261
296
 
262
297
  ### Changes
@@ -265,7 +300,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
265
300
 
266
301
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.5)
267
302
 
268
- Wed, 03 Mar 2021 00:10:09 GMT
303
+ Wed, 03 Mar 2021 00:10:09 GMT
269
304
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.4..@fluentui/react-theme_v9.0.0-alpha.5)
270
305
 
271
306
  ### Changes
@@ -274,7 +309,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
274
309
 
275
310
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.4)
276
311
 
277
- Tue, 02 Mar 2021 07:24:27 GMT
312
+ Tue, 02 Mar 2021 07:24:27 GMT
278
313
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.3..@fluentui/react-theme_v9.0.0-alpha.4)
279
314
 
280
315
  ### Changes
@@ -284,7 +319,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
284
319
 
285
320
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.3)
286
321
 
287
- Fri, 26 Feb 2021 01:16:27 GMT
322
+ Fri, 26 Feb 2021 01:16:27 GMT
288
323
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.2..@fluentui/react-theme_v9.0.0-alpha.3)
289
324
 
290
325
  ### Patches
@@ -300,7 +335,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
300
335
 
301
336
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.2)
302
337
 
303
- Thu, 25 Feb 2021 20:16:39 GMT
338
+ Thu, 25 Feb 2021 20:16:39 GMT
304
339
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.1..@fluentui/react-theme_v9.0.0-alpha.2)
305
340
 
306
341
  ### Changes
@@ -309,7 +344,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
309
344
 
310
345
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.1)
311
346
 
312
- Wed, 24 Feb 2021 00:05:29 GMT
347
+ Wed, 24 Feb 2021 00:05:29 GMT
313
348
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.3..@fluentui/react-theme_v9.0.0-alpha.1)
314
349
 
315
350
  ### Changes
@@ -318,7 +353,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
318
353
 
319
354
  ## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.3)
320
355
 
321
- Mon, 22 Feb 2021 12:26:22 GMT
356
+ Mon, 22 Feb 2021 12:26:22 GMT
322
357
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.2..@fluentui/react-theme_v0.3.3)
323
358
 
324
359
  ### Patches
@@ -331,7 +366,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
331
366
 
332
367
  ## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.2)
333
368
 
334
- Thu, 18 Feb 2021 19:38:50 GMT
369
+ Thu, 18 Feb 2021 19:38:50 GMT
335
370
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.2)
336
371
 
337
372
  ### Patches
@@ -344,7 +379,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
344
379
 
345
380
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
346
381
 
347
- Thu, 18 Feb 2021 12:27:34 GMT
382
+ Thu, 18 Feb 2021 12:27:34 GMT
348
383
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
349
384
 
350
385
  ### Changes
@@ -356,7 +391,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
356
391
 
357
392
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
358
393
 
359
- Mon, 15 Feb 2021 12:22:00 GMT
394
+ Mon, 15 Feb 2021 12:22:00 GMT
360
395
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
361
396
 
362
397
  ### Changes
@@ -365,7 +400,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
365
400
 
366
401
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
367
402
 
368
- Thu, 11 Feb 2021 00:58:10 GMT
403
+ Thu, 11 Feb 2021 00:58:10 GMT
369
404
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
370
405
 
371
406
  ### Changes
@@ -374,7 +409,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
374
409
 
375
410
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
376
411
 
377
- Tue, 09 Feb 2021 00:56:52 GMT
412
+ Tue, 09 Feb 2021 00:56:52 GMT
378
413
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.0..@fluentui/react-theme_v0.3.1)
379
414
 
380
415
  ### Patches
@@ -383,7 +418,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
383
418
 
384
419
  ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.0)
385
420
 
386
- Mon, 08 Feb 2021 12:23:08 GMT
421
+ Mon, 08 Feb 2021 12:23:08 GMT
387
422
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.2.0..@fluentui/react-theme_v0.3.0)
388
423
 
389
424
  ### 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
+ 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;
@@ -0,0 +1,2 @@
1
+ import type { BrandVariants, ColorTokens } from '../types';
2
+ export declare const generateColorTokens: (brand: BrandVariants) => ColorTokens;