@atlaskit/editor-common 114.30.3 → 114.30.5
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 +17 -0
- package/dist/cjs/analytics/types/enums.js +1 -0
- package/dist/cjs/code-block/index.js +2 -2
- package/dist/cjs/element-browser/messages.js +2 -2
- package/dist/cjs/floating-toolbar/messages.js +2 -2
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/styles/shared/emoji.js +2 -0
- package/dist/cjs/styles/shared/table.js +2 -2
- package/dist/cjs/styles/shared/task-decision.js +3 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/analytics/types/enums.js +1 -0
- package/dist/es2019/code-block/index.js +2 -2
- package/dist/es2019/element-browser/messages.js +2 -2
- package/dist/es2019/floating-toolbar/messages.js +2 -2
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/styles/shared/emoji.js +3 -0
- package/dist/es2019/styles/shared/table.js +57 -7
- package/dist/es2019/styles/shared/task-decision.js +3 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/analytics/types/enums.js +1 -0
- package/dist/esm/code-block/index.js +2 -2
- package/dist/esm/element-browser/messages.js +2 -2
- package/dist/esm/floating-toolbar/messages.js +2 -2
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/styles/shared/emoji.js +3 -0
- package/dist/esm/styles/shared/table.js +2 -2
- package/dist/esm/styles/shared/task-decision.js +3 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/analytics/types/enums.d.ts +2 -1
- package/dist/types/element-browser/messages.d.ts +7 -33
- package/dist/types/floating-toolbar/messages.d.ts +7 -48
- package/dist/types/styles/shared/emoji.d.ts +2 -2
- package/dist/types-ts4.5/analytics/types/enums.d.ts +2 -1
- package/dist/types-ts4.5/element-browser/messages.d.ts +7 -33
- package/dist/types-ts4.5/floating-toolbar/messages.d.ts +7 -48
- package/dist/types-ts4.5/styles/shared/emoji.d.ts +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 114.30.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2265b040edb79`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2265b040edb79) -
|
|
8
|
+
fix invalid TASK_LIST_CONTAINER selector
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 114.30.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`3a69722c61c6a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3a69722c61c6a) -
|
|
16
|
+
Add rounded corners to table node in editor. This works by hiding the actual table border and
|
|
17
|
+
adding a pseudo element with rounded corners.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 114.30.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -379,6 +379,7 @@ var ACTION_SUBJECT = exports.ACTION_SUBJECT = /*#__PURE__*/function (ACTION_SUBJ
|
|
|
379
379
|
ACTION_SUBJECT["PASTE_ACTIONS_MENU"] = "pasteActionsMenu";
|
|
380
380
|
ACTION_SUBJECT["SYNCED_BLOCK"] = "syncedBlock";
|
|
381
381
|
ACTION_SUBJECT["NATIVE_EMBED"] = "nativeEmbed";
|
|
382
|
+
ACTION_SUBJECT["NATIVE_EMBED_FALLBACK"] = "nativeEmbedFallback";
|
|
382
383
|
return ACTION_SUBJECT;
|
|
383
384
|
}({});
|
|
384
385
|
var ACTION_SUBJECT_ID = exports.ACTION_SUBJECT_ID = /*#__PURE__*/function (ACTION_SUBJECT_ID) {
|
|
@@ -19,8 +19,8 @@ var getDefaultCodeBlockAttrs = exports.getDefaultCodeBlockAttrs = function getDe
|
|
|
19
19
|
return attrs;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
//
|
|
23
|
-
if ((attrs === null || attrs === void 0 ? void 0 : attrs.wrap)
|
|
22
|
+
// Only boolean wrap values represent caller intent. null/undefined means unset.
|
|
23
|
+
if ((attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === true || (attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === false) {
|
|
24
24
|
return attrs;
|
|
25
25
|
}
|
|
26
26
|
return _objectSpread(_objectSpread({}, attrs), {}, {
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _reactIntl = require("react-intl");
|
|
8
|
-
var
|
|
8
|
+
var message = (0, _reactIntl.defineMessages)({
|
|
9
9
|
elementAfterInputMessage: {
|
|
10
10
|
id: 'fabric.editor.elementbrowser.searchbar.elementAfterInput',
|
|
11
11
|
defaultMessage: 'Enter',
|
|
@@ -37,4 +37,4 @@ var _default_1 = (0, _reactIntl.defineMessages)({
|
|
|
37
37
|
description: 'Assistive text to describe the list of suggestions filtered by typed user input'
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
|
-
var _default = exports.default =
|
|
40
|
+
var _default = exports.default = message;
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _reactIntl = require("react-intl");
|
|
8
|
-
var
|
|
8
|
+
var message = (0, _reactIntl.defineMessages)({
|
|
9
9
|
confirmModalDefaultHeading: {
|
|
10
10
|
id: 'fabric.editor.floatingToolbar.confirmModalHeading',
|
|
11
11
|
defaultMessage: 'Are you sure?',
|
|
@@ -52,4 +52,4 @@ var _default_1 = (0, _reactIntl.defineMessages)({
|
|
|
52
52
|
description: 'Button to scroll right when the toolbar is in the overflow state'
|
|
53
53
|
}
|
|
54
54
|
});
|
|
55
|
-
var _default = exports.default =
|
|
55
|
+
var _default = exports.default = message;
|
|
@@ -19,7 +19,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
19
19
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
20
20
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
21
21
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
22
|
-
var packageVersion = "114.30.
|
|
22
|
+
var packageVersion = "114.30.4";
|
|
23
23
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
24
24
|
// Remove URL as it has UGC
|
|
25
25
|
// Ignored via go/ees007
|
|
@@ -5,6 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.EmojiSharedCssClassName = void 0;
|
|
7
7
|
var _emoji = require("@atlaskit/emoji");
|
|
8
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
9
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
8
10
|
var EmojiSharedCssClassName = exports.EmojiSharedCssClassName = {
|
|
9
11
|
EMOJI_CONTAINER: 'emojiView-content-wrap',
|
|
10
12
|
// eslint-disable-next-line @atlaskit/editor/no-re-export
|
|
@@ -67,11 +67,11 @@ var firstNodeWithNotMarginTop = function firstNodeWithNotMarginTop() {
|
|
|
67
67
|
var tableSharedStyle = exports.tableSharedStyle = function tableSharedStyle() {
|
|
68
68
|
var browser = (0, _browser.getBrowserInfo)();
|
|
69
69
|
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Appears safe to auto-fix, but leaving it up to the team to remediate as the readability only gets worse with autofixing
|
|
70
|
-
return (0, _react.css)(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n\t\t", "\n\t\t.", " {\n\t\t\tposition: relative;\n\t\t\tmargin: 0 auto ", ";\n\t\t\tbox-sizing: border-box;\n\n\t\t\t/**\n
|
|
70
|
+
return (0, _react.css)(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n\t\t", "\n\t\t.", " {\n\t\t\tposition: relative;\n\t\t\tmargin: 0 auto ", ";\n\t\t\tbox-sizing: border-box;\n\n\t\t\t/**\n\t\t\t * Fix block top alignment inside table cells.\n\t\t\t */\n\t\t\t.decisionItemView-content-wrap:first-of-type > div {\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t\t", "\n\t\t}\n\t\t.", "[data-number-column='true'] {\n\t\t\tpadding-left: ", "px;\n\t\t\tclear: both;\n\t\t}\n\n\t\t.", " {\n\t\t\twill-change: width, margin-left;\n\t\t}\n\n\t\t.", " table {\n\t\t\twill-change: width;\n\t\t}\n\t\t.", " > table {\n\t\t\tmargin: ", " 0 0 0;\n\t\t}\n\n\t\t.", " > table,\n\t\t.", " > table {\n\t\t\tmargin: ", " ", " 0 0;\n\t\t}\n\n\t\t/* support panel nested in table */\n\t\t", "\n\n\t\t/* avoid applying styles to nested tables (possible via extensions) */\n\t.", " > table,\n\t.", " > table,\n\t.", " > table {\n\t\t\tborder-collapse: collapse;\n\t\t\t", "\n\t\t\ttable-layout: fixed;\n\t\t\tfont-size: 1em;\n\t\t\twidth: 100%;\n\t\t\t", "\n\n\t\t\t&[data-autosize='true'] {\n\t\t\t\ttable-layout: auto;\n\t\t\t}\n\n\t\t\t& {\n\t\t\t\t* {\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t}\n\t\t\t\thr {\n\t\t\t\t\tbox-sizing: content-box;\n\t\t\t\t}\n\n\t\t\t\ttbody {\n\t\t\t\t\tborder-bottom: none;\n\t\t\t\t}\n\t\t\t\tth td {\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > th,\n\t\t\t\t> tbody > tr > td {\n\t\t\t\t\tmin-width: ", "px;\n\t\t\t\t\tfont-weight: ", ";\n\t\t\t\t\tvertical-align: top;\n\t\t\t\t\tborder: 1px solid ", ";\n\t\t\t\t\tborder-right-width: 0;\n\t\t\t\t\tborder-bottom-width: 0;\n\n\t\t\t\t\tpadding: ", ";\n\t\t\t\t\t/* https://stackoverflow.com/questions/7517127/borders-not-shown-in-firefox-with-border-collapse-on-table-position-relative-o */\n\t\t\t\t\t", "\n\n\t\t\t\t\t", "\n\n\t\t\t\tth p:not(:first-of-type),\n\t\t\t\ttd p:not(:first-of-type) {\n\t\t\t\t\t\tmargin-top: ", ";\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t/* Ensures nested tables are compatible with parent table background color - uses specificity to ensure tables nested by extensions are not affected */\n\t\t\t\t> tbody > tr > td {\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t}\n\n\t\t\t\t", "\n\t\t\t\tth {\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\ttext-align: left;\n\n\t\t\t\t\t/* only apply this styling to codeblocks in default background headercells */\n\t\t\t\t\t/* TODO this needs to be overhauled as it relies on unsafe selectors */\n\t\t\t\t\t", " {\n\t\t\t\t\t\t.", ":not(.danger) {\n\t\t\t\t\t\t\tbackground-color: ", ";\n\n\t\t\t\t\t\t\t:not(.", ") {\n\t\t\t\t\t\t\t\tbox-shadow: 0px 0px 0px 1px ", ";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.", " {\n\t\t\t\t\t\t\t\tbackground-image: ", ";\n\n\t\t\t\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.", " {\n\t\t\t\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t/* this is only relevant to the element taken care of by renderer */\n\t\t\t\t\t\t\t> [data-ds--code--code-block] {\n\t\t\t\t\t\t\t\tbackground-image: ", "!important;\n\n\t\t\t\t\t\t\t\tbackground-color: ", "!important;\n\n\t\t\t\t\t\t\t\t/* selector lives inside @atlaskit/code */\n\t\t\t\t\t\t\t\t--ds--code--line-number-bg-color: ", ";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t", "\n\t"])), (0, _tableCell.tableCellBackgroundStyleOverride)(), TableSharedCssClassName.TABLE_CONTAINER, "var(--ds-space-200, 16px)", (0, _expValEquals.expValEquals)('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* Fake side borders are not needed when the rounded overlay owns the outer border. */\n\t\t\t\t.".concat(TableSharedCssClassName.TABLE_RIGHT_BORDER, ",\n\t\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, " {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t\t\t") : ".".concat(TableSharedCssClassName.TABLE_RIGHT_BORDER, ",\n\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, " {\n\t\t\t\tdisplay: block;\n\t\t\t\twidth: 1px;\n\t\t\t\theight: calc(100% - ", "var(--ds-space-300, 24px)", ");\n\t\t\t\tbackground: ", "var(--ds-background-accent-gray-subtler, #DDDEE1)", ";\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: ", "var(--ds-space-300, 24px)", ";\n\t\t\t}\n\t\t\t.").concat(TableSharedCssClassName.TABLE_RIGHT_BORDER, " {\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, " {\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, "[data-with-numbered-table='true'] {\n\t\t\t\tleft: ").concat(_editorSharedStyles.akEditorTableNumberColumnWidth - 1, "px;\n\t\t\t}"), TableSharedCssClassName.TABLE_CONTAINER, _editorSharedStyles.akEditorTableNumberColumnWidth - 1, TableSharedCssClassName.TABLE_RESIZER_CONTAINER, TableSharedCssClassName.TABLE_RESIZER_CONTAINER, TableSharedCssClassName.TABLE_NODE_WRAPPER, "var(--ds-space-300, 24px)", TableSharedCssClassName.TABLE_CONTAINER, TableSharedCssClassName.TABLE_STICKY_WRAPPER, "var(--ds-space-300, 24px)", "var(--ds-space-100, 8px)", (0, _platformFeatureFlags.fg)('platform_editor_bordered_panel_nested_in_table') ? ".".concat(TableSharedCssClassName.TABLE_NODE_WRAPPER, " .ak-editor-panel {\n\t\t\tborder: ", "var(--ds-border-width, 1px)", " solid ", "var(--ds-border, #0B120E24)", ";\n\t\t}") : '', TableSharedCssClassName.TABLE_CONTAINER, TableSharedCssClassName.TABLE_NODE_WRAPPER, TableSharedCssClassName.TABLE_STICKY_WRAPPER, (0, _expValEquals.expValEquals)('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* Keep a transparent border so the collapsed border model reserves the same 1px slot\n\t\t\t on the table edge; the ::after overlay draws the visible rounded border instead. */\n\t\t\tborder: ".concat(tableCellBorderWidth, "px solid transparent;") : "border: ".concat(tableCellBorderWidth, "px solid ", "var(--ds-background-accent-gray-subtler, #DDDEE1)", ";\n\t\t\tborder-left-color: transparent;\n\t\t\tborder-right-color: transparent;"), (0, _expValEquals.expValEquals)('platform_editor_table_q4_loveability', 'isEnabled', true) ? "position: relative;\n\n\t\t\t/* Table-width outer-border owner for overflow-safe rounded corners. */\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tposition: absolute;\n\t\t\t\tinset: 0;\n\t\t\t\tborder: ".concat(tableCellBorderWidth, "px solid ", "var(--ds-background-accent-gray-subtler, #DDDEE1)", ";\n\t\t\t\tborder-radius: ", "var(--ds-radius-medium, 6px)", ";\n\t\t\t\tpointer-events: none;\n\t\t\t\tz-index: 1;\n\t\t\t}") : '', "var(--ds-background-neutral-subtle, #00000000)", tableCellMinWidth, "var(--ds-font-weight-regular, 400)", "var(--ds-background-accent-gray-subtler, #DDDEE1)", "var(--ds-space-100, 8px)", browser.gecko || browser.ie || browser.mac && browser.chrome ? 'background-clip: padding-box;' : '', firstNodeWithNotMarginTop(), "var(--ds-space-150, 12px)", "var(--ds-surface, #FFFFFF)", (0, _expValEquals.expValEquals)('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* Let the wrapper overlay own the outer table perimeter.\n\t\t\t\t data-reaches-* attributes are set by the TableCell node view. */\n\t\t\t\t> tbody > tr > th[data-reaches-top],\n\t\t\t\t> tbody > tr > td[data-reaches-top] {\n\t\t\t\t\tborder-top-color: transparent;\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > th[data-reaches-left],\n\t\t\t\t> tbody > tr > td[data-reaches-left] {\n\t\t\t\t\tborder-left-color: transparent;\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > td[data-reaches-left]::after {\n\t\t\t\t\tborder-left-color: transparent;\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > td[data-reaches-bottom]::after,\n\t\t\t\t> tbody > tr > th[data-reaches-bottom]::after {\n\t\t\t\t\tborder-bottom-color: transparent;\n\t\t\t\t}" : '', "var(--ds-background-accent-gray-subtlest, #F0F1F2)", (0, _expValEquals.expValEquals)('platform_editor_native_anchor_with_dnd', 'isEnabled', true) ? '&:not(.danger)' : '&:not([style]):not(.danger)', _codeBlock.CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, "var(--ds-surface-raised, #FFFFFF)", _editorSharedStyles.akEditorSelectedNodeClassName, "var(--ds-border, #0B120E24)", _codeBlock.CodeBlockSharedCssClassName.CODEBLOCK_CONTENT_WRAPPER, (0, _editorSharedStyles.overflowShadow)({
|
|
71
71
|
leftCoverWidth: "var(--ds-space-300, 24px)"
|
|
72
72
|
}), "var(--ds-background-neutral, #0515240F)", _codeBlock.CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER, "var(--ds-background-neutral, #0515240F)", (0, _editorSharedStyles.overflowShadow)({
|
|
73
73
|
leftCoverWidth: "var(--ds-space-300, 24px)"
|
|
74
|
-
}), "var(--ds-background-neutral, #0515240F)", "var(--ds-background-neutral, #0515240F)");
|
|
74
|
+
}), "var(--ds-background-neutral, #0515240F)", "var(--ds-background-neutral, #0515240F)", (0, _expValEquals.expValEquals)('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* When the number column is enabled, the left visual edge belongs to the number column.\n\t\t Remove the left border-radius and left border from the table's ::after overlay\n\t\t so it doesn't double-up or round where the number column already provides that edge. */\n\t\t.".concat(TableSharedCssClassName.TABLE_CONTAINER, "[data-number-column='true'] {\n\t\t\t> .").concat(TableSharedCssClassName.TABLE_NODE_WRAPPER, " > table::after,\n\t\t\t> .").concat(TableSharedCssClassName.TABLE_STICKY_WRAPPER, " > table::after {\n\t\t\t\tborder-top-left-radius: 0;\n\t\t\t\tborder-bottom-left-radius: 0;\n\t\t\t\tborder-left-color: transparent;\n\t\t\t}\n\t\t}") : '');
|
|
75
75
|
};
|
|
76
76
|
var calcTableWidth = exports.calcTableWidth = function calcTableWidth(layout, containerWidth) {
|
|
77
77
|
var addControllerPadding = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
|
|
@@ -4,11 +4,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.TaskDecisionSharedCssClassName = void 0;
|
|
7
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
8
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
7
9
|
var TaskDecisionSharedCssClassName = exports.TaskDecisionSharedCssClassName = {
|
|
8
10
|
DECISION_CONTAINER: 'decisionItemView-content-wrap',
|
|
9
11
|
TASK_CONTAINER: 'taskItemView-content-wrap',
|
|
10
12
|
//NOTE: value is a selector (data attribute), not a class name
|
|
11
|
-
TASK_LIST_CONTAINER: '[data-node-type="actionList]',
|
|
13
|
+
TASK_LIST_CONTAINER: '[data-node-type="actionList"]',
|
|
12
14
|
TASK_ITEM: 'task-item',
|
|
13
15
|
TASK_CHECKBOX_CONTAINER: 'task-item-checkbox-wrap'
|
|
14
16
|
};
|
|
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
24
24
|
* @jsx jsx
|
|
25
25
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
26
26
|
var packageName = "@atlaskit/editor-common";
|
|
27
|
-
var packageVersion = "114.30.
|
|
27
|
+
var packageVersion = "114.30.4";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -373,6 +373,7 @@ export let ACTION_SUBJECT = /*#__PURE__*/function (ACTION_SUBJECT) {
|
|
|
373
373
|
ACTION_SUBJECT["PASTE_ACTIONS_MENU"] = "pasteActionsMenu";
|
|
374
374
|
ACTION_SUBJECT["SYNCED_BLOCK"] = "syncedBlock";
|
|
375
375
|
ACTION_SUBJECT["NATIVE_EMBED"] = "nativeEmbed";
|
|
376
|
+
ACTION_SUBJECT["NATIVE_EMBED_FALLBACK"] = "nativeEmbedFallback";
|
|
376
377
|
return ACTION_SUBJECT;
|
|
377
378
|
}({});
|
|
378
379
|
export let ACTION_SUBJECT_ID = /*#__PURE__*/function (ACTION_SUBJECT_ID) {
|
|
@@ -9,8 +9,8 @@ export const getDefaultCodeBlockAttrs = attrs => {
|
|
|
9
9
|
return attrs;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
//
|
|
13
|
-
if ((attrs === null || attrs === void 0 ? void 0 : attrs.wrap)
|
|
12
|
+
// Only boolean wrap values represent caller intent. null/undefined means unset.
|
|
13
|
+
if ((attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === true || (attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === false) {
|
|
14
14
|
return attrs;
|
|
15
15
|
}
|
|
16
16
|
return {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
|
-
const
|
|
2
|
+
const message = defineMessages({
|
|
3
3
|
elementAfterInputMessage: {
|
|
4
4
|
id: 'fabric.editor.elementbrowser.searchbar.elementAfterInput',
|
|
5
5
|
defaultMessage: 'Enter',
|
|
@@ -31,4 +31,4 @@ const _default_1 = defineMessages({
|
|
|
31
31
|
description: 'Assistive text to describe the list of suggestions filtered by typed user input'
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
|
-
export default
|
|
34
|
+
export default message;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
|
-
const
|
|
2
|
+
const message = defineMessages({
|
|
3
3
|
confirmModalDefaultHeading: {
|
|
4
4
|
id: 'fabric.editor.floatingToolbar.confirmModalHeading',
|
|
5
5
|
defaultMessage: 'Are you sure?',
|
|
@@ -46,4 +46,4 @@ const _default_1 = defineMessages({
|
|
|
46
46
|
description: 'Button to scroll right when the toolbar is in the overflow state'
|
|
47
47
|
}
|
|
48
48
|
});
|
|
49
|
-
export default
|
|
49
|
+
export default message;
|
|
@@ -4,7 +4,7 @@ import { isFedRamp } from './environment';
|
|
|
4
4
|
import { normaliseSentryBreadcrumbs, SERIALIZABLE_ATTRIBUTES } from './normalise-sentry-breadcrumbs';
|
|
5
5
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
6
6
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
7
|
-
const packageVersion = "114.30.
|
|
7
|
+
const packageVersion = "114.30.4";
|
|
8
8
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
9
9
|
// Remove URL as it has UGC
|
|
10
10
|
// Ignored via go/ees007
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { emojiImage, emojiNode, emojiPlaceholder, emojiSprite } from '@atlaskit/emoji';
|
|
2
|
+
|
|
3
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
4
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
2
5
|
export const EmojiSharedCssClassName = {
|
|
3
6
|
EMOJI_CONTAINER: 'emojiView-content-wrap',
|
|
4
7
|
// eslint-disable-next-line @atlaskit/editor/no-re-export
|
|
@@ -85,13 +85,18 @@ const tableSharedStyle = () => {
|
|
|
85
85
|
box-sizing: border-box;
|
|
86
86
|
|
|
87
87
|
/**
|
|
88
|
-
|
|
89
|
-
|
|
88
|
+
* Fix block top alignment inside table cells.
|
|
89
|
+
*/
|
|
90
90
|
.decisionItemView-content-wrap:first-of-type > div {
|
|
91
91
|
margin-top: 0;
|
|
92
92
|
}
|
|
93
|
-
|
|
93
|
+
${expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? `/* Fake side borders are not needed when the rounded overlay owns the outer border. */
|
|
94
|
+
.${TableSharedCssClassName.TABLE_RIGHT_BORDER},
|
|
94
95
|
.${TableSharedCssClassName.TABLE_LEFT_BORDER} {
|
|
96
|
+
display: none;
|
|
97
|
+
}
|
|
98
|
+
` : `.${TableSharedCssClassName.TABLE_RIGHT_BORDER},
|
|
99
|
+
.${TableSharedCssClassName.TABLE_LEFT_BORDER} {
|
|
95
100
|
display: block;
|
|
96
101
|
width: 1px;
|
|
97
102
|
height: calc(100% - ${"var(--ds-space-300, 24px)"});
|
|
@@ -107,7 +112,7 @@ const tableSharedStyle = () => {
|
|
|
107
112
|
}
|
|
108
113
|
.${TableSharedCssClassName.TABLE_LEFT_BORDER}[data-with-numbered-table='true'] {
|
|
109
114
|
left: ${akEditorTableNumberColumnWidth - 1}px;
|
|
110
|
-
}
|
|
115
|
+
}`}
|
|
111
116
|
}
|
|
112
117
|
.${TableSharedCssClassName.TABLE_CONTAINER}[data-number-column='true'] {
|
|
113
118
|
padding-left: ${akEditorTableNumberColumnWidth - 1}px;
|
|
@@ -121,7 +126,6 @@ const tableSharedStyle = () => {
|
|
|
121
126
|
.${TableSharedCssClassName.TABLE_RESIZER_CONTAINER} table {
|
|
122
127
|
will-change: width;
|
|
123
128
|
}
|
|
124
|
-
|
|
125
129
|
.${TableSharedCssClassName.TABLE_NODE_WRAPPER} > table {
|
|
126
130
|
margin: ${"var(--ds-space-300, 24px)"} 0 0 0;
|
|
127
131
|
}
|
|
@@ -141,12 +145,26 @@ const tableSharedStyle = () => {
|
|
|
141
145
|
.${TableSharedCssClassName.TABLE_NODE_WRAPPER} > table,
|
|
142
146
|
.${TableSharedCssClassName.TABLE_STICKY_WRAPPER} > table {
|
|
143
147
|
border-collapse: collapse;
|
|
144
|
-
|
|
148
|
+
${expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? `/* Keep a transparent border so the collapsed border model reserves the same 1px slot
|
|
149
|
+
on the table edge; the ::after overlay draws the visible rounded border instead. */
|
|
150
|
+
border: ${tableCellBorderWidth}px solid transparent;` : `border: ${tableCellBorderWidth}px solid ${"var(--ds-background-accent-gray-subtler, #DDDEE1)"};
|
|
145
151
|
border-left-color: transparent;
|
|
146
|
-
border-right-color: transparent
|
|
152
|
+
border-right-color: transparent;`}
|
|
147
153
|
table-layout: fixed;
|
|
148
154
|
font-size: 1em;
|
|
149
155
|
width: 100%;
|
|
156
|
+
${expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? `position: relative;
|
|
157
|
+
|
|
158
|
+
/* Table-width outer-border owner for overflow-safe rounded corners. */
|
|
159
|
+
&::after {
|
|
160
|
+
content: '';
|
|
161
|
+
position: absolute;
|
|
162
|
+
inset: 0;
|
|
163
|
+
border: ${tableCellBorderWidth}px solid ${"var(--ds-background-accent-gray-subtler, #DDDEE1)"};
|
|
164
|
+
border-radius: ${"var(--ds-radius-medium, 6px)"};
|
|
165
|
+
pointer-events: none;
|
|
166
|
+
z-index: 1;
|
|
167
|
+
}` : ''}
|
|
150
168
|
|
|
151
169
|
&[data-autosize='true'] {
|
|
152
170
|
table-layout: auto;
|
|
@@ -193,6 +211,26 @@ const tableSharedStyle = () => {
|
|
|
193
211
|
background-color: ${"var(--ds-surface, #FFFFFF)"};
|
|
194
212
|
}
|
|
195
213
|
|
|
214
|
+
${expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? `/* Let the wrapper overlay own the outer table perimeter.
|
|
215
|
+
data-reaches-* attributes are set by the TableCell node view. */
|
|
216
|
+
> tbody > tr > th[data-reaches-top],
|
|
217
|
+
> tbody > tr > td[data-reaches-top] {
|
|
218
|
+
border-top-color: transparent;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
> tbody > tr > th[data-reaches-left],
|
|
222
|
+
> tbody > tr > td[data-reaches-left] {
|
|
223
|
+
border-left-color: transparent;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
> tbody > tr > td[data-reaches-left]::after {
|
|
227
|
+
border-left-color: transparent;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
> tbody > tr > td[data-reaches-bottom]::after,
|
|
231
|
+
> tbody > tr > th[data-reaches-bottom]::after {
|
|
232
|
+
border-bottom-color: transparent;
|
|
233
|
+
}` : ''}
|
|
196
234
|
th {
|
|
197
235
|
background-color: ${"var(--ds-background-accent-gray-subtlest, #F0F1F2)"};
|
|
198
236
|
text-align: left;
|
|
@@ -235,6 +273,18 @@ const tableSharedStyle = () => {
|
|
|
235
273
|
}
|
|
236
274
|
}
|
|
237
275
|
}
|
|
276
|
+
|
|
277
|
+
${expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? `/* When the number column is enabled, the left visual edge belongs to the number column.
|
|
278
|
+
Remove the left border-radius and left border from the table's ::after overlay
|
|
279
|
+
so it doesn't double-up or round where the number column already provides that edge. */
|
|
280
|
+
.${TableSharedCssClassName.TABLE_CONTAINER}[data-number-column='true'] {
|
|
281
|
+
> .${TableSharedCssClassName.TABLE_NODE_WRAPPER} > table::after,
|
|
282
|
+
> .${TableSharedCssClassName.TABLE_STICKY_WRAPPER} > table::after {
|
|
283
|
+
border-top-left-radius: 0;
|
|
284
|
+
border-bottom-left-radius: 0;
|
|
285
|
+
border-left-color: transparent;
|
|
286
|
+
}
|
|
287
|
+
}` : ''}
|
|
238
288
|
`;
|
|
239
289
|
};
|
|
240
290
|
export const calcTableWidth = (layout, containerWidth, addControllerPadding = true) => {
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
2
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
1
3
|
export const TaskDecisionSharedCssClassName = {
|
|
2
4
|
DECISION_CONTAINER: 'decisionItemView-content-wrap',
|
|
3
5
|
TASK_CONTAINER: 'taskItemView-content-wrap',
|
|
4
6
|
//NOTE: value is a selector (data attribute), not a class name
|
|
5
|
-
TASK_LIST_CONTAINER: '[data-node-type="actionList]',
|
|
7
|
+
TASK_LIST_CONTAINER: '[data-node-type="actionList"]',
|
|
6
8
|
TASK_ITEM: 'task-item',
|
|
7
9
|
TASK_CHECKBOX_CONTAINER: 'task-item-checkbox-wrap'
|
|
8
10
|
};
|
|
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import Layer from '../Layer';
|
|
16
16
|
const packageName = "@atlaskit/editor-common";
|
|
17
|
-
const packageVersion = "114.30.
|
|
17
|
+
const packageVersion = "114.30.4";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -373,6 +373,7 @@ export var ACTION_SUBJECT = /*#__PURE__*/function (ACTION_SUBJECT) {
|
|
|
373
373
|
ACTION_SUBJECT["PASTE_ACTIONS_MENU"] = "pasteActionsMenu";
|
|
374
374
|
ACTION_SUBJECT["SYNCED_BLOCK"] = "syncedBlock";
|
|
375
375
|
ACTION_SUBJECT["NATIVE_EMBED"] = "nativeEmbed";
|
|
376
|
+
ACTION_SUBJECT["NATIVE_EMBED_FALLBACK"] = "nativeEmbedFallback";
|
|
376
377
|
return ACTION_SUBJECT;
|
|
377
378
|
}({});
|
|
378
379
|
export var ACTION_SUBJECT_ID = /*#__PURE__*/function (ACTION_SUBJECT_ID) {
|
|
@@ -12,8 +12,8 @@ export var getDefaultCodeBlockAttrs = function getDefaultCodeBlockAttrs(attrs) {
|
|
|
12
12
|
return attrs;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
//
|
|
16
|
-
if ((attrs === null || attrs === void 0 ? void 0 : attrs.wrap)
|
|
15
|
+
// Only boolean wrap values represent caller intent. null/undefined means unset.
|
|
16
|
+
if ((attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === true || (attrs === null || attrs === void 0 ? void 0 : attrs.wrap) === false) {
|
|
17
17
|
return attrs;
|
|
18
18
|
}
|
|
19
19
|
return _objectSpread(_objectSpread({}, attrs), {}, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
|
-
var
|
|
2
|
+
var message = defineMessages({
|
|
3
3
|
elementAfterInputMessage: {
|
|
4
4
|
id: 'fabric.editor.elementbrowser.searchbar.elementAfterInput',
|
|
5
5
|
defaultMessage: 'Enter',
|
|
@@ -31,4 +31,4 @@ var _default_1 = defineMessages({
|
|
|
31
31
|
description: 'Assistive text to describe the list of suggestions filtered by typed user input'
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
|
-
export default
|
|
34
|
+
export default message;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
|
-
var
|
|
2
|
+
var message = defineMessages({
|
|
3
3
|
confirmModalDefaultHeading: {
|
|
4
4
|
id: 'fabric.editor.floatingToolbar.confirmModalHeading',
|
|
5
5
|
defaultMessage: 'Are you sure?',
|
|
@@ -46,4 +46,4 @@ var _default_1 = defineMessages({
|
|
|
46
46
|
description: 'Button to scroll right when the toolbar is in the overflow state'
|
|
47
47
|
}
|
|
48
48
|
});
|
|
49
|
-
export default
|
|
49
|
+
export default message;
|
|
@@ -10,7 +10,7 @@ import { isFedRamp } from './environment';
|
|
|
10
10
|
import { normaliseSentryBreadcrumbs, SERIALIZABLE_ATTRIBUTES } from './normalise-sentry-breadcrumbs';
|
|
11
11
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
12
12
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
13
|
-
var packageVersion = "114.30.
|
|
13
|
+
var packageVersion = "114.30.4";
|
|
14
14
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
15
15
|
// Remove URL as it has UGC
|
|
16
16
|
// Ignored via go/ees007
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { emojiImage, emojiNode, emojiPlaceholder, emojiSprite } from '@atlaskit/emoji';
|
|
2
|
+
|
|
3
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
4
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
2
5
|
export var EmojiSharedCssClassName = {
|
|
3
6
|
EMOJI_CONTAINER: 'emojiView-content-wrap',
|
|
4
7
|
// eslint-disable-next-line @atlaskit/editor/no-re-export
|
|
@@ -60,11 +60,11 @@ var firstNodeWithNotMarginTop = function firstNodeWithNotMarginTop() {
|
|
|
60
60
|
var tableSharedStyle = function tableSharedStyle() {
|
|
61
61
|
var browser = getBrowserInfo();
|
|
62
62
|
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Appears safe to auto-fix, but leaving it up to the team to remediate as the readability only gets worse with autofixing
|
|
63
|
-
return css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n\t\t", "\n\t\t.", " {\n\t\t\tposition: relative;\n\t\t\tmargin: 0 auto ", ";\n\t\t\tbox-sizing: border-box;\n\n\t\t\t/**\n
|
|
63
|
+
return css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n\t\t", "\n\t\t.", " {\n\t\t\tposition: relative;\n\t\t\tmargin: 0 auto ", ";\n\t\t\tbox-sizing: border-box;\n\n\t\t\t/**\n\t\t\t * Fix block top alignment inside table cells.\n\t\t\t */\n\t\t\t.decisionItemView-content-wrap:first-of-type > div {\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t\t", "\n\t\t}\n\t\t.", "[data-number-column='true'] {\n\t\t\tpadding-left: ", "px;\n\t\t\tclear: both;\n\t\t}\n\n\t\t.", " {\n\t\t\twill-change: width, margin-left;\n\t\t}\n\n\t\t.", " table {\n\t\t\twill-change: width;\n\t\t}\n\t\t.", " > table {\n\t\t\tmargin: ", " 0 0 0;\n\t\t}\n\n\t\t.", " > table,\n\t\t.", " > table {\n\t\t\tmargin: ", " ", " 0 0;\n\t\t}\n\n\t\t/* support panel nested in table */\n\t\t", "\n\n\t\t/* avoid applying styles to nested tables (possible via extensions) */\n\t.", " > table,\n\t.", " > table,\n\t.", " > table {\n\t\t\tborder-collapse: collapse;\n\t\t\t", "\n\t\t\ttable-layout: fixed;\n\t\t\tfont-size: 1em;\n\t\t\twidth: 100%;\n\t\t\t", "\n\n\t\t\t&[data-autosize='true'] {\n\t\t\t\ttable-layout: auto;\n\t\t\t}\n\n\t\t\t& {\n\t\t\t\t* {\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t}\n\t\t\t\thr {\n\t\t\t\t\tbox-sizing: content-box;\n\t\t\t\t}\n\n\t\t\t\ttbody {\n\t\t\t\t\tborder-bottom: none;\n\t\t\t\t}\n\t\t\t\tth td {\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > th,\n\t\t\t\t> tbody > tr > td {\n\t\t\t\t\tmin-width: ", "px;\n\t\t\t\t\tfont-weight: ", ";\n\t\t\t\t\tvertical-align: top;\n\t\t\t\t\tborder: 1px solid ", ";\n\t\t\t\t\tborder-right-width: 0;\n\t\t\t\t\tborder-bottom-width: 0;\n\n\t\t\t\t\tpadding: ", ";\n\t\t\t\t\t/* https://stackoverflow.com/questions/7517127/borders-not-shown-in-firefox-with-border-collapse-on-table-position-relative-o */\n\t\t\t\t\t", "\n\n\t\t\t\t\t", "\n\n\t\t\t\tth p:not(:first-of-type),\n\t\t\t\ttd p:not(:first-of-type) {\n\t\t\t\t\t\tmargin-top: ", ";\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t/* Ensures nested tables are compatible with parent table background color - uses specificity to ensure tables nested by extensions are not affected */\n\t\t\t\t> tbody > tr > td {\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t}\n\n\t\t\t\t", "\n\t\t\t\tth {\n\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\ttext-align: left;\n\n\t\t\t\t\t/* only apply this styling to codeblocks in default background headercells */\n\t\t\t\t\t/* TODO this needs to be overhauled as it relies on unsafe selectors */\n\t\t\t\t\t", " {\n\t\t\t\t\t\t.", ":not(.danger) {\n\t\t\t\t\t\t\tbackground-color: ", ";\n\n\t\t\t\t\t\t\t:not(.", ") {\n\t\t\t\t\t\t\t\tbox-shadow: 0px 0px 0px 1px ", ";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.", " {\n\t\t\t\t\t\t\t\tbackground-image: ", ";\n\n\t\t\t\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.", " {\n\t\t\t\t\t\t\t\tbackground-color: ", ";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t/* this is only relevant to the element taken care of by renderer */\n\t\t\t\t\t\t\t> [data-ds--code--code-block] {\n\t\t\t\t\t\t\t\tbackground-image: ", "!important;\n\n\t\t\t\t\t\t\t\tbackground-color: ", "!important;\n\n\t\t\t\t\t\t\t\t/* selector lives inside @atlaskit/code */\n\t\t\t\t\t\t\t\t--ds--code--line-number-bg-color: ", ";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t", "\n\t"])), tableCellBackgroundStyleOverride(), TableSharedCssClassName.TABLE_CONTAINER, "var(--ds-space-200, 16px)", expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* Fake side borders are not needed when the rounded overlay owns the outer border. */\n\t\t\t\t.".concat(TableSharedCssClassName.TABLE_RIGHT_BORDER, ",\n\t\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, " {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t\t\t") : ".".concat(TableSharedCssClassName.TABLE_RIGHT_BORDER, ",\n\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, " {\n\t\t\t\tdisplay: block;\n\t\t\t\twidth: 1px;\n\t\t\t\theight: calc(100% - ", "var(--ds-space-300, 24px)", ");\n\t\t\t\tbackground: ", "var(--ds-background-accent-gray-subtler, #DDDEE1)", ";\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: ", "var(--ds-space-300, 24px)", ";\n\t\t\t}\n\t\t\t.").concat(TableSharedCssClassName.TABLE_RIGHT_BORDER, " {\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, " {\n\t\t\t\tleft: 0;\n\t\t\t}\n\t\t\t.").concat(TableSharedCssClassName.TABLE_LEFT_BORDER, "[data-with-numbered-table='true'] {\n\t\t\t\tleft: ").concat(akEditorTableNumberColumnWidth - 1, "px;\n\t\t\t}"), TableSharedCssClassName.TABLE_CONTAINER, akEditorTableNumberColumnWidth - 1, TableSharedCssClassName.TABLE_RESIZER_CONTAINER, TableSharedCssClassName.TABLE_RESIZER_CONTAINER, TableSharedCssClassName.TABLE_NODE_WRAPPER, "var(--ds-space-300, 24px)", TableSharedCssClassName.TABLE_CONTAINER, TableSharedCssClassName.TABLE_STICKY_WRAPPER, "var(--ds-space-300, 24px)", "var(--ds-space-100, 8px)", fg('platform_editor_bordered_panel_nested_in_table') ? ".".concat(TableSharedCssClassName.TABLE_NODE_WRAPPER, " .ak-editor-panel {\n\t\t\tborder: ", "var(--ds-border-width, 1px)", " solid ", "var(--ds-border, #0B120E24)", ";\n\t\t}") : '', TableSharedCssClassName.TABLE_CONTAINER, TableSharedCssClassName.TABLE_NODE_WRAPPER, TableSharedCssClassName.TABLE_STICKY_WRAPPER, expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* Keep a transparent border so the collapsed border model reserves the same 1px slot\n\t\t\t on the table edge; the ::after overlay draws the visible rounded border instead. */\n\t\t\tborder: ".concat(tableCellBorderWidth, "px solid transparent;") : "border: ".concat(tableCellBorderWidth, "px solid ", "var(--ds-background-accent-gray-subtler, #DDDEE1)", ";\n\t\t\tborder-left-color: transparent;\n\t\t\tborder-right-color: transparent;"), expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? "position: relative;\n\n\t\t\t/* Table-width outer-border owner for overflow-safe rounded corners. */\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tposition: absolute;\n\t\t\t\tinset: 0;\n\t\t\t\tborder: ".concat(tableCellBorderWidth, "px solid ", "var(--ds-background-accent-gray-subtler, #DDDEE1)", ";\n\t\t\t\tborder-radius: ", "var(--ds-radius-medium, 6px)", ";\n\t\t\t\tpointer-events: none;\n\t\t\t\tz-index: 1;\n\t\t\t}") : '', "var(--ds-background-neutral-subtle, #00000000)", tableCellMinWidth, "var(--ds-font-weight-regular, 400)", "var(--ds-background-accent-gray-subtler, #DDDEE1)", "var(--ds-space-100, 8px)", browser.gecko || browser.ie || browser.mac && browser.chrome ? 'background-clip: padding-box;' : '', firstNodeWithNotMarginTop(), "var(--ds-space-150, 12px)", "var(--ds-surface, #FFFFFF)", expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* Let the wrapper overlay own the outer table perimeter.\n\t\t\t\t data-reaches-* attributes are set by the TableCell node view. */\n\t\t\t\t> tbody > tr > th[data-reaches-top],\n\t\t\t\t> tbody > tr > td[data-reaches-top] {\n\t\t\t\t\tborder-top-color: transparent;\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > th[data-reaches-left],\n\t\t\t\t> tbody > tr > td[data-reaches-left] {\n\t\t\t\t\tborder-left-color: transparent;\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > td[data-reaches-left]::after {\n\t\t\t\t\tborder-left-color: transparent;\n\t\t\t\t}\n\n\t\t\t\t> tbody > tr > td[data-reaches-bottom]::after,\n\t\t\t\t> tbody > tr > th[data-reaches-bottom]::after {\n\t\t\t\t\tborder-bottom-color: transparent;\n\t\t\t\t}" : '', "var(--ds-background-accent-gray-subtlest, #F0F1F2)", expValEquals('platform_editor_native_anchor_with_dnd', 'isEnabled', true) ? '&:not(.danger)' : '&:not([style]):not(.danger)', CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, "var(--ds-surface-raised, #FFFFFF)", akEditorSelectedNodeClassName, "var(--ds-border, #0B120E24)", CodeBlockSharedCssClassName.CODEBLOCK_CONTENT_WRAPPER, overflowShadow({
|
|
64
64
|
leftCoverWidth: "var(--ds-space-300, 24px)"
|
|
65
65
|
}), "var(--ds-background-neutral, #0515240F)", CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER, "var(--ds-background-neutral, #0515240F)", overflowShadow({
|
|
66
66
|
leftCoverWidth: "var(--ds-space-300, 24px)"
|
|
67
|
-
}), "var(--ds-background-neutral, #0515240F)", "var(--ds-background-neutral, #0515240F)");
|
|
67
|
+
}), "var(--ds-background-neutral, #0515240F)", "var(--ds-background-neutral, #0515240F)", expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? "/* When the number column is enabled, the left visual edge belongs to the number column.\n\t\t Remove the left border-radius and left border from the table's ::after overlay\n\t\t so it doesn't double-up or round where the number column already provides that edge. */\n\t\t.".concat(TableSharedCssClassName.TABLE_CONTAINER, "[data-number-column='true'] {\n\t\t\t> .").concat(TableSharedCssClassName.TABLE_NODE_WRAPPER, " > table::after,\n\t\t\t> .").concat(TableSharedCssClassName.TABLE_STICKY_WRAPPER, " > table::after {\n\t\t\t\tborder-top-left-radius: 0;\n\t\t\t\tborder-bottom-left-radius: 0;\n\t\t\t\tborder-left-color: transparent;\n\t\t\t}\n\t\t}") : '');
|
|
68
68
|
};
|
|
69
69
|
export var calcTableWidth = function calcTableWidth(layout, containerWidth) {
|
|
70
70
|
var addControllerPadding = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
2
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
1
3
|
export var TaskDecisionSharedCssClassName = {
|
|
2
4
|
DECISION_CONTAINER: 'decisionItemView-content-wrap',
|
|
3
5
|
TASK_CONTAINER: 'taskItemView-content-wrap',
|
|
4
6
|
//NOTE: value is a selector (data attribute), not a class name
|
|
5
|
-
TASK_LIST_CONTAINER: '[data-node-type="actionList]',
|
|
7
|
+
TASK_LIST_CONTAINER: '[data-node-type="actionList"]',
|
|
6
8
|
TASK_ITEM: 'task-item',
|
|
7
9
|
TASK_CHECKBOX_CONTAINER: 'task-item-checkbox-wrap'
|
|
8
10
|
};
|
|
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
21
21
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
22
22
|
import Layer from '../Layer';
|
|
23
23
|
var packageName = "@atlaskit/editor-common";
|
|
24
|
-
var packageVersion = "114.30.
|
|
24
|
+
var packageVersion = "114.30.4";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -364,7 +364,8 @@ export declare enum ACTION_SUBJECT {
|
|
|
364
364
|
BLOCK_MENU_ITEM = "blockMenuItem",
|
|
365
365
|
PASTE_ACTIONS_MENU = "pasteActionsMenu",
|
|
366
366
|
SYNCED_BLOCK = "syncedBlock",
|
|
367
|
-
NATIVE_EMBED = "nativeEmbed"
|
|
367
|
+
NATIVE_EMBED = "nativeEmbed",
|
|
368
|
+
NATIVE_EMBED_FALLBACK = "nativeEmbedFallback"
|
|
368
369
|
}
|
|
369
370
|
export declare enum ACTION_SUBJECT_ID {
|
|
370
371
|
ACTION = "action",
|
|
@@ -1,33 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
defaultMessage: string;
|
|
9
|
-
description: string;
|
|
10
|
-
id: string;
|
|
11
|
-
};
|
|
12
|
-
elementAfterInputMessage: {
|
|
13
|
-
defaultMessage: string;
|
|
14
|
-
description: string;
|
|
15
|
-
id: string;
|
|
16
|
-
};
|
|
17
|
-
placeHolderMessage: {
|
|
18
|
-
defaultMessage: string;
|
|
19
|
-
description: string;
|
|
20
|
-
id: string;
|
|
21
|
-
};
|
|
22
|
-
searchAriaLabel: {
|
|
23
|
-
defaultMessage: string;
|
|
24
|
-
description: string;
|
|
25
|
-
id: string;
|
|
26
|
-
};
|
|
27
|
-
searchAriaLabelNew: {
|
|
28
|
-
defaultMessage: string;
|
|
29
|
-
description: string;
|
|
30
|
-
id: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
export default _default_1;
|
|
1
|
+
type MessageKeys = 'assistiveTextDefault' | 'assistiveTextResult' | 'elementAfterInputMessage' | 'placeHolderMessage' | 'searchAriaLabel' | 'searchAriaLabelNew';
|
|
2
|
+
declare const message: Record<MessageKeys, {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
}>;
|
|
7
|
+
export default message;
|
|
@@ -1,48 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
id: string;
|
|
9
|
-
defaultMessage: string;
|
|
10
|
-
description: string;
|
|
11
|
-
};
|
|
12
|
-
confirmModalCancel: {
|
|
13
|
-
id: string;
|
|
14
|
-
defaultMessage: string;
|
|
15
|
-
description: string;
|
|
16
|
-
};
|
|
17
|
-
confirmModalListUnit: {
|
|
18
|
-
id: string;
|
|
19
|
-
defaultMessage: string;
|
|
20
|
-
description: string;
|
|
21
|
-
};
|
|
22
|
-
confirmDeleteLinkedModalMessage: {
|
|
23
|
-
id: string;
|
|
24
|
-
defaultMessage: string;
|
|
25
|
-
description: string;
|
|
26
|
-
};
|
|
27
|
-
floatingToolbarAriaLabel: {
|
|
28
|
-
id: string;
|
|
29
|
-
defaultMessage: string;
|
|
30
|
-
description: string;
|
|
31
|
-
};
|
|
32
|
-
floatingToolbarAnnouncer: {
|
|
33
|
-
id: string;
|
|
34
|
-
defaultMessage: string;
|
|
35
|
-
description: string;
|
|
36
|
-
};
|
|
37
|
-
floatingToolbarScrollLeft: {
|
|
38
|
-
id: string;
|
|
39
|
-
defaultMessage: string;
|
|
40
|
-
description: string;
|
|
41
|
-
};
|
|
42
|
-
floatingToolbarScrollRight: {
|
|
43
|
-
id: string;
|
|
44
|
-
defaultMessage: string;
|
|
45
|
-
description: string;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
export default _default_1;
|
|
1
|
+
type MessageKeys = 'confirmModalDefaultHeading' | 'confirmModalOK' | 'confirmModalCancel' | 'confirmModalListUnit' | 'confirmDeleteLinkedModalMessage' | 'floatingToolbarAriaLabel' | 'floatingToolbarAnnouncer' | 'floatingToolbarScrollLeft' | 'floatingToolbarScrollRight';
|
|
2
|
+
declare const message: Record<MessageKeys, {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
}>;
|
|
7
|
+
export default message;
|
|
@@ -364,7 +364,8 @@ export declare enum ACTION_SUBJECT {
|
|
|
364
364
|
BLOCK_MENU_ITEM = "blockMenuItem",
|
|
365
365
|
PASTE_ACTIONS_MENU = "pasteActionsMenu",
|
|
366
366
|
SYNCED_BLOCK = "syncedBlock",
|
|
367
|
-
NATIVE_EMBED = "nativeEmbed"
|
|
367
|
+
NATIVE_EMBED = "nativeEmbed",
|
|
368
|
+
NATIVE_EMBED_FALLBACK = "nativeEmbedFallback"
|
|
368
369
|
}
|
|
369
370
|
export declare enum ACTION_SUBJECT_ID {
|
|
370
371
|
ACTION = "action",
|
|
@@ -1,33 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
defaultMessage: string;
|
|
9
|
-
description: string;
|
|
10
|
-
id: string;
|
|
11
|
-
};
|
|
12
|
-
elementAfterInputMessage: {
|
|
13
|
-
defaultMessage: string;
|
|
14
|
-
description: string;
|
|
15
|
-
id: string;
|
|
16
|
-
};
|
|
17
|
-
placeHolderMessage: {
|
|
18
|
-
defaultMessage: string;
|
|
19
|
-
description: string;
|
|
20
|
-
id: string;
|
|
21
|
-
};
|
|
22
|
-
searchAriaLabel: {
|
|
23
|
-
defaultMessage: string;
|
|
24
|
-
description: string;
|
|
25
|
-
id: string;
|
|
26
|
-
};
|
|
27
|
-
searchAriaLabelNew: {
|
|
28
|
-
defaultMessage: string;
|
|
29
|
-
description: string;
|
|
30
|
-
id: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
export default _default_1;
|
|
1
|
+
type MessageKeys = 'assistiveTextDefault' | 'assistiveTextResult' | 'elementAfterInputMessage' | 'placeHolderMessage' | 'searchAriaLabel' | 'searchAriaLabelNew';
|
|
2
|
+
declare const message: Record<MessageKeys, {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
}>;
|
|
7
|
+
export default message;
|
|
@@ -1,48 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
id: string;
|
|
9
|
-
defaultMessage: string;
|
|
10
|
-
description: string;
|
|
11
|
-
};
|
|
12
|
-
confirmModalCancel: {
|
|
13
|
-
id: string;
|
|
14
|
-
defaultMessage: string;
|
|
15
|
-
description: string;
|
|
16
|
-
};
|
|
17
|
-
confirmModalListUnit: {
|
|
18
|
-
id: string;
|
|
19
|
-
defaultMessage: string;
|
|
20
|
-
description: string;
|
|
21
|
-
};
|
|
22
|
-
confirmDeleteLinkedModalMessage: {
|
|
23
|
-
id: string;
|
|
24
|
-
defaultMessage: string;
|
|
25
|
-
description: string;
|
|
26
|
-
};
|
|
27
|
-
floatingToolbarAriaLabel: {
|
|
28
|
-
id: string;
|
|
29
|
-
defaultMessage: string;
|
|
30
|
-
description: string;
|
|
31
|
-
};
|
|
32
|
-
floatingToolbarAnnouncer: {
|
|
33
|
-
id: string;
|
|
34
|
-
defaultMessage: string;
|
|
35
|
-
description: string;
|
|
36
|
-
};
|
|
37
|
-
floatingToolbarScrollLeft: {
|
|
38
|
-
id: string;
|
|
39
|
-
defaultMessage: string;
|
|
40
|
-
description: string;
|
|
41
|
-
};
|
|
42
|
-
floatingToolbarScrollRight: {
|
|
43
|
-
id: string;
|
|
44
|
-
defaultMessage: string;
|
|
45
|
-
description: string;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
export default _default_1;
|
|
1
|
+
type MessageKeys = 'confirmModalDefaultHeading' | 'confirmModalOK' | 'confirmModalCancel' | 'confirmModalListUnit' | 'confirmDeleteLinkedModalMessage' | 'floatingToolbarAriaLabel' | 'floatingToolbarAnnouncer' | 'floatingToolbarScrollLeft' | 'floatingToolbarScrollRight';
|
|
2
|
+
declare const message: Record<MessageKeys, {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
}>;
|
|
7
|
+
export default message;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "114.30.
|
|
3
|
+
"version": "114.30.5",
|
|
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/"
|
|
@@ -53,16 +53,16 @@
|
|
|
53
53
|
"@atlaskit/editor-json-transformer": "^8.31.0",
|
|
54
54
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
55
55
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
56
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
57
|
-
"@atlaskit/editor-tables": "^2.
|
|
58
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
59
|
-
"@atlaskit/editor-toolbar-model": "^0.
|
|
60
|
-
"@atlaskit/emoji": "^70.
|
|
56
|
+
"@atlaskit/editor-shared-styles": "^3.11.0",
|
|
57
|
+
"@atlaskit/editor-tables": "^2.10.0",
|
|
58
|
+
"@atlaskit/editor-toolbar": "^1.4.0",
|
|
59
|
+
"@atlaskit/editor-toolbar-model": "^0.5.0",
|
|
60
|
+
"@atlaskit/emoji": "^70.7.0",
|
|
61
61
|
"@atlaskit/icon": "^34.5.0",
|
|
62
62
|
"@atlaskit/link": "^3.4.0",
|
|
63
63
|
"@atlaskit/link-datasource": "^5.2.0",
|
|
64
64
|
"@atlaskit/link-picker": "^5.1.0",
|
|
65
|
-
"@atlaskit/media-card": "^80.
|
|
65
|
+
"@atlaskit/media-card": "^80.5.0",
|
|
66
66
|
"@atlaskit/media-client": "^36.2.0",
|
|
67
67
|
"@atlaskit/media-client-react": "^5.1.0",
|
|
68
68
|
"@atlaskit/media-common": "^13.3.0",
|
|
@@ -70,23 +70,23 @@
|
|
|
70
70
|
"@atlaskit/media-picker": "^71.2.0",
|
|
71
71
|
"@atlaskit/media-ui": "^29.2.0",
|
|
72
72
|
"@atlaskit/media-viewer": "^53.2.0",
|
|
73
|
-
"@atlaskit/mention": "^25.
|
|
73
|
+
"@atlaskit/mention": "^25.1.0",
|
|
74
74
|
"@atlaskit/menu": "^8.5.0",
|
|
75
75
|
"@atlaskit/object": "^1.0.0",
|
|
76
76
|
"@atlaskit/onboarding": "^14.6.0",
|
|
77
77
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
78
78
|
"@atlaskit/platform-feature-flags-react": "^0.5.0",
|
|
79
79
|
"@atlaskit/primitives": "^19.0.0",
|
|
80
|
-
"@atlaskit/profilecard": "^25.
|
|
80
|
+
"@atlaskit/profilecard": "^25.6.0",
|
|
81
81
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
82
82
|
"@atlaskit/react-ufo": "^5.20.0",
|
|
83
83
|
"@atlaskit/section-message": "^8.12.0",
|
|
84
|
-
"@atlaskit/smart-card": "^44.
|
|
84
|
+
"@atlaskit/smart-card": "^44.11.0",
|
|
85
85
|
"@atlaskit/smart-user-picker": "^10.0.0",
|
|
86
86
|
"@atlaskit/spinner": "^19.1.0",
|
|
87
|
-
"@atlaskit/task-decision": "^20.
|
|
87
|
+
"@atlaskit/task-decision": "^20.1.0",
|
|
88
88
|
"@atlaskit/textfield": "^8.3.0",
|
|
89
|
-
"@atlaskit/tmp-editor-statsig": "^80.
|
|
89
|
+
"@atlaskit/tmp-editor-statsig": "^80.2.0",
|
|
90
90
|
"@atlaskit/tokens": "^13.0.0",
|
|
91
91
|
"@atlaskit/tooltip": "^22.2.0",
|
|
92
92
|
"@atlaskit/width-detector": "^5.1.0",
|