@atlaskit/page-layout 4.2.11 → 4.2.12
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 +8 -0
- package/dist/cjs/components/resize-control/resize-button.js +1 -1
- package/dist/cjs/components/skip-links/skip-link-components.js +1 -1
- package/dist/es2019/components/resize-control/resize-button.js +1 -1
- package/dist/es2019/components/skip-links/skip-link-components.js +1 -1
- package/dist/esm/components/resize-control/resize-button.js +1 -1
- package/dist/esm/components/skip-links/skip-link-components.js +1 -1
- package/package.json +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/page-layout
|
|
2
2
|
|
|
3
|
+
## 4.2.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`255837cfba315`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/255837cfba315) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 4.2.11
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -40,7 +40,7 @@ var resizeIconButtonStyles = (0, _react.css)({
|
|
|
40
40
|
position: 'absolute',
|
|
41
41
|
backgroundColor: "var(--ds-surface-overlay, ".concat(_colors.N0, ")"),
|
|
42
42
|
border: 0,
|
|
43
|
-
borderRadius: "var(--ds-
|
|
43
|
+
borderRadius: "var(--ds-radius-full, 50%)",
|
|
44
44
|
boxShadow: "0 0 0 1px ".concat(_colors.N30A, ", 0 2px 4px 1px ").concat(_colors.N30A),
|
|
45
45
|
color: "var(--ds-text-subtle, ".concat(_colors.N200, ")"),
|
|
46
46
|
cursor: 'pointer',
|
|
@@ -27,7 +27,7 @@ var skipLinkStyles = (0, _react.css)({
|
|
|
27
27
|
zIndex: -1,
|
|
28
28
|
background: "var(--ds-surface-overlay, white)",
|
|
29
29
|
border: 'none',
|
|
30
|
-
borderRadius: "var(--ds-
|
|
30
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
31
31
|
boxShadow: "var(--ds-shadow-overlay, ".concat("0 0 0 1px ".concat(_colors.N30A, ", 0 2px 10px ").concat(_colors.N30A, ", 0 0 20px -4px ").concat(_colors.N60A), ")"),
|
|
32
32
|
insetInlineStart: -999999,
|
|
33
33
|
opacity: 0,
|
|
@@ -34,7 +34,7 @@ const resizeIconButtonStyles = css({
|
|
|
34
34
|
position: 'absolute',
|
|
35
35
|
backgroundColor: `var(--ds-surface-overlay, ${N0})`,
|
|
36
36
|
border: 0,
|
|
37
|
-
borderRadius: "var(--ds-
|
|
37
|
+
borderRadius: "var(--ds-radius-full, 50%)",
|
|
38
38
|
boxShadow: `0 0 0 1px ${N30A}, 0 2px 4px 1px ${N30A}`,
|
|
39
39
|
color: `var(--ds-text-subtle, ${N200})`,
|
|
40
40
|
cursor: 'pointer',
|
|
@@ -20,7 +20,7 @@ const skipLinkStyles = css({
|
|
|
20
20
|
zIndex: -1,
|
|
21
21
|
background: "var(--ds-surface-overlay, white)",
|
|
22
22
|
border: 'none',
|
|
23
|
-
borderRadius: "var(--ds-
|
|
23
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
24
24
|
boxShadow: `var(--ds-shadow-overlay, ${`0 0 0 1px ${N30A}, 0 2px 10px ${N30A}, 0 0 20px -4px ${N60A}`})`,
|
|
25
25
|
insetInlineStart: -999999,
|
|
26
26
|
opacity: 0,
|
|
@@ -34,7 +34,7 @@ var resizeIconButtonStyles = css({
|
|
|
34
34
|
position: 'absolute',
|
|
35
35
|
backgroundColor: "var(--ds-surface-overlay, ".concat(N0, ")"),
|
|
36
36
|
border: 0,
|
|
37
|
-
borderRadius: "var(--ds-
|
|
37
|
+
borderRadius: "var(--ds-radius-full, 50%)",
|
|
38
38
|
boxShadow: "0 0 0 1px ".concat(N30A, ", 0 2px 4px 1px ").concat(N30A),
|
|
39
39
|
color: "var(--ds-text-subtle, ".concat(N200, ")"),
|
|
40
40
|
cursor: 'pointer',
|
|
@@ -24,7 +24,7 @@ var skipLinkStyles = css({
|
|
|
24
24
|
zIndex: -1,
|
|
25
25
|
background: "var(--ds-surface-overlay, white)",
|
|
26
26
|
border: 'none',
|
|
27
|
-
borderRadius: "var(--ds-
|
|
27
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
28
28
|
boxShadow: "var(--ds-shadow-overlay, ".concat("0 0 0 1px ".concat(N30A, ", 0 2px 10px ").concat(N30A, ", 0 0 20px -4px ").concat(N60A), ")"),
|
|
29
29
|
insetInlineStart: -999999,
|
|
30
30
|
opacity: 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-layout",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.12",
|
|
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/"
|
|
@@ -24,9 +24,6 @@
|
|
|
24
24
|
"**/*.compiled.css"
|
|
25
25
|
],
|
|
26
26
|
"atlaskit:src": "src/index.tsx",
|
|
27
|
-
"af:exports": {
|
|
28
|
-
".": "./src/index.tsx"
|
|
29
|
-
},
|
|
30
27
|
"atlassian": {
|
|
31
28
|
"team": "Design System Team",
|
|
32
29
|
"website": {
|
|
@@ -66,7 +63,7 @@
|
|
|
66
63
|
"@atlaskit/logo": "^19.7.0",
|
|
67
64
|
"@atlaskit/menu": "^8.3.0",
|
|
68
65
|
"@atlaskit/popup": "^4.3.0",
|
|
69
|
-
"@atlaskit/section-message": "^8.
|
|
66
|
+
"@atlaskit/section-message": "^8.7.0",
|
|
70
67
|
"@atlaskit/side-navigation": "^11.0.0",
|
|
71
68
|
"@atlaskit/tooltip": "^20.4.0",
|
|
72
69
|
"@atlassian/ssr-tests": "^0.3.0",
|