@fluentui/react-theme 9.0.0-rc.5 → 9.0.0-rc.8

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 (136) hide show
  1. package/CHANGELOG.json +116 -1
  2. package/CHANGELOG.md +77 -41
  3. package/dist/{react-theme.d.ts → index.d.ts} +100 -1
  4. package/{lib → dist}/tsdoc-metadata.json +0 -0
  5. package/lib/alias/darkColor.js +14 -10
  6. package/lib/alias/darkColor.js.map +1 -1
  7. package/lib/alias/highContrastColor.js +4 -0
  8. package/lib/alias/highContrastColor.js.map +1 -1
  9. package/lib/alias/lightColor.js +4 -0
  10. package/lib/alias/lightColor.js.map +1 -1
  11. package/lib/alias/teamsDarkColor.js +14 -10
  12. package/lib/alias/teamsDarkColor.js.map +1 -1
  13. package/lib/global/brandColors.js +16 -16
  14. package/lib/global/brandColors.js.map +1 -1
  15. package/lib/global/curves.js +12 -0
  16. package/lib/global/curves.js.map +1 -0
  17. package/lib/global/durations.js +10 -0
  18. package/lib/global/durations.js.map +1 -0
  19. package/lib/global/index.js +5 -0
  20. package/lib/global/index.js.map +1 -1
  21. package/lib/global/spacings.js +40 -0
  22. package/lib/global/spacings.js.map +1 -0
  23. package/lib/global/typographyStyles.js +104 -0
  24. package/lib/global/typographyStyles.js.map +1 -0
  25. package/lib/index.js +3 -2
  26. package/lib/index.js.map +1 -1
  27. package/lib/tokens.js +46 -1
  28. package/lib/tokens.js.map +1 -1
  29. package/lib/types.js.map +1 -1
  30. package/lib/utils/createDarkTheme.js +7 -0
  31. package/lib/utils/createDarkTheme.js.map +1 -1
  32. package/lib/utils/createHighContrastTheme.js +7 -0
  33. package/lib/utils/createHighContrastTheme.js.map +1 -1
  34. package/lib/utils/createLightTheme.js +7 -0
  35. package/lib/utils/createLightTheme.js.map +1 -1
  36. package/lib/utils/createTeamsDarkTheme.js +7 -0
  37. package/lib/utils/createTeamsDarkTheme.js.map +1 -1
  38. package/lib-commonjs/alias/darkColor.js +14 -10
  39. package/lib-commonjs/alias/darkColor.js.map +1 -1
  40. package/lib-commonjs/alias/highContrastColor.js +4 -0
  41. package/lib-commonjs/alias/highContrastColor.js.map +1 -1
  42. package/lib-commonjs/alias/lightColor.js +4 -0
  43. package/lib-commonjs/alias/lightColor.js.map +1 -1
  44. package/lib-commonjs/alias/teamsDarkColor.js +14 -10
  45. package/lib-commonjs/alias/teamsDarkColor.js.map +1 -1
  46. package/lib-commonjs/global/brandColors.js +16 -16
  47. package/lib-commonjs/global/brandColors.js.map +1 -1
  48. package/lib-commonjs/global/curves.js +18 -0
  49. package/lib-commonjs/global/curves.js.map +1 -0
  50. package/lib-commonjs/global/durations.js +16 -0
  51. package/lib-commonjs/global/durations.js.map +1 -0
  52. package/lib-commonjs/global/index.js +10 -0
  53. package/lib-commonjs/global/index.js.map +1 -1
  54. package/lib-commonjs/global/spacings.js +46 -0
  55. package/lib-commonjs/global/spacings.js.map +1 -0
  56. package/lib-commonjs/global/typographyStyles.js +112 -0
  57. package/lib-commonjs/global/typographyStyles.js.map +1 -0
  58. package/lib-commonjs/index.js +73 -4
  59. package/lib-commonjs/index.js.map +1 -1
  60. package/lib-commonjs/tokens.js +46 -1
  61. package/lib-commonjs/tokens.js.map +1 -1
  62. package/lib-commonjs/utils/createDarkTheme.js +10 -0
  63. package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
  64. package/lib-commonjs/utils/createHighContrastTheme.js +10 -0
  65. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
  66. package/lib-commonjs/utils/createLightTheme.js +10 -0
  67. package/lib-commonjs/utils/createLightTheme.js.map +1 -1
  68. package/lib-commonjs/utils/createTeamsDarkTheme.js +10 -0
  69. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
  70. package/package.json +5 -4
  71. package/lib/alias/darkColor.d.ts +0 -2
  72. package/lib/alias/darkColorPalette.d.ts +0 -2
  73. package/lib/alias/highContrastColor.d.ts +0 -2
  74. package/lib/alias/highContrastColorPalette.d.ts +0 -2
  75. package/lib/alias/lightColor.d.ts +0 -2
  76. package/lib/alias/lightColorPalette.d.ts +0 -2
  77. package/lib/alias/teamsDarkColor.d.ts +0 -2
  78. package/lib/alias/teamsDarkColorPalette.d.ts +0 -2
  79. package/lib/global/borderRadius.d.ts +0 -2
  80. package/lib/global/brandColors.d.ts +0 -4
  81. package/lib/global/colors.d.ts +0 -16
  82. package/lib/global/fonts.d.ts +0 -5
  83. package/lib/global/index.d.ts +0 -4
  84. package/lib/global/strokeWidths.d.ts +0 -2
  85. package/lib/index.d.ts +0 -5
  86. package/lib/themeToTokensObject.d.ts +0 -10
  87. package/lib/themes/index.d.ts +0 -2
  88. package/lib/themes/teams/darkTheme.d.ts +0 -2
  89. package/lib/themes/teams/highContrastTheme.d.ts +0 -2
  90. package/lib/themes/teams/index.d.ts +0 -3
  91. package/lib/themes/teams/lightTheme.d.ts +0 -2
  92. package/lib/themes/web/darkTheme.d.ts +0 -2
  93. package/lib/themes/web/highContrastTheme.d.ts +0 -2
  94. package/lib/themes/web/index.d.ts +0 -3
  95. package/lib/themes/web/lightTheme.d.ts +0 -2
  96. package/lib/tokens.d.ts +0 -2
  97. package/lib/types.d.ts +0 -344
  98. package/lib/utils/createDarkTheme.d.ts +0 -2
  99. package/lib/utils/createHighContrastTheme.d.ts +0 -2
  100. package/lib/utils/createLightTheme.d.ts +0 -2
  101. package/lib/utils/createTeamsDarkTheme.d.ts +0 -2
  102. package/lib/utils/index.d.ts +0 -4
  103. package/lib/utils/shadows.d.ts +0 -3
  104. package/lib-commonjs/alias/darkColor.d.ts +0 -2
  105. package/lib-commonjs/alias/darkColorPalette.d.ts +0 -2
  106. package/lib-commonjs/alias/highContrastColor.d.ts +0 -2
  107. package/lib-commonjs/alias/highContrastColorPalette.d.ts +0 -2
  108. package/lib-commonjs/alias/lightColor.d.ts +0 -2
  109. package/lib-commonjs/alias/lightColorPalette.d.ts +0 -2
  110. package/lib-commonjs/alias/teamsDarkColor.d.ts +0 -2
  111. package/lib-commonjs/alias/teamsDarkColorPalette.d.ts +0 -2
  112. package/lib-commonjs/global/borderRadius.d.ts +0 -2
  113. package/lib-commonjs/global/brandColors.d.ts +0 -4
  114. package/lib-commonjs/global/colors.d.ts +0 -16
  115. package/lib-commonjs/global/fonts.d.ts +0 -5
  116. package/lib-commonjs/global/index.d.ts +0 -4
  117. package/lib-commonjs/global/strokeWidths.d.ts +0 -2
  118. package/lib-commonjs/index.d.ts +0 -5
  119. package/lib-commonjs/themeToTokensObject.d.ts +0 -10
  120. package/lib-commonjs/themes/index.d.ts +0 -2
  121. package/lib-commonjs/themes/teams/darkTheme.d.ts +0 -2
  122. package/lib-commonjs/themes/teams/highContrastTheme.d.ts +0 -2
  123. package/lib-commonjs/themes/teams/index.d.ts +0 -3
  124. package/lib-commonjs/themes/teams/lightTheme.d.ts +0 -2
  125. package/lib-commonjs/themes/web/darkTheme.d.ts +0 -2
  126. package/lib-commonjs/themes/web/highContrastTheme.d.ts +0 -2
  127. package/lib-commonjs/themes/web/index.d.ts +0 -3
  128. package/lib-commonjs/themes/web/lightTheme.d.ts +0 -2
  129. package/lib-commonjs/tokens.d.ts +0 -2
  130. package/lib-commonjs/types.d.ts +0 -344
  131. package/lib-commonjs/utils/createDarkTheme.d.ts +0 -2
  132. package/lib-commonjs/utils/createHighContrastTheme.d.ts +0 -2
  133. package/lib-commonjs/utils/createLightTheme.d.ts +0 -2
  134. package/lib-commonjs/utils/createTeamsDarkTheme.d.ts +0 -2
  135. package/lib-commonjs/utils/index.d.ts +0 -4
  136. package/lib-commonjs/utils/shadows.d.ts +0 -3
