@atlaskit/editor-plugin-placeholder 11.0.2 → 11.0.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,13 @@
1
1
  # @atlaskit/editor-plugin-placeholder
2
2
 
3
+ ## 11.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4c2645b77929d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4c2645b77929d) -
8
+ [ux] EDITOR-7346 add ai and diff plugin support for panel_c1
9
+ - Updated dependencies
10
+
3
11
  ## 11.0.2
4
12
 
5
13
  ### Patch Changes
@@ -12,6 +12,7 @@ exports.setPlaceHolderState = setPlaceHolderState;
12
12
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
13
13
  var _messages = require("@atlaskit/editor-common/messages");
14
14
  var _utils = require("@atlaskit/editor-common/utils");
15
+ var _nodeTypeUtils = require("@atlaskit/editor-common/utils/node-type-utils");
15
16
  var _utils2 = require("@atlaskit/editor-prosemirror/utils");
16
17
  var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
17
18
  var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
@@ -150,7 +151,7 @@ function createPlaceHolderStateFrom(_ref3) {
150
151
  });
151
152
  }
152
153
  var parentNode = $from.node($from.depth - 1);
153
- var parentType = parentNode !== null && parentNode !== void 0 && parentNode.type && (0, _expValEquals.expValEquals)('platform_editor_nest_table_in_panel', 'isEnabled', true) ? (0, _utils.getBaseNodeTypeName)(parentNode.type) : parentNode === null || parentNode === void 0 || (_parentNode$type = parentNode.type) === null || _parentNode$type === void 0 ? void 0 : _parentNode$type.name;
154
+ var parentType = parentNode !== null && parentNode !== void 0 && parentNode.type && (0, _expValEquals.expValEquals)('platform_editor_nest_table_in_panel', 'isEnabled', true) ? (0, _nodeTypeUtils.getBaseNodeTypeName)(parentNode.type) : parentNode === null || parentNode === void 0 || (_parentNode$type = parentNode.type) === null || _parentNode$type === void 0 ? void 0 : _parentNode$type.name;
154
155
  if (emptyLinePlaceholder && parentType === 'doc') {
155
156
  var isEmptyLine = (0, _utils.isEmptyParagraph)($from.parent);
156
157
  if (isEmptyLine) {
@@ -1,5 +1,6 @@
1
1
  import { placeholderTextMessages as messages } from '@atlaskit/editor-common/messages';
2
- import { bracketTyped, getBaseNodeTypeName, hasDocAsParent, isEmptyDocument, isEmptyParagraph } from '@atlaskit/editor-common/utils';
2
+ import { bracketTyped, hasDocAsParent, isEmptyDocument, isEmptyParagraph } from '@atlaskit/editor-common/utils';
3
+ import { getBaseNodeTypeName } from '@atlaskit/editor-common/utils/node-type-utils';
3
4
  import { findParentNode } from '@atlaskit/editor-prosemirror/utils';
4
5
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
5
6
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
@@ -2,7 +2,8 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
3
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
4
  import { placeholderTextMessages as messages } from '@atlaskit/editor-common/messages';
5
- import { bracketTyped, getBaseNodeTypeName, hasDocAsParent, isEmptyDocument, isEmptyParagraph } from '@atlaskit/editor-common/utils';
5
+ import { bracketTyped, hasDocAsParent, isEmptyDocument, isEmptyParagraph } from '@atlaskit/editor-common/utils';
6
+ import { getBaseNodeTypeName } from '@atlaskit/editor-common/utils/node-type-utils';
6
7
  import { findParentNode } from '@atlaskit/editor-prosemirror/utils';
7
8
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
8
9
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-placeholder",
3
- "version": "11.0.2",
3
+ "version": "11.0.3",
4
4
  "description": "Placeholder plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -37,7 +37,7 @@
37
37
  "@atlaskit/platform-feature-flags": "^1.1.0",
38
38
  "@atlaskit/primitives": "^19.0.0",
39
39
  "@atlaskit/spinner": "^19.1.0",
40
- "@atlaskit/tmp-editor-statsig": "^90.0.0",
40
+ "@atlaskit/tmp-editor-statsig": "^90.2.0",
41
41
  "@atlaskit/tokens": "^13.3.0",
42
42
  "@babel/runtime": "^7.0.0"
43
43
  },