@atlaskit/editor-plugin-table 10.9.26 → 10.10.1
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 +18 -0
- package/dist/cjs/ui/FloatingContextualMenu/ContextualMenu.js +6 -8
- package/dist/cjs/ui/FloatingDragMenu/DragMenu.js +2 -4
- package/dist/es2019/ui/FloatingContextualMenu/ContextualMenu.js +4 -6
- package/dist/es2019/ui/FloatingDragMenu/DragMenu.js +2 -4
- package/dist/esm/ui/FloatingContextualMenu/ContextualMenu.js +4 -6
- package/dist/esm/ui/FloatingDragMenu/DragMenu.js +2 -4
- package/package.json +9 -9
- package/src/ui/FloatingContextualMenu/ContextualMenu.tsx +3 -5
- package/src/ui/FloatingDragMenu/DragMenu.tsx +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 10.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 10.10.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#149822](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/149822)
|
|
14
|
+
[`f9ab0e846ae21`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f9ab0e846ae21) -
|
|
15
|
+
Updated to support `size` prop for new icons from `@atlaskit/icon`.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 10.9.26
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -27,10 +27,7 @@ var _utils = require("@atlaskit/editor-common/utils");
|
|
|
27
27
|
var _editorPalette = require("@atlaskit/editor-palette");
|
|
28
28
|
var _shortcut = require("@atlaskit/editor-shared-styles/shortcut");
|
|
29
29
|
var _utils2 = require("@atlaskit/editor-tables/utils");
|
|
30
|
-
var _crossCircle = _interopRequireDefault(require("@atlaskit/icon/core/migration/cross-circle"));
|
|
31
|
-
var _deleteEditorRemove = _interopRequireDefault(require("@atlaskit/icon/core/migration/delete--editor-remove"));
|
|
32
30
|
var _paintBucketEditorBackgroundColor = _interopRequireDefault(require("@atlaskit/icon/core/migration/paint-bucket--editor-background-color"));
|
|
33
|
-
var _paintBucket = _interopRequireDefault(require("@atlaskit/icon/core/paint-bucket"));
|
|
34
31
|
var _tableCellClear = _interopRequireDefault(require("@atlaskit/icon/core/table-cell-clear"));
|
|
35
32
|
var _tableCellMerge = _interopRequireDefault(require("@atlaskit/icon/core/table-cell-merge"));
|
|
36
33
|
var _tableCellSplit = _interopRequireDefault(require("@atlaskit/icon/core/table-cell-split"));
|
|
@@ -39,6 +36,8 @@ var _tableColumnDelete = _interopRequireDefault(require("@atlaskit/icon/core/tab
|
|
|
39
36
|
var _tableColumnsDistribute = _interopRequireDefault(require("@atlaskit/icon/core/table-columns-distribute"));
|
|
40
37
|
var _tableRowAddBelow = _interopRequireDefault(require("@atlaskit/icon/core/table-row-add-below"));
|
|
41
38
|
var _tableRowDelete = _interopRequireDefault(require("@atlaskit/icon/core/table-row-delete"));
|
|
39
|
+
var _crossCircle = _interopRequireDefault(require("@atlaskit/icon/glyph/cross-circle"));
|
|
40
|
+
var _remove = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/remove"));
|
|
42
41
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
43
42
|
var _primitives = require("@atlaskit/primitives");
|
|
44
43
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
@@ -128,11 +127,10 @@ var ContextualMenu = exports.ContextualMenu = /*#__PURE__*/function (_Component)
|
|
|
128
127
|
},
|
|
129
128
|
elemBefore: isDragAndDropEnabled ? (0, _react2.jsx)(_primitives.Box, {
|
|
130
129
|
xcss: elementBeforeIconStyles
|
|
131
|
-
}, (0, _react2.jsx)(
|
|
130
|
+
}, (0, _react2.jsx)(_paintBucketEditorBackgroundColor.default, {
|
|
132
131
|
color: "currentColor",
|
|
133
132
|
spacing: "spacious",
|
|
134
|
-
label: formatMessage(_messages.tableMessages.backgroundColor)
|
|
135
|
-
LEGACY_fallbackIcon: _paintBucketEditorBackgroundColor.default
|
|
133
|
+
label: formatMessage(_messages.tableMessages.backgroundColor)
|
|
136
134
|
})) : undefined,
|
|
137
135
|
elemAfter:
|
|
138
136
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -356,7 +354,7 @@ var ContextualMenu = exports.ContextualMenu = /*#__PURE__*/function (_Component)
|
|
|
356
354
|
label: formatMessage(_messages.tableMessages.removeColumns, {
|
|
357
355
|
0: noOfColumns
|
|
358
356
|
}),
|
|
359
|
-
LEGACY_fallbackIcon:
|
|
357
|
+
LEGACY_fallbackIcon: _remove.default
|
|
360
358
|
})) : undefined
|
|
361
359
|
};
|
|
362
360
|
});
|
|
@@ -385,7 +383,7 @@ var ContextualMenu = exports.ContextualMenu = /*#__PURE__*/function (_Component)
|
|
|
385
383
|
label: formatMessage(_messages.tableMessages.removeRows, {
|
|
386
384
|
0: noOfRows
|
|
387
385
|
}),
|
|
388
|
-
LEGACY_fallbackIcon:
|
|
386
|
+
LEGACY_fallbackIcon: _remove.default
|
|
389
387
|
})) : undefined
|
|
390
388
|
};
|
|
391
389
|
});
|
|
@@ -22,7 +22,6 @@ var _shortcut = require("@atlaskit/editor-shared-styles/shortcut");
|
|
|
22
22
|
var _tableMap = require("@atlaskit/editor-tables/table-map");
|
|
23
23
|
var _utils2 = require("@atlaskit/editor-tables/utils");
|
|
24
24
|
var _paintBucketEditorBackgroundColor = _interopRequireDefault(require("@atlaskit/icon/core/migration/paint-bucket--editor-background-color"));
|
|
25
|
-
var _paintBucket = _interopRequireDefault(require("@atlaskit/icon/core/paint-bucket"));
|
|
26
25
|
var _primitives = require("@atlaskit/primitives");
|
|
27
26
|
var _toggle = _interopRequireDefault(require("@atlaskit/toggle"));
|
|
28
27
|
var _commands = require("../../pm-plugins/commands");
|
|
@@ -274,11 +273,10 @@ var DragMenu = /*#__PURE__*/_react.default.memo(function (_ref) {
|
|
|
274
273
|
},
|
|
275
274
|
elemBefore: (0, _react2.jsx)(_primitives.Box, {
|
|
276
275
|
xcss: elementBeforeIconStyles
|
|
277
|
-
}, (0, _react2.jsx)(
|
|
276
|
+
}, (0, _react2.jsx)(_paintBucketEditorBackgroundColor.default, {
|
|
278
277
|
color: "currentColor",
|
|
279
278
|
spacing: "spacious",
|
|
280
|
-
label: formatMessage(_messages.tableMessages.backgroundColor)
|
|
281
|
-
LEGACY_fallbackIcon: _paintBucketEditorBackgroundColor.default
|
|
279
|
+
label: formatMessage(_messages.tableMessages.backgroundColor)
|
|
282
280
|
})),
|
|
283
281
|
elemAfter: (0, _react2.jsx)("div", {
|
|
284
282
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -19,10 +19,7 @@ import { closestElement } from '@atlaskit/editor-common/utils';
|
|
|
19
19
|
import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
|
|
20
20
|
import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
|
|
21
21
|
import { splitCell } from '@atlaskit/editor-tables/utils';
|
|
22
|
-
import
|
|
23
|
-
import RemoveIcon from '@atlaskit/icon/core/migration/delete--editor-remove';
|
|
24
|
-
import EditorBackgroundColorIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
25
|
-
import PaintBucketIcon from '@atlaskit/icon/core/paint-bucket';
|
|
22
|
+
import PaintBucketIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
26
23
|
import TableCellClearIcon from '@atlaskit/icon/core/table-cell-clear';
|
|
27
24
|
import TableCellMergeIcon from '@atlaskit/icon/core/table-cell-merge';
|
|
28
25
|
import TableCellSplitIcon from '@atlaskit/icon/core/table-cell-split';
|
|
@@ -31,6 +28,8 @@ import TableColumnDeleteIcon from '@atlaskit/icon/core/table-column-delete';
|
|
|
31
28
|
import TableColumnsDistributeIcon from '@atlaskit/icon/core/table-columns-distribute';
|
|
32
29
|
import TableRowAddBelowIcon from '@atlaskit/icon/core/table-row-add-below';
|
|
33
30
|
import TableRowDeleteIcon from '@atlaskit/icon/core/table-row-delete';
|
|
31
|
+
import CrossCircleIcon from '@atlaskit/icon/glyph/cross-circle';
|
|
32
|
+
import RemoveIcon from '@atlaskit/icon/glyph/editor/remove';
|
|
34
33
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
35
34
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
36
35
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
@@ -117,8 +116,7 @@ export class ContextualMenu extends Component {
|
|
|
117
116
|
}, jsx(PaintBucketIcon, {
|
|
118
117
|
color: "currentColor",
|
|
119
118
|
spacing: "spacious",
|
|
120
|
-
label: formatMessage(messages.backgroundColor)
|
|
121
|
-
LEGACY_fallbackIcon: EditorBackgroundColorIcon
|
|
119
|
+
label: formatMessage(messages.backgroundColor)
|
|
122
120
|
})) : undefined,
|
|
123
121
|
elemAfter:
|
|
124
122
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -19,8 +19,7 @@ import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
|
|
|
19
19
|
import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
|
|
20
20
|
import { TableMap } from '@atlaskit/editor-tables/table-map';
|
|
21
21
|
import { findCellRectClosestToPos, getSelectionRect, isSelectionType } from '@atlaskit/editor-tables/utils';
|
|
22
|
-
import
|
|
23
|
-
import PaintBucketIcon from '@atlaskit/icon/core/paint-bucket';
|
|
22
|
+
import PaintBucketIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
24
23
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
25
24
|
import Toggle from '@atlaskit/toggle';
|
|
26
25
|
import { clearHoverSelection, hoverColumns, hoverRows } from '../../pm-plugins/commands';
|
|
@@ -271,8 +270,7 @@ const DragMenu = /*#__PURE__*/React.memo(({
|
|
|
271
270
|
}, jsx(PaintBucketIcon, {
|
|
272
271
|
color: "currentColor",
|
|
273
272
|
spacing: "spacious",
|
|
274
|
-
label: formatMessage(messages.backgroundColor)
|
|
275
|
-
LEGACY_fallbackIcon: EditorBackgroundColorIcon
|
|
273
|
+
label: formatMessage(messages.backgroundColor)
|
|
276
274
|
})),
|
|
277
275
|
elemAfter: jsx("div", {
|
|
278
276
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -29,10 +29,7 @@ import { closestElement } from '@atlaskit/editor-common/utils';
|
|
|
29
29
|
import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
|
|
30
30
|
import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
|
|
31
31
|
import { splitCell } from '@atlaskit/editor-tables/utils';
|
|
32
|
-
import
|
|
33
|
-
import RemoveIcon from '@atlaskit/icon/core/migration/delete--editor-remove';
|
|
34
|
-
import EditorBackgroundColorIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
35
|
-
import PaintBucketIcon from '@atlaskit/icon/core/paint-bucket';
|
|
32
|
+
import PaintBucketIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
36
33
|
import TableCellClearIcon from '@atlaskit/icon/core/table-cell-clear';
|
|
37
34
|
import TableCellMergeIcon from '@atlaskit/icon/core/table-cell-merge';
|
|
38
35
|
import TableCellSplitIcon from '@atlaskit/icon/core/table-cell-split';
|
|
@@ -41,6 +38,8 @@ import TableColumnDeleteIcon from '@atlaskit/icon/core/table-column-delete';
|
|
|
41
38
|
import TableColumnsDistributeIcon from '@atlaskit/icon/core/table-columns-distribute';
|
|
42
39
|
import TableRowAddBelowIcon from '@atlaskit/icon/core/table-row-add-below';
|
|
43
40
|
import TableRowDeleteIcon from '@atlaskit/icon/core/table-row-delete';
|
|
41
|
+
import CrossCircleIcon from '@atlaskit/icon/glyph/cross-circle';
|
|
42
|
+
import RemoveIcon from '@atlaskit/icon/glyph/editor/remove';
|
|
44
43
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
45
44
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
46
45
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
@@ -124,8 +123,7 @@ export var ContextualMenu = /*#__PURE__*/function (_Component) {
|
|
|
124
123
|
}, jsx(PaintBucketIcon, {
|
|
125
124
|
color: "currentColor",
|
|
126
125
|
spacing: "spacious",
|
|
127
|
-
label: formatMessage(messages.backgroundColor)
|
|
128
|
-
LEGACY_fallbackIcon: EditorBackgroundColorIcon
|
|
126
|
+
label: formatMessage(messages.backgroundColor)
|
|
129
127
|
})) : undefined,
|
|
130
128
|
elemAfter:
|
|
131
129
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -21,8 +21,7 @@ import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
|
|
|
21
21
|
import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
|
|
22
22
|
import { TableMap } from '@atlaskit/editor-tables/table-map';
|
|
23
23
|
import { findCellRectClosestToPos, getSelectionRect, isSelectionType } from '@atlaskit/editor-tables/utils';
|
|
24
|
-
import
|
|
25
|
-
import PaintBucketIcon from '@atlaskit/icon/core/paint-bucket';
|
|
24
|
+
import PaintBucketIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
26
25
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
27
26
|
import Toggle from '@atlaskit/toggle';
|
|
28
27
|
import { clearHoverSelection, hoverColumns, hoverRows } from '../../pm-plugins/commands';
|
|
@@ -266,8 +265,7 @@ var DragMenu = /*#__PURE__*/React.memo(function (_ref) {
|
|
|
266
265
|
}, jsx(PaintBucketIcon, {
|
|
267
266
|
color: "currentColor",
|
|
268
267
|
spacing: "spacious",
|
|
269
|
-
label: formatMessage(messages.backgroundColor)
|
|
270
|
-
LEGACY_fallbackIcon: EditorBackgroundColorIcon
|
|
268
|
+
label: formatMessage(messages.backgroundColor)
|
|
271
269
|
})),
|
|
272
270
|
elemAfter: jsx("div", {
|
|
273
271
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.10.1",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,33 +30,33 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
33
|
-
"@atlaskit/button": "^23.
|
|
33
|
+
"@atlaskit/button": "^23.2.0",
|
|
34
34
|
"@atlaskit/custom-steps": "^0.11.0",
|
|
35
|
-
"@atlaskit/editor-common": "^105.
|
|
35
|
+
"@atlaskit/editor-common": "^105.6.0",
|
|
36
36
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-accessibility-utils": "^2.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.3.0",
|
|
39
39
|
"@atlaskit/editor-plugin-batch-attribute-updates": "^2.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-content-insertion": "^2.1.0",
|
|
41
41
|
"@atlaskit/editor-plugin-editor-viewmode": "^3.1.0",
|
|
42
|
-
"@atlaskit/editor-plugin-extension": "5.
|
|
42
|
+
"@atlaskit/editor-plugin-extension": "5.4.0",
|
|
43
43
|
"@atlaskit/editor-plugin-guideline": "^2.0.0",
|
|
44
44
|
"@atlaskit/editor-plugin-selection": "^2.2.0",
|
|
45
45
|
"@atlaskit/editor-plugin-width": "^3.0.0",
|
|
46
46
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
47
47
|
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
48
48
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
49
|
-
"@atlaskit/icon": "^26.
|
|
50
|
-
"@atlaskit/menu": "^7.
|
|
49
|
+
"@atlaskit/icon": "^26.1.0",
|
|
50
|
+
"@atlaskit/menu": "^7.1.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
52
|
-
"@atlaskit/pragmatic-drag-and-drop": "^1.
|
|
52
|
+
"@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
|
|
53
53
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.0",
|
|
54
54
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
|
|
55
|
-
"@atlaskit/primitives": "^14.
|
|
55
|
+
"@atlaskit/primitives": "^14.8.0",
|
|
56
56
|
"@atlaskit/theme": "^18.0.0",
|
|
57
57
|
"@atlaskit/tmp-editor-statsig": "^4.22.0",
|
|
58
58
|
"@atlaskit/toggle": "^15.0.0",
|
|
59
|
-
"@atlaskit/tokens": "^4.
|
|
59
|
+
"@atlaskit/tokens": "^4.9.0",
|
|
60
60
|
"@atlaskit/tooltip": "^20.0.0",
|
|
61
61
|
"@babel/runtime": "^7.0.0",
|
|
62
62
|
"@emotion/react": "^11.7.1",
|
|
@@ -42,10 +42,7 @@ import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
|
42
42
|
import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
|
|
43
43
|
import type { Rect } from '@atlaskit/editor-tables/table-map';
|
|
44
44
|
import { splitCell } from '@atlaskit/editor-tables/utils';
|
|
45
|
-
import
|
|
46
|
-
import RemoveIcon from '@atlaskit/icon/core/migration/delete--editor-remove';
|
|
47
|
-
import EditorBackgroundColorIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
48
|
-
import PaintBucketIcon from '@atlaskit/icon/core/paint-bucket';
|
|
45
|
+
import PaintBucketIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
49
46
|
import TableCellClearIcon from '@atlaskit/icon/core/table-cell-clear';
|
|
50
47
|
import TableCellMergeIcon from '@atlaskit/icon/core/table-cell-merge';
|
|
51
48
|
import TableCellSplitIcon from '@atlaskit/icon/core/table-cell-split';
|
|
@@ -54,6 +51,8 @@ import TableColumnDeleteIcon from '@atlaskit/icon/core/table-column-delete';
|
|
|
54
51
|
import TableColumnsDistributeIcon from '@atlaskit/icon/core/table-columns-distribute';
|
|
55
52
|
import TableRowAddBelowIcon from '@atlaskit/icon/core/table-row-add-below';
|
|
56
53
|
import TableRowDeleteIcon from '@atlaskit/icon/core/table-row-delete';
|
|
54
|
+
import CrossCircleIcon from '@atlaskit/icon/glyph/cross-circle';
|
|
55
|
+
import RemoveIcon from '@atlaskit/icon/glyph/editor/remove';
|
|
57
56
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
58
57
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
59
58
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
@@ -254,7 +253,6 @@ export class ContextualMenu extends Component<Props & WrappedComponentProps, Sta
|
|
|
254
253
|
color="currentColor"
|
|
255
254
|
spacing="spacious"
|
|
256
255
|
label={formatMessage(messages.backgroundColor)}
|
|
257
|
-
LEGACY_fallbackIcon={EditorBackgroundColorIcon}
|
|
258
256
|
/>
|
|
259
257
|
</Box>
|
|
260
258
|
) : undefined,
|
|
@@ -41,8 +41,7 @@ import {
|
|
|
41
41
|
getSelectionRect,
|
|
42
42
|
isSelectionType,
|
|
43
43
|
} from '@atlaskit/editor-tables/utils';
|
|
44
|
-
import
|
|
45
|
-
import PaintBucketIcon from '@atlaskit/icon/core/paint-bucket';
|
|
44
|
+
import PaintBucketIcon from '@atlaskit/icon/core/migration/paint-bucket--editor-background-color';
|
|
46
45
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
47
46
|
import Toggle from '@atlaskit/toggle';
|
|
48
47
|
|
|
@@ -367,7 +366,6 @@ const DragMenu = React.memo(
|
|
|
367
366
|
color="currentColor"
|
|
368
367
|
spacing="spacious"
|
|
369
368
|
label={formatMessage(messages.backgroundColor)}
|
|
370
|
-
LEGACY_fallbackIcon={EditorBackgroundColorIcon}
|
|
371
369
|
/>
|
|
372
370
|
</Box>
|
|
373
371
|
),
|