package/CHANGELOG.json CHANGED
@@ -2,7 +2,122 @@
2
2
  "name": "@fluentui/react-theme",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 19 Apr 2022 19:14:12 GMT",
5
+ "date": "Mon, 23 May 2022 12:10:22 GMT",
6
+ "tag": "@fluentui/react-theme_v9.0.0-rc.8",
7
+ "version": "9.0.0-rc.8",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "martinhochel@microsoft.com",
12
+ "package": "@fluentui/react-theme",
13
+ "commit": "e7b70cb06f4422e5574993fd2ad44d9073647417",
14
+ "comment": "feat: ship rolluped only dts"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Thu, 05 May 2022 18:26:27 GMT",
21
+ "tag": "@fluentui/react-theme_v9.0.0-rc.7",
22
+ "version": "9.0.0-rc.7",
23
+ "comments": {
24
+ "prerelease": [
25
+ {
26
+ "author": "miroslav.stastny@microsoft.com",
27
+ "package": "@fluentui/react-theme",
28
+ "commit": "cb0b4bd7ac79ccf27539a12104f651f5d330e464",
29
+ "comment": "Export TypographyStyle type"
30
+ },
31
+ {
32
+ "author": "humberto_makoto@hotmail.com",
33
+ "package": "@fluentui/react-theme",
34
+ "commit": "975977d075e01a9091fcf2b9b84c14f829135fa7",
35
+ "comment": "Removing star exports."
36
+ },
37
+ {
38
+ "author": "gcox@microsoft.com",
39
+ "package": "@fluentui/react-theme",
40
+ "commit": "d325a31bcd5d144e2a40ee4bf085e8ef6b3f5d73",
41
+ "comment": "Added ms suffix to durations"
42
+ }
43
+ ],
44
+ "none": [
45
+ {
46
+ "author": "miroslav.stastny@microsoft.com",
47
+ "package": "@fluentui/react-theme",
48
+ "commit": "00a4a1dd582f5695b7cb9bba48fb8537534bbec0",
49
+ "comment": "Generate theme tokens using token pipeline"
50
+ }
51
+ ]
52
+ }
53
+ },
54
+ {
55
+ "date": "Wed, 04 May 2022 13:26:33 GMT",
56
+ "tag": "@fluentui/react-theme_v9.0.0-rc.6",
57
+ "version": "9.0.0-rc.6",
58
+ "comments": {
59
+ "prerelease": [
60
+ {
61
+ "author": "gcox@microsoft.com",
62
+ "package": "@fluentui/react-theme",
63
+ "commit": "27ba5613b1253801c3ae4e2aba0fc9eb2ae464b8",
64
+ "comment": "Add px suffix to spacings"
65
+ },
66
+ {
67
+ "author": "gcox@microsoft.com",
68
+ "package": "@fluentui/react-theme",
69
+ "commit": "75ad2567f62e804a8deb3ea6016ba8a674c45627",
70
+ "comment": "Fixed typo in typography"
71
+ },
72
+ {
73
+ "author": "gcox@microsoft.com",
74
+ "package": "@fluentui/react-theme",
75
+ "commit": "7ad290b51135cb84c84e7dd8771bd712892c7484",
76
+ "comment": "Fixed line-height in title2"
77
+ },
78
+ {
79
+ "author": "gcox@microsoft.com",
80
+ "package": "@fluentui/react-theme",
81
+ "commit": "57583bfffa6bf28be389dec6c642f36ed253ecdd",
82
+ "comment": "Added global theme types and tokens"
83
+ },
84
+ {
85
+ "author": "miroslav.stastny@microsoft.com",
86
+ "package": "@fluentui/react-theme",
87
+ "commit": "3e0ff753cbb3375f28477b2249ecd8b012e2e946",
88
+ "comment": "fix(react-theme): Update CompoundBrandBackground and BrandStroke1"
89
+ },
90
+ {
91
+ "author": "gcox@microsoft.com",
92
+ "package": "@fluentui/react-theme",
93
+ "commit": "354c4f6290d7957345fd53a8f26c8f5472ff92db",
94
+ "comment": "Add base font family per figma"
95
+ },
96
+ {
97
+ "author": "gcox@microsoft.com",
98
+ "package": "@fluentui/react-theme",
99
+ "commit": "78da3be7484d156379a105048c535767f7e1b85f",
100
+ "comment": "Added typeography styles"
101
+ },
102
+ {
103
+ "author": "miroslav.stastny@microsoft.com",
104
+ "package": "@fluentui/react-theme",
105
+ "commit": "e45629a0978492d5a8a44934f5263e47862ac8b3",
106
+ "comment": "feat(react-theme): Add colorNeutralForeground2Link color tokens"
107
+ }
108
+ ],
109
+ "none": [
110
+ {
111
+ "author": "tristan.watanabe@gmail.com",
112
+ "package": "@fluentui/react-theme",
113
+ "commit": "8ec3d32fa26e6cf803ab9d18671fd51ba06c74ab",
114
+ "comment": "react-theme: Move to new common folder."
115
+ }
116
+ ]
117
+ }
118
+ },
119
+ {
120
+ "date": "Tue, 19 Apr 2022 19:17:02 GMT",
6
121
  "tag": "@fluentui/react-theme_v9.0.0-rc.5",
7
122
  "version": "9.0.0-rc.5",
8
123
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,48 @@
1
1
  # Change Log - @fluentui/react-theme
2
2
 
3
- This log was last generated on Tue, 19 Apr 2022 19:14:12 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 23 May 2022 12:10:22 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.8)
8
+
9
+ Mon, 23 May 2022 12:10:22 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.7..@fluentui/react-theme_v9.0.0-rc.8)
11
+
12
+ ### Changes
13
+
14
+ - feat: ship rolluped only dts ([PR #22828](https://github.com/microsoft/fluentui/pull/22828) by martinhochel@microsoft.com)
15
+
16
+ ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.7)
17
+
18
+ Thu, 05 May 2022 18:26:27 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.6..@fluentui/react-theme_v9.0.0-rc.7)
20
+
21
+ ### Changes
22
+
23
+ - Export TypographyStyle type ([PR #22832](https://github.com/microsoft/fluentui/pull/22832) by miroslav.stastny@microsoft.com)
24
+ - Removing star exports. ([PR #22810](https://github.com/microsoft/fluentui/pull/22810) by humberto_makoto@hotmail.com)
25
+ - Added ms suffix to durations ([PR #22831](https://github.com/microsoft/fluentui/pull/22831) by gcox@microsoft.com)
26
+
27
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.6)
28
+
29
+ Wed, 04 May 2022 13:26:33 GMT
30
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.5..@fluentui/react-theme_v9.0.0-rc.6)
31
+
32
+ ### Changes
33
+
34
+ - Add px suffix to spacings ([PR #22722](https://github.com/microsoft/fluentui/pull/22722) by gcox@microsoft.com)
35
+ - Fixed typo in typography ([PR #22625](https://github.com/microsoft/fluentui/pull/22625) by gcox@microsoft.com)
36
+ - Fixed line-height in title2 ([PR #22716](https://github.com/microsoft/fluentui/pull/22716) by gcox@microsoft.com)
37
+ - Added global theme types and tokens ([PR #22607](https://github.com/microsoft/fluentui/pull/22607) by gcox@microsoft.com)
38
+ - fix(react-theme): Update CompoundBrandBackground and BrandStroke1 ([PR #22751](https://github.com/microsoft/fluentui/pull/22751) by miroslav.stastny@microsoft.com)
39
+ - Add base font family per figma ([PR #22627](https://github.com/microsoft/fluentui/pull/22627) by gcox@microsoft.com)
40
+ - Added typeography styles ([PR #22610](https://github.com/microsoft/fluentui/pull/22610) by gcox@microsoft.com)
41
+ - feat(react-theme): Add colorNeutralForeground2Link color tokens ([PR #22570](https://github.com/microsoft/fluentui/pull/22570) by miroslav.stastny@microsoft.com)
42
+
7
43
  ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.5)
8
44
 
9
- Tue, 19 Apr 2022 19:14:12 GMT
45
+ Tue, 19 Apr 2022 19:17:02 GMT
10
46
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.4..@fluentui/react-theme_v9.0.0-rc.5)
11
47
 
12
48
  ### Changes
@@ -16,7 +52,7 @@ Tue, 19 Apr 2022 19:14:12 GMT
16
52
 
17
53
  ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.4)
18
54
 
19
- Fri, 04 Mar 2022 05:17:31 GMT
55
+ Fri, 04 Mar 2022 05:17:31 GMT
20
56
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.3..@fluentui/react-theme_v9.0.0-rc.4)
21
57
 
22
58
  ### Changes
@@ -25,7 +61,7 @@ Fri, 04 Mar 2022 05:17:31 GMT
25
61
 
26
62
  ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.3)
27
63
 
28
- Fri, 18 Feb 2022 13:35:36 GMT
64
+ Fri, 18 Feb 2022 13:35:36 GMT
29
65
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.1..@fluentui/react-theme_v9.0.0-rc.3)
30
66
 
31
67
  ### Changes
@@ -34,7 +70,7 @@ Fri, 18 Feb 2022 13:35:36 GMT
34
70
 
35
71
  ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.1)
36
72
 
37
- Thu, 10 Feb 2022 08:51:02 GMT
73
+ Thu, 10 Feb 2022 08:51:02 GMT
38
74
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v9.0.0-rc.1)
39
75
 
40
76
  ### Changes
@@ -51,7 +87,7 @@ Thu, 10 Feb 2022 08:51:02 GMT
51
87
 
52
88
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.4)
53
89
 
54
- Thu, 25 Nov 2021 08:34:16 GMT
90
+ Thu, 25 Nov 2021 08:34:16 GMT
55
91
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.3..@fluentui/react-theme_v9.0.0-beta.4)
56
92
 
57
93
  ### Changes
@@ -60,7 +96,7 @@ Thu, 25 Nov 2021 08:34:16 GMT
60
96
 
61
97
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.3)
62
98
 
63
- Fri, 12 Nov 2021 13:25:09 GMT
99
+ Fri, 12 Nov 2021 13:25:09 GMT
64
100
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.2..@fluentui/react-theme_v9.0.0-beta.3)
65
101
 
66
102
  ### Changes
@@ -70,7 +106,7 @@ Fri, 12 Nov 2021 13:25:09 GMT
70
106
 
71
107
  ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.2)
72
108
 
73
- Wed, 27 Oct 2021 12:14:23 GMT
109
+ Wed, 27 Oct 2021 12:14:23 GMT
74
110
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.1..@fluentui/react-theme_v9.0.0-beta.2)
75
111
 
76
112
  ### Changes
@@ -80,7 +116,7 @@ Wed, 27 Oct 2021 12:14:23 GMT
80
116
 
81
117
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.1)
82
118
 
83
- Wed, 06 Oct 2021 10:37:22 GMT
119
+ Wed, 06 Oct 2021 10:37:22 GMT
84
120
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.26..@fluentui/react-theme_v9.0.0-beta.1)
85
121
 
86
122
  ### Changes
@@ -89,7 +125,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
89
125
 
90
126
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.26)
91
127
 
92
- Fri, 01 Oct 2021 14:13:08 GMT
128
+ Fri, 01 Oct 2021 14:13:08 GMT
93
129
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.24..@fluentui/react-theme_v9.0.0-alpha.26)
94
130
 
95
131
  ### Changes
@@ -98,7 +134,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
98
134
 
99
135
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.24)
100
136
 
101
- Wed, 29 Sep 2021 08:06:11 GMT
137
+ Wed, 29 Sep 2021 08:06:11 GMT
102
138
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.23..@fluentui/react-theme_v9.0.0-alpha.24)
103
139
 
