@atlaskit/renderer 121.3.1 → 122.0.1
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 +14 -0
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockButtonContainer.js +3 -3
- package/dist/cjs/ui/Expand.js +1 -1
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockButtonContainer.js +3 -3
- package/dist/es2019/ui/Expand.js +1 -1
- package/dist/esm/react/nodes/codeBlock/components/codeBlockButtonContainer.js +3 -3
- package/dist/esm/ui/Expand.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 122.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`f0662cd7a143e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f0662cd7a143e) -
|
|
8
|
+
Internal changes to how borders are applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 122.0.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 121.3.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -34,13 +34,13 @@ var codeBlockButtonsStyle = (0, _react.css)({
|
|
|
34
34
|
height: '32px',
|
|
35
35
|
width: '32px',
|
|
36
36
|
border: "2px solid ".concat("var(--ds-border, ".concat(_colors.N0, ")")),
|
|
37
|
-
borderRadius:
|
|
37
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
38
38
|
marginLeft: "var(--ds-space-050, 4px)",
|
|
39
39
|
padding: "var(--ds-space-025, 2px)",
|
|
40
40
|
background: "".concat("var(--ds-surface-overlay, ".concat(_colors.N20, ")")),
|
|
41
41
|
color: "var(--ds-icon, rgb(66, 82, 110))",
|
|
42
42
|
'&:hover': {
|
|
43
|
-
borderWidth:
|
|
43
|
+
borderWidth: "var(--ds-border-width-selected, 2px)",
|
|
44
44
|
backgroundColor: "".concat("var(--ds-surface-overlay-hovered, ".concat(_colors.N30, ")")),
|
|
45
45
|
height: '32px',
|
|
46
46
|
width: '32px'
|
|
@@ -48,7 +48,7 @@ var codeBlockButtonsStyle = (0, _react.css)({
|
|
|
48
48
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
49
49
|
'&.clicked': {
|
|
50
50
|
backgroundColor: "".concat("var(--ds-background-neutral-bold-pressed, ".concat(_colors.N700, ")")),
|
|
51
|
-
borderRadius:
|
|
51
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
52
52
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
|
|
53
53
|
color: "".concat("var(--ds-icon-inverse, ".concat(_colors.N0, ")"), " !important")
|
|
54
54
|
}
|
package/dist/cjs/ui/Expand.js
CHANGED
|
@@ -44,7 +44,7 @@ var titleStyles = (0, _react.css)({
|
|
|
44
44
|
textAlign: 'left'
|
|
45
45
|
});
|
|
46
46
|
var containerStyles = (0, _react.css)({
|
|
47
|
-
borderWidth:
|
|
47
|
+
borderWidth: "var(--ds-border-width, 1px)",
|
|
48
48
|
borderStyle: 'solid',
|
|
49
49
|
borderColor: 'transparent',
|
|
50
50
|
borderRadius: "var(--ds-radius-small, 4px)",
|
|
@@ -26,13 +26,13 @@ const codeBlockButtonsStyle = css({
|
|
|
26
26
|
height: '32px',
|
|
27
27
|
width: '32px',
|
|
28
28
|
border: `2px solid ${`var(--ds-border, ${N0})`}`,
|
|
29
|
-
borderRadius:
|
|
29
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
30
30
|
marginLeft: "var(--ds-space-050, 4px)",
|
|
31
31
|
padding: "var(--ds-space-025, 2px)",
|
|
32
32
|
background: `${`var(--ds-surface-overlay, ${N20})`}`,
|
|
33
33
|
color: `${"var(--ds-icon, rgb(66, 82, 110))"}`,
|
|
34
34
|
'&:hover': {
|
|
35
|
-
borderWidth:
|
|
35
|
+
borderWidth: "var(--ds-border-width-selected, 2px)",
|
|
36
36
|
backgroundColor: `${`var(--ds-surface-overlay-hovered, ${N30})`}`,
|
|
37
37
|
height: '32px',
|
|
38
38
|
width: '32px'
|
|
@@ -40,7 +40,7 @@ const codeBlockButtonsStyle = css({
|
|
|
40
40
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
41
41
|
'&.clicked': {
|
|
42
42
|
backgroundColor: `${`var(--ds-background-neutral-bold-pressed, ${N700})`}`,
|
|
43
|
-
borderRadius:
|
|
43
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
44
44
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
|
|
45
45
|
color: `${`var(--ds-icon-inverse, ${N0})`} !important`
|
|
46
46
|
}
|
package/dist/es2019/ui/Expand.js
CHANGED
|
@@ -32,7 +32,7 @@ const titleStyles = css({
|
|
|
32
32
|
textAlign: 'left'
|
|
33
33
|
});
|
|
34
34
|
const containerStyles = css({
|
|
35
|
-
borderWidth:
|
|
35
|
+
borderWidth: "var(--ds-border-width, 1px)",
|
|
36
36
|
borderStyle: 'solid',
|
|
37
37
|
borderColor: 'transparent',
|
|
38
38
|
borderRadius: "var(--ds-radius-small, 4px)",
|
|
@@ -26,13 +26,13 @@ var codeBlockButtonsStyle = css({
|
|
|
26
26
|
height: '32px',
|
|
27
27
|
width: '32px',
|
|
28
28
|
border: "2px solid ".concat("var(--ds-border, ".concat(N0, ")")),
|
|
29
|
-
borderRadius:
|
|
29
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
30
30
|
marginLeft: "var(--ds-space-050, 4px)",
|
|
31
31
|
padding: "var(--ds-space-025, 2px)",
|
|
32
32
|
background: "".concat("var(--ds-surface-overlay, ".concat(N20, ")")),
|
|
33
33
|
color: "var(--ds-icon, rgb(66, 82, 110))",
|
|
34
34
|
'&:hover': {
|
|
35
|
-
borderWidth:
|
|
35
|
+
borderWidth: "var(--ds-border-width-selected, 2px)",
|
|
36
36
|
backgroundColor: "".concat("var(--ds-surface-overlay-hovered, ".concat(N30, ")")),
|
|
37
37
|
height: '32px',
|
|
38
38
|
width: '32px'
|
|
@@ -40,7 +40,7 @@ var codeBlockButtonsStyle = css({
|
|
|
40
40
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
41
41
|
'&.clicked': {
|
|
42
42
|
backgroundColor: "".concat("var(--ds-background-neutral-bold-pressed, ".concat(N700, ")")),
|
|
43
|
-
borderRadius:
|
|
43
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
44
44
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
|
|
45
45
|
color: "".concat("var(--ds-icon-inverse, ".concat(N0, ")"), " !important")
|
|
46
46
|
}
|
package/dist/esm/ui/Expand.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "122.0.1",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaskit/adf-schema": "^
|
|
26
|
+
"@atlaskit/adf-schema": "^51.0.0",
|
|
27
27
|
"@atlaskit/adf-utils": "^19.21.0",
|
|
28
28
|
"@atlaskit/analytics-listeners": "^9.0.0",
|
|
29
29
|
"@atlaskit/analytics-namespaced-context": "^7.0.0",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"@atlaskit/media-viewer": "^52.4.0",
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags-react": "^0.3.0",
|
|
52
|
-
"@atlaskit/react-ufo": "^4.
|
|
53
|
-
"@atlaskit/smart-card": "^40.
|
|
52
|
+
"@atlaskit/react-ufo": "^4.6.0",
|
|
53
|
+
"@atlaskit/smart-card": "^40.22.0",
|
|
54
54
|
"@atlaskit/status": "^3.0.0",
|
|
55
55
|
"@atlaskit/task-decision": "^19.2.0",
|
|
56
|
-
"@atlaskit/theme": "^
|
|
57
|
-
"@atlaskit/tmp-editor-statsig": "^12.
|
|
56
|
+
"@atlaskit/theme": "^21.0.0",
|
|
57
|
+
"@atlaskit/tmp-editor-statsig": "^12.10.0",
|
|
58
58
|
"@atlaskit/tokens": "^6.3.0",
|
|
59
59
|
"@atlaskit/tooltip": "^20.4.0",
|
|
60
60
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"uuid": "^3.1.0"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"@atlaskit/editor-common": "^
|
|
71
|
+
"@atlaskit/editor-common": "^109.1.0",
|
|
72
72
|
"@atlaskit/link-provider": "^3.7.0",
|
|
73
73
|
"@atlaskit/media-core": "^37.0.0",
|
|
74
74
|
"react": "^18.2.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@atlaskit/media-test-helpers": "^39.0.0",
|
|
89
89
|
"@atlaskit/mention": "^24.2.0",
|
|
90
90
|
"@atlaskit/modal-dialog": "^14.3.0",
|
|
91
|
-
"@atlaskit/navigation-next": "patch:@atlaskit/navigation-next@npm%3A9.0.17#~/.yarn/patches/@atlaskit-navigation-next-npm-9.0.17-
|
|
91
|
+
"@atlaskit/navigation-next": "patch:@atlaskit/navigation-next@npm%3A9.0.17#~/.yarn/patches/@atlaskit-navigation-next-npm-9.0.17-958ca0ab9d.patch",
|
|
92
92
|
"@atlaskit/profilecard": "^24.11.0",
|
|
93
93
|
"@atlaskit/util-data-test": "^18.1.0",
|
|
94
94
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"@types/react-test-renderer": "^18.0.6",
|
|
100
100
|
"ajv": "^6.12.6",
|
|
101
101
|
"enzyme": "^3.10.0",
|
|
102
|
-
"jsdom": "
|
|
102
|
+
"jsdom": "root:*",
|
|
103
103
|
"mockdate": "^3.0.5",
|
|
104
104
|
"puppeteer": "13.7.0",
|
|
105
105
|
"react-live-clock": "^5.0.0",
|