@atlaskit/editor-common 78.22.1 → 78.22.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,17 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 78.22.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#86616](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86616) [`09254f8db79a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/09254f8db79a) - Reverting distance parameter to the quick insert
8
+
9
+ ## 78.22.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#86002](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86002) [`8d4fb94bd0b7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4fb94bd0b7) - Added a distance parameter to the quick insert options to facilitate the search for long descriptions
14
+
3
15
  ## 78.22.1
4
16
 
5
17
  ### Patch Changes
@@ -240,5 +240,45 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
240
240
  id: 'fabric.editor.tableFullWidthLabel',
241
241
  defaultMessage: 'Full-width',
242
242
  description: 'Trigger table width to full-width mode'
243
+ },
244
+ startedColumnResize: {
245
+ id: 'fabric.editor.tables.startedColumnResize',
246
+ defaultMessage: 'Started column resize',
247
+ description: 'Screen Reader announces when the user engages the column resizer'
248
+ },
249
+ focusedOtherResize: {
250
+ id: 'fabric.editor.tables.otherResize',
251
+ defaultMessage: 'Switched to the {direction} column resize',
252
+ description: 'Screen Reader announces when the user switches to the left or right column resizer'
253
+ },
254
+ changedColumnWidth: {
255
+ id: 'fabric.editor.tables.columnWidth',
256
+ defaultMessage: 'Column width was changed to {width} pixels',
257
+ description: 'Screen Reader announces when the user modifies the column width'
258
+ },
259
+ columnLeftResize: {
260
+ id: 'fabric.editor.tables.columnLeftResize',
261
+ defaultMessage: 'left',
262
+ description: 'Screen Reader announces the jump to the preceding column resizer'
263
+ },
264
+ columnRightResize: {
265
+ id: 'fabric.editor.tables.columnRightResize',
266
+ defaultMessage: 'right',
267
+ description: 'Screen Reader announces the jump to the subsequent column resizer'
268
+ },
269
+ columnResizeStop: {
270
+ id: 'fabric.editor.tables.resizeStop',
271
+ defaultMessage: 'Stopped resize',
272
+ description: 'Screen Reader announces when the user discontinues the resizing operation'
273
+ },
274
+ columnResizeOverflow: {
275
+ id: 'fabric.editor.tables.columnResizeOverflow',
276
+ defaultMessage: 'You can only resize this column while the table has a scroll bar.',
277
+ description: 'Screen Reader announces when the user attempts to resize the last column without the table being in overflow state'
278
+ },
279
+ columnResizeLast: {
280
+ id: 'fabric.editor.tables.columnResizeLast',
281
+ defaultMessage: 'You can only resize this column to the left.',
282
+ description: 'Screen Reader announces when the user attempts to resize the last column when only the previous one is available for resizing'
243
283
  }
244
284
  });
@@ -16,7 +16,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
16
16
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
17
17
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
18
18
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
19
- var packageVersion = "78.22.1";
19
+ var packageVersion = "78.22.3";
20
20
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
21
21
  // Remove URL as it has UGC
22
22
  // TODO: Sanitise the URL instead of just removing it
@@ -22,7 +22,7 @@ var _templateObject, _templateObject2, _templateObject3;
22
22
  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); }; }
23
23
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /** @jsx jsx */
24
24
  var packageName = "@atlaskit/editor-common";
25
- var packageVersion = "78.22.1";
25
+ var packageVersion = "78.22.3";
26
26
  var halfFocusRing = 1;
27
27
  var dropOffset = '0, 8';
