@atlaskit/renderer 123.4.1 → 123.4.2
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/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 123.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`407e1dc11eeed`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/407e1dc11eeed) -
|
|
8
|
+
Minor changes to border radius values.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 123.4.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -527,7 +527,7 @@ var ruleSharedStyles = (0, _react.css)({
|
|
|
527
527
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage/preview, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
528
528
|
margin: "".concat(_editorSharedStyles.akEditorLineHeight, "em 0"),
|
|
529
529
|
height: '2px',
|
|
530
|
-
borderRadius:
|
|
530
|
+
borderRadius: "var(--ds-radius-full, 9999px)"
|
|
531
531
|
}
|
|
532
532
|
});
|
|
533
533
|
var paragraphSharedStylesWithEditorUGC = (0, _react.css)({
|
|
@@ -68,7 +68,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
68
68
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
69
69
|
var TABLE_WIDTH_INFO_TIMEOUT = 10000;
|
|
70
70
|
var packageName = "@atlaskit/renderer";
|
|
71
|
-
var packageVersion = "
|
|
71
|
+
var packageVersion = "123.4.1";
|
|
72
72
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
73
73
|
containerName: 'ak-renderer-wrapper',
|
|
74
74
|
containerType: 'inline-size'
|
|
@@ -603,7 +603,7 @@ const ruleSharedStyles = css({
|
|
|
603
603
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage/preview, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
604
604
|
margin: `${akEditorLineHeight}em 0`,
|
|
605
605
|
height: '2px',
|
|
606
|
-
borderRadius:
|
|
606
|
+
borderRadius: "var(--ds-radius-full, 9999px)"
|
|
607
607
|
}
|
|
608
608
|
});
|
|
609
609
|
const paragraphSharedStylesWithEditorUGC = css({
|
|
@@ -54,7 +54,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
54
54
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
55
55
|
const TABLE_WIDTH_INFO_TIMEOUT = 10000;
|
|
56
56
|
const packageName = "@atlaskit/renderer";
|
|
57
|
-
const packageVersion = "
|
|
57
|
+
const packageVersion = "123.4.1";
|
|
58
58
|
const setAsQueryContainerStyles = css({
|
|
59
59
|
containerName: 'ak-renderer-wrapper',
|
|
60
60
|
containerType: 'inline-size'
|
|
@@ -520,7 +520,7 @@ var ruleSharedStyles = css({
|
|
|
520
520
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage/preview, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
521
521
|
margin: "".concat(akEditorLineHeight, "em 0"),
|
|
522
522
|
height: '2px',
|
|
523
|
-
borderRadius:
|
|
523
|
+
borderRadius: "var(--ds-radius-full, 9999px)"
|
|
524
524
|
}
|
|
525
525
|
});
|
|
526
526
|
var paragraphSharedStylesWithEditorUGC = css({
|
|
@@ -59,7 +59,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
59
59
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
60
60
|
var TABLE_WIDTH_INFO_TIMEOUT = 10000;
|
|
61
61
|
var packageName = "@atlaskit/renderer";
|
|
62
|
-
var packageVersion = "
|
|
62
|
+
var packageVersion = "123.4.1";
|
|
63
63
|
var setAsQueryContainerStyles = css({
|
|
64
64
|
containerName: 'ak-renderer-wrapper',
|
|
65
65
|
containerType: 'inline-size'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "123.4.
|
|
3
|
+
"version": "123.4.2",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
53
53
|
"@atlaskit/platform-feature-flags-react": "^0.3.0",
|
|
54
54
|
"@atlaskit/react-ufo": "^4.9.0",
|
|
55
|
-
"@atlaskit/smart-card": "^42.
|
|
55
|
+
"@atlaskit/smart-card": "^42.2.0",
|
|
56
56
|
"@atlaskit/status": "^3.0.0",
|
|
57
57
|
"@atlaskit/task-decision": "^19.2.0",
|
|
58
58
|
"@atlaskit/theme": "^21.0.0",
|
|
59
|
-
"@atlaskit/tmp-editor-statsig": "^12.
|
|
59
|
+
"@atlaskit/tmp-editor-statsig": "^12.29.0",
|
|
60
60
|
"@atlaskit/tokens": "^6.3.0",
|
|
61
61
|
"@atlaskit/tooltip": "^20.4.0",
|
|
62
62
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"uuid": "^3.1.0"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@atlaskit/editor-common": "^109.
|
|
73
|
+
"@atlaskit/editor-common": "^109.13.0",
|
|
74
74
|
"@atlaskit/link-provider": "^4.0.0",
|
|
75
75
|
"@atlaskit/media-core": "^37.0.0",
|
|
76
76
|
"react": "^18.2.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@atlaskit/modal-dialog": "^14.3.0",
|
|
93
93
|
"@atlaskit/navigation-next": "patch:@atlaskit/navigation-next@npm%3A9.0.17#~/.yarn/patches/@atlaskit-navigation-next-npm-9.0.17-958ca0ab9d.patch",
|
|
94
94
|
"@atlaskit/profilecard": "^24.13.0",
|
|
95
|
-
"@atlaskit/util-data-test": "^18.
|
|
95
|
+
"@atlaskit/util-data-test": "^18.3.0",
|
|
96
96
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
97
97
|
"@testing-library/react": "^13.4.0",
|
|
98
98
|
"@testing-library/react-hooks": "^8.0.1",
|