@atlaskit/editor-common 78.22.0 → 78.22.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 +12 -0
- package/dist/cjs/extensibility/Extension/Extension/styles.js +2 -1
- package/dist/cjs/extensibility/MultiBodiedExtension/styles.js +2 -1
- package/dist/cjs/messages/table.js +40 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/quick-insert/utils.js +1 -0
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/extensibility/Extension/Extension/styles.js +3 -2
- package/dist/es2019/extensibility/MultiBodiedExtension/styles.js +3 -2
- package/dist/es2019/messages/table.js +40 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/quick-insert/utils.js +1 -0
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/extensibility/Extension/Extension/styles.js +3 -2
- package/dist/esm/extensibility/MultiBodiedExtension/styles.js +3 -2
- package/dist/esm/messages/table.js +40 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/quick-insert/utils.js +1 -0
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/messages/table.d.ts +40 -0
- package/dist/types-ts4.5/messages/table.d.ts +40 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 78.22.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
## 78.22.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#85506](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85506) [`9b0e106465b6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9b0e106465b6) - [ux] Updates border color to a darker one after AY11 suggestion after their review
|
|
14
|
+
|
|
3
15
|
## 78.22.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -21,7 +21,8 @@ var wrapperStyle = exports.wrapperStyle = (0, _react.css)(_styles.wrapperDefault
|
|
|
21
21
|
border: "1px solid transparent" // adding this so macro doesn't jump when hover border is shown
|
|
22
22
|
},
|
|
23
23
|
'&.with-hover-border': {
|
|
24
|
-
border: "1px solid ".concat("var(--ds-border, ".concat(_colors.
|
|
24
|
+
border: "1px solid ".concat("var(--ds-border-bold, ".concat(_colors.N100, ")")),
|
|
25
|
+
opacity: '86%'
|
|
25
26
|
},
|
|
26
27
|
'&.with-margin-styles': {
|
|
27
28
|
margin: "0 ".concat("var(--ds-space-negative-150, -12px)"),
|
|
@@ -30,7 +30,8 @@ var mbeExtensionWrapperCSSStyles = exports.mbeExtensionWrapperCSSStyles = (0, _r
|
|
|
30
30
|
border: "1px solid ".concat("var(--ds-border-inverse, ".concat(_colors.N0, ")")) // adding this so macro doesn't jump when hover border is shown
|
|
31
31
|
},
|
|
32
32
|
'&.with-hover-border': {
|
|
33
|
-
border: "1px solid ".concat("var(--ds-border, ".concat(_colors.
|
|
33
|
+
border: "1px solid ".concat("var(--ds-border-bold, ".concat(_colors.N100, ")")),
|
|
34
|
+
opacity: '86%'
|
|
34
35
|
}
|
|
35
36
|
});
|
|
36
37
|
var overlayStyles = exports.overlayStyles = (0, _react.css)({
|
|
@@ -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.
|
|
19
|
+
var packageVersion = "78.22.2";
|
|
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.
|
|
25
|
+
var packageVersion = "78.22.2";
|
|
26
26
|
var halfFocusRing = 1;
|
|
27
27
|
var dropOffset = '0, 8';
|
|
28
28
|
var DropList = /*#__PURE__*/function (_Component) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { css } from '@emotion/react';
|
|
2
|
-
import { N30 } from '@atlaskit/theme/colors';
|
|
2
|
+
import { N100, N30 } from '@atlaskit/theme/colors';
|
|
3
3
|
import { wrapperDefault } from '../styles';
|
|
4
4
|
export const widerLayoutClassName = 'wider-layout';
|
|
5
5
|
export const wrapperStyle = css(wrapperDefault, {
|
|
@@ -15,7 +15,8 @@ export const wrapperStyle = css(wrapperDefault, {
|
|
|
15
15
|
border: `1px solid transparent` // adding this so macro doesn't jump when hover border is shown
|
|
16
16
|
},
|
|
17
17
|
'&.with-hover-border': {
|
|
18
|
-
border: `1px solid ${`var(--ds-border, ${
|
|
18
|
+
border: `1px solid ${`var(--ds-border-bold, ${N100})`}`,
|
|
19
|
+
opacity: '86%'
|
|
19
20
|
},
|
|
20
21
|
'&.with-margin-styles': {
|
|
21
22
|
margin: `0 ${"var(--ds-space-negative-150, -12px)"}`,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { css } from '@emotion/react';
|
|
2
|
-
import { N0,
|
|
2
|
+
import { N0, N100 } from '@atlaskit/theme/colors';
|
|
3
3
|
import { wrapperDefault } from '../Extension/styles';
|
|
4
4
|
|
|
5
5
|
// Wrapper the extension title and extensionContainer
|
|
@@ -25,7 +25,8 @@ export const mbeExtensionWrapperCSSStyles = css(wrapperDefault, {
|
|
|
25
25
|
border: `1px solid ${`var(--ds-border-inverse, ${N0})`}` // adding this so macro doesn't jump when hover border is shown
|
|
26
26
|
},
|
|
27
27
|
'&.with-hover-border': {
|
|
28
|
-
border: `1px solid ${`var(--ds-border, ${
|
|
28
|
+
border: `1px solid ${`var(--ds-border-bold, ${N100})`}`,
|
|
29
|
+
opacity: '86%'
|
|
29
30
|
}
|
|
30
31
|
});
|
|
31
32
|
export const overlayStyles = css({
|
|
@@ -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.
|
|
3
|
+
const packageVersion = "78.22.2";
|
|
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
|
|
@@ -22,6 +22,7 @@ export const memoProcessQuickInsertItems = (items, intl) => {
|
|
|
22
22
|
return memoizedResults.flatMap(item => typeof item === 'function' && item.disableMemo ? item(intl) : item);
|
|
23
23
|
};
|
|
24
24
|
const options = {
|
|
25
|
+
distance: 300,
|
|
25
26
|
threshold: 0.3,
|
|
26
27
|
keys: [{
|
|
27
28
|
name: 'title',
|
|
@@ -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.
|
|
10
|
+
const packageVersion = "78.22.2";
|
|
11
11
|
const halfFocusRing = 1;
|
|
12
12
|
const dropOffset = '0, 8';
|
|
13
13
|
class DropList extends Component {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { css } from '@emotion/react';
|
|
2
|
-
import { N30 } from '@atlaskit/theme/colors';
|
|
2
|
+
import { N100, N30 } from '@atlaskit/theme/colors';
|
|
3
3
|
import { wrapperDefault } from '../styles';
|
|
4
4
|
export var widerLayoutClassName = 'wider-layout';
|
|
5
5
|
export var wrapperStyle = css(wrapperDefault, {
|
|
@@ -15,7 +15,8 @@ export var wrapperStyle = css(wrapperDefault, {
|
|
|
15
15
|
border: "1px solid transparent" // adding this so macro doesn't jump when hover border is shown
|
|
16
16
|
},
|
|
17
17
|
'&.with-hover-border': {
|
|
18
|
-
border: "1px solid ".concat("var(--ds-border, ".concat(
|
|
18
|
+
border: "1px solid ".concat("var(--ds-border-bold, ".concat(N100, ")")),
|
|
19
|
+
opacity: '86%'
|
|
19
20
|
},
|
|
20
21
|
'&.with-margin-styles': {
|
|
21
22
|
margin: "0 ".concat("var(--ds-space-negative-150, -12px)"),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { css } from '@emotion/react';
|
|
2
|
-
import { N0,
|
|
2
|
+
import { N0, N100 } from '@atlaskit/theme/colors';
|
|
3
3
|
import { wrapperDefault } from '../Extension/styles';
|
|
4
4
|
|
|
5
5
|
// Wrapper the extension title and extensionContainer
|
|
@@ -25,7 +25,8 @@ export var mbeExtensionWrapperCSSStyles = css(wrapperDefault, {
|
|
|
25
25
|
border: "1px solid ".concat("var(--ds-border-inverse, ".concat(N0, ")")) // adding this so macro doesn't jump when hover border is shown
|
|
26
26
|
},
|
|
27
27
|
'&.with-hover-border': {
|
|
28
|
-
border: "1px solid ".concat("var(--ds-border, ".concat(
|
|
28
|
+
border: "1px solid ".concat("var(--ds-border-bold, ".concat(N100, ")")),
|
|
29
|
+
opacity: '86%'
|
|
29
30
|
}
|
|
30
31
|
});
|
|
31
32
|
export var overlayStyles = css({
|
|
@@ -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.
|
|
9
|
+
var packageVersion = "78.22.2";
|
|
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.
|
|
20
|
+
var packageVersion = "78.22.2";
|
|
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.
|
|
3
|
+
"version": "78.22.2",
|
|
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.
|
|
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",
|