@atlaskit/page-layout 3.12.2 → 3.12.3
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
|
@@ -16,6 +16,8 @@ var _responsive = require("@atlaskit/primitives/responsive");
|
|
|
16
16
|
var _colors = require("@atlaskit/theme/colors");
|
|
17
17
|
var _constants = require("../../common/constants");
|
|
18
18
|
var _excluded = ["isLeftSidebarCollapsed", "label", "testId"];
|
|
19
|
+
/* eslint-disable @atlaskit/ui-styling-standard/no-unsafe-values */
|
|
20
|
+
/* eslint-disable @atlaskit/ui-styling-standard/no-imported-style-values */
|
|
19
21
|
/**
|
|
20
22
|
* @jsxRuntime classic
|
|
21
23
|
* @jsx jsx
|
|
@@ -52,7 +54,7 @@ var resizeIconButtonStyles = (0, _react.css)({
|
|
|
52
54
|
opacity: "var(--ds--resize-button--opacity,0)",
|
|
53
55
|
outline: 0,
|
|
54
56
|
transform: 'translateX(-50%)',
|
|
55
|
-
transition: "\n background-color ".concat(_durations.
|
|
57
|
+
transition: "\n background-color ".concat(_durations.durations.small, "ms linear,\n color ").concat(_durations.durations.small, "ms linear,\n opacity ").concat(_durations.durations.medium, "ms ").concat(_curves.easeOut, "\n "),
|
|
56
58
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
57
59
|
':hover': {
|
|
58
60
|
backgroundColor: "var(--ds-background-selected-bold, ".concat(_colors.B100, ")"),
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
/* eslint-disable @atlaskit/ui-styling-standard/no-unsafe-values */
|
|
3
|
+
/* eslint-disable @atlaskit/ui-styling-standard/no-imported-style-values */
|
|
2
4
|
/**
|
|
3
5
|
* @jsxRuntime classic
|
|
4
6
|
* @jsx jsx
|
|
@@ -8,7 +10,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
8
10
|
import { css, jsx } from '@emotion/react';
|
|
9
11
|
import ChevronRight from '@atlaskit/icon/utility/migration/chevron-right';
|
|
10
12
|
import { easeOut } from '@atlaskit/motion/curves';
|
|
11
|
-
import {
|
|
13
|
+
import { durations } from '@atlaskit/motion/durations';
|
|
12
14
|
import { UNSAFE_media } from '@atlaskit/primitives/responsive';
|
|
13
15
|
import { B100, B200, N0, N200, N30A } from '@atlaskit/theme/colors';
|
|
14
16
|
import { RESIZE_BUTTON_SELECTOR } from '../../common/constants';
|
|
@@ -47,9 +49,9 @@ const resizeIconButtonStyles = css({
|
|
|
47
49
|
outline: 0,
|
|
48
50
|
transform: 'translateX(-50%)',
|
|
49
51
|
transition: `
|
|
50
|
-
background-color ${
|
|
51
|
-
color ${
|
|
52
|
-
opacity ${
|
|
52
|
+
background-color ${durations.small}ms linear,
|
|
53
|
+
color ${durations.small}ms linear,
|
|
54
|
+
opacity ${durations.medium}ms ${easeOut}
|
|
53
55
|
`,
|
|
54
56
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
55
57
|
':hover': {
|
|
@@ -2,6 +2,8 @@ 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 = ["isLeftSidebarCollapsed", "label", "testId"];
|
|
5
|
+
/* eslint-disable @atlaskit/ui-styling-standard/no-unsafe-values */
|
|
6
|
+
/* eslint-disable @atlaskit/ui-styling-standard/no-imported-style-values */
|
|
5
7
|
/**
|
|
6
8
|
* @jsxRuntime classic
|
|
7
9
|
* @jsx jsx
|
|
@@ -11,7 +13,7 @@ var _excluded = ["isLeftSidebarCollapsed", "label", "testId"];
|
|
|
11
13
|
import { css, jsx } from '@emotion/react';
|
|
12
14
|
import ChevronRight from '@atlaskit/icon/utility/migration/chevron-right';
|
|
13
15
|
import { easeOut } from '@atlaskit/motion/curves';
|
|
14
|
-
import {
|
|
16
|
+
import { durations } from '@atlaskit/motion/durations';
|
|
15
17
|
import { UNSAFE_media } from '@atlaskit/primitives/responsive';
|
|
16
18
|
import { B100, B200, N0, N200, N30A } from '@atlaskit/theme/colors';
|
|
17
19
|
import { RESIZE_BUTTON_SELECTOR } from '../../common/constants';
|
|
@@ -46,7 +48,7 @@ var resizeIconButtonStyles = css({
|
|
|
46
48
|
opacity: "var(--ds--resize-button--opacity,0)",
|
|
47
49
|
outline: 0,
|
|
48
50
|
transform: 'translateX(-50%)',
|
|
49
|
-
transition: "\n background-color ".concat(
|
|
51
|
+
transition: "\n background-color ".concat(durations.small, "ms linear,\n color ").concat(durations.small, "ms linear,\n opacity ").concat(durations.medium, "ms ").concat(easeOut, "\n "),
|
|
50
52
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
51
53
|
':hover': {
|
|
52
54
|
backgroundColor: "var(--ds-background-selected-bold, ".concat(B100, ")"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-layout",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.3",
|
|
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,11 +42,11 @@
|
|
|
42
42
|
"homepage": "https://atlassian.design/components/page-layout/",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@atlaskit/ds-lib": "^3.5.0",
|
|
45
|
-
"@atlaskit/icon": "^23.
|
|
45
|
+
"@atlaskit/icon": "^23.8.0",
|
|
46
46
|
"@atlaskit/link": "^2.1.0",
|
|
47
|
-
"@atlaskit/motion": "^
|
|
47
|
+
"@atlaskit/motion": "^2.0.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
49
|
-
"@atlaskit/primitives": "^13.
|
|
49
|
+
"@atlaskit/primitives": "^13.5.0",
|
|
50
50
|
"@atlaskit/theme": "^15.0.0",
|
|
51
51
|
"@atlaskit/tokens": "^3.3.0",
|
|
52
52
|
"@babel/runtime": "^7.0.0",
|