@fluentui/react-theme-sass 9.0.0-alpha.10 → 9.0.0-alpha.11

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 CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@fluentui/react-theme-sass",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 21 Mar 2023 21:18:24 GMT",
5
+ "date": "Mon, 17 Apr 2023 17:50:11 GMT",
6
+ "tag": "@fluentui/react-theme-sass_v9.0.0-alpha.11",
7
+ "version": "9.0.0-alpha.11",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@fluentui/react-theme-sass",
13
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8",
14
+ "comment": "fix: add \"style\" to exports field"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 21 Mar 2023 21:23:11 GMT",
6
21
  "tag": "@fluentui/react-theme-sass_v9.0.0-alpha.10",
7
22
  "version": "9.0.0-alpha.10",
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 Tue, 21 Mar 2023 21:18:24 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 17 Apr 2023 17:50:11 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.11)
8
+
9
+ Mon, 17 Apr 2023 17:50:11 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.10..@fluentui/react-theme-sass_v9.0.0-alpha.11)
11
+
12
+ ### Changes
13
+
14
+ - fix: add "style" to exports field ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by olfedias@microsoft.com)
15
+
7
16
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.10)
8
17
 
9
- Tue, 21 Mar 2023 21:18:24 GMT
18
+ Tue, 21 Mar 2023 21:23:11 GMT
10
19
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.9..@fluentui/react-theme-sass_v9.0.0-alpha.10)
11
20
 
12
21
  ### Changes
package/README.md CHANGED
@@ -24,7 +24,8 @@ ReactDOM.render(
24
24
  2. In SCSS styles you can import SCSS variables from `@fluentui/react-theme-sass` and use them in the styles:
25
25
 
26
26
  ```scss
27
- @import '~@fluentui/react-theme-sass';
27
+ @import '@fluentui/react-theme-sass';
28
+
28
29
  .brandedElement {
29
30
  color: $colorBrandForeground1;
30
31
  background: $colorBrandBackground;
@@ -32,4 +33,4 @@ ReactDOM.render(
32
33
  }
33
34
  ```
34
35
 
35
- ⚠ This package does not export any Javascript code.️
36
+ > Note: This package does not export any Javascript code.️
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-theme-sass",
3
- "version": "9.0.0-alpha.10",
3
+ "version": "9.0.0-alpha.11",
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",
@@ -40,6 +40,7 @@
40
40
  },
41
41
  "exports": {
42
42
  ".": {
43
+ "style": "./sass/tokens.scss",
43
44
  "types": "./dist/index.d.ts",
44
45
  "node": "./lib-commonjs/index.js",
45
46
  "import": "./lib/index.js",