104
140
  ### Changes
@@ -107,7 +143,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
107
143
 
108
144
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.23)
109
145
 
110
- Tue, 21 Sep 2021 07:42:34 GMT
146
+ Tue, 21 Sep 2021 07:42:34 GMT
111
147
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.22..@fluentui/react-theme_v9.0.0-alpha.23)
112
148
 
113
149
  ### Changes
@@ -116,7 +152,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
116
152
 
117
153
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.22)
118
154
 
119
- Tue, 24 Aug 2021 07:34:48 GMT
155
+ Tue, 24 Aug 2021 07:34:48 GMT
120
156
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.21..@fluentui/react-theme_v9.0.0-alpha.22)
121
157
 
122
158
  ### Changes
@@ -125,7 +161,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
125
161
 
126
162
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.21)
127
163
 
128
- Fri, 20 Aug 2021 07:37:28 GMT
164
+ Fri, 20 Aug 2021 07:37:28 GMT
129
165
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.20..@fluentui/react-theme_v9.0.0-alpha.21)
130
166
 
131
167
  ### Changes
@@ -134,7 +170,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
134
170
 
135
171
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.20)
136
172
 
137
- Tue, 03 Aug 2021 07:39:30 GMT
173
+ Tue, 03 Aug 2021 07:39:30 GMT
138
174
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.19..@fluentui/react-theme_v9.0.0-alpha.20)
139
175
 
