@atlaskit/editor-core 187.24.1 → 187.24.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,19 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 187.24.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`72e552fe076`](https://bitbucket.org/atlassian/atlassian-frontend/commits/72e552fe076) - [ux] ED-17954: Fix inline node selections for mentions and emojis in iOS. Previously, the visually hidden assistive text would also be shown as a selection in iOS which would often make the selection look larger than the actual node itself.
8
+ - [`048717e2a19`](https://bitbucket.org/atlassian/atlassian-frontend/commits/048717e2a19) - fix janky media toolbar when resize
9
+
10
+ ## 187.24.2
11
+
12
+ ### Patch Changes
13
+
14
+ - [`8efc1dfc706`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8efc1dfc706) - ED-19330 create editor-list-plugin
15
+ - Updated dependencies
16
+
3
17
  ## 187.24.1
4
18
 
5
19
  ### Patch Changes
@@ -13,5 +13,5 @@ var _templateObject;
13
13
  // For reasoning behind styles, see comments in:
14
14
  // ./getInlineNodeViewProducer -> portalChildren()
15
15
 
16
- var InlineNodeViewSharedStyles = (0, _react.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n .", " {\n display: inline;\n user-select: all;\n /* Collapses zero width spaces inside the inline node view\n to prevent the node from line breaking too early.\n */\n white-space: nowrap;\n /* Then reset to the Editor default so we don't interfere\n with any component styling. */\n & > *:not(span[aria-hidden='true'].zeroWidthSpaceContainer) {\n white-space: pre-wrap;\n }\n }\n /** Remove browser deafult selections style. This prevents\n unexpected visual artefacts in Safari when navigating\n with the keyboard or making range selections. */\n &.ua-safari {\n .", " {\n ::selection,\n *::selection {\n background: transparent;\n }\n }\n }\n\n &.ua-chrome .", " > span {\n user-select: none;\n }\n\n .", "AddZeroWidthSpace {\n ::after {\n content: '", "';\n }\n }\n"])), _reactNodeView.inlineNodeViewClassname, _reactNodeView.inlineNodeViewClassname, _reactNodeView.inlineNodeViewClassname, _reactNodeView.inlineNodeViewClassname, _utils.ZERO_WIDTH_SPACE);
16
+ var InlineNodeViewSharedStyles = (0, _react.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n .", " {\n display: inline;\n user-select: all;\n /* Collapses zero width spaces inside the inline node view\n to prevent the node from line breaking too early.\n */\n white-space: nowrap;\n /* Then reset to the Editor default so we don't interfere\n with any component styling. */\n & > *:not(span[aria-hidden='true'].zeroWidthSpaceContainer) {\n white-space: pre-wrap;\n }\n // Prevent visually hidden assistive text from being selected.\n & > .assistive {\n user-select: none;\n }\n }\n /** Remove browser deafult selections style. This prevents\n unexpected visual artefacts in Safari when navigating\n with the keyboard or making range selections. */\n &.ua-safari {\n .", " {\n ::selection,\n *::selection {\n background: transparent;\n }\n }\n }\n\n &.ua-chrome .", " > span {\n user-select: none;\n }\n\n .", "AddZeroWidthSpace {\n ::after {\n content: '", "';\n }\n }\n"])), _reactNodeView.inlineNodeViewClassname, _reactNodeView.inlineNodeViewClassname, _reactNodeView.inlineNodeViewClassname, _reactNodeView.inlineNodeViewClassname, _utils.ZERO_WIDTH_SPACE);
17
17
  exports.InlineNodeViewSharedStyles = InlineNodeViewSharedStyles;
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.resizerNextTestId = exports.default = exports.ResizableMediaSingleNext = void 0;
7
+ exports.resizerNextTestId = exports.default = void 0;
8
8
  var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
9
9
  var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
10
10
  var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
@@ -140,14 +140,14 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
140
140
  tr.setMeta(_main.MEDIA_PLUGIN_IS_RESIZING_KEY, isResizing);
141
141
  return dispatch(tr);
142
142
  });
143
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "updateSizeInPluginState", function (width) {
143
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "updateSizeInPluginState", (0, _throttle.default)(function (width) {
144
144
  var _this$props$view2 = _this.props.view,
145
145
  state = _this$props$view2.state,
146
146
  dispatch = _this$props$view2.dispatch;
147
147
  var tr = state.tr;
148
148
  tr.setMeta(_main.MEDIA_PLUGIN_RESIZING_WIDTH_KEY, width);
149
149
  return dispatch(tr);
150
- });
150
+ }, _mediaSingle.MEDIA_SINGLE_RESIZE_THROTTLE_TIME));
151
151
  (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "calcMaxWidth", (0, _memoizeOne.default)(function (contentWidth, containerWidth, fullWidthMode) {
152
152
  if (_this.isNestedNode() || fullWidthMode) {
153
153
  return contentWidth;
@@ -235,9 +235,8 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
235
235
  _this.updateSizeInPluginState(_this.state.size.width);
236
236
  // re-calucate guidelines
237
237
  _this.updateGuidelines();
238
- return 0;
239
238
  });
240
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleResize", (0, _throttle.default)(function (size, delta) {
239
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleResize", function (size, delta) {
241
240
  var _this$props4 = _this.props,
242
241
  originalWidth = _this$props4.width,
243
242
  originalHeight = _this$props4.height,
@@ -264,7 +263,7 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
264
263
  if (calculatedWidthWithLayout.layout !== layout) {
265
264
  updateSize(width, calculatedWidthWithLayout.layout);
266
265
  }
267
- }, _mediaSingle.MEDIA_SINGLE_RESIZE_THROTTLE_TIME));
266
+ });
268
267
  (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleResizeStop", function (size, delta) {
269
268
  var _this$props5 = _this.props,
270
269
  originalWidth = _this$props5.width,
@@ -603,6 +602,5 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
603
602
  }]);
