@atlaskit/dropdown-menu 11.7.1 → 11.7.2
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 +7 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/dropdown-menu.js +1 -0
- package/dist/es2019/version.json +1 -1
- package/dist/esm/dropdown-menu.js +1 -0
- package/dist/esm/version.json +1 -1
- package/dist/types/internal/components/focus-manager.d.ts +4 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/dropdown-menu
|
|
2
2
|
|
|
3
|
+
## 11.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
3
10
|
## 11.7.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
|
@@ -8,6 +8,7 @@ import useControlledState from '@atlaskit/ds-lib/use-controlled';
|
|
|
8
8
|
import useFocus from '@atlaskit/ds-lib/use-focus-event';
|
|
9
9
|
import ExpandIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
10
10
|
import Popup from '@atlaskit/popup';
|
|
11
|
+
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
11
12
|
import { gridSize as gridSizeFn, layers } from '@atlaskit/theme/constants';
|
|
12
13
|
import FocusManager from './internal/components/focus-manager';
|
|
13
14
|
import MenuWrapper from './internal/components/menu-wrapper';
|
package/dist/es2019/version.json
CHANGED
|
@@ -14,6 +14,7 @@ import useControlledState from '@atlaskit/ds-lib/use-controlled';
|
|
|
14
14
|
import useFocus from '@atlaskit/ds-lib/use-focus-event';
|
|
15
15
|
import ExpandIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
16
16
|
import Popup from '@atlaskit/popup';
|
|
17
|
+
// eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
|
|
17
18
|
import { gridSize as gridSizeFn, layers } from '@atlaskit/theme/constants';
|
|
18
19
|
import FocusManager from './internal/components/focus-manager';
|
|
19
20
|
import MenuWrapper from './internal/components/menu-wrapper';
|
package/dist/esm/version.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { FC } from 'react';
|
|
1
|
+
import React, { FC, ReactNode } from 'react';
|
|
2
2
|
import { FocusableElement } from '../../types';
|
|
3
3
|
/**
|
|
4
4
|
*
|
|
@@ -15,5 +15,7 @@ export declare const FocusManagerContext: React.Context<{
|
|
|
15
15
|
/**
|
|
16
16
|
* Focus manager logic
|
|
17
17
|
*/
|
|
18
|
-
declare const FocusManager: FC
|
|
18
|
+
declare const FocusManager: FC<{
|
|
19
|
+
children: ReactNode;
|
|
20
|
+
}>;
|
|
19
21
|
export default FocusManager;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/dropdown-menu",
|
|
3
|
-
"version": "11.7.
|
|
3
|
+
"version": "11.7.2",
|
|
4
4
|
"description": "A dropdown menu displays a list of actions or options to a user.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@atlaskit/menu": "^1.5.0",
|
|
31
31
|
"@atlaskit/popup": "^1.5.0",
|
|
32
32
|
"@atlaskit/spinner": "^15.4.0",
|
|
33
|
-
"@atlaskit/theme": "^12.
|
|
33
|
+
"@atlaskit/theme": "^12.3.0",
|
|
34
34
|
"@atlaskit/tokens": "^1.2.0",
|
|
35
35
|
"@atlaskit/visually-hidden": "^1.1.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@atlaskit/avatar": "^21.2.0",
|
|
46
46
|
"@atlaskit/docs": "*",
|
|
47
47
|
"@atlaskit/ds-explorations": "^2.0.0",
|
|
48
|
-
"@atlaskit/heading": "^1.
|
|
48
|
+
"@atlaskit/heading": "^1.2.0",
|
|
49
49
|
"@atlaskit/lozenge": "11.3.8",
|
|
50
50
|
"@atlaskit/modal-dialog": "^12.4.0",
|
|
51
51
|
"@atlaskit/primitives": "^0.3.0",
|