140
176
  ### Patches
@@ -148,7 +184,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
148
184
 
149
185
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.19)
150
186
 
151
- Mon, 26 Jul 2021 07:37:30 GMT
187
+ Mon, 26 Jul 2021 07:37:30 GMT
152
188
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.18..@fluentui/react-theme_v9.0.0-alpha.19)
153
189
 
154
190
  ### Changes
@@ -157,7 +193,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
157
193
 
158
194
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.18)
159
195
 
160
- Fri, 23 Jul 2021 07:38:19 GMT
196
+ Fri, 23 Jul 2021 07:38:19 GMT
161
197
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.17..@fluentui/react-theme_v9.0.0-alpha.18)
162
198
 
163
199
  ### Changes
@@ -166,7 +202,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
166
202
 
167
203
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.17)
168
204
 
169
- Fri, 09 Jul 2021 07:39:31 GMT
205
+ Fri, 09 Jul 2021 07:39:31 GMT
170
206
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.16..@fluentui/react-theme_v9.0.0-alpha.17)
171
207
 
172
208
  ### Patches
@@ -176,7 +212,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
176
212
 
177
213
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.16)
178
214
 
179
- Fri, 02 Jul 2021 07:37:06 GMT
215
+ Fri, 02 Jul 2021 07:37:06 GMT
180
216
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.15..@fluentui/react-theme_v9.0.0-alpha.16)
181
217
 
