@atlaskit/dropdown-menu 16.4.6 → 16.4.7
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/dropdown-menu",
|
|
3
|
-
"version": "16.4.
|
|
3
|
+
"version": "16.4.7",
|
|
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/"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@atlaskit/button": "^23.9.0",
|
|
28
28
|
"@atlaskit/css": "^0.19.0",
|
|
29
29
|
"@atlaskit/ds-lib": "^5.3.0",
|
|
30
|
-
"@atlaskit/icon": "^
|
|
30
|
+
"@atlaskit/icon": "^32.0.0",
|
|
31
31
|
"@atlaskit/layering": "^3.6.0",
|
|
32
32
|
"@atlaskit/menu": "^8.4.0",
|
|
33
33
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"@af/visual-regression": "workspace:^",
|
|
51
51
|
"@atlaskit/app-provider": "^4.1.0",
|
|
52
52
|
"@atlaskit/atlassian-navigation": "^5.6.0",
|
|
53
|
-
"@atlaskit/avatar": "^25.
|
|
53
|
+
"@atlaskit/avatar": "^25.8.0",
|
|
54
54
|
"@atlaskit/checkbox": "^17.3.0",
|
|
55
|
-
"@atlaskit/docs": "^11.
|
|
55
|
+
"@atlaskit/docs": "^11.4.0",
|
|
56
56
|
"@atlaskit/form": "^15.3.0",
|
|
57
57
|
"@atlaskit/heading": "^5.3.0",
|
|
58
58
|
"@atlaskit/link": "^3.3.0",
|
|
59
59
|
"@atlaskit/lozenge": "^13.4.0",
|
|
60
|
-
"@atlaskit/modal-dialog": "^14.
|
|
60
|
+
"@atlaskit/modal-dialog": "^14.11.0",
|
|
61
61
|
"@atlaskit/section-message": "^8.12.0",
|
|
62
62
|
"@atlaskit/textfield": "^8.2.0",
|
|
63
63
|
"@atlaskit/toggle": "^15.2.0",
|
|
@@ -78,9 +78,6 @@
|
|
|
78
78
|
"platform_dst_popup-disable-focuslock": {
|
|
79
79
|
"type": "boolean"
|
|
80
80
|
},
|
|
81
|
-
"platform-visual-refresh-icons": {
|
|
82
|
-
"type": "boolean"
|
|
83
|
-
},
|
|
84
81
|
"select-avoid-duplicated-registered-ref": {
|
|
85
82
|
"type": "boolean"
|
|
86
83
|
},
|
package/report.api.md
CHANGED
|
@@ -32,8 +32,10 @@ import type { SectionProps as SectionProps_2 } from '@atlaskit/menu/types';
|
|
|
32
32
|
import type { TriggerProps } from '@atlaskit/popup/types';
|
|
33
33
|
|
|
34
34
|
// @public (undocumented)
|
|
35
|
-
export interface CustomTriggerProps<TriggerElement extends HTMLElement = HTMLElement>
|
|
36
|
-
|
|
35
|
+
export interface CustomTriggerProps<TriggerElement extends HTMLElement = HTMLElement> extends Omit<
|
|
36
|
+
TriggerProps,
|
|
37
|
+
'ref'
|
|
38
|
+
> {
|
|
37
39
|
isSelected?: boolean;
|
|
38
40
|
onClick?: (e: KeyboardEvent_2 | MouseEvent_2) => void;
|
|
39
41
|
testId?: string;
|