604
603
  return ResizableMediaSingleNext;
605
604
  }(_react.default.Component);
606
- exports.ResizableMediaSingleNext = ResizableMediaSingleNext;
607
605
  var _default = ResizableMediaSingleNext;
608
606
  exports.default = _default;
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.version = exports.nextMajorVersion = exports.name = void 0;
7
7
  var name = "@atlaskit/editor-core";
8
8
  exports.name = name;
9
- var version = "187.24.1";
9
+ var version = "187.24.3";
10
10
  exports.version = version;
11
11
  var nextMajorVersion = function nextMajorVersion() {
12
12
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
@@ -18,6 +18,10 @@ export const InlineNodeViewSharedStyles = css`
18
18
  & > *:not(span[aria-hidden='true'].zeroWidthSpaceContainer) {
19
19
  white-space: pre-wrap;
20
20
  }
21
+ // Prevent visually hidden assistive text from being selected.
22
+ & > .assistive {
23
+ user-select: none;
24
+ }
21
25
  }
22
26
  /** Remove browser deafult selections style. This prevents
23
27
  unexpected visual artefacts in Safari when navigating
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
- import { orderedList, orderedListWithOrder, bulletList, listItem } from '@atlaskit/adf-schema';
2
+ import { bulletList, listItem, orderedList, orderedListWithOrder } from '@atlaskit/adf-schema';
3
3
  import { createPlugin } from './pm-plugins/main';
4
4
  import inputRulePlugin from './pm-plugins/input-rules';
5
5
  import keymapPlugin from './pm-plugins/keymap';
6
6
  import { listMessages as messages } from '@atlaskit/editor-common/messages';
7
- import { ACTION, EVENT_TYPE, INPUT_METHOD, ACTION_SUBJECT, ACTION_SUBJECT_ID } from '../analytics';
8
- import { tooltip, toggleBulletList, toggleOrderedList } from '../../keymaps';
7
+ import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '../analytics';
8
+ import { toggleBulletList, toggleOrderedList, tooltip } from '../../keymaps';
9
9
  import { IconList, IconListNumber } from '@atlaskit/editor-common/quick-insert';
10
10
  /*
11
11
  Toolbar buttons to bullet and ordered list can be found in
@@ -18,7 +18,7 @@ import { getMediaResizeAnalyticsEvent } from '../../utils/analytics';
18
18
  import throttle from 'lodash/throttle';
19
19
  import { MEDIA_PLUGIN_IS_RESIZING_KEY, MEDIA_PLUGIN_RESIZING_WIDTH_KEY } from '../../pm-plugins/main';
20
20
  export const resizerNextTestId = 'mediaSingle.resizerNext.testid';
21
- export class ResizableMediaSingleNext extends React.Component {
21
+ class ResizableMediaSingleNext extends React.Component {
22
22
  constructor(props) {
23
23
  super(props);
24
24
  _defineProperty(this, "lastSnappedGuidelineKeys", []);
@@ -126,7 +126,7 @@ export class ResizableMediaSingleNext extends React.Component {
126
126
  tr.setMeta(MEDIA_PLUGIN_IS_RESIZING_KEY, isResizing);
127
127
  return dispatch(tr);
128
128
  });
129
- _defineProperty(this, "updateSizeInPluginState", width => {
129
+ _defineProperty(this, "updateSizeInPluginState", throttle(width => {
130
130
  const {
131
131
  state,
132
132
  dispatch
@@ -134,7 +134,7 @@ export class ResizableMediaSingleNext extends React.Component {
134
134
  const tr = state.tr;
135
135
  tr.setMeta(MEDIA_PLUGIN_RESIZING_WIDTH_KEY, width);
136
136
  return dispatch(tr);
137
- });
137
+ }, MEDIA_SINGLE_RESIZE_THROTTLE_TIME));
138
138
  _defineProperty(this, "calcMaxWidth", memoizeOne((contentWidth, containerWidth, fullWidthMode) => {
139
139
  if (this.isNestedNode() || fullWidthMode) {
140
140
  return contentWidth;
@@ -214,9 +214,8 @@ export class ResizableMediaSingleNext extends React.Component {
214
214
  this.updateSizeInPluginState(this.state.size.width);
215
215
  // re-calucate guidelines
216
216
  this.updateGuidelines();
217
- return 0;
218
217
  });
219
- _defineProperty(this, "handleResize", throttle((size, delta) => {
218
+ _defineProperty(this, "handleResize", (size, delta) => {
220
219
  const {
221
220
  width: originalWidth,
222
221
  height: originalHeight,
@@ -245,7 +244,7 @@ export class ResizableMediaSingleNext extends React.Component {
245
244
  if (calculatedWidthWithLayout.layout !== layout) {
246
245
  updateSize(width, calculatedWidthWithLayout.layout);
247
246
  }
248
- }, MEDIA_SINGLE_RESIZE_THROTTLE_TIME));
247
+ });
249
248
  _defineProperty(this, "handleResizeStop", (size, delta) => {
250
249
  const {
251
250
  width: originalWidth,
@@ -1,5 +1,5 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "187.24.1";
2
+ export const version = "187.24.3";
3
3
  export const nextMajorVersion = () => {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -7,4 +7,4 @@ import { ZERO_WIDTH_SPACE } from '@atlaskit/editor-common/utils';
7
7
  // For reasoning behind styles, see comments in:
8
8
  // ./getInlineNodeViewProducer -> portalChildren()
9
9
 
10
- export var InlineNodeViewSharedStyles = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .", " {\n display: inline;\n user-select: all;\n /* Collapses zero width spaces inside the inline node view\n to prevent the node from line breaking too early.\n */\n white-space: nowrap;\n /* Then reset to the Editor default so we don't interfere\n with any component styling. */\n & > *:not(span[aria-hidden='true'].zeroWidthSpaceContainer) {\n white-space: pre-wrap;\n }\n }\n /** Remove browser deafult selections style. This prevents\n unexpected visual artefacts in Safari when navigating\n with the keyboard or making range selections. */\n &.ua-safari {\n .", " {\n ::selection,\n *::selection {\n background: transparent;\n }\n }\n }\n\n &.ua-chrome .", " > span {\n user-select: none;\n }\n\n .", "AddZeroWidthSpace {\n ::after {\n content: '", "';\n }\n }\n"])), inlineNodeViewClassname, inlineNodeViewClassname, inlineNodeViewClassname, inlineNodeViewClassname, ZERO_WIDTH_SPACE);
10
+ export var InlineNodeViewSharedStyles = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .", " {\n display: inline;\n user-select: all;\n /* Collapses zero width spaces inside the inline node view\n to prevent the node from line breaking too early.\n */\n white-space: nowrap;\n /* Then reset to the Editor default so we don't interfere\n with any component styling. */\n & > *:not(span[aria-hidden='true'].zeroWidthSpaceContainer) {\n white-space: pre-wrap;\n }\n // Prevent visually hidden assistive text from being selected.\n & > .assistive {\n user-select: none;\n }\n }\n /** Remove browser deafult selections style. This prevents\n unexpected visual artefacts in Safari when navigating\n with the keyboard or making range selections. */\n &.ua-safari {\n .", " {\n ::selection,\n *::selection {\n background: transparent;\n }\n }\n }\n\n &.ua-chrome .", " > span {\n user-select: none;\n }\n\n .", "AddZeroWidthSpace {\n ::after {\n content: '", "';\n }\n }\n"])), inlineNodeViewClassname, inlineNodeViewClassname, inlineNodeViewClassname, inlineNodeViewClassname, ZERO_WIDTH_SPACE);
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
- import { orderedList, orderedListWithOrder, bulletList, listItem } from '@atlaskit/adf-schema';
2
+ import { bulletList, listItem, orderedList, orderedListWithOrder } from '@atlaskit/adf-schema';
3
3
  import { createPlugin } from './pm-plugins/main';
4
4
  import inputRulePlugin from './pm-plugins/input-rules';
5
5
  import keymapPlugin from './pm-plugins/keymap';
6
6
  import { listMessages as messages } from '@atlaskit/editor-common/messages';
7
- import { ACTION, EVENT_TYPE, INPUT_METHOD, ACTION_SUBJECT, ACTION_SUBJECT_ID } from '../analytics';
8
- import { tooltip, toggleBulletList, toggleOrderedList } from '../../keymaps';
7
+ import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '../analytics';
8
+ import { toggleBulletList, toggleOrderedList, tooltip } from '../../keymaps';
9
9
  import { IconList, IconListNumber } from '@atlaskit/editor-common/quick-insert';
10
10
  /*
11
11
  Toolbar buttons to bullet and ordered list can be found in
@@ -29,7 +29,7 @@ import { getMediaResizeAnalyticsEvent } from '../../utils/analytics';
29
29
  import throttle from 'lodash/throttle';
30
30
  import { MEDIA_PLUGIN_IS_RESIZING_KEY, MEDIA_PLUGIN_RESIZING_WIDTH_KEY } from '../../pm-plugins/main';
31
31
  export var resizerNextTestId = 'mediaSingle.resizerNext.testid';
32
- export var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
32
+ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
33
33
  _inherits(ResizableMediaSingleNext, _React$Component);
34
34
  var _super = _createSuper(ResizableMediaSingleNext);
35
35
  function ResizableMediaSingleNext(props) {
@@ -133,14 +133,14 @@ export var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
133
133
  tr.setMeta(MEDIA_PLUGIN_IS_RESIZING_KEY, isResizing);
134
134
  return dispatch(tr);
135
135
  });
136
- _defineProperty(_assertThisInitialized(_this), "updateSizeInPluginState", function (width) {
136
+ _defineProperty(_assertThisInitialized(_this), "updateSizeInPluginState", throttle(function (width) {
137
137
  var _this$props$view2 = _this.props.view,
138
138
  state = _this$props$view2.state,
139
139
  dispatch = _this$props$view2.dispatch;
140
140
  var tr = state.tr;
141
141
  tr.setMeta(MEDIA_PLUGIN_RESIZING_WIDTH_KEY, width);
142
142
  return dispatch(tr);
143
- });
143
+ }, MEDIA_SINGLE_RESIZE_THROTTLE_TIME));
144
144
  _defineProperty(_assertThisInitialized(_this), "calcMaxWidth", memoizeOne(function (contentWidth, containerWidth, fullWidthMode) {
145
145
  if (_this.isNestedNode() || fullWidthMode) {
146
146
  return contentWidth;
@@ -228,9 +228,8 @@ export var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
228
228
  _this.updateSizeInPluginState(_this.state.size.width);
229
229
  // re-calucate guidelines
230
230
  _this.updateGuidelines();
231
- return 0;
232
231
  });
233
- _defineProperty(_assertThisInitialized(_this), "handleResize", throttle(function (size, delta) {
232
+ _defineProperty(_assertThisInitialized(_this), "handleResize", function (size, delta) {
234
233
  var _this$props4 = _this.props,
235
234
  originalWidth = _this$props4.width,
236
235
  originalHeight = _this$props4.height,
@@ -257,7 +256,7 @@ export var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
257
256
  if (calculatedWidthWithLayout.layout !== layout) {
258
257
  updateSize(width, calculatedWidthWithLayout.layout);
259
258
  }
260
- }, MEDIA_SINGLE_RESIZE_THROTTLE_TIME));
259
+ });
261
260
  _defineProperty(_assertThisInitialized(_this), "handleResizeStop", function (size, delta) {
262
261
  var _this$props5 = _this.props,
263
262
  originalWidth = _this$props5.width,
@@ -1,5 +1,5 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "187.24.1";
2
+ export var version = "187.24.3";
3
3
  export var nextMajorVersion = function nextMajorVersion() {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,13 +1,3 @@
1
- import type { NextEditorPlugin } from '../../types';
2
- import type { ListPluginOptions } from './types';
3
- import type featureFlagsPlugin from '@atlaskit/editor-plugin-feature-flags';
4
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
6
- declare const listPlugin: NextEditorPlugin<'list', {
7
- pluginConfiguration: ListPluginOptions | undefined;
8
- dependencies: [
9
- typeof featureFlagsPlugin,
10
- OptionalPlugin<typeof analyticsPlugin>
11
- ];
12
- }>;
1
+ import type { ListPlugin } from '@atlaskit/editor-plugin-list';
2
+ declare const listPlugin: ListPlugin;
13
3
  export default listPlugin;
@@ -18,7 +18,7 @@ type State = {
18
18
  };
19
19
  export declare const resizerNextTestId = "mediaSingle.resizerNext.testid";
20
20
  type ResizableMediaSingleNextProps = Props;
21
- export declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSingleNextProps, State> {
21
+ declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSingleNextProps, State> {
22
22
  private lastSnappedGuidelineKeys;
23
23
  constructor(props: ResizableMediaSingleNextProps);
24
24
  /**
@@ -1,13 +1,3 @@
1
- import type { NextEditorPlugin } from '../../types';
2
- import type { ListPluginOptions } from './types';
3
- import type featureFlagsPlugin from '@atlaskit/editor-plugin-feature-flags';
4
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
6
- declare const listPlugin: NextEditorPlugin<'list', {
7
- pluginConfiguration: ListPluginOptions | undefined;
8
- dependencies: [
9
- typeof featureFlagsPlugin,
10
- OptionalPlugin<typeof analyticsPlugin>
11
- ];
12
- }>;
1
+ import type { ListPlugin } from '@atlaskit/editor-plugin-list';
2
+ declare const listPlugin: ListPlugin;
13
3
  export default listPlugin;
@@ -18,7 +18,7 @@ type State = {
18
18
  };
19
19
  export declare const resizerNextTestId = "mediaSingle.resizerNext.testid";
20
20
  type ResizableMediaSingleNextProps = Props;
21
- export declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSingleNextProps, State> {
21
+ declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSingleNextProps, State> {
22
22
  private lastSnappedGuidelineKeys;
23
23
  constructor(props: ResizableMediaSingleNextProps);
24
24
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "187.24.1",
3
+ "version": "187.24.3",
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": "^9.1.0",
49
49
  "@atlaskit/analytics-next-stable-react-context": "1.0.1",
50
50
  "@atlaskit/avatar": "^21.3.0",
51
- "@atlaskit/avatar-group": "^9.3.0",
51
+ "@atlaskit/avatar-group": "^9.4.0",
52
52
  "@atlaskit/button": "^16.9.0",
53
53
  "@atlaskit/calendar": "^13.2.0",
54
54
  "@atlaskit/checkbox": "^12.6.0",
@@ -72,6 +72,7 @@
72
72
  "@atlaskit/editor-plugin-guideline": "^0.3.4",
73
73
  "@atlaskit/editor-plugin-hyperlink": "^0.3.0",
74
74
  "@atlaskit/editor-plugin-image-upload": "^0.1.0",
75
+ "@atlaskit/editor-plugin-list": "^0.1.0",
75
76
  "@atlaskit/editor-plugin-table": "^2.9.0",
76
77
  "@atlaskit/editor-plugin-text-formatting": "^0.2.0",
77
78
  "@atlaskit/editor-plugin-width": "^0.1.0",
@@ -143,7 +144,7 @@
143
144
  "@af/editor-libra": "*",
144
145
  "@af/integration-testing": "*",
145
146
  "@atlaskit/code": "^14.6.0",
146
- "@atlaskit/collab-provider": "9.10.1",
147
+ "@atlaskit/collab-provider": "9.11.0",
147
148
  "@atlaskit/dropdown-menu": "^11.11.0",
148
149
  "@atlaskit/editor-extension-dropbox": "^0.4.0",
149
150
  "@atlaskit/editor-plugin-table": "^2.9.0",