182
218
  ### Changes
@@ -185,7 +221,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
185
221
 
186
222
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.15)
187
223
 
188
- Mon, 07 Jun 2021 07:38:15 GMT
224
+ Mon, 07 Jun 2021 07:38:15 GMT
189
225
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.14..@fluentui/react-theme_v9.0.0-alpha.15)
190
226
 
191
227
  ### Patches
@@ -195,7 +231,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
195
231
 
196
232
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.14)
197
233
 
198
- Thu, 03 Jun 2021 07:36:03 GMT
234
+ Thu, 03 Jun 2021 07:36:03 GMT
199
235
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.13..@fluentui/react-theme_v9.0.0-alpha.14)
200
236
 
201
237
  ### Changes
@@ -204,7 +240,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
204
240
 
205
241
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.13)
206
242
 
207
- Thu, 20 May 2021 07:41:54 GMT
243
+ Thu, 20 May 2021 07:41:54 GMT
208
244
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.12..@fluentui/react-theme_v9.0.0-alpha.13)
209
245
 
210
246
  ### Patches
@@ -214,7 +250,7 @@ Thu, 20 May 2021 07:41:54 GMT
214
250
 
215
251
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.12)
216
252
 
217
- Wed, 19 May 2021 07:34:20 GMT
253
+ Wed, 19 May 2021 07:34:20 GMT
218
254
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.11..@fluentui/react-theme_v9.0.0-alpha.12)
219
255
 
