@atlaskit/side-nav-items 1.7.2 → 1.7.4
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 +14 -0
- package/dist/cjs/ui/skeleton/skeleton-menu-section-heading.js +1 -1
- package/dist/es2019/ui/menu-item/flyout-menu-item/close-button.js +2 -2
- package/dist/es2019/ui/skeleton/skeleton-menu-section-heading.js +1 -1
- package/dist/esm/ui/menu-item/flyout-menu-item/close-button.js +2 -2
- package/dist/esm/ui/skeleton/skeleton-menu-section-heading.js +1 -1
- package/dist/types/entry-points/skeleton.d.ts +1 -1
- package/dist/types/ui/menu-item/flyout-menu-item/close-button.d.ts +2 -2
- package/dist/types-ts4.5/entry-points/skeleton.d.ts +1 -1
- package/dist/types-ts4.5/ui/menu-item/flyout-menu-item/close-button.d.ts +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/side-nav-items
|
|
2
2
|
|
|
3
|
+
## 1.7.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6d87d08be8526`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d87d08be8526) -
|
|
8
|
+
Add dependency for a11y testing.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 1.7.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 1.7.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { IconButton } from
|
|
3
|
-
import CrossIcon from
|
|
2
|
+
import { IconButton } from '@atlaskit/button/new';
|
|
3
|
+
import CrossIcon from '@atlaskit/icon/core/cross';
|
|
4
4
|
/**
|
|
5
5
|
* __Close button__
|
|
6
6
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { IconButton } from
|
|
3
|
-
import CrossIcon from
|
|
2
|
+
import { IconButton } from '@atlaskit/button/new';
|
|
3
|
+
import CrossIcon from '@atlaskit/icon/core/cross';
|
|
4
4
|
/**
|
|
5
5
|
* __Close button__
|
|
6
6
|
*
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { SkeletonMenuItem, type SkeletonMenuItemProps } from '../ui/skeleton/skeleton-menu-item';
|
|
2
|
-
export { SkeletonMenuSectionHeading, type SkeletonMenuSectionHeadingProps } from '../ui/skeleton/skeleton-menu-section-heading';
|
|
2
|
+
export { SkeletonMenuSectionHeading, type SkeletonMenuSectionHeadingProps, } from '../ui/skeleton/skeleton-menu-section-heading';
|
|
@@ -4,7 +4,7 @@ type CloseButtonProps = {
|
|
|
4
4
|
* The accessible name to give to the close button.
|
|
5
5
|
*
|
|
6
6
|
* Used as the aria-label for the close button to ensure screen reader
|
|
7
|
-
|
|
7
|
+
* accessibility.
|
|
8
8
|
*/
|
|
9
9
|
label: string;
|
|
10
10
|
/**
|
|
@@ -15,7 +15,7 @@ type CloseButtonProps = {
|
|
|
15
15
|
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
16
16
|
/**
|
|
17
17
|
* A unique string that appears as data attribute data-testid in the
|
|
18
|
-
|
|
18
|
+
* rendered code, serving as a hook for automated tests.
|
|
19
19
|
*/
|
|
20
20
|
testId?: string;
|
|
21
21
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { SkeletonMenuItem, type SkeletonMenuItemProps } from '../ui/skeleton/skeleton-menu-item';
|
|
2
|
-
export { SkeletonMenuSectionHeading, type SkeletonMenuSectionHeadingProps } from '../ui/skeleton/skeleton-menu-section-heading';
|
|
2
|
+
export { SkeletonMenuSectionHeading, type SkeletonMenuSectionHeadingProps, } from '../ui/skeleton/skeleton-menu-section-heading';
|
|
@@ -4,7 +4,7 @@ type CloseButtonProps = {
|
|
|
4
4
|
* The accessible name to give to the close button.
|
|
5
5
|
*
|
|
6
6
|
* Used as the aria-label for the close button to ensure screen reader
|
|
7
|
-
|
|
7
|
+
* accessibility.
|
|
8
8
|
*/
|
|
9
9
|
label: string;
|
|
10
10
|
/**
|
|
@@ -15,7 +15,7 @@ type CloseButtonProps = {
|
|
|
15
15
|
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
16
16
|
/**
|
|
17
17
|
* A unique string that appears as data attribute data-testid in the
|
|
18
|
-
|
|
18
|
+
* rendered code, serving as a hook for automated tests.
|
|
19
19
|
*/
|
|
20
20
|
testId?: string;
|
|
21
21
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/side-nav-items",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "Menu items and elements for the navigation side nav area.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"atlaskit:src": "src/index.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
33
|
-
"@atlaskit/avatar": "^25.
|
|
33
|
+
"@atlaskit/avatar": "^25.8.0",
|
|
34
34
|
"@atlaskit/button": "^23.9.0",
|
|
35
35
|
"@atlaskit/css": "^0.19.0",
|
|
36
36
|
"@atlaskit/ds-lib": "^5.3.0",
|
|
37
37
|
"@atlaskit/heading": "^5.3.0",
|
|
38
|
-
"@atlaskit/icon": "^
|
|
38
|
+
"@atlaskit/icon": "^32.0.0",
|
|
39
39
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
40
40
|
"@atlaskit/popup": "^4.13.0",
|
|
41
41
|
"@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@af/visual-regression": "workspace:^",
|
|
59
59
|
"@atlaskit/app-provider": "^4.1.0",
|
|
60
60
|
"@atlaskit/lozenge": "^13.4.0",
|
|
61
|
-
"@atlaskit/navigation-system": "^5.
|
|
61
|
+
"@atlaskit/navigation-system": "^5.40.0",
|
|
62
62
|
"@atlaskit/ssr": "workspace:^",
|
|
63
63
|
"@atlassian/a11y-jest-testing": "^0.10.0",
|
|
64
64
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|