@fluentui/keyboard-keys 9.0.0 → 9.0.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,67 @@
2
2
  "name": "@fluentui/keyboard-keys",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 28 Jun 2022 15:09:21 GMT",
5
+ "date": "Fri, 11 Nov 2022 14:53:37 GMT",
6
+ "tag": "@fluentui/keyboard-keys_v9.0.1",
7
+ "version": "9.0.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "martinhochel@microsoft.com",
12
+ "package": "@fluentui/keyboard-keys",
13
+ "commit": "b3907043bd8d7b650c55e8e7c3119b14f2606c38",
14
+ "comment": "fix: create valid export maps"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 25 Oct 2022 22:09:50 GMT",
21
+ "tag": "@fluentui/keyboard-keys_v9.0.0",
22
+ "version": "9.0.0",
23
+ "comments": {
24
+ "none": [
25
+ {
26
+ "author": "tristan.watanabe@gmail.com",
27
+ "package": "@fluentui/keyboard-keys",
28
+ "commit": "2435ea50f924fa6467a07829f3d4715e545d93c0",
29
+ "comment": "chore: Migrate to new package structure."
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Thu, 15 Sep 2022 09:49:44 GMT",
36
+ "tag": "@fluentui/keyboard-keys_v9.0.0",
37
+ "version": "9.0.0",
38
+ "comments": {
39
+ "none": [
40
+ {
41
+ "author": "martinhochel@microsoft.com",
42
+ "package": "@fluentui/keyboard-keys",
43
+ "commit": "e6cf183695d6d67a24e038c49a876224e5ed35e5",
44
+ "comment": "chore: update package scaffold"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Wed, 03 Aug 2022 16:03:35 GMT",
51
+ "tag": "@fluentui/keyboard-keys_v9.0.0",
52
+ "version": "9.0.0",
53
+ "comments": {
54
+ "none": [
55
+ {
56
+ "author": "lingfangao@hotmail.com",
57
+ "package": "@fluentui/keyboard-keys",
58
+ "commit": "99cc385631d04a76ee10ebc143cb9fecd99640b6",
59
+ "comment": "chore: Add `prerelease` as disallowed changetype for 9.0.0 packages"
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ {
65
+ "date": "Tue, 28 Jun 2022 15:14:09 GMT",
6
66
  "tag": "@fluentui/keyboard-keys_v9.0.0",
7
67
  "version": "9.0.0",
8
68
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,21 @@
1
1
  # Change Log - @fluentui/keyboard-keys
2
2
 
3
- This log was last generated on Tue, 28 Jun 2022 15:09:21 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 11 Nov 2022 14:53:37 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/keyboard-keys_v9.0.1)
8
+
9
+ Fri, 11 Nov 2022 14:53:37 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/keyboard-keys_v9.0.0..@fluentui/keyboard-keys_v9.0.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
+
7
16
  ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/keyboard-keys_v9.0.0)
8
17
 
9
- Tue, 28 Jun 2022 15:09:21 GMT
18
+ Tue, 28 Jun 2022 15:14:09 GMT
10
19
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/keyboard-keys_v9.0.0-rc.6..@fluentui/keyboard-keys_v9.0.0)
11
20
 
12
21
  ### Patches
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@fluentui/keyboard-keys",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "description": "Contains a set of keyboard constants for key and keyCode",
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",
@@ -18,7 +18,7 @@
18
18
  "just": "just-scripts",
19
19
  "lint": "just-scripts lint",
20
20
  "docs": "api-extractor run --config=config/api-extractor.local.json --local",
21
- "build:local": "tsc -p ./tsconfig.lib.json --module esnext --emitDeclarationOnly && node ../../../scripts/typescript/normalize-import --output ./dist/packages/react-components/keyboard-keys/src && yarn docs",
21
+ "build:local": "tsc -p ./tsconfig.lib.json --module esnext --emitDeclarationOnly && node ../../../scripts/typescript/normalize-import --output ./dist/types/packages/react-components/keyboard-keys/src && yarn docs",
22
22
  "test": "jest --passWithNoTests",
23
23
  "type-check": "tsc -b tsconfig.json"
24
24
  },
@@ -31,14 +31,16 @@
31
31
  },
32
32
  "beachball": {
33
33
  "disallowedChangeTypes": [
34
- "major"
34
+ "major",
35
+ "prerelease"
35
36
  ]
36
37
  },
37
38
  "exports": {
38
39
  ".": {
39
- "types": "./lib/index.d.ts",
40
+ "types": "./dist/index.d.ts",
40
41
  "import": "./lib/index.js",
41
42
  "require": "./lib-commonjs/index.js"
42
- }
43
+ },
44
+ "./package.json": "./package.json"
43
45
  }
44
46
  }
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.18.1"
9
- }
10
- ]
11
- }