@atlaskit/dropdown-menu 12.8.0 → 12.8.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.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/dropdown-menu
|
|
2
2
|
|
|
3
|
+
## 12.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085) [`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) - Update usage of `React.FC` to explicity include `children`
|
|
8
|
+
|
|
3
9
|
## 12.8.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, {
|
|
1
|
+
import React, { MutableRefObject, PropsWithChildren } from 'react';
|
|
2
2
|
/**
|
|
3
3
|
*
|
|
4
4
|
* @internal
|
|
@@ -24,4 +24,4 @@ export declare const TrackMaxLevelContext: React.Context<{
|
|
|
24
24
|
* Context provider which maintains the maximun level of dropdown menu if it is nested
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
|
-
export declare const TrackLevelProvider:
|
|
27
|
+
export declare const TrackLevelProvider: ({ children }: PropsWithChildren<{}>) => JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, {
|
|
1
|
+
import React, { MutableRefObject, PropsWithChildren } from 'react';
|
|
2
2
|
/**
|
|
3
3
|
*
|
|
4
4
|
* @internal
|
|
@@ -24,4 +24,4 @@ export declare const TrackMaxLevelContext: React.Context<{
|
|
|
24
24
|
* Context provider which maintains the maximun level of dropdown menu if it is nested
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
|
-
export declare const TrackLevelProvider:
|
|
27
|
+
export declare const TrackLevelProvider: ({ children }: PropsWithChildren<{}>) => JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/dropdown-menu",
|
|
3
|
-
"version": "12.8.
|
|
3
|
+
"version": "12.8.1",
|
|
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/"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@atlaskit/menu": "^2.1.0",
|
|
35
35
|
"@atlaskit/platform-feature-flags": "^0.2.2",
|
|
36
36
|
"@atlaskit/popup": "^1.13.0",
|
|
37
|
-
"@atlaskit/primitives": "^4.
|
|
37
|
+
"@atlaskit/primitives": "^4.1.0",
|
|
38
38
|
"@atlaskit/spinner": "^16.0.0",
|
|
39
39
|
"@atlaskit/theme": "^12.6.0",
|
|
40
40
|
"@atlaskit/tokens": "^1.41.0",
|