@fluentui/react-aria 9.0.0-rc.7 → 9.0.0-rc.8

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,40 @@
2
2
  "name": "@fluentui/react-aria",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 04 May 2022 13:24:05 GMT",
5
+ "date": "Thu, 05 May 2022 18:24:35 GMT",
6
+ "tag": "@fluentui/react-aria_v9.0.0-rc.8",
7
+ "version": "9.0.0-rc.8",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "humberto_makoto@hotmail.com",
12
+ "package": "@fluentui/react-aria",
13
+ "commit": "44e0945655df57a0986376ac8732e605f0378f22",
14
+ "comment": "Removing star exports."
15
+ },
16
+ {
17
+ "author": "martinhochel@microsoft.com",
18
+ "package": "@fluentui/react-aria",
19
+ "commit": "e465622ca241f3dd0534da50823a51e7311fd9ef",
20
+ "comment": "feat: ship rolluped only dts"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-aria",
25
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.6",
26
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-aria",
31
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
32
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
33
+ }
34
+ ]
35
+ }
36
+ },
37
+ {
38
+ "date": "Wed, 04 May 2022 13:26:37 GMT",
6
39
  "tag": "@fluentui/react-aria_v9.0.0-rc.7",
7
40
  "version": "9.0.0-rc.7",
8
41
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,24 @@
1
1
  # Change Log - @fluentui/react-aria
2
2
 
3
- This log was last generated on Wed, 04 May 2022 13:24:05 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 05 May 2022 18:24:35 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-aria_v9.0.0-rc.8)
8
+
9
+ Thu, 05 May 2022 18:24:35 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-aria_v9.0.0-rc.7..@fluentui/react-aria_v9.0.0-rc.8)
11
+
12
+ ### Changes
13
+
14
+ - Removing star exports. ([PR #22798](https://github.com/microsoft/fluentui/pull/22798) by humberto_makoto@hotmail.com)
15
+ - feat: ship rolluped only dts ([PR #22823](https://github.com/microsoft/fluentui/pull/22823) by martinhochel@microsoft.com)
16
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.6 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
17
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
18
+
7
19
  ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-aria_v9.0.0-rc.7)
8
20
 
9
- Wed, 04 May 2022 13:24:05 GMT
21
+ Wed, 04 May 2022 13:26:37 GMT
10
22
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-aria_v9.0.0-rc.6..@fluentui/react-aria_v9.0.0-rc.7)
11
23
 
12
24
  ### Changes
File without changes
package/lib/index.js CHANGED
@@ -1,3 +1,3 @@
1
- export * from './hooks/index';
2
- export * from './utils/index';
1
+ export { useARIAButton } from './hooks/index';
2
+ export { mergeARIADisabled } from './utils/index';
3
3
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"../src/","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC","sourcesContent":["export * from './hooks/index';\nexport * from './utils/index';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"../src/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAE9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC","sourcesContent":["export { useARIAButton } from './hooks/index';\nexport type { ARIAButtonSlotProps } from './hooks/index';\nexport { mergeARIADisabled } from './utils/index';\n"]}
@@ -3,10 +3,23 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
+ exports.mergeARIADisabled = exports.useARIAButton = void 0;
6
7
 
7
- const tslib_1 = /*#__PURE__*/require("tslib");
8
+ var index_1 = /*#__PURE__*/require("./hooks/index");
8
9
 
9
- tslib_1.__exportStar(require("./hooks/index"), exports);
10
+ Object.defineProperty(exports, "useARIAButton", {
11
+ enumerable: true,
12
+ get: function () {
13
+ return index_1.useARIAButton;
14
+ }
15
+ });
16
+
17
+ var index_2 = /*#__PURE__*/require("./utils/index");
10
18
 
11
- tslib_1.__exportStar(require("./utils/index"), exports);
19
+ Object.defineProperty(exports, "mergeARIADisabled", {
20
+ enumerable: true,
21
+ get: function () {
22
+ return index_2.mergeARIADisabled;
23
+ }
24
+ });
12
25
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA","sourcesContent":["export * from './hooks/index';\nexport * from './utils/index';\n"],"sourceRoot":"../src/"}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;AAAA,IAAA,OAAA,gBAAA,OAAA,CAAA,eAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,eAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,OAAA,CAAA,aAAA;AAAa;AAAb,CAAA;;AAET,IAAA,OAAA,gBAAA,OAAA,CAAA,eAAA,CAAA;;AAAS,MAAA,CAAA,cAAA,CAAA,OAAA,EAAA,mBAAA,EAAA;AAAA,EAAA,UAAA,EAAA,IAAA;AAAA,EAAA,GAAA,EAAA,YAAA;AAAA,WAAA,OAAA,CAAA,iBAAA;AAAiB;AAAjB,CAAA","sourcesContent":["export { useARIAButton } from './hooks/index';\nexport type { ARIAButtonSlotProps } from './hooks/index';\nexport { mergeARIADisabled } from './utils/index';\n"],"sourceRoot":"../src/"}
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@fluentui/react-aria",
3
- "version": "9.0.0-rc.7",
3
+ "version": "9.0.0-rc.8",
4
4
  "description": "React helper to ensure ARIA",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
7
- "typings": "lib/index.d.ts",
7
+ "typings": "dist/index.d.ts",
8
8
  "sideEffects": false,
9
9
  "repository": {
10
10
  "type": "git",
@@ -30,8 +30,8 @@
30
30
  "@fluentui/scripts": "^1.0.0"
31
31
  },
32
32
  "dependencies": {
33
- "@fluentui/keyboard-keys": "9.0.0-rc.5",
34
- "@fluentui/react-utilities": "9.0.0-rc.7",
33
+ "@fluentui/keyboard-keys": "9.0.0-rc.6",
34
+ "@fluentui/react-utilities": "9.0.0-rc.8",
35
35
  "tslib": "^2.1.0"
36
36
  },
37
37
  "peerDependencies": {
@@ -1 +0,0 @@
1
- export * from './useARIAButton';
@@ -1,11 +0,0 @@
1
- import type { ExtractSlotProps, ResolveShorthandFunction, Slot } from '@fluentui/react-utilities';
2
- export declare type ARIAButtonSlotProps = ExtractSlotProps<Slot<'button', 'a'>> & {
3
- disabled?: boolean;
4
- disabledFocusable?: boolean;
5
- };
6
- /**
7
- * Button keyboard handling, role, disabled and tabIndex implementation that ensures ARIA spec
8
- * for multiple scenarios of shorthand properties. Ensuring 1st rule of ARIA for cases
9
- * where no attribute addition is required.
10
- */
11
- export declare const useARIAButton: ResolveShorthandFunction<ARIAButtonSlotProps>;
package/lib/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from './hooks/index';
2
- export * from './utils/index';
@@ -1 +0,0 @@
1
- export * from './mergeARIADisabled';
@@ -1,7 +0,0 @@
1
- /**
2
- * Merges disabled declaration with `aria-disabled`
3
- */
4
- export declare function mergeARIADisabled(shorthand: {
5
- 'aria-disabled'?: string | boolean;
6
- disabled?: boolean;
7
- }): boolean;
@@ -1 +0,0 @@
1
- export * from './useARIAButton';
@@ -1,11 +0,0 @@
1
- import type { ExtractSlotProps, ResolveShorthandFunction, Slot } from '@fluentui/react-utilities';
2
- export declare type ARIAButtonSlotProps = ExtractSlotProps<Slot<'button', 'a'>> & {
3
- disabled?: boolean;
4
- disabledFocusable?: boolean;
5
- };
6
- /**
7
- * Button keyboard handling, role, disabled and tabIndex implementation that ensures ARIA spec
8
- * for multiple scenarios of shorthand properties. Ensuring 1st rule of ARIA for cases
9
- * where no attribute addition is required.
10
- */
11
- export declare const useARIAButton: ResolveShorthandFunction<ARIAButtonSlotProps>;
@@ -1,2 +0,0 @@
1
- export * from './hooks/index';
2
- export * from './utils/index';
@@ -1 +0,0 @@
1
- export * from './mergeARIADisabled';
@@ -1,7 +0,0 @@
1
- /**
2
- * Merges disabled declaration with `aria-disabled`
3
- */
4
- export declare function mergeARIADisabled(shorthand: {
5
- 'aria-disabled'?: string | boolean;
6
- disabled?: boolean;
7
- }): boolean;