@atlaskit/focus-ring 3.0.14 → 3.1.0
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.md +11 -0
- package/dist/cjs/entry-points/focus-ring.js +13 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/cjs/entry-points/use-focus-ring.js +13 -0
- package/dist/es2019/entry-points/focus-ring.js +1 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/es2019/entry-points/use-focus-ring.js +1 -0
- package/dist/esm/entry-points/focus-ring.js +1 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/esm/entry-points/use-focus-ring.js +1 -0
- package/dist/types/entry-points/focus-ring.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types/entry-points/use-focus-ring.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/focus-ring.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/use-focus-ring.d.ts +1 -0
- package/focus-ring/package.json +17 -0
- package/package.json +2 -2
- package/types/package.json +17 -0
- package/use-focus-ring/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/focus-ring
|
|
2
2
|
|
|
3
|
+
## 3.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e9ea3d59f41a8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e9ea3d59f41a8) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 3.0.14
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _focusRing.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _focusRing = _interopRequireDefault(require("../focus-ring"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "useFocusRing", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _useFocusRing.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _useFocusRing = _interopRequireDefault(require("../use-focus-ring"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../focus-ring';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as useFocusRing } from '../use-focus-ring';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../focus-ring';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as useFocusRing } from '../use-focus-ring';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../focus-ring';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FocusRingProps, FocusEventHandlers, FocusState } from '../types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as useFocusRing } from '../use-focus-ring';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../focus-ring';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FocusRingProps, FocusEventHandlers, FocusState } from '../types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as useFocusRing } from '../use-focus-ring';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/focus-ring/focus-ring",
|
|
3
|
+
"main": "../dist/cjs/entry-points/focus-ring.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/focus-ring.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/focus-ring.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/focus-ring.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/focus-ring.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/focus-ring",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "A focus ring clearly indicates which item has keyboard focus.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@af/integration-testing": "workspace:^",
|
|
62
62
|
"@af/visual-regression": "workspace:^",
|
|
63
63
|
"@atlaskit/button": "^23.11.0",
|
|
64
|
-
"@atlaskit/docs": "^11.
|
|
64
|
+
"@atlaskit/docs": "^11.8.0",
|
|
65
65
|
"@atlaskit/primitives": "^19.0.0",
|
|
66
66
|
"@atlaskit/textfield": "^8.3.0",
|
|
67
67
|
"@atlassian/react-compiler-gating": "workspace:^",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/focus-ring/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/focus-ring/use-focus-ring",
|
|
3
|
+
"main": "../dist/cjs/entry-points/use-focus-ring.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/use-focus-ring.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/use-focus-ring.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/use-focus-ring.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/use-focus-ring.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|