@fluentui/react-theme-sass 9.0.0-alpha.14 → 9.0.0-alpha.15
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 +16 -1
- package/CHANGELOG.md +11 -2
- package/package.json +1 -1
- package/sass/durationTokens.scss +1 -0
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,22 @@
|
|
2
2
|
"name": "@fluentui/react-theme-sass",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
5
|
+
"date": "Wed, 09 Aug 2023 13:11:49 GMT",
|
6
|
+
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.15",
|
7
|
+
"version": "9.0.0-alpha.15",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "miroslav.stastny@microsoft.com",
|
12
|
+
"package": "@fluentui/react-theme-sass",
|
13
|
+
"commit": "3df6e4cf274b9811b7a279d9f611d8a6c20fdab8",
|
14
|
+
"comment": "feat(tokens): add durationGentle"
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"date": "Fri, 04 Aug 2023 08:52:56 GMT",
|
6
21
|
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.14",
|
7
22
|
"version": "9.0.0-alpha.14",
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,21 @@
|
|
1
1
|
# Change Log - @fluentui/react-theme-sass
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Wed, 09 Aug 2023 13:11:49 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.15)
|
8
|
+
|
9
|
+
Wed, 09 Aug 2023 13:11:49 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.14..@fluentui/react-theme-sass_v9.0.0-alpha.15)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- feat(tokens): add durationGentle ([PR #28770](https://github.com/microsoft/fluentui/pull/28770) by miroslav.stastny@microsoft.com)
|
15
|
+
|
7
16
|
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.14)
|
8
17
|
|
9
|
-
Fri, 04 Aug 2023 08:
|
18
|
+
Fri, 04 Aug 2023 08:52:56 GMT
|
10
19
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.13..@fluentui/react-theme-sass_v9.0.0-alpha.14)
|
11
20
|
|
12
21
|
### Changes
|
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.15",
|
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",
|
package/sass/durationTokens.scss
CHANGED
@@ -2,6 +2,7 @@ $durationUltraFast: var(--durationUltraFast);
|
|
2
2
|
$durationFaster: var(--durationFaster);
|
3
3
|
$durationFast: var(--durationFast);
|
4
4
|
$durationNormal: var(--durationNormal);
|
5
|
+
$durationGentle: var(--durationGentle);
|
5
6
|
$durationSlow: var(--durationSlow);
|
6
7
|
$durationSlower: var(--durationSlower);
|
7
8
|
$durationUltraSlow: var(--durationUltraSlow);
|