220
256
  ### Changes
@@ -223,7 +259,7 @@ Wed, 19 May 2021 07:34:20 GMT
223
259
 
224
260
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.11)
225
261
 
226
- Thu, 13 May 2021 07:36:55 GMT
262
+ Thu, 13 May 2021 07:36:55 GMT
227
263
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.10..@fluentui/react-theme_v9.0.0-alpha.11)
228
264
 
229
265
  ### Changes
@@ -232,7 +268,7 @@ Thu, 13 May 2021 07:36:55 GMT
232
268
 
233
269
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.10)
234
270
 
235
- Fri, 30 Apr 2021 07:42:23 GMT
271
+ Fri, 30 Apr 2021 07:42:23 GMT
236
272
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.9..@fluentui/react-theme_v9.0.0-alpha.10)
237
273
 
238
274
  ### Patches
@@ -246,7 +282,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
246
282
 
247
283
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.9)
248
284
 
249
- Fri, 23 Apr 2021 07:37:10 GMT
285
+ Fri, 23 Apr 2021 07:37:10 GMT
250
286
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.8..@fluentui/react-theme_v9.0.0-alpha.9)
251
287
 
252
288
  ### Patches
@@ -256,7 +292,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
256
292
 
257
293
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.8)
258
294
 
259
- Thu, 08 Apr 2021 07:33:06 GMT
295
+ Thu, 08 Apr 2021 07:33:06 GMT
260
296
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.7..@fluentui/react-theme_v9.0.0-alpha.8)
261
297
 
