@atlaskit/renderer 109.50.0 → 109.50.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 +9 -0
- package/dist/cjs/ui/Renderer/breakout-ssr.js +3 -0
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/ui/Renderer/breakout-ssr.js +3 -0
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/ui/Renderer/breakout-ssr.js +3 -0
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/types/ui/Renderer/breakout-ssr.d.ts +5 -0
- package/dist/types-ts4.5/ui/Renderer/breakout-ssr.d.ts +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 109.50.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#131172](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131172)
|
|
8
|
+
[`4b528c8da4120`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4b528c8da4120) -
|
|
9
|
+
No putting visibility hidden on width detector childen if in SSR but no breakout inline script
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 109.50.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -164,6 +164,9 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldFixTableResizing) {
|
|
|
164
164
|
childList: true,
|
|
165
165
|
subtree: true
|
|
166
166
|
});
|
|
167
|
+
if (shouldFixTableResizing) {
|
|
168
|
+
window.__SSR_BREAKOUT_OBSERVED = true;
|
|
169
|
+
}
|
|
167
170
|
|
|
168
171
|
/**
|
|
169
172
|
* Using window load event to unsubscribe from mutation observer, as at this stage document is fully rendered.
|
|
@@ -60,7 +60,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
60
60
|
var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
61
61
|
var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
62
62
|
var packageName = "@atlaskit/renderer";
|
|
63
|
-
var packageVersion = "109.50.
|
|
63
|
+
var packageVersion = "109.50.1";
|
|
64
64
|
var defaultNodeComponents = exports.defaultNodeComponents = _nodes.nodeToReact;
|
|
65
65
|
var Renderer = exports.Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
66
66
|
(0, _inherits2.default)(Renderer, _PureComponent);
|
|
@@ -166,6 +166,9 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldFixTableResizing) {
|
|
|
166
166
|
childList: true,
|
|
167
167
|
subtree: true
|
|
168
168
|
});
|
|
169
|
+
if (shouldFixTableResizing) {
|
|
170
|
+
window.__SSR_BREAKOUT_OBSERVED = true;
|
|
171
|
+
}
|
|
169
172
|
|
|
170
173
|
/**
|
|
171
174
|
* Using window load event to unsubscribe from mutation observer, as at this stage document is fully rendered.
|
|
@@ -42,7 +42,7 @@ import { nodeToReact } from '../../react/nodes';
|
|
|
42
42
|
export const NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
43
43
|
export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
44
44
|
const packageName = "@atlaskit/renderer";
|
|
45
|
-
const packageVersion = "109.50.
|
|
45
|
+
const packageVersion = "109.50.1";
|
|
46
46
|
export const defaultNodeComponents = nodeToReact;
|
|
47
47
|
export class Renderer extends PureComponent {
|
|
48
48
|
constructor(props) {
|
|
@@ -155,6 +155,9 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldFixTableResizing) {
|
|
|
155
155
|
childList: true,
|
|
156
156
|
subtree: true
|
|
157
157
|
});
|
|
158
|
+
if (shouldFixTableResizing) {
|
|
159
|
+
window.__SSR_BREAKOUT_OBSERVED = true;
|
|
160
|
+
}
|
|
158
161
|
|
|
159
162
|
/**
|
|
160
163
|
* Using window load event to unsubscribe from mutation observer, as at this stage document is fully rendered.
|
|
@@ -52,7 +52,7 @@ import { nodeToReact } from '../../react/nodes';
|
|
|
52
52
|
export var NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
53
53
|
export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
54
54
|
var packageName = "@atlaskit/renderer";
|
|
55
|
-
var packageVersion = "109.50.
|
|
55
|
+
var packageVersion = "109.50.1";
|
|
56
56
|
export var defaultNodeComponents = nodeToReact;
|
|
57
57
|
export var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
58
58
|
_inherits(Renderer, _PureComponent);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "109.50.
|
|
3
|
+
"version": "109.50.1",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@atlaskit/analytics-listeners": "^8.11.0",
|
|
30
30
|
"@atlaskit/analytics-namespaced-context": "^6.11.0",
|
|
31
31
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
32
|
-
"@atlaskit/button": "^20.
|
|
32
|
+
"@atlaskit/button": "^20.1.0",
|
|
33
33
|
"@atlaskit/code": "^15.5.0",
|
|
34
34
|
"@atlaskit/editor-common": "^87.13.0",
|
|
35
35
|
"@atlaskit/editor-json-transformer": "^8.18.0",
|