28
28
  var DropList = /*#__PURE__*/function (_Component) {
@@ -234,5 +234,45 @@ export const messages = defineMessages({
234
234
  id: 'fabric.editor.tableFullWidthLabel',
235
235
  defaultMessage: 'Full-width',
236
236
  description: 'Trigger table width to full-width mode'
237
+ },
238
+ startedColumnResize: {
239
+ id: 'fabric.editor.tables.startedColumnResize',
240
+ defaultMessage: 'Started column resize',
241
+ description: 'Screen Reader announces when the user engages the column resizer'
242
+ },
243
+ focusedOtherResize: {
244
+ id: 'fabric.editor.tables.otherResize',
245
+ defaultMessage: 'Switched to the {direction} column resize',
246
+ description: 'Screen Reader announces when the user switches to the left or right column resizer'
247
+ },
248
+ changedColumnWidth: {
249
+ id: 'fabric.editor.tables.columnWidth',
250
+ defaultMessage: 'Column width was changed to {width} pixels',
251
+ description: 'Screen Reader announces when the user modifies the column width'
252
+ },
253
+ columnLeftResize: {
254
+ id: 'fabric.editor.tables.columnLeftResize',
255
+ defaultMessage: 'left',
256
+ description: 'Screen Reader announces the jump to the preceding column resizer'
257
+ },
258
+ columnRightResize: {
259
+ id: 'fabric.editor.tables.columnRightResize',
260
+ defaultMessage: 'right',
261
+ description: 'Screen Reader announces the jump to the subsequent column resizer'
262
+ },
263
+ columnResizeStop: {
264
+ id: 'fabric.editor.tables.resizeStop',
265
+ defaultMessage: 'Stopped resize',
266
+ description: 'Screen Reader announces when the user discontinues the resizing operation'
267
+ },
268
+ columnResizeOverflow: {
269
+ id: 'fabric.editor.tables.columnResizeOverflow',
270
+ defaultMessage: 'You can only resize this column while the table has a scroll bar.',
271
+ description: 'Screen Reader announces when the user attempts to resize the last column without the table being in overflow state'
272
+ },
273
+ columnResizeLast: {
274
+ id: 'fabric.editor.tables.columnResizeLast',
275
+ defaultMessage: 'You can only resize this column to the left.',
276
+ description: 'Screen Reader announces when the user attempts to resize the last column when only the previous one is available for resizing'
237
277
  }
238
278
  });
@@ -1,6 +1,6 @@
1
1
  const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
2
2
  const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
3
- const packageVersion = "78.22.1";
3
+ const packageVersion = "78.22.3";
4
4
  const sanitiseSentryEvents = (data, _hint) => {
5
5
  // Remove URL as it has UGC
6
6
  // TODO: Sanitise the URL instead of just removing it
@@ -7,7 +7,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
7
7
  import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
8
8
  import Layer from '../Layer';
9
9
  const packageName = "@atlaskit/editor-common";
10
- const packageVersion = "78.22.1";
10
+ const packageVersion = "78.22.3";
11
11
  const halfFocusRing = 1;
12
12
  const dropOffset = '0, 8';
13
13
  class DropList extends Component {
@@ -234,5 +234,45 @@ export var messages = defineMessages({
234
234
  id: 'fabric.editor.tableFullWidthLabel',
235
235
  defaultMessage: 'Full-width',
236
236
  description: 'Trigger table width to full-width mode'
237
+ },
238
+ startedColumnResize: {
239
+ id: 'fabric.editor.tables.startedColumnResize',
240
+ defaultMessage: 'Started column resize',
241
+ description: 'Screen Reader announces when the user engages the column resizer'
242
+ },
243
+ focusedOtherResize: {
244
+ id: 'fabric.editor.tables.otherResize',
245
+ defaultMessage: 'Switched to the {direction} column resize',
246
+ description: 'Screen Reader announces when the user switches to the left or right column resizer'
247
+ },
248
+ changedColumnWidth: {
249
+ id: 'fabric.editor.tables.columnWidth',
250
+ defaultMessage: 'Column width was changed to {width} pixels',
251
+ description: 'Screen Reader announces when the user modifies the column width'
252
+ },
253
+ columnLeftResize: {
254
+ id: 'fabric.editor.tables.columnLeftResize',
255
+ defaultMessage: 'left',
256
+ description: 'Screen Reader announces the jump to the preceding column resizer'
257
+ },
258
+ columnRightResize: {
259
+ id: 'fabric.editor.tables.columnRightResize',
260
+ defaultMessage: 'right',
261
+ description: 'Screen Reader announces the jump to the subsequent column resizer'
262
+ },
263
+ columnResizeStop: {
264
+ id: 'fabric.editor.tables.resizeStop',
265
+ defaultMessage: 'Stopped resize',
266
+ description: 'Screen Reader announces when the user discontinues the resizing operation'
267
+ },
268
+ columnResizeOverflow: {
269
+ id: 'fabric.editor.tables.columnResizeOverflow',
270
+ defaultMessage: 'You can only resize this column while the table has a scroll bar.',
271
+ description: 'Screen Reader announces when the user attempts to resize the last column without the table being in overflow state'
272
+ },
273
+ columnResizeLast: {
274
+ id: 'fabric.editor.tables.columnResizeLast',
275
+ defaultMessage: 'You can only resize this column to the left.',
276
+ description: 'Screen Reader announces when the user attempts to resize the last column when only the previous one is available for resizing'
237
277
  }
238
278
  });
@@ -6,7 +6,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
6
6
  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; }
