@fluentui/react-theme-sass 0.0.0-nightly-20230614-0415.1 → 0.0.0-nightly-20230616-0414.1
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 +5 -5
- package/CHANGELOG.md +5 -5
- package/package.json +2 -2
- package/sass/colorTokens.scss +7 -0
package/CHANGELOG.json
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
"name": "@fluentui/react-theme-sass",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
6
|
-
"tag": "@fluentui/react-theme-sass_v0.0.0-nightly-
|
7
|
-
"version": "0.0.0-nightly-
|
5
|
+
"date": "Fri, 16 Jun 2023 04:19:22 GMT",
|
6
|
+
"tag": "@fluentui/react-theme-sass_v0.0.0-nightly-20230616-0414.1",
|
7
|
+
"version": "0.0.0-nightly-20230616-0414.1",
|
8
8
|
"comments": {
|
9
9
|
"prerelease": [
|
10
10
|
{
|
@@ -16,8 +16,8 @@
|
|
16
16
|
{
|
17
17
|
"author": "beachball",
|
18
18
|
"package": "@fluentui/react-theme-sass",
|
19
|
-
"comment": "Bump @fluentui/react-theme to v0.0.0-nightly-
|
20
|
-
"commit": "
|
19
|
+
"comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20230616-0414.1",
|
20
|
+
"commit": "086bc97f9066a23f2b8e1082215d18e2fbfb8a3f"
|
21
21
|
}
|
22
22
|
]
|
23
23
|
}
|
package/CHANGELOG.md
CHANGED
@@ -1,18 +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 Fri, 16 Jun 2023 04:19:22 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
-
## [0.0.0-nightly-
|
7
|
+
## [0.0.0-nightly-20230616-0414.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v0.0.0-nightly-20230616-0414.1)
|
8
8
|
|
9
|
-
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.12..@fluentui/react-theme-sass_v0.0.0-nightly-
|
9
|
+
Fri, 16 Jun 2023 04:19:22 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.12..@fluentui/react-theme-sass_v0.0.0-nightly-20230616-0414.1)
|
11
11
|
|
12
12
|
### Changes
|
13
13
|
|
14
14
|
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
|
15
|
-
- Bump @fluentui/react-theme to v0.0.0-nightly-
|
15
|
+
- Bump @fluentui/react-theme to v0.0.0-nightly-20230616-0414.1 ([commit](https://github.com/microsoft/fluentui/commit/086bc97f9066a23f2b8e1082215d18e2fbfb8a3f) by beachball)
|
16
16
|
|
17
17
|
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.12)
|
18
18
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-theme-sass",
|
3
|
-
"version": "0.0.0-nightly-
|
3
|
+
"version": "0.0.0-nightly-20230616-0414.1",
|
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",
|
@@ -25,7 +25,7 @@
|
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
27
|
"@fluentui/eslint-plugin": "*",
|
28
|
-
"@fluentui/react-theme": "0.0.0-nightly-
|
28
|
+
"@fluentui/react-theme": "0.0.0-nightly-20230616-0414.1",
|
29
29
|
"@fluentui/scripts-api-extractor": "*",
|
30
30
|
"@fluentui/scripts-tasks": "*"
|
31
31
|
},
|
package/sass/colorTokens.scss
CHANGED
@@ -32,6 +32,8 @@ $colorCompoundBrandForeground1Hover: var(--colorCompoundBrandForeground1Hover);
|
|
32
32
|
$colorCompoundBrandForeground1Pressed: var(--colorCompoundBrandForeground1Pressed);
|
33
33
|
$colorBrandForeground1: var(--colorBrandForeground1);
|
34
34
|
$colorBrandForeground2: var(--colorBrandForeground2);
|
35
|
+
$colorBrandForeground2Hover: var(--colorBrandForeground2Hover);
|
36
|
+
$colorBrandForeground2Pressed: var(--colorBrandForeground2Pressed);
|
35
37
|
$colorNeutralForeground1Static: var(--colorNeutralForeground1Static);
|
36
38
|
$colorNeutralForegroundInverted: var(--colorNeutralForegroundInverted);
|
37
39
|
$colorNeutralForegroundInvertedHover: var(--colorNeutralForegroundInvertedHover);
|
@@ -108,6 +110,8 @@ $colorCompoundBrandBackgroundHover: var(--colorCompoundBrandBackgroundHover);
|
|
108
110
|
$colorCompoundBrandBackgroundPressed: var(--colorCompoundBrandBackgroundPressed);
|
109
111
|
$colorBrandBackgroundStatic: var(--colorBrandBackgroundStatic);
|
110
112
|
$colorBrandBackground2: var(--colorBrandBackground2);
|
113
|
+
$colorBrandBackground2Hover: var(--colorBrandBackground2Hover);
|
114
|
+
$colorBrandBackground2Pressed: var(--colorBrandBackground2Pressed);
|
111
115
|
$colorBrandBackgroundInverted: var(--colorBrandBackgroundInverted);
|
112
116
|
$colorBrandBackgroundInvertedHover: var(--colorBrandBackgroundInvertedHover);
|
113
117
|
$colorBrandBackgroundInvertedPressed: var(--colorBrandBackgroundInvertedPressed);
|
@@ -122,6 +126,7 @@ $colorNeutralStroke1Pressed: var(--colorNeutralStroke1Pressed);
|
|
122
126
|
$colorNeutralStroke1Selected: var(--colorNeutralStroke1Selected);
|
123
127
|
$colorNeutralStroke2: var(--colorNeutralStroke2);
|
124
128
|
$colorNeutralStroke3: var(--colorNeutralStroke3);
|
129
|
+
$colorNeutralStrokeSubtle: var(--colorNeutralStrokeSubtle);
|
125
130
|
$colorNeutralStrokeOnBrand: var(--colorNeutralStrokeOnBrand);
|
126
131
|
$colorNeutralStrokeOnBrand2: var(--colorNeutralStrokeOnBrand2);
|
127
132
|
$colorNeutralStrokeOnBrand2Hover: var(--colorNeutralStrokeOnBrand2Hover);
|
@@ -129,6 +134,8 @@ $colorNeutralStrokeOnBrand2Pressed: var(--colorNeutralStrokeOnBrand2Pressed);
|
|
129
134
|
$colorNeutralStrokeOnBrand2Selected: var(--colorNeutralStrokeOnBrand2Selected);
|
130
135
|
$colorBrandStroke1: var(--colorBrandStroke1);
|
131
136
|
$colorBrandStroke2: var(--colorBrandStroke2);
|
137
|
+
$colorBrandStroke2Hover: var(--colorBrandStroke2Hover);
|
138
|
+
$colorBrandStroke2Pressed: var(--colorBrandStroke2Pressed);
|
132
139
|
$colorCompoundBrandStroke: var(--colorCompoundBrandStroke);
|
133
140
|
$colorCompoundBrandStrokeHover: var(--colorCompoundBrandStrokeHover);
|
134
141
|
$colorCompoundBrandStrokePressed: var(--colorCompoundBrandStrokePressed);
|