@atlaskit/page-layout 4.0.3 → 4.1.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 +15 -0
- package/dist/cjs/components/resize-control/grab-area.js +0 -1
- package/dist/cjs/components/resize-control/index.js +1 -2
- package/dist/cjs/components/resize-control/resize-button.js +0 -1
- package/dist/cjs/components/slots/banner-slot.js +2 -2
- package/dist/cjs/components/slots/internal/left-sidebar-outer.js +1 -1
- package/dist/cjs/components/slots/left-sidebar.js +1 -1
- package/dist/cjs/components/slots/main.js +1 -1
- package/dist/cjs/components/slots/top-navigation.js +3 -3
- package/dist/es2019/components/resize-control/grab-area.js +0 -1
- package/dist/es2019/components/resize-control/resize-button.js +1 -2
- package/dist/es2019/components/slots/banner-slot.js +2 -2
- package/dist/es2019/components/slots/internal/left-sidebar-outer.js +1 -1
- package/dist/es2019/components/slots/left-sidebar.js +1 -1
- package/dist/es2019/components/slots/main.js +1 -1
- package/dist/es2019/components/slots/top-navigation.js +3 -3
- package/dist/esm/components/resize-control/grab-area.js +0 -1
- package/dist/esm/components/resize-control/index.js +1 -2
- package/dist/esm/components/resize-control/resize-button.js +0 -1
- package/dist/esm/components/slots/banner-slot.js +2 -2
- package/dist/esm/components/slots/internal/left-sidebar-outer.js +1 -1
- package/dist/esm/components/slots/left-sidebar.js +1 -1
- package/dist/esm/components/slots/main.js +1 -1
- package/dist/esm/components/slots/top-navigation.js +3 -3
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/page-layout
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#146292](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/146292)
|
|
8
|
+
[`38b68fa4ad618`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/38b68fa4ad618) -
|
|
9
|
+
[https://product-fabric.atlassian.net/browse/ED-27656](ED-27656) - move editor media plugin
|
|
10
|
+
options creation to @atlassian/confluence-presets package
|
|
11
|
+
|
|
12
|
+
## 4.0.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 4.0.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -12,7 +12,6 @@ var _react = require("@emotion/react");
|
|
|
12
12
|
var _colors = require("@atlaskit/theme/colors");
|
|
13
13
|
var _constants = require("../../common/constants");
|
|
14
14
|
var _excluded = ["testId", "valueTextLabel", "isDisabled", "isLeftSidebarCollapsed", "label", "leftSidebarPercentageExpanded", "onKeyDown", "onMouseDown", "onBlur", "onFocus", "ref"];
|
|
15
|
-
/* eslint-disable react/react-in-jsx-scope */
|
|
16
15
|
/**
|
|
17
16
|
* @jsxRuntime classic
|
|
18
17
|
* @jsx jsx
|
|
@@ -259,10 +259,9 @@ var ResizeControl = function ResizeControl(_ref) {
|
|
|
259
259
|
|
|
260
260
|
// TODO: no idea why this is in an animation frame
|
|
261
261
|
requestAnimationFrame(function () {
|
|
262
|
-
var _updatedLeftSidebarSt;
|
|
263
262
|
setIsGrabAreaFocused(false);
|
|
264
263
|
// Note: the `collapseSidebar` codepath does not return state, so we need to pull it from the ref
|
|
265
|
-
onResizeEnd === null || onResizeEnd === void 0 || onResizeEnd(
|
|
264
|
+
onResizeEnd === null || onResizeEnd === void 0 || onResizeEnd(updatedLeftSidebarState !== null && updatedLeftSidebarState !== void 0 ? updatedLeftSidebarState : stableSidebarState.current);
|
|
266
265
|
});
|
|
267
266
|
};
|
|
268
267
|
var onKeyDown = function onKeyDown(event) {
|
|
@@ -41,7 +41,6 @@ var resizeIconButtonStyles = (0, _react.css)({
|
|
|
41
41
|
backgroundColor: "var(--ds-surface-overlay, ".concat(_colors.N0, ")"),
|
|
42
42
|
border: 0,
|
|
43
43
|
borderRadius: "var(--ds-border-radius-circle, 50%)",
|
|
44
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage -- TODO: https://product-fabric.atlassian.net/browse/DSP-3392; this boxShadow needs further investigation, along with the hover and active background colors.
|
|
45
44
|
boxShadow: "0 0 0 1px ".concat(_colors.N30A, ", 0 2px 4px 1px ").concat(_colors.N30A),
|
|
46
45
|
color: "var(--ds-text-subtle, ".concat(_colors.N200, ")"),
|
|
47
46
|
cursor: 'pointer',
|
|
@@ -31,9 +31,9 @@ var bannerFixedStyles = (0, _react2.css)({
|
|
|
31
31
|
position: 'fixed',
|
|
32
32
|
zIndex: 2,
|
|
33
33
|
insetBlockStart: 0,
|
|
34
|
-
// eslint-disable-next-line @atlaskit/
|
|
34
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
35
35
|
insetInlineEnd: _constants.RIGHT_PANEL_WIDTH,
|
|
36
|
-
// eslint-disable-next-line @atlaskit/
|
|
36
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
37
37
|
insetInlineStart: _constants.LEFT_PANEL_WIDTH
|
|
38
38
|
});
|
|
39
39
|
|
|
@@ -108,7 +108,7 @@ var LeftSidebarOuterComponent = function LeftSidebarOuterComponent(_ref, ref) {
|
|
|
108
108
|
* On mobile, the `onClick` handler controls the toggled flyout behaviour.
|
|
109
109
|
* This is not intended to be how you use this with a keyboard, there is a ResizeButton for this intentionally instead.
|
|
110
110
|
*/
|
|
111
|
-
// eslint-disable-next-line jsx-a11y/
|
|
111
|
+
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions, @atlassian/a11y/interactive-element-not-keyboard-focusable
|
|
112
112
|
(0, _react2.jsx)("div", (0, _extends2.default)({
|
|
113
113
|
css: [
|
|
114
114
|
// mobile viewport styles
|
|
@@ -296,7 +296,7 @@ var LeftSidebar = function LeftSidebar(props) {
|
|
|
296
296
|
* On mobile, the `onClick` handler controls the toggled flyout behaviour.
|
|
297
297
|
* This is not intended to be how you use this with a keyboard, there is a ResizeButton for this intentionally instead.
|
|
298
298
|
*/
|
|
299
|
-
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
|
|
299
|
+
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions, @atlassian/a11y/interactive-element-not-keyboard-focusable
|
|
300
300
|
(0, _react2.jsx)("div", {
|
|
301
301
|
css: [hiddenBackdropStyles, isFlyoutOpen && openBackdropStyles],
|
|
302
302
|
onClick: closeMobileFlyout
|
|
@@ -43,7 +43,7 @@ var draggingStyles = (0, _react2.css)({
|
|
|
43
43
|
* while main remains in place.
|
|
44
44
|
*/
|
|
45
45
|
var flyoutStyles = (0, _react2.css)({
|
|
46
|
-
// eslint-disable-next-line @atlaskit/
|
|
46
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
47
47
|
marginInlineStart: "calc(-1 * var(--".concat(_constants.VAR_LEFT_SIDEBAR_FLYOUT, ", ").concat(_constants.DEFAULT_LEFT_SIDEBAR_FLYOUT_WIDTH, "px) + ").concat(_constants.COLLAPSED_LEFT_SIDEBAR_WIDTH, "px)")
|
|
48
48
|
});
|
|
49
49
|
|
|
@@ -30,11 +30,11 @@ var topNavigationStyles = (0, _react2.css)({
|
|
|
30
30
|
var fixedStyles = (0, _react2.css)({
|
|
31
31
|
position: 'fixed',
|
|
32
32
|
zIndex: 2,
|
|
33
|
-
// eslint-disable-next-line @atlaskit/
|
|
33
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
34
34
|
insetBlockStart: _constants.BANNER_HEIGHT,
|
|
35
|
-
// eslint-disable-next-line @atlaskit/
|
|
35
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
36
36
|
insetInlineEnd: _constants.RIGHT_PANEL_WIDTH,
|
|
37
|
-
// eslint-disable-next-line @atlaskit/
|
|
37
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
38
38
|
insetInlineStart: _constants.LEFT_PANEL_WIDTH
|
|
39
39
|
});
|
|
40
40
|
|
|
@@ -22,7 +22,7 @@ const increaseHitAreaStyles = css({
|
|
|
22
22
|
insetInlineStart: `${"var(--ds-space-negative-100, -8px)"}`
|
|
23
23
|
});
|
|
24
24
|
const mobileStyles = css({
|
|
25
|
-
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles
|
|
25
|
+
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles -- Ignored via go/DSP-18766
|
|
26
26
|
[UNSAFE_media.below.sm]: {
|
|
27
27
|
opacity: 1
|
|
28
28
|
}
|
|
@@ -35,7 +35,6 @@ const resizeIconButtonStyles = css({
|
|
|
35
35
|
backgroundColor: `var(--ds-surface-overlay, ${N0})`,
|
|
36
36
|
border: 0,
|
|
37
37
|
borderRadius: "var(--ds-border-radius-circle, 50%)",
|
|
38
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage -- TODO: https://product-fabric.atlassian.net/browse/DSP-3392; this boxShadow needs further investigation, along with the hover and active background colors.
|
|
39
38
|
boxShadow: `0 0 0 1px ${N30A}, 0 2px 4px 1px ${N30A}`,
|
|
40
39
|
color: `var(--ds-text-subtle, ${N200})`,
|
|
41
40
|
cursor: 'pointer',
|
|
@@ -22,9 +22,9 @@ const bannerFixedStyles = css({
|
|
|
22
22
|
position: 'fixed',
|
|
23
23
|
zIndex: 2,
|
|
24
24
|
insetBlockStart: 0,
|
|
25
|
-
// eslint-disable-next-line @atlaskit/
|
|
25
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
26
26
|
insetInlineEnd: RIGHT_PANEL_WIDTH,
|
|
27
|
-
// eslint-disable-next-line @atlaskit/
|
|
27
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
28
28
|
insetInlineStart: LEFT_PANEL_WIDTH
|
|
29
29
|
});
|
|
30
30
|
|
|
@@ -109,7 +109,7 @@ const LeftSidebarOuterComponent = ({
|
|
|
109
109
|
* On mobile, the `onClick` handler controls the toggled flyout behaviour.
|
|
110
110
|
* This is not intended to be how you use this with a keyboard, there is a ResizeButton for this intentionally instead.
|
|
111
111
|
*/
|
|
112
|
-
// eslint-disable-next-line jsx-a11y/
|
|
112
|
+
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions, @atlassian/a11y/interactive-element-not-keyboard-focusable
|
|
113
113
|
jsx("div", _extends({
|
|
114
114
|
css: [
|
|
115
115
|
// mobile viewport styles
|
|
@@ -297,7 +297,7 @@ const LeftSidebar = props => {
|
|
|
297
297
|
* On mobile, the `onClick` handler controls the toggled flyout behaviour.
|
|
298
298
|
* This is not intended to be how you use this with a keyboard, there is a ResizeButton for this intentionally instead.
|
|
299
299
|
*/
|
|
300
|
-
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
|
|
300
|
+
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions, @atlassian/a11y/interactive-element-not-keyboard-focusable
|
|
301
301
|
jsx("div", {
|
|
302
302
|
css: [hiddenBackdropStyles, isFlyoutOpen && openBackdropStyles],
|
|
303
303
|
onClick: closeMobileFlyout
|
|
@@ -36,7 +36,7 @@ const draggingStyles = css({
|
|
|
36
36
|
* while main remains in place.
|
|
37
37
|
*/
|
|
38
38
|
const flyoutStyles = css({
|
|
39
|
-
// eslint-disable-next-line @atlaskit/
|
|
39
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
40
40
|
marginInlineStart: `calc(-1 * var(--${VAR_LEFT_SIDEBAR_FLYOUT}, ${DEFAULT_LEFT_SIDEBAR_FLYOUT_WIDTH}px) + ${COLLAPSED_LEFT_SIDEBAR_WIDTH}px)`
|
|
41
41
|
});
|
|
42
42
|
|
|
@@ -21,11 +21,11 @@ const topNavigationStyles = css({
|
|
|
21
21
|
const fixedStyles = css({
|
|
22
22
|
position: 'fixed',
|
|
23
23
|
zIndex: 2,
|
|
24
|
-
// eslint-disable-next-line @atlaskit/
|
|
24
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
25
25
|
insetBlockStart: BANNER_HEIGHT,
|
|
26
|
-
// eslint-disable-next-line @atlaskit/
|
|
26
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
27
27
|
insetInlineEnd: RIGHT_PANEL_WIDTH,
|
|
28
|
-
// eslint-disable-next-line @atlaskit/
|
|
28
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
29
29
|
insetInlineStart: LEFT_PANEL_WIDTH
|
|
30
30
|
});
|
|
31
31
|
|
|
@@ -2,7 +2,6 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
3
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
4
4
|
var _excluded = ["testId", "valueTextLabel", "isDisabled", "isLeftSidebarCollapsed", "label", "leftSidebarPercentageExpanded", "onKeyDown", "onMouseDown", "onBlur", "onFocus", "ref"];
|
|
5
|
-
/* eslint-disable react/react-in-jsx-scope */
|
|
6
5
|
/**
|
|
7
6
|
* @jsxRuntime classic
|
|
8
7
|
* @jsx jsx
|
|
@@ -256,10 +256,9 @@ var ResizeControl = function ResizeControl(_ref) {
|
|
|
256
256
|
|
|
257
257
|
// TODO: no idea why this is in an animation frame
|
|
258
258
|
requestAnimationFrame(function () {
|
|
259
|
-
var _updatedLeftSidebarSt;
|
|
260
259
|
setIsGrabAreaFocused(false);
|
|
261
260
|
// Note: the `collapseSidebar` codepath does not return state, so we need to pull it from the ref
|
|
262
|
-
onResizeEnd === null || onResizeEnd === void 0 || onResizeEnd(
|
|
261
|
+
onResizeEnd === null || onResizeEnd === void 0 || onResizeEnd(updatedLeftSidebarState !== null && updatedLeftSidebarState !== void 0 ? updatedLeftSidebarState : stableSidebarState.current);
|
|
263
262
|
});
|
|
264
263
|
};
|
|
265
264
|
var onKeyDown = function onKeyDown(event) {
|
|
@@ -35,7 +35,6 @@ var resizeIconButtonStyles = css({
|
|
|
35
35
|
backgroundColor: "var(--ds-surface-overlay, ".concat(N0, ")"),
|
|
36
36
|
border: 0,
|
|
37
37
|
borderRadius: "var(--ds-border-radius-circle, 50%)",
|
|
38
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage -- TODO: https://product-fabric.atlassian.net/browse/DSP-3392; this boxShadow needs further investigation, along with the hover and active background colors.
|
|
39
38
|
boxShadow: "0 0 0 1px ".concat(N30A, ", 0 2px 4px 1px ").concat(N30A),
|
|
40
39
|
color: "var(--ds-text-subtle, ".concat(N200, ")"),
|
|
41
40
|
cursor: 'pointer',
|
|
@@ -23,9 +23,9 @@ var bannerFixedStyles = css({
|
|
|
23
23
|
position: 'fixed',
|
|
24
24
|
zIndex: 2,
|
|
25
25
|
insetBlockStart: 0,
|
|
26
|
-
// eslint-disable-next-line @atlaskit/
|
|
26
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
27
27
|
insetInlineEnd: RIGHT_PANEL_WIDTH,
|
|
28
|
-
// eslint-disable-next-line @atlaskit/
|
|
28
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
29
29
|
insetInlineStart: LEFT_PANEL_WIDTH
|
|
30
30
|
});
|
|
31
31
|
|
|
@@ -100,7 +100,7 @@ var LeftSidebarOuterComponent = function LeftSidebarOuterComponent(_ref, ref) {
|
|
|
100
100
|
* On mobile, the `onClick` handler controls the toggled flyout behaviour.
|
|
101
101
|
* This is not intended to be how you use this with a keyboard, there is a ResizeButton for this intentionally instead.
|
|
102
102
|
*/
|
|
103
|
-
// eslint-disable-next-line jsx-a11y/
|
|
103
|
+
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions, @atlassian/a11y/interactive-element-not-keyboard-focusable
|
|
104
104
|
jsx("div", _extends({
|
|
105
105
|
css: [
|
|
106
106
|
// mobile viewport styles
|
|
@@ -293,7 +293,7 @@ var LeftSidebar = function LeftSidebar(props) {
|
|
|
293
293
|
* On mobile, the `onClick` handler controls the toggled flyout behaviour.
|
|
294
294
|
* This is not intended to be how you use this with a keyboard, there is a ResizeButton for this intentionally instead.
|
|
295
295
|
*/
|
|
296
|
-
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
|
|
296
|
+
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions, @atlassian/a11y/interactive-element-not-keyboard-focusable
|
|
297
297
|
jsx("div", {
|
|
298
298
|
css: [hiddenBackdropStyles, isFlyoutOpen && openBackdropStyles],
|
|
299
299
|
onClick: closeMobileFlyout
|
|
@@ -36,7 +36,7 @@ var draggingStyles = css({
|
|
|
36
36
|
* while main remains in place.
|
|
37
37
|
*/
|
|
38
38
|
var flyoutStyles = css({
|
|
39
|
-
// eslint-disable-next-line @atlaskit/
|
|
39
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
40
40
|
marginInlineStart: "calc(-1 * var(--".concat(VAR_LEFT_SIDEBAR_FLYOUT, ", ").concat(DEFAULT_LEFT_SIDEBAR_FLYOUT_WIDTH, "px) + ").concat(COLLAPSED_LEFT_SIDEBAR_WIDTH, "px)")
|
|
41
41
|
});
|
|
42
42
|
|
|
@@ -22,11 +22,11 @@ var topNavigationStyles = css({
|
|
|
22
22
|
var fixedStyles = css({
|
|
23
23
|
position: 'fixed',
|
|
24
24
|
zIndex: 2,
|
|
25
|
-
// eslint-disable-next-line @atlaskit/
|
|
25
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
26
26
|
insetBlockStart: BANNER_HEIGHT,
|
|
27
|
-
// eslint-disable-next-line @atlaskit/
|
|
27
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
28
28
|
insetInlineEnd: RIGHT_PANEL_WIDTH,
|
|
29
|
-
// eslint-disable-next-line @atlaskit/
|
|
29
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
30
30
|
insetInlineStart: LEFT_PANEL_WIDTH
|
|
31
31
|
});
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-layout",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
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/"
|
|
@@ -42,13 +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": "^
|
|
46
|
-
"@atlaskit/link": "^3.
|
|
47
|
-
"@atlaskit/motion": "^5.
|
|
45
|
+
"@atlaskit/icon": "^25.6.0",
|
|
46
|
+
"@atlaskit/link": "^3.1.0",
|
|
47
|
+
"@atlaskit/motion": "^5.1.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
49
|
-
"@atlaskit/primitives": "^14.
|
|
49
|
+
"@atlaskit/primitives": "^14.4.0",
|
|
50
50
|
"@atlaskit/theme": "^18.0.0",
|
|
51
|
-
"@atlaskit/tokens": "^4.
|
|
51
|
+
"@atlaskit/tokens": "^4.8.0",
|
|
52
52
|
"@babel/runtime": "^7.0.0",
|
|
53
53
|
"@emotion/react": "^11.7.1",
|
|
54
54
|
"bind-event-listener": "^3.0.0",
|
|
@@ -59,19 +59,19 @@
|
|
|
59
59
|
"react-dom": "^18.2.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@af/accessibility-testing": "
|
|
63
|
-
"@af/integration-testing": "
|
|
64
|
-
"@atlaskit/atlassian-navigation": "^5.
|
|
65
|
-
"@atlaskit/button": "^
|
|
66
|
-
"@atlaskit/docs": "
|
|
62
|
+
"@af/accessibility-testing": "workspace:^",
|
|
63
|
+
"@af/integration-testing": "workspace:^",
|
|
64
|
+
"@atlaskit/atlassian-navigation": "^5.1.0",
|
|
65
|
+
"@atlaskit/button": "^23.0.0",
|
|
66
|
+
"@atlaskit/docs": "^10.0.0",
|
|
67
67
|
"@atlaskit/logo": "^16.0.0",
|
|
68
|
-
"@atlaskit/menu": "^3.
|
|
69
|
-
"@atlaskit/popup": "^
|
|
70
|
-
"@atlaskit/section-message": "
|
|
71
|
-
"@atlaskit/side-navigation": "^
|
|
72
|
-
"@atlaskit/ssr": "*",
|
|
68
|
+
"@atlaskit/menu": "^3.2.0",
|
|
69
|
+
"@atlaskit/popup": "^4.1.0",
|
|
70
|
+
"@atlaskit/section-message": "^8.2.0",
|
|
71
|
+
"@atlaskit/side-navigation": "^8.0.0",
|
|
73
72
|
"@atlaskit/tooltip": "^20.0.0",
|
|
74
|
-
"@atlaskit/visual-regression": "
|
|
73
|
+
"@atlaskit/visual-regression": "workspace:^",
|
|
74
|
+
"@atlassian/ssr-tests": "^0.2.0",
|
|
75
75
|
"@testing-library/react": "^13.4.0",
|
|
76
76
|
"@testing-library/react-hooks": "^8.0.1",
|
|
77
77
|
"@types/raf-schd": "^4.0.1",
|