@atlaskit/menu 8.4.5 → 8.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 +12 -7
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/menu
|
|
2
2
|
|
|
3
|
+
## 8.4.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 8.4.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 8.4.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -271,7 +283,6 @@
|
|
|
271
283
|
Migrated `ButtonItem`, `LinkItem` and `CustomItem` components from `@emotion/react` to
|
|
272
284
|
`@compiled/react` in order to improve performance, align with the rest of the Atlaskit techstack,
|
|
273
285
|
and support React 18 Streaming SSR.
|
|
274
|
-
|
|
275
286
|
- Removed the deprecated `cssFn` prop from `ButtonItem`, `LinkItem` and `CustomItem` components.
|
|
276
287
|
|
|
277
288
|
Please note, in order to use this version of `@atlaskit/menu`, you will need to ensure that your
|
|
@@ -1820,7 +1831,6 @@
|
|
|
1820
1831
|
|
|
1821
1832
|
Fixes users being able to select text and drag both the link and custom item components.- Updated
|
|
1822
1833
|
dependencies [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
|
|
1823
|
-
|
|
1824
1834
|
- @atlaskit/docs@8.5.0
|
|
1825
1835
|
|
|
1826
1836
|
## 0.3.0
|
|
@@ -1857,7 +1867,6 @@
|
|
|
1857
1867
|
- [patch][1f9c4f974a](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f9c4f974a):
|
|
1858
1868
|
|
|
1859
1869
|
Updates to @atlaskit/menu to support better custom components
|
|
1860
|
-
|
|
1861
1870
|
- The `description` prop on items has been updated to take either `string` or `JSX.Element`
|
|
1862
1871
|
allowing custom components such as links to be rendered
|
|
1863
1872
|
- A stateless CSSFn type has been exported to override styles in static components (such as
|
|
@@ -1873,7 +1882,6 @@
|
|
|
1873
1882
|
|
|
1874
1883
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
1875
1884
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
1876
|
-
|
|
1877
1885
|
- @atlaskit/docs@8.3.2
|
|
1878
1886
|
- @atlaskit/visual-regression@0.1.9
|
|
1879
1887
|
- @atlaskit/avatar@17.1.7
|
|
@@ -1927,7 +1935,6 @@
|
|
|
1927
1935
|
### Patch Changes
|
|
1928
1936
|
|
|
1929
1937
|
- [patch][911d58c568](https://bitbucket.org/atlassian/atlassian-frontend/commits/911d58c568):
|
|
1930
|
-
|
|
1931
1938
|
- Fixes spacing between sections and items
|
|
1932
1939
|
- Introduces new props on `MenuGroup` to control min/max width and height.
|
|
1933
1940
|
- Introduces new `PopupMenuGroup` component which is variant of `MenuGroup` with sensible
|
|
@@ -1958,7 +1965,6 @@
|
|
|
1958
1965
|
- [minor][795a9503da](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/795a9503da):
|
|
1959
1966
|
|
|
1960
1967
|
Menu has had few styling fixes:
|
|
1961
|
-
|
|
1962
1968
|
- **BREAKING:** Height for all `Item` components when there is no `description` defined now equals
|
|
1963
1969
|
`40px`.
|
|
1964
1970
|
- **BREAKING:** `SkeletonHeadingItem` & `SkeletonItem` now match the real components dimensions,
|
|
@@ -1975,7 +1981,6 @@
|
|
|
1975
1981
|
Adds `testId` to all components - useful when wanting to do any automated tests that want to
|
|
1976
1982
|
target these specific elements.- Updated dependencies
|
|
1977
1983
|
[429925f854](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/429925f854):
|
|
1978
|
-
|
|
1979
1984
|
- @atlaskit/theme@9.4.0
|
|
1980
1985
|
|
|
1981
1986
|
## 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.7",
|
|
4
4
|
"description": "A list of options to help users navigate, or perform actions.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,11 +44,11 @@
|
|
|
44
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": "^16.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",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@af/integration-testing": "workspace:^",
|
|
60
60
|
"@af/visual-regression": "workspace:^",
|
|
61
61
|
"@atlaskit/button": "^23.5.0",
|
|
62
|
-
"@atlaskit/docs": "^11.
|
|
62
|
+
"@atlaskit/docs": "^11.2.0",
|
|
63
63
|
"@atlaskit/ds-lib": "^5.1.0",
|
|
64
64
|
"@atlaskit/icon": "^28.5.0",
|
|
65
65
|
"@atlaskit/icon-file-type": "^7.0.0",
|