@atlaskit/renderer 124.17.2 → 124.17.3
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
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 124.17.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`582b3b46480e1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/582b3b46480e1) -
|
|
8
|
+
NO-ISSUE Flipped false evaluations of editor_tinymce_full_width_mode from false to !true to
|
|
9
|
+
prevent them from evaluating as a null value
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 124.17.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -69,7 +69,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
69
69
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
70
70
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
71
71
|
var packageName = "@atlaskit/renderer";
|
|
72
|
-
var packageVersion = "
|
|
72
|
+
var packageVersion = "124.17.2";
|
|
73
73
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
74
74
|
containerName: 'ak-renderer-wrapper',
|
|
75
75
|
containerType: 'inline-size'
|
|
@@ -783,9 +783,7 @@ var RendererWithAnnotationSelection = function RendererWithAnnotationSelection(p
|
|
|
783
783
|
var innerRef = props.innerRef || localRef;
|
|
784
784
|
|
|
785
785
|
// @see https://hello.jira.atlassian.cloud/browse/EDITOR-3389
|
|
786
|
-
if (props.appearance === 'max' &&
|
|
787
|
-
// @ts-expect-error - false is not allowed as an expected value
|
|
788
|
-
(0, _expValEquals.expValEquals)('editor_tinymce_full_width_mode', 'isEnabled', false)) {
|
|
786
|
+
if (props.appearance === 'max' && !(0, _expValEquals.expValEquals)('editor_tinymce_full_width_mode', 'isEnabled', true)) {
|
|
789
787
|
props.appearance = 'full-width';
|
|
790
788
|
}
|
|
791
789
|
if (!allowAnnotations) {
|
|
@@ -55,7 +55,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
55
55
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
56
56
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
57
57
|
const packageName = "@atlaskit/renderer";
|
|
58
|
-
const packageVersion = "
|
|
58
|
+
const packageVersion = "124.17.2";
|
|
59
59
|
const setAsQueryContainerStyles = css({
|
|
60
60
|
containerName: 'ak-renderer-wrapper',
|
|
61
61
|
containerType: 'inline-size'
|
|
@@ -770,9 +770,7 @@ const RendererWithAnnotationSelection = props => {
|
|
|
770
770
|
const innerRef = props.innerRef || localRef;
|
|
771
771
|
|
|
772
772
|
// @see https://hello.jira.atlassian.cloud/browse/EDITOR-3389
|
|
773
|
-
if (props.appearance === 'max' &&
|
|
774
|
-
// @ts-expect-error - false is not allowed as an expected value
|
|
775
|
-
expValEquals('editor_tinymce_full_width_mode', 'isEnabled', false)) {
|
|
773
|
+
if (props.appearance === 'max' && !expValEquals('editor_tinymce_full_width_mode', 'isEnabled', true)) {
|
|
776
774
|
props.appearance = 'full-width';
|
|
777
775
|
}
|
|
778
776
|
if (!allowAnnotations) {
|
|
@@ -60,7 +60,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
60
60
|
// we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
|
|
61
61
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
62
62
|
var packageName = "@atlaskit/renderer";
|
|
63
|
-
var packageVersion = "
|
|
63
|
+
var packageVersion = "124.17.2";
|
|
64
64
|
var setAsQueryContainerStyles = css({
|
|
65
65
|
containerName: 'ak-renderer-wrapper',
|
|
66
66
|
containerType: 'inline-size'
|
|
@@ -774,9 +774,7 @@ var RendererWithAnnotationSelection = function RendererWithAnnotationSelection(p
|
|
|
774
774
|
var innerRef = props.innerRef || localRef;
|
|
775
775
|
|
|
776
776
|
// @see https://hello.jira.atlassian.cloud/browse/EDITOR-3389
|
|
777
|
-
if (props.appearance === 'max' &&
|
|
778
|
-
// @ts-expect-error - false is not allowed as an expected value
|
|
779
|
-
expValEquals('editor_tinymce_full_width_mode', 'isEnabled', false)) {
|
|
777
|
+
if (props.appearance === 'max' && !expValEquals('editor_tinymce_full_width_mode', 'isEnabled', true)) {
|
|
780
778
|
props.appearance = 'full-width';
|
|
781
779
|
}
|
|
782
780
|
if (!allowAnnotations) {
|