@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 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, _coreUtils.isSSR)() && (0, _expVal.expVal)('platform_editor_no_ssr', 'isEnabled', false)) {
557
+ if ((0, _expVal.expVal)('platform_editor_no_ssr', 'isEnabled', false) && (0, _coreUtils.isSSR)()) {
558
558
  return;
559
559
  }
560
560
  if (node) {
@@ -5,4 +5,4 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = exports.name = void 0;
7
7
  var name = exports.name = "@atlaskit/editor-core";
8
- var version = exports.version = "0.0.0-development";
8
+ var version = exports.version = "215.3.1";
@@ -511,7 +511,7 @@ export function ReactEditorView(props) {
511
511
  };
512
512
  }, []);
513
513
  const handleEditorViewRef = useCallback(node => {
514
- if (isSSR() && expVal('platform_editor_no_ssr', 'isEnabled', false)) {
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 = "0.0.0-development";
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 (isSSR() && expVal('platform_editor_no_ssr', 'isEnabled', false)) {
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 = "0.0.0-development";
2
+ export var version = "215.3.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "215.3.1",
3
+ "version": "215.3.2",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"