@atlaskit/side-navigation 1.10.3 → 2.0.0
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 -0
- package/dist/cjs/common/styles.js +2 -2
- package/dist/cjs/components/Item/skeleton-item.js +3 -3
- package/dist/cjs/components/NavigationContent/styles.js +1 -1
- package/dist/cjs/components/NavigationFooter/index.js +1 -1
- package/dist/cjs/components/NestableNavigationContent/index.js +2 -2
- package/dist/es2019/common/styles.js +2 -2
- package/dist/es2019/components/Item/skeleton-item.js +3 -3
- package/dist/es2019/components/NavigationContent/styles.js +1 -1
- package/dist/es2019/components/NavigationFooter/index.js +1 -1
- package/dist/es2019/components/NestableNavigationContent/index.js +3 -3
- package/dist/esm/common/styles.js +2 -2
- package/dist/esm/components/Item/skeleton-item.js +3 -3
- package/dist/esm/components/NavigationContent/styles.js +1 -1
- package/dist/esm/components/NavigationFooter/index.js +1 -1
- package/dist/esm/components/NestableNavigationContent/index.js +3 -3
- package/dist/types/components/Section/section.d.ts +2 -1
- package/dist/types-ts4.5/components/Section/section.d.ts +2 -1
- package/package.json +6 -5
- package/dist/cjs/version.json +0 -5
- package/dist/es2019/version.json +0 -5
- package/dist/esm/version.json +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/side-navigation
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`cf66b43d67a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf66b43d67a) - Updated spacing of Side Navigation components to ensure token values and fallbacks are matching. When used with space tokens enabled, there is no visual difference with the previous release of Side Navigation. When used without space tokens enabled there will be a slight visual difference; we recommend enabling space tokens if they are not already enabled to resolve this.
|
|
8
|
+
|
|
9
|
+
## 1.10.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 1.10.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -57,7 +57,7 @@ var baseSideNavItemStyle = function baseSideNavItemStyle(_ref) {
|
|
|
57
57
|
// This padding is set to ensure that the center of the left icon
|
|
58
58
|
// is approximately center aligned with the horizontal app switcher.
|
|
59
59
|
paddingBlock: "var(--ds-space-100, 8px)",
|
|
60
|
-
paddingInline: "var(--ds-space-100,
|
|
60
|
+
paddingInline: "var(--ds-space-100, 8px)",
|
|
61
61
|
borderRadius: "var(--ds-border-radius, 3px)",
|
|
62
62
|
// -- TODO: DELETE THESE COLOR OVERRIDES WHEN CLEANING UP FALLBACK THEMING --
|
|
63
63
|
// Menu and side navigation are now color aligned so they do not need this!
|
|
@@ -71,7 +71,7 @@ var baseSideNavItemStyle = function baseSideNavItemStyle(_ref) {
|
|
|
71
71
|
exports.baseSideNavItemStyle = baseSideNavItemStyle;
|
|
72
72
|
var sectionHeaderSpacingStyles = function sectionHeaderSpacingStyles() {
|
|
73
73
|
return {
|
|
74
|
-
paddingInline: "var(--ds-space-100,
|
|
74
|
+
paddingInline: "var(--ds-space-100, 8px)"
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
77
|
exports.sectionHeaderSpacingStyles = sectionHeaderSpacingStyles;
|
|
@@ -34,9 +34,9 @@ var SkeletonItem = function SkeletonItem(props) {
|
|
|
34
34
|
return _objectSpread(_objectSpread({}, (0, _styles.sectionHeaderSpacingStyles)()), {}, {
|
|
35
35
|
// This doubles up & to get a higher specificity as well as to not overwite the base styles.
|
|
36
36
|
'&&::before': {
|
|
37
|
-
height: "var(--ds-space-300,
|
|
38
|
-
marginRight: "var(--ds-space-200,
|
|
39
|
-
width: "var(--ds-space-300,
|
|
37
|
+
height: "var(--ds-space-300, 24px)",
|
|
38
|
+
marginRight: "var(--ds-space-200, 16px)",
|
|
39
|
+
width: "var(--ds-space-300, 24px)"
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
}
|
|
@@ -121,7 +121,7 @@ var containerCSS = function containerCSS(opts) {
|
|
|
121
121
|
position: 'relative',
|
|
122
122
|
'& [data-ds--menu--heading-item]': {
|
|
123
123
|
marginBottom: "var(--ds-space-075, 6px)",
|
|
124
|
-
marginTop: "var(--ds-space-200,
|
|
124
|
+
marginTop: "var(--ds-space-200, 16px)"
|
|
125
125
|
},
|
|
126
126
|
'& [data-ds--menu--skeleton-heading-item]': {
|
|
127
127
|
marginTop: skeletonHeadingTopMargin,
|
|
@@ -148,7 +148,7 @@ var NestableNavigationContent = function NestableNavigationContent(props) {
|
|
|
148
148
|
containerRef.current && containerRef.current.focus();
|
|
149
149
|
}
|
|
150
150
|
};
|
|
151
|
-
return (0, _react2.jsx)("div", {
|
|
151
|
+
return (0, _react2.jsx)(_react.Fragment, null, (0, _react2.jsx)("div", {
|
|
152
152
|
"data-testid": testId,
|
|
153
153
|
css: nestableNavigationContentStyles,
|
|
154
154
|
ref: containerRef,
|
|
@@ -173,7 +173,7 @@ var NestableNavigationContent = function NestableNavigationContent(props) {
|
|
|
173
173
|
title: "",
|
|
174
174
|
id: ROOT_ID
|
|
175
175
|
}, children)));
|
|
176
|
-
})));
|
|
176
|
+
}))));
|
|
177
177
|
};
|
|
178
178
|
var _default = NestableNavigationContent;
|
|
179
179
|
exports.default = _default;
|
|
@@ -44,7 +44,7 @@ export const baseSideNavItemStyle = ({
|
|
|
44
44
|
// This padding is set to ensure that the center of the left icon
|
|
45
45
|
// is approximately center aligned with the horizontal app switcher.
|
|
46
46
|
paddingBlock: "var(--ds-space-100, 8px)",
|
|
47
|
-
paddingInline: "var(--ds-space-100,
|
|
47
|
+
paddingInline: "var(--ds-space-100, 8px)",
|
|
48
48
|
borderRadius: "var(--ds-border-radius, 3px)",
|
|
49
49
|
// -- TODO: DELETE THESE COLOR OVERRIDES WHEN CLEANING UP FALLBACK THEMING --
|
|
50
50
|
// Menu and side navigation are now color aligned so they do not need this!
|
|
@@ -62,6 +62,6 @@ export const baseSideNavItemStyle = ({
|
|
|
62
62
|
};
|
|
63
63
|
export const sectionHeaderSpacingStyles = () => {
|
|
64
64
|
return {
|
|
65
|
-
paddingInline: "var(--ds-space-100,
|
|
65
|
+
paddingInline: "var(--ds-space-100, 8px)"
|
|
66
66
|
};
|
|
67
67
|
};
|
|
@@ -25,9 +25,9 @@ const SkeletonItem = props => {
|
|
|
25
25
|
...sectionHeaderSpacingStyles(),
|
|
26
26
|
// This doubles up & to get a higher specificity as well as to not overwite the base styles.
|
|
27
27
|
'&&::before': {
|
|
28
|
-
height: "var(--ds-space-300,
|
|
29
|
-
marginRight: "var(--ds-space-200,
|
|
30
|
-
width: "var(--ds-space-300,
|
|
28
|
+
height: "var(--ds-space-300, 24px)",
|
|
29
|
+
marginRight: "var(--ds-space-200, 16px)",
|
|
30
|
+
width: "var(--ds-space-300, 24px)"
|
|
31
31
|
}
|
|
32
32
|
})
|
|
33
33
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
@@ -107,7 +107,7 @@ export const containerCSS = opts => ({
|
|
|
107
107
|
position: 'relative',
|
|
108
108
|
'& [data-ds--menu--heading-item]': {
|
|
109
109
|
marginBottom: "var(--ds-space-075, 6px)",
|
|
110
|
-
marginTop: "var(--ds-space-200,
|
|
110
|
+
marginTop: "var(--ds-space-200, 16px)"
|
|
111
111
|
},
|
|
112
112
|
'& [data-ds--menu--skeleton-heading-item]': {
|
|
113
113
|
marginTop: skeletonHeadingTopMargin,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
/** @jsx jsx */
|
|
3
|
-
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
3
|
+
import { Fragment, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
4
4
|
import { css, jsx } from '@emotion/react';
|
|
5
5
|
import { ExitingPersistence } from '@atlaskit/motion';
|
|
6
6
|
import { GoBackItem as GoBackButton } from '../Item';
|
|
@@ -131,7 +131,7 @@ const NestableNavigationContent = props => {
|
|
|
131
131
|
containerRef.current && containerRef.current.focus();
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
|
-
return jsx("div", {
|
|
134
|
+
return jsx(Fragment, null, jsx("div", {
|
|
135
135
|
"data-testid": testId,
|
|
136
136
|
css: nestableNavigationContentStyles,
|
|
137
137
|
ref: containerRef,
|
|
@@ -154,6 +154,6 @@ const NestableNavigationContent = props => {
|
|
|
154
154
|
}, jsx(NestingItem, {
|
|
155
155
|
title: "",
|
|
156
156
|
id: ROOT_ID
|
|
157
|
-
}, children))))));
|
|
157
|
+
}, children)))))));
|
|
158
158
|
};
|
|
159
159
|
export default NestableNavigationContent;
|
|
@@ -49,7 +49,7 @@ export var baseSideNavItemStyle = function baseSideNavItemStyle(_ref) {
|
|
|
49
49
|
// This padding is set to ensure that the center of the left icon
|
|
50
50
|
// is approximately center aligned with the horizontal app switcher.
|
|
51
51
|
paddingBlock: "var(--ds-space-100, 8px)",
|
|
52
|
-
paddingInline: "var(--ds-space-100,
|
|
52
|
+
paddingInline: "var(--ds-space-100, 8px)",
|
|
53
53
|
borderRadius: "var(--ds-border-radius, 3px)",
|
|
54
54
|
// -- TODO: DELETE THESE COLOR OVERRIDES WHEN CLEANING UP FALLBACK THEMING --
|
|
55
55
|
// Menu and side navigation are now color aligned so they do not need this!
|
|
@@ -62,6 +62,6 @@ export var baseSideNavItemStyle = function baseSideNavItemStyle(_ref) {
|
|
|
62
62
|
};
|
|
63
63
|
export var sectionHeaderSpacingStyles = function sectionHeaderSpacingStyles() {
|
|
64
64
|
return {
|
|
65
|
-
paddingInline: "var(--ds-space-100,
|
|
65
|
+
paddingInline: "var(--ds-space-100, 8px)"
|
|
66
66
|
};
|
|
67
67
|
};
|
|
@@ -27,9 +27,9 @@ var SkeletonItem = function SkeletonItem(props) {
|
|
|
27
27
|
return _objectSpread(_objectSpread({}, sectionHeaderSpacingStyles()), {}, {
|
|
28
28
|
// This doubles up & to get a higher specificity as well as to not overwite the base styles.
|
|
29
29
|
'&&::before': {
|
|
30
|
-
height: "var(--ds-space-300,
|
|
31
|
-
marginRight: "var(--ds-space-200,
|
|
32
|
-
width: "var(--ds-space-300,
|
|
30
|
+
height: "var(--ds-space-300, 24px)",
|
|
31
|
+
marginRight: "var(--ds-space-200, 16px)",
|
|
32
|
+
width: "var(--ds-space-300, 24px)"
|
|
33
33
|
}
|
|
34
34
|
});
|
|
35
35
|
}
|
|
@@ -113,7 +113,7 @@ export var containerCSS = function containerCSS(opts) {
|
|
|
113
113
|
position: 'relative',
|
|
114
114
|
'& [data-ds--menu--heading-item]': {
|
|
115
115
|
marginBottom: "var(--ds-space-075, 6px)",
|
|
116
|
-
marginTop: "var(--ds-space-200,
|
|
116
|
+
marginTop: "var(--ds-space-200, 16px)"
|
|
117
117
|
},
|
|
118
118
|
'& [data-ds--menu--skeleton-heading-item]': {
|
|
119
119
|
marginTop: skeletonHeadingTopMargin,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
3
3
|
/** @jsx jsx */
|
|
4
|
-
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
4
|
+
import { Fragment, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
5
5
|
import { css, jsx } from '@emotion/react';
|
|
6
6
|
import { ExitingPersistence } from '@atlaskit/motion';
|
|
7
7
|
import { GoBackItem as GoBackButton } from '../Item';
|
|
@@ -139,7 +139,7 @@ var NestableNavigationContent = function NestableNavigationContent(props) {
|
|
|
139
139
|
containerRef.current && containerRef.current.focus();
|
|
140
140
|
}
|
|
141
141
|
};
|
|
142
|
-
return jsx("div", {
|
|
142
|
+
return jsx(Fragment, null, jsx("div", {
|
|
143
143
|
"data-testid": testId,
|
|
144
144
|
css: nestableNavigationContentStyles,
|
|
145
145
|
ref: containerRef,
|
|
@@ -164,6 +164,6 @@ var NestableNavigationContent = function NestableNavigationContent(props) {
|
|
|
164
164
|
title: "",
|
|
165
165
|
id: ROOT_ID
|
|
166
166
|
}, children)));
|
|
167
|
-
})));
|
|
167
|
+
}))));
|
|
168
168
|
};
|
|
169
169
|
export default NestableNavigationContent;
|
|
@@ -21,7 +21,8 @@ export interface SectionProps {
|
|
|
21
21
|
*/
|
|
22
22
|
testId?: string;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Adds `<ul>` and `<li>` tags around the items for better semantic markup in a list of items.
|
|
25
|
+
*
|
|
25
26
|
*/
|
|
26
27
|
isList?: boolean;
|
|
27
28
|
}
|
|
@@ -21,7 +21,8 @@ export interface SectionProps {
|
|
|
21
21
|
*/
|
|
22
22
|
testId?: string;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Adds `<ul>` and `<li>` tags around the items for better semantic markup in a list of items.
|
|
25
|
+
*
|
|
25
26
|
*/
|
|
26
27
|
isList?: boolean;
|
|
27
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/side-navigation",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "A highly composable side navigation component that supports nested views.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@atlaskit/icon": "^21.12.0",
|
|
38
38
|
"@atlaskit/menu": "^1.9.0",
|
|
39
39
|
"@atlaskit/motion": "^1.4.0",
|
|
40
|
-
"@atlaskit/primitives": "^1.
|
|
40
|
+
"@atlaskit/primitives": "^1.2.0",
|
|
41
41
|
"@atlaskit/theme": "^12.5.0",
|
|
42
|
-
"@atlaskit/tokens": "^1.
|
|
42
|
+
"@atlaskit/tokens": "^1.14.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@emotion/react": "^11.7.1"
|
|
45
45
|
},
|
|
@@ -47,15 +47,16 @@
|
|
|
47
47
|
"react": "^16.8.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
+
"@af/accessibility-testing": "*",
|
|
50
51
|
"@af/visual-regression": "*",
|
|
51
52
|
"@atlaskit/visual-regression": "*",
|
|
52
53
|
"@atlaskit/webdriver-runner": "*",
|
|
53
54
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
54
55
|
"@atlassian/feature-flags-test-utils": "*",
|
|
55
56
|
"@testing-library/react": "^12.1.5",
|
|
56
|
-
"@types/jest-axe": "^3.5.
|
|
57
|
+
"@types/jest-axe": "^3.5.5",
|
|
57
58
|
"ast-types": "^0.13.3",
|
|
58
|
-
"jest-axe": "^
|
|
59
|
+
"jest-axe": "^8.0.0",
|
|
59
60
|
"jest-emotion": "^10.0.32",
|
|
60
61
|
"jscodeshift": "^0.13.0",
|
|
61
62
|
"raf-stub": "^2.0.1",
|
package/dist/cjs/version.json
DELETED
package/dist/es2019/version.json
DELETED