@atlaskit/editor-core 189.3.11 → 189.3.13

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,18 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 189.3.13
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 189.3.12
10
+
11
+ ### Patch Changes
12
+
13
+ - [#42899](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42899) [`4b3e40bff6f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b3e40bff6f) - Added a new media plugin state `allowInlineImages` to support upcoming feature development.
14
+ - [#42848](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42848) [`f2f8428f703`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f2f8428f703) - Abandons feature flag lp-link-picker-focus-trap as it was not successfully rolled out. Will re-introduce as platform feature flag as/when necessary.
15
+
3
16
  ## 189.3.11
4
17
 
5
18
  ### Patch Changes
@@ -26,7 +26,7 @@ var _monitoring = require("@atlaskit/editor-common/monitoring");
26
26
  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; }
27
27
  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) { (0, _defineProperty2.default)(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; }
28
28
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
29
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
29
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } // eslint-disable-next-line import/no-extraneous-dependencies
30
30
  var ErrorBoundaryWithEditorView = exports.ErrorBoundaryWithEditorView = /*#__PURE__*/function (_React$Component) {
31
31
  (0, _inherits2.default)(ErrorBoundaryWithEditorView, _React$Component);
32
32
  var _super = _createSuper(ErrorBoundaryWithEditorView);
@@ -59,7 +59,6 @@ function createFeatureFlagsFromProps(props) {
59
59
  // Including fallback to props.featureFlags so that mobile feature flags
60
60
  // are included (they are not kebab cased)
61
61
  restartNumberedLists: normalizedFeatureFlags.restartNumberedLists === true || ((_props$featureFlags18 = props.featureFlags) === null || _props$featureFlags18 === void 0 ? void 0 : _props$featureFlags18.restartNumberedLists) === true,
62
- lpLinkPickerFocusTrap: Boolean(normalizedFeatureFlags.lpLinkPickerFocusTrap),
63
62
  preventPopupOverflow: Boolean(typeof ((_props$featureFlags19 = props.featureFlags) === null || _props$featureFlags19 === void 0 ? void 0 : _props$featureFlags19['prevent-popup-overflow']) === 'boolean' ? !!((_props$featureFlags20 = props.featureFlags) !== null && _props$featureFlags20 !== void 0 && _props$featureFlags20['prevent-popup-overflow']) : false)
64
63
  });
65
64
  }
@@ -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 = "189.3.11";
8
+ var version = exports.version = "189.3.13";
@@ -4,6 +4,8 @@ import uuid from 'uuid';
4
4
  import { ExperienceStore } from '@atlaskit/editor-common/ufo';
5
5
  import { IntlErrorBoundary } from '@atlaskit/editor-common/ui';
6
6
  import { sniffUserBrowserExtensions } from '@atlaskit/editor-common/utils';
7
+ // eslint-disable-next-line import/no-extraneous-dependencies
8
+
7
9
  import { ACTION, ACTION_SUBJECT, EVENT_TYPE, editorAnalyticsChannel } from '@atlaskit/editor-common/analytics';
8
10
  import { getDocStructure } from '../utils/document-logger';
9
11
  import { WithEditorView } from './WithEditorView';
@@ -49,7 +49,6 @@ export function createFeatureFlagsFromProps(props) {
49
49
  // Including fallback to props.featureFlags so that mobile feature flags
50
50
  // are included (they are not kebab cased)
51
51
  restartNumberedLists: normalizedFeatureFlags.restartNumberedLists === true || ((_props$featureFlags18 = props.featureFlags) === null || _props$featureFlags18 === void 0 ? void 0 : _props$featureFlags18.restartNumberedLists) === true,
52
- lpLinkPickerFocusTrap: Boolean(normalizedFeatureFlags.lpLinkPickerFocusTrap),
53
52
  preventPopupOverflow: Boolean(typeof ((_props$featureFlags19 = props.featureFlags) === null || _props$featureFlags19 === void 0 ? void 0 : _props$featureFlags19['prevent-popup-overflow']) === 'boolean' ? !!((_props$featureFlags20 = props.featureFlags) !== null && _props$featureFlags20 !== void 0 && _props$featureFlags20['prevent-popup-overflow']) : false)
54
53
  };
