@fluentui/react-positioning 9.3.0 → 9.3.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.json CHANGED
@@ -2,7 +2,40 @@
2
2
  "name": "@fluentui/react-positioning",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 02 Nov 2022 11:54:58 GMT",
5
+ "date": "Fri, 11 Nov 2022 14:53:19 GMT",
6
+ "tag": "@fluentui/react-positioning_v9.3.1",
7
+ "version": "9.3.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "martinhochel@microsoft.com",
12
+ "package": "@fluentui/react-positioning",
13
+ "commit": "b3907043bd8d7b650c55e8e7c3119b14f2606c38",
14
+ "comment": "fix: create valid export maps"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-positioning",
19
+ "comment": "Bump @fluentui/react-shared-contexts to v9.1.1",
20
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-positioning",
25
+ "comment": "Bump @fluentui/react-theme to v9.1.2",
26
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-positioning",
31
+ "comment": "Bump @fluentui/react-utilities to v9.2.1",
32
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
33
+ }
34
+ ]
35
+ }
36
+ },
37
+ {
38
+ "date": "Wed, 02 Nov 2022 11:57:57 GMT",
6
39
  "tag": "@fluentui/react-positioning_v9.3.0",
7
40
  "version": "9.3.0",
8
41
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,24 @@
1
1
  # Change Log - @fluentui/react-positioning
2
2
 
3
- This log was last generated on Wed, 02 Nov 2022 11:54:58 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 11 Nov 2022 14:53:19 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.3.1)
8
+
9
+ Fri, 11 Nov 2022 14:53:19 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.3.0..@fluentui/react-positioning_v9.3.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/react-shared-contexts to v9.1.1 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
16
+ - Bump @fluentui/react-theme to v9.1.2 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
17
+ - Bump @fluentui/react-utilities to v9.2.1 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
18
+
7
19
  ## [9.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.3.0)
8
20
 
9
- Wed, 02 Nov 2022 11:54:58 GMT
21
+ Wed, 02 Nov 2022 11:57:57 GMT
10
22
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.2.2..@fluentui/react-positioning_v9.3.0)
11
23
 
12
24
  ### Minor changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@fluentui/react-positioning",
3
- "version": "9.3.0",
3
+ "version": "9.3.1",
4
4
  "description": "A react wrapper around Popper.js for Fluent UI",
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",
@@ -29,9 +29,9 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@floating-ui/dom": "^1.0.0",
32
- "@fluentui/react-shared-contexts": "^9.1.0",
33
- "@fluentui/react-theme": "^9.1.1",
34
- "@fluentui/react-utilities": "^9.2.0",
32
+ "@fluentui/react-shared-contexts": "^9.1.1",
33
+ "@fluentui/react-theme": "^9.1.2",
34
+ "@fluentui/react-utilities": "^9.2.1",
35
35
  "@griffel/react": "^1.4.2",
36
36
  "tslib": "^2.1.0"
37
37
  },
@@ -48,9 +48,10 @@
48
48
  },
49
49
  "exports": {
50
50
  ".": {
51
- "types": "./lib/index.d.ts",
51
+ "types": "./dist/index.d.ts",
52
52
  "import": "./lib/index.js",
53
53
  "require": "./lib-commonjs/index.js"
54
- }
54
+ },
55
+ "./package.json": "./package.json"
55
56
  }
56
57
  }