@atlaskit/editor-core 215.3.1 → 215.3.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/create-editor/ReactEditorView.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/create-editor/ReactEditorView.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/create-editor/ReactEditorView.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 215.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5bdcb96c64433`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5bdcb96c64433) -
|
|
8
|
+
Fix exposure firing for editor no ssr experiment
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 215.3.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -554,7 +554,7 @@ function ReactEditorView(props) {
|
|
|
554
554
|
};
|
|
555
555
|
}, []);
|
|
556
556
|
var handleEditorViewRef = (0, _react.useCallback)(function (node) {
|
|
557
|
-
if ((0,
|
|
557
|
+
if ((0, _expVal.expVal)('platform_editor_no_ssr', 'isEnabled', false) && (0, _coreUtils.isSSR)()) {
|
|
558
558
|
return;
|
|
559
559
|
}
|
|
560
560
|
if (node) {
|
|
@@ -511,7 +511,7 @@ export function ReactEditorView(props) {
|
|
|
511
511
|
};
|
|
512
512
|
}, []);
|
|
513
513
|
const handleEditorViewRef = useCallback(node => {
|
|
514
|
-
if (
|
|
514
|
+
if (expVal('platform_editor_no_ssr', 'isEnabled', false) && isSSR()) {
|
|
515
515
|
return;
|
|
516
516
|
}
|
|
517
517
|
if (node) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "
|
|
2
|
+
export const version = "215.3.1";
|
|
@@ -544,7 +544,7 @@ export function ReactEditorView(props) {
|
|
|
544
544
|
};
|
|
545
545
|
}, []);
|
|
546
546
|
var handleEditorViewRef = useCallback(function (node) {
|
|
547
|
-
if (
|
|
547
|
+
if (expVal('platform_editor_no_ssr', 'isEnabled', false) && isSSR()) {
|
|
548
548
|
return;
|
|
549
549
|
}
|
|
550
550
|
if (node) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "
|
|
2
|
+
export var version = "215.3.1";
|