@atlaskit/renderer 120.5.10 → 121.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 +16 -0
- package/dist/cjs/react/nodes/blockCard.js +1 -1
- package/dist/cjs/ui/Expand.js +1 -1
- package/dist/cjs/ui/Renderer/RendererStyleContainer.js +2 -2
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/blockCard.js +1 -1
- package/dist/es2019/ui/Expand.js +1 -1
- package/dist/es2019/ui/Renderer/RendererStyleContainer.js +2 -2
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/blockCard.js +1 -1
- package/dist/esm/ui/Expand.js +1 -1
- package/dist/esm/ui/Renderer/RendererStyleContainer.js +2 -2
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 121.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e5001e144b74e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e5001e144b74e) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 121.0.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`3b5b4a919aaaf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3b5b4a919aaaf) -
|
|
16
|
+
Internal changes to how border radius is applied.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 120.5.10
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -26,7 +26,7 @@ var _PortalContext = require("../../ui/Renderer/PortalContext");
|
|
|
26
26
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
27
27
|
|
|
28
28
|
var datasourceContainerStyle = (0, _react.css)({
|
|
29
|
-
borderRadius: "var(--ds-
|
|
29
|
+
borderRadius: "var(--ds-radius-large, 8px)",
|
|
30
30
|
border: "1px solid ".concat("var(--ds-border, ".concat(_colors.N40, ")")),
|
|
31
31
|
overflow: 'hidden',
|
|
32
32
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-space
|
package/dist/cjs/ui/Expand.js
CHANGED
|
@@ -47,7 +47,7 @@ var containerStyles = (0, _react.css)({
|
|
|
47
47
|
borderWidth: '1px',
|
|
48
48
|
borderStyle: 'solid',
|
|
49
49
|
borderColor: 'transparent',
|
|
50
|
-
borderRadius: "var(--ds-
|
|
50
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
51
51
|
minHeight: '25px',
|
|
52
52
|
background: "var(--ds-background-neutral-subtle, transparent)",
|
|
53
53
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
@@ -839,7 +839,7 @@ var baseOtherStyles = (0, _react.css)((0, _defineProperty2.default)((0, _defineP
|
|
|
839
839
|
},
|
|
840
840
|
'& span.date-node': {
|
|
841
841
|
background: "var(--ds-background-neutral, ".concat(_colors.N30A, ")"),
|
|
842
|
-
borderRadius: "var(--ds-
|
|
842
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
843
843
|
color: "var(--ds-text, ".concat(_colors.N800, ")"),
|
|
844
844
|
padding: "var(--ds-space-025, 2px)".concat(" ", "var(--ds-space-050, 4px)"),
|
|
845
845
|
margin: "0 1px",
|
|
@@ -1320,7 +1320,7 @@ var codeBlockAndLayoutStyles = (0, _react.css)((0, _defineProperty2.default)((0,
|
|
|
1320
1320
|
maxWidth: '100%',
|
|
1321
1321
|
display: 'block',
|
|
1322
1322
|
position: 'relative',
|
|
1323
|
-
borderRadius: "var(--ds-
|
|
1323
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
1324
1324
|
/*
|
|
1325
1325
|
* The overall renderer has word-wrap: break; which causes issues with
|
|
1326
1326
|
* code block line numbers in Safari / iOS.
|
|
@@ -63,7 +63,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
63
63
|
var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
64
64
|
var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
65
65
|
var packageName = "@atlaskit/renderer";
|
|
66
|
-
var packageVersion = "
|
|
66
|
+
var packageVersion = "121.0.0";
|
|
67
67
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
68
68
|
containerName: 'ak-renderer-wrapper',
|
|
69
69
|
containerType: 'inline-size'
|
|
@@ -18,7 +18,7 @@ import { N40 } from '@atlaskit/theme/colors';
|
|
|
18
18
|
import { calcBreakoutWidth, canRenderDatasource } from '@atlaskit/editor-common/utils';
|
|
19
19
|
import { usePortal } from '../../ui/Renderer/PortalContext';
|
|
20
20
|
const datasourceContainerStyle = css({
|
|
21
|
-
borderRadius: `${"var(--ds-
|
|
21
|
+
borderRadius: `${"var(--ds-radius-large, 8px)"}`,
|
|
22
22
|
border: `1px solid ${`var(--ds-border, ${N40})`}`,
|
|
23
23
|
overflow: 'hidden',
|
|
24
24
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-space
|
package/dist/es2019/ui/Expand.js
CHANGED
|
@@ -35,7 +35,7 @@ const containerStyles = css({
|
|
|
35
35
|
borderWidth: '1px',
|
|
36
36
|
borderStyle: 'solid',
|
|
37
37
|
borderColor: 'transparent',
|
|
38
|
-
borderRadius: "var(--ds-
|
|
38
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
39
39
|
minHeight: '25px',
|
|
40
40
|
background: "var(--ds-background-neutral-subtle, transparent)",
|
|
41
41
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
@@ -976,7 +976,7 @@ const baseOtherStyles = css({
|
|
|
976
976
|
},
|
|
977
977
|
'& span.date-node': {
|
|
978
978
|
background: `var(--ds-background-neutral, ${N30A})`,
|
|
979
|
-
borderRadius: "var(--ds-
|
|
979
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
980
980
|
color: `var(--ds-text, ${N800})`,
|
|
981
981
|
padding: `${"var(--ds-space-025, 2px)"} ${"var(--ds-space-050, 4px)"}`,
|
|
982
982
|
margin: `0 1px`,
|
|
@@ -1696,7 +1696,7 @@ const codeBlockAndLayoutStyles = css({
|
|
|
1696
1696
|
maxWidth: '100%',
|
|
1697
1697
|
display: 'block',
|
|
1698
1698
|
position: 'relative',
|
|
1699
|
-
borderRadius: "var(--ds-
|
|
1699
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
1700
1700
|
/*
|
|
1701
1701
|
* The overall renderer has word-wrap: break; which causes issues with
|
|
1702
1702
|
* code block line numbers in Safari / iOS.
|
|
@@ -49,7 +49,7 @@ import { expValEqualsNoExposure } from '@atlaskit/tmp-editor-statsig/exp-val-equ
|
|
|
49
49
|
export const NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
50
50
|
export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
51
51
|
const packageName = "@atlaskit/renderer";
|
|
52
|
-
const packageVersion = "
|
|
52
|
+
const packageVersion = "121.0.0";
|
|
53
53
|
const setAsQueryContainerStyles = css({
|
|
54
54
|
containerName: 'ak-renderer-wrapper',
|
|
55
55
|
containerType: 'inline-size'
|
|
@@ -18,7 +18,7 @@ import { N40 } from '@atlaskit/theme/colors';
|
|
|
18
18
|
import { calcBreakoutWidth, canRenderDatasource } from '@atlaskit/editor-common/utils';
|
|
19
19
|
import { usePortal } from '../../ui/Renderer/PortalContext';
|
|
20
20
|
var datasourceContainerStyle = css({
|
|
21
|
-
borderRadius: "var(--ds-
|
|
21
|
+
borderRadius: "var(--ds-radius-large, 8px)",
|
|
22
22
|
border: "1px solid ".concat("var(--ds-border, ".concat(N40, ")")),
|
|
23
23
|
overflow: 'hidden',
|
|
24
24
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-space
|
package/dist/esm/ui/Expand.js
CHANGED
|
@@ -38,7 +38,7 @@ var containerStyles = css({
|
|
|
38
38
|
borderWidth: '1px',
|
|
39
39
|
borderStyle: 'solid',
|
|
40
40
|
borderColor: 'transparent',
|
|
41
|
-
borderRadius: "var(--ds-
|
|
41
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
42
42
|
minHeight: '25px',
|
|
43
43
|
background: "var(--ds-background-neutral-subtle, transparent)",
|
|
44
44
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
@@ -832,7 +832,7 @@ var baseOtherStyles = css(_defineProperty(_defineProperty(_defineProperty(_defin
|
|
|
832
832
|
},
|
|
833
833
|
'& span.date-node': {
|
|
834
834
|
background: "var(--ds-background-neutral, ".concat(N30A, ")"),
|
|
835
|
-
borderRadius: "var(--ds-
|
|
835
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
836
836
|
color: "var(--ds-text, ".concat(N800, ")"),
|
|
837
837
|
padding: "var(--ds-space-025, 2px)".concat(" ", "var(--ds-space-050, 4px)"),
|
|
838
838
|
margin: "0 1px",
|
|
@@ -1313,7 +1313,7 @@ var codeBlockAndLayoutStyles = css(_defineProperty(_defineProperty(_defineProper
|
|
|
1313
1313
|
maxWidth: '100%',
|
|
1314
1314
|
display: 'block',
|
|
1315
1315
|
position: 'relative',
|
|
1316
|
-
borderRadius: "var(--ds-
|
|
1316
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
1317
1317
|
/*
|
|
1318
1318
|
* The overall renderer has word-wrap: break; which causes issues with
|
|
1319
1319
|
* code block line numbers in Safari / iOS.
|
|
@@ -54,7 +54,7 @@ import { expValEqualsNoExposure } from '@atlaskit/tmp-editor-statsig/exp-val-equ
|
|
|
54
54
|
export var NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
55
55
|
export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
56
56
|
var packageName = "@atlaskit/renderer";
|
|
57
|
-
var packageVersion = "
|
|
57
|
+
var packageVersion = "121.0.0";
|
|
58
58
|
var setAsQueryContainerStyles = css({
|
|
59
59
|
containerName: 'ak-renderer-wrapper',
|
|
60
60
|
containerType: 'inline-size'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "121.0.1",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
40
40
|
"@atlaskit/icon": "^28.1.0",
|
|
41
41
|
"@atlaskit/link": "^3.2.0",
|
|
42
|
-
"@atlaskit/link-datasource": "^4.
|
|
42
|
+
"@atlaskit/link-datasource": "^4.21.0",
|
|
43
43
|
"@atlaskit/media-card": "^79.5.0",
|
|
44
44
|
"@atlaskit/media-client": "^35.3.0",
|
|
45
45
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags-react": "^0.3.0",
|
|
52
52
|
"@atlaskit/react-ufo": "^4.5.0",
|
|
53
|
-
"@atlaskit/smart-card": "^40.
|
|
53
|
+
"@atlaskit/smart-card": "^40.17.0",
|
|
54
54
|
"@atlaskit/status": "^3.0.0",
|
|
55
55
|
"@atlaskit/task-decision": "^19.2.0",
|
|
56
56
|
"@atlaskit/theme": "^20.0.0",
|
|
57
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
57
|
+
"@atlaskit/tmp-editor-statsig": "^12.1.0",
|
|
58
58
|
"@atlaskit/tokens": "^6.1.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": "^108.0.0",
|
|
72
72
|
"@atlaskit/link-provider": "^3.7.0",
|
|
73
73
|
"@atlaskit/media-core": "^37.0.0",
|
|
74
74
|
"react": "^18.2.0",
|