@fluentui/react-portal-compat-context 9.0.2 → 9.0.4

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.json CHANGED
@@ -2,7 +2,43 @@
2
2
  "name": "@fluentui/react-portal-compat-context",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 15 Sep 2022 09:44:37 GMT",
5
+ "date": "Fri, 11 Nov 2022 14:53:19 GMT",
6
+ "tag": "@fluentui/react-portal-compat-context_v9.0.4",
7
+ "version": "9.0.4",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "tristan.watanabe@gmail.com",
12
+ "package": "@fluentui/react-portal-compat-context",
13
+ "commit": "792bd72b19e360afe9ac8e9da298dc3d85776c74",
14
+ "comment": "chore: Migrate to new package structure."
15
+ },
16
+ {
17
+ "author": "martinhochel@microsoft.com",
18
+ "package": "@fluentui/react-portal-compat-context",
19
+ "commit": "b3907043bd8d7b650c55e8e7c3119b14f2606c38",
20
+ "comment": "fix: create valid export maps"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Thu, 20 Oct 2022 08:39:41 GMT",
27
+ "tag": "@fluentui/react-portal-compat-context_v9.0.3",
28
+ "version": "9.0.3",
29
+ "comments": {
30
+ "patch": [
31
+ {
32
+ "author": "mgodbolt@microsoft.com",
33
+ "package": "@fluentui/react-portal-compat-context",
34
+ "commit": "772f9e3ebde2d5b8157a3204c1a4e007e56f5508",
35
+ "comment": "chore: Bump react peer dependency to react 18."
36
+ }
37
+ ]
38
+ }
39
+ },
40
+ {
41
+ "date": "Thu, 15 Sep 2022 09:49:16 GMT",
6
42
  "tag": "@fluentui/react-portal-compat-context_v9.0.2",
7
43
  "version": "9.0.2",
8
44
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,31 @@
1
1
  # Change Log - @fluentui/react-portal-compat-context
2
2
 
3
- This log was last generated on Thu, 15 Sep 2022 09:44:37 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.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat-context_v9.0.4)
8
+
9
+ Fri, 11 Nov 2022 14:53:19 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal-compat-context_v9.0.3..@fluentui/react-portal-compat-context_v9.0.4)
11
+
12
+ ### Patches
13
+
14
+ - chore: Migrate to new package structure. ([PR #25481](https://github.com/microsoft/fluentui/pull/25481) by tristan.watanabe@gmail.com)
15
+ - fix: create valid export maps ([PR #25558](https://github.com/microsoft/fluentui/pull/25558) by martinhochel@microsoft.com)
16
+
17
+ ## [9.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat-context_v9.0.3)
18
+
19
+ Thu, 20 Oct 2022 08:39:41 GMT
20
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal-compat-context_v9.0.2..@fluentui/react-portal-compat-context_v9.0.3)
21
+
22
+ ### Patches
23
+
24
+ - chore: Bump react peer dependency to react 18. ([PR #25278](https://github.com/microsoft/fluentui/pull/25278) by mgodbolt@microsoft.com)
25
+
7
26
  ## [9.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat-context_v9.0.2)
8
27
 
9
- Thu, 15 Sep 2022 09:44:37 GMT
28
+ Thu, 15 Sep 2022 09:49:16 GMT
10
29
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal-compat-context_v9.0.1..@fluentui/react-portal-compat-context_v9.0.2)
11
30
 
12
31
  ### Patches
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@fluentui/react-portal-compat-context",
3
- "version": "9.0.2",
3
+ "version": "9.0.4",
4
4
  "description": "A package that holds React context for compatibility of React Contexts",
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",
@@ -30,13 +30,21 @@
30
30
  "tslib": "^2.1.0"
31
31
  },
32
32
  "peerDependencies": {
33
- "@types/react": ">=16.8.0 <18.0.0",
34
- "react": ">=16.8.0 <18.0.0"
33
+ "@types/react": ">=16.8.0 <19.0.0",
34
+ "react": ">=16.8.0 <19.0.0"
35
35
  },
36
36
  "beachball": {
37
37
  "disallowedChangeTypes": [
38
38
  "major",
39
39
  "prerelease"
40
40
  ]
41
+ },
42
+ "exports": {
43
+ ".": {
44
+ "types": "./dist/index.d.ts",
45
+ "import": "./lib/index.js",
46
+ "require": "./lib-commonjs/index.js"
47
+ },
48
+ "./package.json": "./package.json"
41
49
  }
42
50
  }
package/Spec.md DELETED
@@ -1,63 +0,0 @@
1
- # @fluentui/react-portal-compat-context Spec
2
-
3
- ## Background
4
-
5
- _Description and use cases of this component_
6
-
7
- ## Prior Art
8
-
9
- _Include background research done for this component_
10
-
11
- - _Link to Open UI research_
12
- - _Link to comparison of v7 and v0_
13
- - _Link to GitHub epic issue for the converged component_
14
-
15
- ## Sample Code
16
-
17
- _Provide some representative example code that uses the proposed API for the component_
18
-
19
- ## Variants
20
-
21
- _Describe visual or functional variants of this control, if applicable. For example, a slider could have a 2D variant._
22
-
23
- ## API
24
-
25
- _List the **Props** and **Slots** proposed for the component. Ideally this would just be a link to the component's `.types.ts` file_
26
-
27
- ## Structure
28
-
29
- - _**Public**_
30
- - _**Internal**_
31
- - _**DOM** - how the component will be rendered as HTML elements_
32
-
33
- ## Migration
34
-
35
- _Describe what will need to be done to upgrade from the existing implementations:_
36
-
37
- - _Migration from v8_
38
- - _Migration from v0_
39
-
40
- ## Behaviors
41
-
42
- _Explain how the component will behave in use, including:_
43
-
44
- - _Component States_
45
- - _Interaction_
46
- - _Keyboard_
47
- - _Cursor_
48
- - _Touch_
49
- - _Screen readers_
50
-
51
- ## Accessibility
52
-
53
- Base accessibility information is included in the design document. After the spec is filled and review, outcomes from it need to be communicated to design and incorporated in the design document.
54
-
55
- - Decide whether to use **native element** or folow **ARIA** and provide reasons
56
- - Identify the **[ARIA](https://www.w3.org/TR/wai-aria-practices-1.2/) pattern** and, if the component is listed there, follow its specification as possible.
57
- - Identify accessibility **variants**, the `role` ([ARIA roles](https://www.w3.org/TR/wai-aria-1.1/#role_definitions)) of the component, its `slots` and `aria-*` props.
58
- - Describe the **keyboard navigation**: Tab Oder and Arrow Key Navigation. Describe any other keyboard **shortcuts** used
59
- - Specify texts for **state change announcements** - [ARIA live regions
60
- ](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Live_Regions) (number of available items in dropdown, error messages, confirmations, ...)
61
- - Identify UI parts that appear on **hover or focus** and specify keyboard and screen reader interaction with them
62
- - List cases when **focus** needs to be **trapped** in sections of the UI (for dialogs and popups or for hierarchical navigation)
63
- - List cases when **focus** needs to be **moved programatically** (if parts of the UI are appearing/disappearing or other cases)