55
54
  }
@@ -1,2 +1,2 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "189.3.11";
2
+ export const version = "189.3.13";
@@ -16,6 +16,8 @@ import uuid from 'uuid';
16
16
  import { ExperienceStore } from '@atlaskit/editor-common/ufo';
17
17
  import { IntlErrorBoundary } from '@atlaskit/editor-common/ui';
18
18
  import { sniffUserBrowserExtensions } from '@atlaskit/editor-common/utils';
19
+ // eslint-disable-next-line import/no-extraneous-dependencies
20
+
19
21
  import { ACTION, ACTION_SUBJECT, EVENT_TYPE, editorAnalyticsChannel } from '@atlaskit/editor-common/analytics';
20
22
  import { getDocStructure } from '../utils/document-logger';
21
23
  import { WithEditorView } from './WithEditorView';
@@ -52,7 +52,6 @@ export function createFeatureFlagsFromProps(props) {
52
52
  // Including fallback to props.featureFlags so that mobile feature flags
53
53
  // are included (they are not kebab cased)
54
54
  restartNumberedLists: normalizedFeatureFlags.restartNumberedLists === true || ((_props$featureFlags18 = props.featureFlags) === null || _props$featureFlags18 === void 0 ? void 0 : _props$featureFlags18.restartNumberedLists) === true,
55
- lpLinkPickerFocusTrap: Boolean(normalizedFeatureFlags.lpLinkPickerFocusTrap),
56
55
  preventPopupOverflow: Boolean(typeof ((_props$featureFlags19 = props.featureFlags) === null || _props$featureFlags19 === void 0 ? void 0 : _props$featureFlags19['prevent-popup-overflow']) === 'boolean' ? !!((_props$featureFlags20 = props.featureFlags) !== null && _props$featureFlags20 !== void 0 && _props$featureFlags20['prevent-popup-overflow']) : false)
57
56
  });
58
57
  }
@@ -1,2 +1,2 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "189.3.11";
2
+ export var version = "189.3.13";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "189.3.11",
3
+ "version": "189.3.13",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -48,7 +48,7 @@
48
48
  "@atlaskit/analytics-next-stable-react-context": "1.0.1",
49
49
  "@atlaskit/avatar": "^21.4.0",
50
50
  "@atlaskit/avatar-group": "^9.4.0",
51
- "@atlaskit/button": "^16.13.0",
51
+ "@atlaskit/button": "^16.14.0",
52
52
  "@atlaskit/checkbox": "^13.0.0",
53
53
  "@atlaskit/code": "^14.6.0",
54
54
  "@atlaskit/date": "^0.10.0",
@@ -62,7 +62,7 @@
62
62
  "@atlaskit/editor-plugin-block-type": "^3.0.0",
63
63
  "@atlaskit/editor-plugin-border": "^0.1.0",
64
64
  "@atlaskit/editor-plugin-caption": "^0.2.0",
65
- "@atlaskit/editor-plugin-card": "^0.11.0",
65
+ "@atlaskit/editor-plugin-card": "^0.12.0",
66
66
  "@atlaskit/editor-plugin-clipboard": "^0.1.0",
67
67
  "@atlaskit/editor-plugin-code-block": "^0.1.0",
68
68
  "@atlaskit/editor-plugin-composition": "^0.1.0",
@@ -256,6 +256,10 @@
256
256
  "platform.editor.media.extended-resize-experience": {
257
257
  "type": "boolean"
258
258
  },
259
+ "platform.editor.media.inline-image.base-support": {
260
+ "type": "boolean",
261
+ "referenceOnly": "true"
262
+ },
259
263
  "platform.design-system-team.border-checkbox_nyoiu": {
260
264
  "type": "boolean",
261
265
  "referenceOnly": "true"