@atlaskit/dropdown-menu 16.3.10 → 16.3.12
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 +15 -0
- package/offerings.json +36 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/dropdown-menu
|
|
2
2
|
|
|
3
|
+
## 16.3.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6d3595e270d09`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d3595e270d09) -
|
|
8
|
+
Minor fixes to Tooltip's component prop and DropdownMenu types to be more compatible with React
|
|
9
|
+
18.3.1
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 16.3.11
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 16.3.10
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/offerings.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "DropdownMenu",
|
|
4
|
+
"package": "@atlaskit/dropdown-menu",
|
|
5
|
+
"import": {
|
|
6
|
+
"name": "DropdownMenu",
|
|
7
|
+
"package": "@atlaskit/dropdown-menu",
|
|
8
|
+
"type": "default"
|
|
9
|
+
},
|
|
10
|
+
"keywords": ["dropdown", "menu", "actions", "options", "popup", "contextual"],
|
|
11
|
+
"categories": ["navigation", "interaction"],
|
|
12
|
+
"shortDescription": "A dropdown menu component for displaying contextual actions and options.",
|
|
13
|
+
"status": "general-availability",
|
|
14
|
+
"accessibilityGuidelines": [
|
|
15
|
+
"Provide clear labels for dropdown triggers",
|
|
16
|
+
"Ensure keyboard navigation with arrow keys",
|
|
17
|
+
"Use appropriate ARIA attributes",
|
|
18
|
+
"Provide clear menu item descriptions",
|
|
19
|
+
"Support escape key to close menu"
|
|
20
|
+
],
|
|
21
|
+
"usageGuidelines": [
|
|
22
|
+
"Use for contextual actions and options",
|
|
23
|
+
"Group related menu items together",
|
|
24
|
+
"Use clear, descriptive menu item labels",
|
|
25
|
+
"Consider menu positioning and overflow",
|
|
26
|
+
"Use appropriate trigger elements"
|
|
27
|
+
],
|
|
28
|
+
"contentGuidelines": [
|
|
29
|
+
"Use clear, action-oriented menu item labels",
|
|
30
|
+
"Keep menu item text concise",
|
|
31
|
+
"Group related actions logically",
|
|
32
|
+
"Use consistent terminology across menu items"
|
|
33
|
+
],
|
|
34
|
+
"examples": ["./examples/ai/dropdown-menu.tsx"]
|
|
35
|
+
}
|
|
36
|
+
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/dropdown-menu",
|
|
3
|
-
"version": "16.3.
|
|
3
|
+
"version": "16.3.12",
|
|
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/"
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/button": "^23.4.0",
|
|
28
28
|
"@atlaskit/css": "^0.14.0",
|
|
29
|
-
"@atlaskit/ds-lib": "^5.
|
|
30
|
-
"@atlaskit/icon": "^28.
|
|
29
|
+
"@atlaskit/ds-lib": "^5.1.0",
|
|
30
|
+
"@atlaskit/icon": "^28.3.0",
|
|
31
31
|
"@atlaskit/layering": "^3.0.0",
|
|
32
32
|
"@atlaskit/menu": "^8.4.0",
|
|
33
33
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
34
|
-
"@atlaskit/popup": "^4.
|
|
35
|
-
"@atlaskit/primitives": "^14.
|
|
34
|
+
"@atlaskit/popup": "^4.4.0",
|
|
35
|
+
"@atlaskit/primitives": "^14.15.0",
|
|
36
36
|
"@atlaskit/spinner": "^19.0.0",
|
|
37
|
-
"@atlaskit/theme": "^
|
|
37
|
+
"@atlaskit/theme": "^21.0.0",
|
|
38
38
|
"@atlaskit/tokens": "^6.3.0",
|
|
39
39
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
40
40
|
"@babel/runtime": "^7.0.0",
|
|
@@ -48,16 +48,16 @@
|
|
|
48
48
|
"@af/accessibility-testing": "workspace:^",
|
|
49
49
|
"@af/integration-testing": "workspace:^",
|
|
50
50
|
"@af/visual-regression": "workspace:^",
|
|
51
|
-
"@atlaskit/app-provider": "^3.
|
|
51
|
+
"@atlaskit/app-provider": "^3.2.0",
|
|
52
52
|
"@atlaskit/atlassian-navigation": "^5.3.0",
|
|
53
|
-
"@atlaskit/avatar": "^25.
|
|
53
|
+
"@atlaskit/avatar": "^25.2.0",
|
|
54
54
|
"@atlaskit/checkbox": "^17.1.0",
|
|
55
|
-
"@atlaskit/docs": "^11.
|
|
56
|
-
"@atlaskit/form": "^
|
|
55
|
+
"@atlaskit/docs": "^11.1.0",
|
|
56
|
+
"@atlaskit/form": "^14.1.0",
|
|
57
57
|
"@atlaskit/heading": "^5.2.0",
|
|
58
58
|
"@atlaskit/link": "^3.2.0",
|
|
59
59
|
"@atlaskit/lozenge": "^13.0.0",
|
|
60
|
-
"@atlaskit/modal-dialog": "^14.
|
|
60
|
+
"@atlaskit/modal-dialog": "^14.4.0",
|
|
61
61
|
"@atlaskit/section-message": "^8.7.0",
|
|
62
62
|
"@atlaskit/textfield": "^8.0.0",
|
|
63
63
|
"@atlaskit/toggle": "^15.1.0",
|