@atlaskit/side-navigation 4.2.3 → 4.2.5
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
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/side-navigation
|
|
2
2
|
|
|
3
|
+
## 4.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 4.2.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#114382](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114382)
|
|
14
|
+
[`5033cb80b3765`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5033cb80b3765) -
|
|
15
|
+
Updates internal animation logic to leverage static animation timing names, rather than arbitrary
|
|
16
|
+
values.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 4.2.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -24,9 +24,7 @@ var NestingMotion = exports.NestingMotion = function NestingMotion(props) {
|
|
|
24
24
|
return (0, _react.jsx)(_motion.SlideIn, {
|
|
25
25
|
exitTo: exitTo,
|
|
26
26
|
enterFrom: enterFrom,
|
|
27
|
-
animationTimingFunction:
|
|
28
|
-
return _motion.easeOut;
|
|
29
|
-
}
|
|
27
|
+
animationTimingFunction: "ease-out"
|
|
30
28
|
}, function (innerProps, direction) {
|
|
31
29
|
return children(_objectSpread({
|
|
32
30
|
'data-enter-from': enterFrom,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
7
7
|
import { jsx } from '@emotion/react';
|
|
8
|
-
import {
|
|
8
|
+
import { SlideIn } from '@atlaskit/motion';
|
|
9
9
|
/**
|
|
10
10
|
* @internal
|
|
11
11
|
*/
|
|
@@ -19,7 +19,7 @@ export const NestingMotion = props => {
|
|
|
19
19
|
return jsx(SlideIn, {
|
|
20
20
|
exitTo: exitTo,
|
|
21
21
|
enterFrom: enterFrom,
|
|
22
|
-
animationTimingFunction:
|
|
22
|
+
animationTimingFunction: "ease-out"
|
|
23
23
|
}, (innerProps, direction) => children({
|
|
24
24
|
'data-enter-from': enterFrom,
|
|
25
25
|
'data-exit-to': exitTo,
|
|
@@ -8,7 +8,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
8
8
|
|
|
9
9
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
10
10
|
import { jsx } from '@emotion/react';
|
|
11
|
-
import {
|
|
11
|
+
import { SlideIn } from '@atlaskit/motion';
|
|
12
12
|
/**
|
|
13
13
|
* @internal
|
|
14
14
|
*/
|
|
@@ -20,9 +20,7 @@ export var NestingMotion = function NestingMotion(props) {
|
|
|
20
20
|
return jsx(SlideIn, {
|
|
21
21
|
exitTo: exitTo,
|
|
22
22
|
enterFrom: enterFrom,
|
|
23
|
-
animationTimingFunction:
|
|
24
|
-
return easeOut;
|
|
25
|
-
}
|
|
23
|
+
animationTimingFunction: "ease-out"
|
|
26
24
|
}, function (innerProps, direction) {
|
|
27
25
|
return children(_objectSpread({
|
|
28
26
|
'data-enter-from': enterFrom,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/side-navigation",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.5",
|
|
4
4
|
"description": "A highly composable side navigation component that supports nested views.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/ds-lib": "^3.5.0",
|
|
36
|
-
"@atlaskit/icon": "^23.
|
|
36
|
+
"@atlaskit/icon": "^23.9.0",
|
|
37
37
|
"@atlaskit/menu": "^2.14.0",
|
|
38
|
-
"@atlaskit/motion": "^
|
|
39
|
-
"@atlaskit/platform-feature-flags": "^1.
|
|
38
|
+
"@atlaskit/motion": "^3.0.0",
|
|
39
|
+
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
40
40
|
"@atlaskit/primitives": "^13.5.0",
|
|
41
|
-
"@atlaskit/theme": "^
|
|
41
|
+
"@atlaskit/theme": "^16.0.0",
|
|
42
42
|
"@atlaskit/tokens": "^3.3.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@emotion/react": "^11.7.1"
|