262
298
  ### Changes
@@ -265,7 +301,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
265
301
 
266
302
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.7)
267
303
 
268
- Wed, 31 Mar 2021 00:53:43 GMT
304
+ Wed, 31 Mar 2021 00:53:43 GMT
269
305
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.6..@fluentui/react-theme_v9.0.0-alpha.7)
270
306
 
271
307
  ### Patches
@@ -275,7 +311,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
275
311
 
276
312
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.6)
277
313
 
278
- Mon, 15 Mar 2021 07:36:20 GMT
314
+ Mon, 15 Mar 2021 07:36:20 GMT
279
315
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.5..@fluentui/react-theme_v9.0.0-alpha.6)
280
316
 
281
317
  ### Changes
@@ -284,7 +320,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
284
320
 
285
321
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.5)
286
322
 
287
- Wed, 03 Mar 2021 00:10:09 GMT
323
+ Wed, 03 Mar 2021 00:10:09 GMT
288
324
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.4..@fluentui/react-theme_v9.0.0-alpha.5)
289
325
 
290
326
  ### Changes
@@ -293,7 +329,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
293
329
 
294
330
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.4)
295
331
 
296
- Tue, 02 Mar 2021 07:24:27 GMT
332
+ Tue, 02 Mar 2021 07:24:27 GMT
297
333
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.3..@fluentui/react-theme_v9.0.0-alpha.4)
298
334
 
299
335
  ### Changes
@@ -303,7 +339,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
303
339
 
304
340
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.3)
305
341
 
306
- Fri, 26 Feb 2021 01:16:27 GMT
342
+ Fri, 26 Feb 2021 01:16:27 GMT
307
343
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.2..@fluentui/react-theme_v9.0.0-alpha.3)
308
344
 
309
345
  ### Patches
@@ -319,7 +355,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
319
355
 
320
356
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.2)
321
357
 
322
- Thu, 25 Feb 2021 20:16:39 GMT
358
+ Thu, 25 Feb 2021 20:16:39 GMT
323
359
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.1..@fluentui/react-theme_v9.0.0-alpha.2)
324
360
 
