@atlaskit/page-layout 4.2.38 → 4.2.39
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,13 @@
|
|
|
1
1
|
# @atlaskit/page-layout
|
|
2
2
|
|
|
3
|
+
## 4.2.39
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ddd049a745d38`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ddd049a745d38) -
|
|
8
|
+
Internal change to how legacy colors are applied. No visual changes.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 4.2.38
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -13,7 +13,6 @@ var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/chevron-
|
|
|
13
13
|
var _curves = require("@atlaskit/motion/curves");
|
|
14
14
|
var _durations = require("@atlaskit/motion/durations");
|
|
15
15
|
var _responsive = require("@atlaskit/primitives/responsive");
|
|
16
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
17
16
|
var _constants = require("../../common/constants");
|
|
18
17
|
var _excluded = ["isLeftSidebarCollapsed", "label", "onClick", "testId"],
|
|
19
18
|
_excluded2 = ["css"];
|
|
@@ -42,7 +41,7 @@ var resizeIconButtonStyles = (0, _react.css)({
|
|
|
42
41
|
backgroundColor: "var(--ds-surface-overlay, #FFFFFF)",
|
|
43
42
|
border: 0,
|
|
44
43
|
borderRadius: "var(--ds-radius-full, 50%)",
|
|
45
|
-
boxShadow: "0 0 0 1px ".concat(
|
|
44
|
+
boxShadow: "0 0 0 1px ".concat('rgba(9, 30, 66, 0.08)', ", 0 2px 4px 1px ", 'rgba(9, 30, 66, 0.08)'),
|
|
46
45
|
color: "var(--ds-text-subtle, #505258)",
|
|
47
46
|
cursor: 'pointer',
|
|
48
47
|
insetBlockStart: "var(--ds-space-400, 32px)",
|
|
@@ -12,7 +12,6 @@ import ChevronRight from '@atlaskit/icon/core/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';
|
|
15
|
-
import { N30A } from '@atlaskit/theme/colors';
|
|
16
15
|
import { RESIZE_BUTTON_SELECTOR } from '../../common/constants';
|
|
17
16
|
const hitAreaSpanStyles = css({
|
|
18
17
|
position: 'absolute',
|
|
@@ -35,7 +34,7 @@ const resizeIconButtonStyles = css({
|
|
|
35
34
|
backgroundColor: "var(--ds-surface-overlay, #FFFFFF)",
|
|
36
35
|
border: 0,
|
|
37
36
|
borderRadius: "var(--ds-radius-full, 50%)",
|
|
38
|
-
boxShadow: `0 0 0 1px ${
|
|
37
|
+
boxShadow: `0 0 0 1px ${'rgba(9, 30, 66, 0.08)'}, 0 2px 4px 1px ${'rgba(9, 30, 66, 0.08)'}`,
|
|
39
38
|
color: "var(--ds-text-subtle, #505258)",
|
|
40
39
|
cursor: 'pointer',
|
|
41
40
|
insetBlockStart: "var(--ds-space-400, 32px)",
|
|
@@ -16,7 +16,6 @@ import ChevronRight from '@atlaskit/icon/core/chevron-right';
|
|
|
16
16
|
import { easeOut } from '@atlaskit/motion/curves';
|
|
17
17
|
import { durations } from '@atlaskit/motion/durations';
|
|
18
18
|
import { UNSAFE_media } from '@atlaskit/primitives/responsive';
|
|
19
|
-
import { N30A } from '@atlaskit/theme/colors';
|
|
20
19
|
import { RESIZE_BUTTON_SELECTOR } from '../../common/constants';
|
|
21
20
|
var hitAreaSpanStyles = css({
|
|
22
21
|
position: 'absolute',
|
|
@@ -36,7 +35,7 @@ var resizeIconButtonStyles = css({
|
|
|
36
35
|
backgroundColor: "var(--ds-surface-overlay, #FFFFFF)",
|
|
37
36
|
border: 0,
|
|
38
37
|
borderRadius: "var(--ds-radius-full, 50%)",
|
|
39
|
-
boxShadow: "0 0 0 1px ".concat(
|
|
38
|
+
boxShadow: "0 0 0 1px ".concat('rgba(9, 30, 66, 0.08)', ", 0 2px 4px 1px ", 'rgba(9, 30, 66, 0.08)'),
|
|
40
39
|
color: "var(--ds-text-subtle, #505258)",
|
|
41
40
|
cursor: 'pointer',
|
|
42
41
|
insetBlockStart: "var(--ds-space-400, 32px)",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-layout",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.39",
|
|
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/"
|
|
@@ -47,10 +47,9 @@
|
|
|
47
47
|
"@atlaskit/ds-lib": "^7.0.0",
|
|
48
48
|
"@atlaskit/icon": "^34.0.0",
|
|
49
49
|
"@atlaskit/link": "^3.4.0",
|
|
50
|
-
"@atlaskit/motion": "^5.
|
|
50
|
+
"@atlaskit/motion": "^5.6.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
52
52
|
"@atlaskit/primitives": "^18.1.0",
|
|
53
|
-
"@atlaskit/theme": "^23.0.0",
|
|
54
53
|
"@atlaskit/tokens": "^12.0.0",
|
|
55
54
|
"@babel/runtime": "^7.0.0",
|
|
56
55
|
"@emotion/react": "^11.7.1",
|