@atlaskit/page-layout 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,19 @@
|
|
|
1
1
|
# @atlaskit/page-layout
|
|
2
2
|
|
|
3
|
+
## 4.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#174616](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/174616)
|
|
8
|
+
[`ee906c44a058e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ee906c44a058e) -
|
|
9
|
+
Internal refactors to accomodate for platform package rename.
|
|
10
|
+
|
|
11
|
+
## 4.2.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 4.2.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -9,7 +9,7 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
|
|
|
9
9
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
10
10
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
11
|
var _react = require("@emotion/react");
|
|
12
|
-
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/
|
|
12
|
+
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/migration/chevron-right"));
|
|
13
13
|
var _curves = require("@atlaskit/motion/curves");
|
|
14
14
|
var _durations = require("@atlaskit/motion/durations");
|
|
15
15
|
var _responsive = require("@atlaskit/primitives/responsive");
|
|
@@ -95,7 +95,8 @@ var ResizeButton = function ResizeButton(_ref) {
|
|
|
95
95
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
96
96
|
}, props), (0, _react.jsx)(_chevronRight.default, {
|
|
97
97
|
label: "",
|
|
98
|
-
color: "currentColor"
|
|
98
|
+
color: "currentColor",
|
|
99
|
+
size: "small"
|
|
99
100
|
}), (0, _react.jsx)("span", {
|
|
100
101
|
css: increaseHitAreaStyles
|
|
101
102
|
}));
|
|
@@ -8,7 +8,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
8
8
|
|
|
9
9
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
10
10
|
import { css, jsx } from '@emotion/react';
|
|
11
|
-
import ChevronRight from '@atlaskit/icon/
|
|
11
|
+
import ChevronRight from '@atlaskit/icon/core/migration/chevron-right';
|
|
12
12
|
import { easeOut } from '@atlaskit/motion/curves';
|
|
13
13
|
import { durations } from '@atlaskit/motion/durations';
|
|
14
14
|
import { UNSAFE_media } from '@atlaskit/primitives/responsive';
|
|
@@ -93,7 +93,8 @@ const ResizeButton = ({
|
|
|
93
93
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
94
94
|
}, props), jsx(ChevronRight, {
|
|
95
95
|
label: "",
|
|
96
|
-
color: "currentColor"
|
|
96
|
+
color: "currentColor",
|
|
97
|
+
size: "small"
|
|
97
98
|
}), jsx("span", {
|
|
98
99
|
css: increaseHitAreaStyles
|
|
99
100
|
}));
|
|
@@ -11,7 +11,7 @@ var _excluded = ["isLeftSidebarCollapsed", "label", "testId"];
|
|
|
11
11
|
|
|
12
12
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
13
13
|
import { css, jsx } from '@emotion/react';
|
|
14
|
-
import ChevronRight from '@atlaskit/icon/
|
|
14
|
+
import ChevronRight from '@atlaskit/icon/core/migration/chevron-right';
|
|
15
15
|
import { easeOut } from '@atlaskit/motion/curves';
|
|
16
16
|
import { durations } from '@atlaskit/motion/durations';
|
|
17
17
|
import { UNSAFE_media } from '@atlaskit/primitives/responsive';
|
|
@@ -89,7 +89,8 @@ var ResizeButton = function ResizeButton(_ref) {
|
|
|
89
89
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
90
90
|
}, props), jsx(ChevronRight, {
|
|
91
91
|
label: "",
|
|
92
|
-
color: "currentColor"
|
|
92
|
+
color: "currentColor",
|
|
93
|
+
size: "small"
|
|
93
94
|
}), jsx("span", {
|
|
94
95
|
css: increaseHitAreaStyles
|
|
95
96
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-layout",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.5",
|
|
4
4
|
"description": "A collection of components which let you compose an application's page layout.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"category": "Layout and structure",
|
|
35
35
|
"status": {
|
|
36
36
|
"type": "intent-to-deprecate",
|
|
37
|
-
"description": "We are in the process of building a new page layout component: [@
|
|
37
|
+
"description": "We are in the process of building a new page layout component: [@atlaskit/navigation-system](/components/navigation-system/page-layout/examples) (For Atlassian employees only at this stage)"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"runReact18": true
|
|
@@ -42,12 +42,13 @@
|
|
|
42
42
|
"homepage": "https://atlassian.design/components/page-layout/",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@atlaskit/ds-lib": "^4.0.0",
|
|
45
|
-
"@atlaskit/icon": "^
|
|
45
|
+
"@atlaskit/icon": "^27.0.0",
|
|
46
46
|
"@atlaskit/link": "^3.2.0",
|
|
47
47
|
"@atlaskit/motion": "^5.1.0",
|
|
48
|
-
"@atlaskit/
|
|
48
|
+
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
49
|
+
"@atlaskit/primitives": "^14.9.0",
|
|
49
50
|
"@atlaskit/theme": "^18.0.0",
|
|
50
|
-
"@atlaskit/tokens": "^5.
|
|
51
|
+
"@atlaskit/tokens": "^5.3.0",
|
|
51
52
|
"@babel/runtime": "^7.0.0",
|
|
52
53
|
"@emotion/react": "^11.7.1",
|
|
53
54
|
"bind-event-listener": "^3.0.0",
|
|
@@ -62,13 +63,13 @@
|
|
|
62
63
|
"@af/integration-testing": "workspace:^",
|
|
63
64
|
"@atlaskit/atlassian-navigation": "^5.3.0",
|
|
64
65
|
"@atlaskit/button": "^23.2.0",
|
|
65
|
-
"@atlaskit/docs": "^
|
|
66
|
-
"@atlaskit/logo": "^19.
|
|
66
|
+
"@atlaskit/docs": "^11.0.0",
|
|
67
|
+
"@atlaskit/logo": "^19.1.0",
|
|
67
68
|
"@atlaskit/menu": "^8.0.0",
|
|
68
69
|
"@atlaskit/popup": "^4.3.0",
|
|
69
70
|
"@atlaskit/section-message": "^8.2.0",
|
|
70
71
|
"@atlaskit/side-navigation": "^11.0.0",
|
|
71
|
-
"@atlaskit/tooltip": "^20.
|
|
72
|
+
"@atlaskit/tooltip": "^20.3.0",
|
|
72
73
|
"@atlaskit/visual-regression": "workspace:^",
|
|
73
74
|
"@atlassian/ssr-tests": "^0.2.0",
|
|
74
75
|
"@testing-library/react": "^13.4.0",
|