@fluentui/react-utilities 9.2.0 → 9.2.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 CHANGED
@@ -2,7 +2,28 @@
2
2
  "name": "@fluentui/react-utilities",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 02 Nov 2022 11:55:07 GMT",
5
+ "date": "Fri, 11 Nov 2022 14:53:36 GMT",
6
+ "tag": "@fluentui/react-utilities_v9.2.1",
7
+ "version": "9.2.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "martinhochel@microsoft.com",
12
+ "package": "@fluentui/react-utilities",
13
+ "commit": "b3907043bd8d7b650c55e8e7c3119b14f2606c38",
14
+ "comment": "fix: create valid export maps"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-utilities",
19
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.1",
20
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Wed, 02 Nov 2022 11:58:06 GMT",
6
27
  "tag": "@fluentui/react-utilities_v9.2.0",
7
28
  "version": "9.2.0",
8
29
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,22 @@
1
1
  # Change Log - @fluentui/react-utilities
2
2
 
3
- This log was last generated on Wed, 02 Nov 2022 11:55:07 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 11 Nov 2022 14:53:36 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.2.1)
8
+
9
+ Fri, 11 Nov 2022 14:53:36 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.2.0..@fluentui/react-utilities_v9.2.1)
11
+
12
+ ### Patches
13
+
14
+ - fix: create valid export maps ([PR #25558](https://github.com/microsoft/fluentui/pull/25558) by martinhochel@microsoft.com)
15
+ - Bump @fluentui/keyboard-keys to v9.0.1 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
16
+
7
17
  ## [9.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-utilities_v9.2.0)
8
18
 
9
- Wed, 02 Nov 2022 11:55:07 GMT
19
+ Wed, 02 Nov 2022 11:58:06 GMT
10
20
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-utilities_v9.1.2..@fluentui/react-utilities_v9.2.0)
11
21
 
12
22
  ### Minor changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@fluentui/react-utilities",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
4
4
  "description": "A set of general React-specific utilities.",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
7
- "typings": "dist/index.d.ts",
7
+ "typings": "./dist/index.d.ts",
8
8
  "sideEffects": false,
9
9
  "repository": {
10
10
  "type": "git",
@@ -28,7 +28,7 @@
28
28
  "@fluentui/scripts": "^1.0.0"
29
29
  },
30
30
  "dependencies": {
31
- "@fluentui/keyboard-keys": "^9.0.0",
31
+ "@fluentui/keyboard-keys": "^9.0.1",
32
32
  "tslib": "^2.1.0"
33
33
  },
34
34
  "peerDependencies": {
@@ -43,9 +43,10 @@
43
43
  },
44
44
  "exports": {
45
45
  ".": {
46
- "types": "./lib/index.d.ts",
46
+ "types": "./dist/index.d.ts",
47
47
  "import": "./lib/index.js",
48
48
  "require": "./lib-commonjs/index.js"
49
- }
49
+ },
50
+ "./package.json": "./package.json"
50
51
  }
51
52
  }