@fluentui/react-theme-sass 9.0.0-alpha.29 → 9.0.0-alpha.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -1
- package/README.md +3 -3
- package/package.json +1 -6
- package/sass/borderRadiusTokens.scss +5 -0
- package/sass/colorTokens.scss +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-theme-sass
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 22 Jan 2026 17:01:29 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.30)
|
|
8
|
+
|
|
9
|
+
Thu, 22 Jan 2026 17:01:29 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.29..@fluentui/react-theme-sass_v9.0.0-alpha.30)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- chore(tokens): Add CAP DR tokens ([PR #35574](https://github.com/microsoft/fluentui/pull/35574) by jukapsia@microsoft.com)
|
|
15
|
+
|
|
7
16
|
## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.26)
|
|
8
17
|
|
|
9
18
|
Mon, 11 Nov 2024 10:01:01 GMT
|
package/README.md
CHANGED
|
@@ -10,14 +10,14 @@ SASS variables referencing react-theme design tokens injected to DOM by react-pr
|
|
|
10
10
|
|
|
11
11
|
```jsx
|
|
12
12
|
import React from 'react';
|
|
13
|
-
import
|
|
13
|
+
import ReactDOMClient from 'react-dom/client';
|
|
14
14
|
import { FluentProvider, teamsLightTheme } from '@fluentui/react-components';
|
|
15
15
|
import App from './App';
|
|
16
|
-
|
|
16
|
+
|
|
17
|
+
ReactDOMClient.createRoot(document.getElementById('root')).render(
|
|
17
18
|
<FluentProvider theme={teamsLightTheme}>
|
|
18
19
|
<App />
|
|
19
20
|
</FluentProvider>,
|
|
20
|
-
document.getElementById('root'),
|
|
21
21
|
);
|
|
22
22
|
```
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/react-theme-sass",
|
|
3
|
-
"version": "9.0.0-alpha.
|
|
3
|
+
"version": "9.0.0-alpha.30",
|
|
4
4
|
"description": "SASS variables referencing react-theme design tokens injected to DOM by react-provider.",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -12,11 +12,6 @@
|
|
|
12
12
|
"url": "https://github.com/microsoft/fluentui"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
|
-
"devDependencies": {
|
|
16
|
-
"@fluentui/eslint-plugin": "*",
|
|
17
|
-
"@fluentui/react-theme": "*",
|
|
18
|
-
"@fluentui/scripts-api-extractor": "*"
|
|
19
|
-
},
|
|
20
15
|
"beachball": {
|
|
21
16
|
"disallowedChangeTypes": [
|
|
22
17
|
"major",
|
|
@@ -3,4 +3,9 @@ $borderRadiusSmall: var(--borderRadiusSmall);
|
|
|
3
3
|
$borderRadiusMedium: var(--borderRadiusMedium);
|
|
4
4
|
$borderRadiusLarge: var(--borderRadiusLarge);
|
|
5
5
|
$borderRadiusXLarge: var(--borderRadiusXLarge);
|
|
6
|
+
$borderRadius2XLarge: var(--borderRadius2XLarge);
|
|
7
|
+
$borderRadius3XLarge: var(--borderRadius3XLarge);
|
|
8
|
+
$borderRadius4XLarge: var(--borderRadius4XLarge);
|
|
9
|
+
$borderRadius5XLarge: var(--borderRadius5XLarge);
|
|
10
|
+
$borderRadius6XLarge: var(--borderRadius6XLarge);
|
|
6
11
|
$borderRadiusCircular: var(--borderRadiusCircular);
|
package/sass/colorTokens.scss
CHANGED
|
@@ -17,6 +17,10 @@ $colorNeutralForeground3BrandHover: var(--colorNeutralForeground3BrandHover);
|
|
|
17
17
|
$colorNeutralForeground3BrandPressed: var(--colorNeutralForeground3BrandPressed);
|
|
18
18
|
$colorNeutralForeground3BrandSelected: var(--colorNeutralForeground3BrandSelected);
|
|
19
19
|
$colorNeutralForeground4: var(--colorNeutralForeground4);
|
|
20
|
+
$colorNeutralForeground5: var(--colorNeutralForeground5);
|
|
21
|
+
$colorNeutralForeground5Hover: var(--colorNeutralForeground5Hover);
|
|
22
|
+
$colorNeutralForeground5Pressed: var(--colorNeutralForeground5Pressed);
|
|
23
|
+
$colorNeutralForeground5Selected: var(--colorNeutralForeground5Selected);
|
|
20
24
|
$colorNeutralForegroundDisabled: var(--colorNeutralForegroundDisabled);
|
|
21
25
|
$colorNeutralForegroundInvertedDisabled: var(--colorNeutralForegroundInvertedDisabled);
|
|
22
26
|
$colorBrandForegroundLink: var(--colorBrandForegroundLink);
|
|
@@ -74,7 +78,15 @@ $colorNeutralBackground5Hover: var(--colorNeutralBackground5Hover);
|
|
|
74
78
|
$colorNeutralBackground5Pressed: var(--colorNeutralBackground5Pressed);
|
|
75
79
|
$colorNeutralBackground5Selected: var(--colorNeutralBackground5Selected);
|
|
76
80
|
$colorNeutralBackground6: var(--colorNeutralBackground6);
|
|
81
|
+
$colorNeutralBackground7: var(--colorNeutralBackground7);
|
|
82
|
+
$colorNeutralBackground7Hover: var(--colorNeutralBackground7Hover);
|
|
83
|
+
$colorNeutralBackground7Pressed: var(--colorNeutralBackground7Pressed);
|
|
84
|
+
$colorNeutralBackground7Selected: var(--colorNeutralBackground7Selected);
|
|
85
|
+
$colorNeutralBackground8: var(--colorNeutralBackground8);
|
|
77
86
|
$colorNeutralBackgroundInverted: var(--colorNeutralBackgroundInverted);
|
|
87
|
+
$colorNeutralBackgroundInvertedHover: var(--colorNeutralBackgroundInvertedHover);
|
|
88
|
+
$colorNeutralBackgroundInvertedPressed: var(--colorNeutralBackgroundInvertedPressed);
|
|
89
|
+
$colorNeutralBackgroundInvertedSelected: var(--colorNeutralBackgroundInvertedSelected);
|
|
78
90
|
$colorNeutralBackgroundStatic: var(--colorNeutralBackgroundStatic);
|
|
79
91
|
$colorNeutralBackgroundAlpha: var(--colorNeutralBackgroundAlpha);
|
|
80
92
|
$colorNeutralBackgroundAlpha2: var(--colorNeutralBackgroundAlpha2);
|
|
@@ -94,6 +106,7 @@ $colorTransparentBackgroundHover: var(--colorTransparentBackgroundHover);
|
|
|
94
106
|
$colorTransparentBackgroundPressed: var(--colorTransparentBackgroundPressed);
|
|
95
107
|
$colorTransparentBackgroundSelected: var(--colorTransparentBackgroundSelected);
|
|
96
108
|
$colorNeutralBackgroundDisabled: var(--colorNeutralBackgroundDisabled);
|
|
109
|
+
$colorNeutralBackgroundDisabled2: var(--colorNeutralBackgroundDisabled2);
|
|
97
110
|
$colorNeutralBackgroundInvertedDisabled: var(--colorNeutralBackgroundInvertedDisabled);
|
|
98
111
|
$colorNeutralStencil1: var(--colorNeutralStencil1);
|
|
99
112
|
$colorNeutralStencil2: var(--colorNeutralStencil2);
|
|
@@ -133,6 +146,10 @@ $colorNeutralStroke1Pressed: var(--colorNeutralStroke1Pressed);
|
|
|
133
146
|
$colorNeutralStroke1Selected: var(--colorNeutralStroke1Selected);
|
|
134
147
|
$colorNeutralStroke2: var(--colorNeutralStroke2);
|
|
135
148
|
$colorNeutralStroke3: var(--colorNeutralStroke3);
|
|
149
|
+
$colorNeutralStroke4: var(--colorNeutralStroke4);
|
|
150
|
+
$colorNeutralStroke4Hover: var(--colorNeutralStroke4Hover);
|
|
151
|
+
$colorNeutralStroke4Pressed: var(--colorNeutralStroke4Pressed);
|
|
152
|
+
$colorNeutralStroke4Selected: var(--colorNeutralStroke4Selected);
|
|
136
153
|
$colorNeutralStrokeSubtle: var(--colorNeutralStrokeSubtle);
|
|
137
154
|
$colorNeutralStrokeOnBrand: var(--colorNeutralStrokeOnBrand);
|
|
138
155
|
$colorNeutralStrokeOnBrand2: var(--colorNeutralStrokeOnBrand2);
|
|
@@ -148,6 +165,7 @@ $colorCompoundBrandStroke: var(--colorCompoundBrandStroke);
|
|
|
148
165
|
$colorCompoundBrandStrokeHover: var(--colorCompoundBrandStrokeHover);
|
|
149
166
|
$colorCompoundBrandStrokePressed: var(--colorCompoundBrandStrokePressed);
|
|
150
167
|
$colorNeutralStrokeDisabled: var(--colorNeutralStrokeDisabled);
|
|
168
|
+
$colorNeutralStrokeDisabled2: var(--colorNeutralStrokeDisabled2);
|
|
151
169
|
$colorNeutralStrokeInvertedDisabled: var(--colorNeutralStrokeInvertedDisabled);
|
|
152
170
|
$colorTransparentStroke: var(--colorTransparentStroke);
|
|
153
171
|
$colorTransparentStrokeInteractive: var(--colorTransparentStrokeInteractive);
|