7
7
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
8
8
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
9
- var packageVersion = "78.22.1";
9
+ var packageVersion = "78.22.3";
10
10
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
11
11
  // Remove URL as it has UGC
12
12
  // TODO: Sanitise the URL instead of just removing it
@@ -17,7 +17,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
17
17
  import { N0, N50A, N60A, N900 } from '@atlaskit/theme/colors';
18
18
  import Layer from '../Layer';
19
19
  var packageName = "@atlaskit/editor-common";
20
- var packageVersion = "78.22.1";
20
+ var packageVersion = "78.22.3";
21
21
  var halfFocusRing = 1;
22
22
  var dropOffset = '0, 8';
23
23
  var DropList = /*#__PURE__*/function (_Component) {
@@ -234,4 +234,44 @@ export declare const messages: {
234
234
  defaultMessage: string;
235
235
  description: string;
236
236
  };
237
+ startedColumnResize: {
238
+ id: string;
239
+ defaultMessage: string;
240
+ description: string;
241
+ };
242
+ focusedOtherResize: {
243
+ id: string;
244
+ defaultMessage: string;
245
+ description: string;
246
+ };
247
+ changedColumnWidth: {
248
+ id: string;
249
+ defaultMessage: string;
250
+ description: string;
251
+ };
252
+ columnLeftResize: {
253
+ id: string;
254
+ defaultMessage: string;
255
+ description: string;
256
+ };
257
+ columnRightResize: {
258
+ id: string;
259
+ defaultMessage: string;
260
+ description: string;
261
+ };
262
+ columnResizeStop: {
263
+ id: string;
264
+ defaultMessage: string;
265
+ description: string;
266
+ };
267
+ columnResizeOverflow: {
268
+ id: string;
269
+ defaultMessage: string;
270
+ description: string;
271
+ };
272
+ columnResizeLast: {
273
+ id: string;
274
+ defaultMessage: string;
275
+ description: string;
276
+ };
237
277
  };
@@ -234,4 +234,44 @@ export declare const messages: {
234
234
  defaultMessage: string;
235
235
  description: string;
236
236
  };
237
+ startedColumnResize: {
238
+ id: string;
239
+ defaultMessage: string;
240
+ description: string;
241
+ };
242
+ focusedOtherResize: {
243
+ id: string;
244
+ defaultMessage: string;
245
+ description: string;
246
+ };
247
+ changedColumnWidth: {
248
+ id: string;
249
+ defaultMessage: string;
250
+ description: string;
251
+ };
252
+ columnLeftResize: {
253
+ id: string;
254
+ defaultMessage: string;
255
+ description: string;
256
+ };
257
+ columnRightResize: {
258
+ id: string;
259
+ defaultMessage: string;
260
+ description: string;
261
+ };
262
+ columnResizeStop: {
263
+ id: string;
264
+ defaultMessage: string;
265
+ description: string;
266
+ };
267
+ columnResizeOverflow: {
268
+ id: string;
269
+ defaultMessage: string;
270
+ description: string;
271
+ };
272
+ columnResizeLast: {
273
+ id: string;
274
+ defaultMessage: string;
275
+ description: string;
276
+ };
237
277
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "78.22.1",
3
+ "version": "78.22.3",
4
4
  "description": "A package that contains common classes and components for editor and renderer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -126,7 +126,7 @@
126
126
  "@atlaskit/mention": "^23.0.0",
127
127
  "@atlaskit/menu": "^2.1.0",
128
128
  "@atlaskit/platform-feature-flags": "^0.2.0",
129
- "@atlaskit/primitives": "^5.1.0",
129
+ "@atlaskit/primitives": "^5.2.0",
130
130
  "@atlaskit/profilecard": "^19.11.0",
131
131
  "@atlaskit/section-message": "^6.4.0",
132
132
  "@atlaskit/smart-card": "^26.50.0",