325
361
  ### Changes
@@ -328,7 +364,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
328
364
 
329
365
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.1)
330
366
 
331
- Wed, 24 Feb 2021 00:05:29 GMT
367
+ Wed, 24 Feb 2021 00:05:29 GMT
332
368
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.3..@fluentui/react-theme_v9.0.0-alpha.1)
333
369
 
334
370
  ### Changes
@@ -337,7 +373,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
337
373
 
338
374
  ## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.3)
339
375
 
340
- Mon, 22 Feb 2021 12:26:22 GMT
376
+ Mon, 22 Feb 2021 12:26:22 GMT
341
377
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.2..@fluentui/react-theme_v0.3.3)
342
378
 
343
379
  ### Patches
@@ -350,7 +386,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
350
386
 
351
387
  ## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.2)
352
388
 
353
- Thu, 18 Feb 2021 19:38:50 GMT
389
+ Thu, 18 Feb 2021 19:38:50 GMT
354
390
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.2)
355
391
 
356
392
  ### Patches
@@ -363,7 +399,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
363
399
 
364
400
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
365
401
 
366
- Thu, 18 Feb 2021 12:27:34 GMT
402
+ Thu, 18 Feb 2021 12:27:34 GMT
367
403
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
368
404
 
369
405
  ### Changes
@@ -375,7 +411,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
375
411
 
376
412
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
377
413
 
378
- Mon, 15 Feb 2021 12:22:00 GMT
414
+ Mon, 15 Feb 2021 12:22:00 GMT
379
415
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
380
416
 
381
417
  ### Changes
@@ -384,7 +420,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
384
420
 
385
421
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
386
422
 
387
- Thu, 11 Feb 2021 00:58:10 GMT
423
+ Thu, 11 Feb 2021 00:58:10 GMT
388
424
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
389
425
 
390
426
  ### Changes
@@ -393,7 +429,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
393
429
 
394
430
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
395
431
 
396
- Tue, 09 Feb 2021 00:56:52 GMT
432
+ Tue, 09 Feb 2021 00:56:52 GMT
397
433
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.0..@fluentui/react-theme_v0.3.1)
398
434
 
399
435
  ### Patches
@@ -402,7 +438,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
402
438
 
403
439
  ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.0)
404
440
 
405
- Mon, 08 Feb 2021 12:23:08 GMT
441
+ Mon, 08 Feb 2021 12:23:08 GMT
406
442
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.2.0..@fluentui/react-theme_v0.3.0)
407
443
 
408
444
  ### 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;
@@ -263,6 +267,28 @@ export declare const createLightTheme: (brand: BrandVariants) => Theme;
263
267
 
264
268
  export declare const createTeamsDarkTheme: (brand: BrandVariants) => Theme;
265
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
+
266
292
  export declare type FontFamilyTokens = {
267
293
  fontFamilyBase: string;
268
294
  fontFamilyMonospace: string;
@@ -288,6 +314,20 @@ export declare type FontWeightTokens = {
288
314
  fontWeightSemibold: number;
289
315
  };
290
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
+
291
331
  export declare type LineHeightTokens = {
292
332
  lineHeightBase100: string;
293
333
  lineHeightBase200: string;
@@ -324,6 +364,20 @@ export declare type ShadowTokens = {
324
364
  shadow64: string;
325
365
  };
326
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
+
327
381
  export declare type StrokeWidthTokens = {
328
382
  strokeWidthThin: string;
329
383
  strokeWidthThick: string;
@@ -337,7 +391,7 @@ export declare const teamsHighContrastTheme: Theme;
337
391
 
338
392
  export declare const teamsLightTheme: Theme;
339
393
 
340
- 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;
341
395
 
342
396
  /**
343
397
  * Programmatically generates a tokens to css variables mapping object from the keys in a theme.
@@ -351,6 +405,51 @@ export declare function themeToTokensObject<TTheme extends Theme>(theme: TTheme)
351
405
 
352
406
  export declare const tokens: Record<keyof Theme, string>;
353
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
+
354
453
  export declare const webDarkTheme: Theme;
355
454
 
356
455
  export declare const webHighContrastTheme: Theme;
File without changes