@atlaskit/menu 8.4.4 → 8.4.6
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 +12 -7
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/menu
|
|
2
2
|
|
|
3
|
+
## 8.4.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 8.4.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 8.4.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -265,7 +277,6 @@
|
|
|
265
277
|
Migrated `ButtonItem`, `LinkItem` and `CustomItem` components from `@emotion/react` to
|
|
266
278
|
`@compiled/react` in order to improve performance, align with the rest of the Atlaskit techstack,
|
|
267
279
|
and support React 18 Streaming SSR.
|
|
268
|
-
|
|
269
280
|
- Removed the deprecated `cssFn` prop from `ButtonItem`, `LinkItem` and `CustomItem` components.
|
|
270
281
|
|
|
271
282
|
Please note, in order to use this version of `@atlaskit/menu`, you will need to ensure that your
|
|
@@ -1814,7 +1825,6 @@
|
|
|
1814
1825
|
|
|
1815
1826
|
Fixes users being able to select text and drag both the link and custom item components.- Updated
|
|
1816
1827
|
dependencies [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
|
|
1817
|
-
|
|
1818
1828
|
- @atlaskit/docs@8.5.0
|
|
1819
1829
|
|
|
1820
1830
|
## 0.3.0
|
|
@@ -1851,7 +1861,6 @@
|
|
|
1851
1861
|
- [patch][1f9c4f974a](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f9c4f974a):
|
|
1852
1862
|
|
|
1853
1863
|
Updates to @atlaskit/menu to support better custom components
|
|
1854
|
-
|
|
1855
1864
|
- The `description` prop on items has been updated to take either `string` or `JSX.Element`
|
|
1856
1865
|
allowing custom components such as links to be rendered
|
|
1857
1866
|
- A stateless CSSFn type has been exported to override styles in static components (such as
|
|
@@ -1867,7 +1876,6 @@
|
|
|
1867
1876
|
|
|
1868
1877
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
1869
1878
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
1870
|
-
|
|
1871
1879
|
- @atlaskit/docs@8.3.2
|
|
1872
1880
|
- @atlaskit/visual-regression@0.1.9
|
|
1873
1881
|
- @atlaskit/avatar@17.1.7
|
|
@@ -1921,7 +1929,6 @@
|
|
|
1921
1929
|
### Patch Changes
|
|
1922
1930
|
|
|
1923
1931
|
- [patch][911d58c568](https://bitbucket.org/atlassian/atlassian-frontend/commits/911d58c568):
|
|
1924
|
-
|
|
1925
1932
|
- Fixes spacing between sections and items
|
|
1926
1933
|
- Introduces new props on `MenuGroup` to control min/max width and height.
|
|
1927
1934
|
- Introduces new `PopupMenuGroup` component which is variant of `MenuGroup` with sensible
|
|
@@ -1952,7 +1959,6 @@
|
|
|
1952
1959
|
- [minor][795a9503da](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/795a9503da):
|
|
1953
1960
|
|
|
1954
1961
|
Menu has had few styling fixes:
|
|
1955
|
-
|
|
1956
1962
|
- **BREAKING:** Height for all `Item` components when there is no `description` defined now equals
|
|
1957
1963
|
`40px`.
|
|
1958
1964
|
- **BREAKING:** `SkeletonHeadingItem` & `SkeletonItem` now match the real components dimensions,
|
|
@@ -1969,7 +1975,6 @@
|
|
|
1969
1975
|
Adds `testId` to all components - useful when wanting to do any automated tests that want to
|
|
1970
1976
|
target these specific elements.- Updated dependencies
|
|
1971
1977
|
[429925f854](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/429925f854):
|
|
1972
|
-
|
|
1973
1978
|
- @atlaskit/theme@9.4.0
|
|
1974
1979
|
|
|
1975
1980
|
## 0.1.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/menu",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.6",
|
|
4
4
|
"description": "A list of options to help users navigate, or perform actions.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@atlaskit/app-provider": "^3.2.0",
|
|
44
|
-
"@atlaskit/css": "^0.
|
|
44
|
+
"@atlaskit/css": "^0.15.0",
|
|
45
45
|
"@atlaskit/interaction-context": "^3.1.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
47
|
-
"@atlaskit/primitives": "^
|
|
47
|
+
"@atlaskit/primitives": "^15.0.0",
|
|
48
48
|
"@atlaskit/theme": "^21.0.0",
|
|
49
|
-
"@atlaskit/tokens": "^
|
|
49
|
+
"@atlaskit/tokens": "^7.0.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
|
-
"@compiled/react": "^0.18.
|
|
51
|
+
"@compiled/react": "^0.18.6"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^18.2.0",
|
|
@@ -58,12 +58,12 @@
|
|
|
58
58
|
"@af/accessibility-testing": "workspace:^",
|
|
59
59
|
"@af/integration-testing": "workspace:^",
|
|
60
60
|
"@af/visual-regression": "workspace:^",
|
|
61
|
-
"@atlaskit/button": "^23.
|
|
62
|
-
"@atlaskit/docs": "^11.
|
|
61
|
+
"@atlaskit/button": "^23.5.0",
|
|
62
|
+
"@atlaskit/docs": "^11.2.0",
|
|
63
63
|
"@atlaskit/ds-lib": "^5.1.0",
|
|
64
|
-
"@atlaskit/icon": "^28.
|
|
64
|
+
"@atlaskit/icon": "^28.5.0",
|
|
65
65
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
66
|
-
"@atlaskit/icon-object": "^7.
|
|
66
|
+
"@atlaskit/icon-object": "^7.3.0",
|
|
67
67
|
"@atlaskit/link": "^3.2.0",
|
|
68
68
|
"@atlaskit/section-message": "^8.7.0",
|
|
69
69
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|