@atlaskit/side-navigation 11.0.30 → 11.0.32
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 +13 -0
- package/dist/cjs/components/Item/go-back-item.js +2 -2
- package/dist/cjs/components/NestingItem/index.js +2 -2
- package/dist/es2019/components/Item/go-back-item.js +1 -1
- package/dist/es2019/components/NestingItem/index.js +1 -1
- package/dist/esm/components/Item/go-back-item.js +1 -1
- package/dist/esm/components/NestingItem/index.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/side-navigation
|
|
2
2
|
|
|
3
|
+
## 11.0.32
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 11.0.31
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`d14ea5f60b689`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d14ea5f60b689) -
|
|
14
|
+
chore: migrate platform UI & component libraries icon imports from migration paths to core
|
|
15
|
+
|
|
3
16
|
## 11.0.30
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -10,7 +10,7 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
|
|
|
10
10
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
11
11
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
12
12
|
var _react = _interopRequireWildcard(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _arrowLeft = _interopRequireDefault(require("@atlaskit/icon/core/arrow-left"));
|
|
14
14
|
var _colors = require("@atlaskit/theme/colors");
|
|
15
15
|
var _buttonItem = _interopRequireDefault(require("./button-item"));
|
|
16
16
|
var _excluded = ["className", "iconBefore", "onClick", "isSelected"];
|
|
@@ -27,7 +27,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
|
|
|
27
27
|
var GoBackItem = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
28
28
|
var className = _ref.className,
|
|
29
29
|
_ref$iconBefore = _ref.iconBefore,
|
|
30
|
-
iconBefore = _ref$iconBefore === void 0 ? /*#__PURE__*/_react.default.createElement(
|
|
30
|
+
iconBefore = _ref$iconBefore === void 0 ? /*#__PURE__*/_react.default.createElement(_arrowLeft.default, {
|
|
31
31
|
color: "currentColor",
|
|
32
32
|
LEGACY_secondaryColor: "var(--ds-surface, ".concat(_colors.N10, ")"),
|
|
33
33
|
label: ""
|
|
@@ -15,7 +15,7 @@ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers
|
|
|
15
15
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
16
16
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
17
17
|
var _react = _interopRequireWildcard(require("react"));
|
|
18
|
-
var
|
|
18
|
+
var _arrowRight = _interopRequireDefault(require("@atlaskit/icon/core/arrow-right"));
|
|
19
19
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
20
20
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
21
21
|
var _colors = require("@atlaskit/theme/colors");
|
|
@@ -161,7 +161,7 @@ var NestingItem = function NestingItem(props) {
|
|
|
161
161
|
"data-right-arrow": true,
|
|
162
162
|
xcss: styles.iconContainer,
|
|
163
163
|
as: "span"
|
|
164
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
164
|
+
}, /*#__PURE__*/_react.default.createElement(_arrowRight.default, {
|
|
165
165
|
testId: testId && "".concat(testId, "--item--right-arrow"),
|
|
166
166
|
color: "currentColor",
|
|
167
167
|
LEGACY_secondaryColor: "var(--ds-surface, ".concat(_colors.N10, ")"),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import React, { forwardRef, useCallback, useState } from 'react';
|
|
3
|
-
import ArrowLeftIcon from '@atlaskit/icon/core/
|
|
3
|
+
import ArrowLeftIcon from '@atlaskit/icon/core/arrow-left';
|
|
4
4
|
import { N10 } from '@atlaskit/theme/colors';
|
|
5
5
|
import ButtonItem from './button-item';
|
|
6
6
|
/**
|
|
@@ -3,7 +3,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
3
3
|
import "./index.compiled.css";
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import React, { Fragment, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
6
|
-
import ArrowRightIcon from '@atlaskit/icon/core/
|
|
6
|
+
import ArrowRightIcon from '@atlaskit/icon/core/arrow-right';
|
|
7
7
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
8
8
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
9
9
|
import { N10 } from '@atlaskit/theme/colors';
|
|
@@ -3,7 +3,7 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
3
3
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
4
4
|
var _excluded = ["className", "iconBefore", "onClick", "isSelected"];
|
|
5
5
|
import React, { forwardRef, useCallback, useState } from 'react';
|
|
6
|
-
import ArrowLeftIcon from '@atlaskit/icon/core/
|
|
6
|
+
import ArrowLeftIcon from '@atlaskit/icon/core/arrow-left';
|
|
7
7
|
import { N10 } from '@atlaskit/theme/colors';
|
|
8
8
|
import ButtonItem from './button-item';
|
|
9
9
|
/**
|
|
@@ -10,7 +10,7 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
10
10
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
11
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
12
|
import React, { Fragment, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
13
|
-
import ArrowRightIcon from '@atlaskit/icon/core/
|
|
13
|
+
import ArrowRightIcon from '@atlaskit/icon/core/arrow-right';
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
16
16
|
import { N10 } from '@atlaskit/theme/colors';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/side-navigation",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.32",
|
|
4
4
|
"description": "A highly composable side navigation component that supports nested views.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atlaskit/css": "^0.
|
|
31
|
+
"@atlaskit/css": "^0.19.0",
|
|
32
32
|
"@atlaskit/ds-lib": "^5.3.0",
|
|
33
|
-
"@atlaskit/icon": "^29.
|
|
33
|
+
"@atlaskit/icon": "^29.3.0",
|
|
34
34
|
"@atlaskit/menu": "^8.4.0",
|
|
35
35
|
"@atlaskit/motion": "^5.3.0",
|
|
36
36
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
37
|
-
"@atlaskit/primitives": "^
|
|
37
|
+
"@atlaskit/primitives": "^17.0.0",
|
|
38
38
|
"@atlaskit/theme": "^21.0.0",
|
|
39
|
-
"@atlaskit/tokens": "^
|
|
39
|
+
"@atlaskit/tokens": "^9.0.0",
|
|
40
40
|
"@babel/runtime": "^7.0.0",
|
|
41
41
|
"@compiled/react": "^0.18.6"
|
|
42
42
|
},
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"@af/integration-testing": "workspace:^",
|
|
49
49
|
"@af/visual-regression": "workspace:^",
|
|
50
50
|
"@atlaskit/atlassian-navigation": "^5.5.0",
|
|
51
|
-
"@atlaskit/button": "^23.
|
|
51
|
+
"@atlaskit/button": "^23.9.0",
|
|
52
52
|
"@atlaskit/docs": "^11.2.0",
|
|
53
53
|
"@atlaskit/dropdown-menu": "^16.3.0",
|
|
54
|
-
"@atlaskit/form": "^15.
|
|
54
|
+
"@atlaskit/form": "^15.1.0",
|
|
55
55
|
"@atlaskit/image": "^3.0.0",
|
|
56
56
|
"@atlaskit/link": "^3.2.0",
|
|
57
57
|
"@atlaskit/logo": "^19.9.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
|
|
62
62
|
"@atlaskit/section-message": "^8.11.0",
|
|
63
63
|
"@atlaskit/select": "^21.6.0",
|
|
64
|
-
"@atlaskit/spotlight": "^0.
|
|
64
|
+
"@atlaskit/spotlight": "^0.10.0",
|
|
65
65
|
"@testing-library/react": "^13.4.0",
|
|
66
66
|
"raf-stub": "^2.0.1",
|
|
67
67
|
"tiny-invariant": "^1.2.0"
|