@atlaskit/editor-toolbar 1.1.1 → 1.2.0

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/cjs/index.js +49 -0
  3. package/dist/cjs/ui/ToolbarNestedDropdownMenu.js +2 -3
  4. package/dist/cjs/ui/icons/CrossIcon.js +13 -0
  5. package/dist/cjs/ui/icons/DeleteIcon.js +13 -0
  6. package/dist/cjs/ui/icons/PaintBucketIcon.js +13 -0
  7. package/dist/cjs/ui/icons/TableRowAddAboveIcon.js +13 -0
  8. package/dist/cjs/ui/icons/TableRowAddBelowIcon.js +13 -0
  9. package/dist/cjs/ui/icons/TableRowMoveDownIcon.js +13 -0
  10. package/dist/cjs/ui/icons/TableRowMoveUpIcon.js +13 -0
  11. package/dist/es2019/index.js +7 -0
  12. package/dist/es2019/ui/ToolbarNestedDropdownMenu.js +2 -3
  13. package/dist/es2019/ui/icons/CrossIcon.js +2 -0
  14. package/dist/es2019/ui/icons/DeleteIcon.js +2 -0
  15. package/dist/es2019/ui/icons/PaintBucketIcon.js +2 -0
  16. package/dist/es2019/ui/icons/TableRowAddAboveIcon.js +2 -0
  17. package/dist/es2019/ui/icons/TableRowAddBelowIcon.js +2 -0
  18. package/dist/es2019/ui/icons/TableRowMoveDownIcon.js +2 -0
  19. package/dist/es2019/ui/icons/TableRowMoveUpIcon.js +2 -0
  20. package/dist/esm/index.js +7 -0
  21. package/dist/esm/ui/ToolbarNestedDropdownMenu.js +2 -3
  22. package/dist/esm/ui/icons/CrossIcon.js +2 -0
  23. package/dist/esm/ui/icons/DeleteIcon.js +2 -0
  24. package/dist/esm/ui/icons/PaintBucketIcon.js +2 -0
  25. package/dist/esm/ui/icons/TableRowAddAboveIcon.js +2 -0
  26. package/dist/esm/ui/icons/TableRowAddBelowIcon.js +2 -0
  27. package/dist/esm/ui/icons/TableRowMoveDownIcon.js +2 -0
  28. package/dist/esm/ui/icons/TableRowMoveUpIcon.js +2 -0
  29. package/dist/types/index.d.ts +7 -0
  30. package/dist/types/ui/icons/CrossIcon.d.ts +1 -0
  31. package/dist/types/ui/icons/DeleteIcon.d.ts +1 -0
  32. package/dist/types/ui/icons/PaintBucketIcon.d.ts +1 -0
  33. package/dist/types/ui/icons/TableRowAddAboveIcon.d.ts +1 -0
  34. package/dist/types/ui/icons/TableRowAddBelowIcon.d.ts +1 -0
  35. package/dist/types/ui/icons/TableRowMoveDownIcon.d.ts +1 -0
  36. package/dist/types/ui/icons/TableRowMoveUpIcon.d.ts +1 -0
  37. package/dist/types-ts4.5/index.d.ts +7 -0
  38. package/dist/types-ts4.5/ui/icons/CrossIcon.d.ts +1 -0
  39. package/dist/types-ts4.5/ui/icons/DeleteIcon.d.ts +1 -0
  40. package/dist/types-ts4.5/ui/icons/PaintBucketIcon.d.ts +1 -0
  41. package/dist/types-ts4.5/ui/icons/TableRowAddAboveIcon.d.ts +1 -0
  42. package/dist/types-ts4.5/ui/icons/TableRowAddBelowIcon.d.ts +1 -0
  43. package/dist/types-ts4.5/ui/icons/TableRowMoveDownIcon.d.ts +1 -0
  44. package/dist/types-ts4.5/ui/icons/TableRowMoveUpIcon.d.ts +1 -0
  45. package/package.json +2 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @atlaskit/editor-toolbar
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`6403e27aa3327`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6403e27aa3327) -
8
+ Add the experimental table row menu structure, keyboard shortcut hints, and shared table menu
9
+ items. Expose table row menu icons through editor-toolbar. Ensure the UI control registry is
10
+ available before table row menu items are registered.
11
+
12
+ ### Patch Changes
13
+
14
+ - [`9b17a2bfdbc92`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9b17a2bfdbc92) -
15
+ Cleanup feature gates `platform_editor_block_menu_v2_patch_1` and
16
+ `platform_editor_block_menu_v2_patch_2`. The patch_1 behaviour (inline toolbar uses
17
+ `InlineToolbarMenuItemComponent` and block menu is only closed when
18
+ `extensionLocation === 'block-menu'`) and patch_2 behaviour (max-width styles on block menu,
19
+ tooltip/title-wrap on nested dropdown menus, truncation tooltip on dropdown items) are now
20
+ permanent.
21
+ - Updated dependencies
22
+
3
23
  ## 1.1.1
4
24
 
5
25
  ### Patch Changes
package/dist/cjs/index.js CHANGED
@@ -142,12 +142,24 @@ Object.defineProperty(exports, "CommentIcon", {
142
142
  return _CommentIcon.CommentIcon;
143
143
  }
144
144
  });
145
+ Object.defineProperty(exports, "CrossIcon", {
146
+ enumerable: true,
147
+ get: function get() {
148
+ return _CrossIcon.CrossIcon;
149
+ }
150
+ });
145
151
  Object.defineProperty(exports, "DefineIcon", {
146
152
  enumerable: true,
147
153
  get: function get() {
148
154
  return _DefineIcon.DefineIcon;
149
155
  }
150
156
  });
157
+ Object.defineProperty(exports, "DeleteIcon", {
158
+ enumerable: true,
159
+ get: function get() {
160
+ return _DeleteIcon.DeleteIcon;
161
+ }
162
+ });
151
163
  Object.defineProperty(exports, "EmojiIcon", {
152
164
  enumerable: true,
153
165
  get: function get() {
@@ -268,6 +280,12 @@ Object.defineProperty(exports, "OutdentIcon", {
268
280
  return _OutdentIcon.OutdentIcon;
269
281
  }
270
282
  });
283
+ Object.defineProperty(exports, "PaintBucketIcon", {
284
+ enumerable: true,
285
+ get: function get() {
286
+ return _PaintBucketIcon.PaintBucketIcon;
287
+ }
288
+ });
271
289
  Object.defineProperty(exports, "PinIcon", {
272
290
  enumerable: true,
273
291
  get: function get() {
@@ -358,6 +376,30 @@ Object.defineProperty(exports, "TableIcon", {
358
376
  return _TableIcon.TableIcon;
359
377
  }
360
378
  });
379
+ Object.defineProperty(exports, "TableRowAddAboveIcon", {
380
+ enumerable: true,
381
+ get: function get() {
382
+ return _TableRowAddAboveIcon.TableRowAddAboveIcon;
383
+ }
384
+ });
385
+ Object.defineProperty(exports, "TableRowAddBelowIcon", {
386
+ enumerable: true,
387
+ get: function get() {
388
+ return _TableRowAddBelowIcon.TableRowAddBelowIcon;
389
+ }
390
+ });
391
+ Object.defineProperty(exports, "TableRowMoveDownIcon", {
392
+ enumerable: true,
393
+ get: function get() {
394
+ return _TableRowMoveDownIcon.TableRowMoveDownIcon;
395
+ }
396
+ });
397
+ Object.defineProperty(exports, "TableRowMoveUpIcon", {
398
+ enumerable: true,
399
+ get: function get() {
400
+ return _TableRowMoveUpIcon.TableRowMoveUpIcon;
401
+ }
402
+ });
361
403
  Object.defineProperty(exports, "TaskIcon", {
362
404
  enumerable: true,
363
405
  get: function get() {
@@ -553,6 +595,9 @@ var _LinkIcon = require("./ui/icons/LinkIcon");
553
595
  var _ListBulletedIcon = require("./ui/icons/ListBulletedIcon");
554
596
  var _ListNumberedIcon = require("./ui/icons/ListNumberedIcon");
555
597
  var _MoreItemsIcon = require("./ui/icons/MoreItemsIcon");
598
+ var _CrossIcon = require("./ui/icons/CrossIcon");
599
+ var _DeleteIcon = require("./ui/icons/DeleteIcon");
600
+ var _PaintBucketIcon = require("./ui/icons/PaintBucketIcon");
556
601
  var _PinIcon = require("./ui/icons/PinIcon");
557
602
  var _PinnedIcon = require("./ui/icons/PinnedIcon");
558
603
  var _QuoteIcon = require("./ui/icons/QuoteIcon");
@@ -577,6 +622,10 @@ var _LayoutIcon = require("./ui/icons/LayoutIcon");
577
622
  var _ImageIcon = require("./ui/icons/ImageIcon");
578
623
  var _MentionIcon = require("./ui/icons/MentionIcon");
579
624
  var _TableIcon = require("./ui/icons/TableIcon");
625
+ var _TableRowAddAboveIcon = require("./ui/icons/TableRowAddAboveIcon");
626
+ var _TableRowAddBelowIcon = require("./ui/icons/TableRowAddBelowIcon");
627
+ var _TableRowMoveDownIcon = require("./ui/icons/TableRowMoveDownIcon");
628
+ var _TableRowMoveUpIcon = require("./ui/icons/TableRowMoveUpIcon");
580
629
  var _TaskIcon = require("./ui/icons/TaskIcon");
581
630
  var _UndoIcon = require("./ui/icons/UndoIcon");
582
631
  var _RedoIcon = require("./ui/icons/RedoIcon");
@@ -13,7 +13,6 @@ var React = _interopRequireWildcard(require("react"));
13
13
  var _runtime = require("@compiled/react/runtime");
14
14
  var _react2 = require("@compiled/react");
15
15
  var _dropdownMenu = _interopRequireDefault(require("@atlaskit/dropdown-menu"));
16
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
17
16
  var _compiled = require("@atlaskit/primitives/compiled");
18
17
  var _ToolbarDropdownItem = require("./ToolbarDropdownItem");
19
18
  var _ToolbarTooltip = require("./ToolbarTooltip");
@@ -57,9 +56,9 @@ var ToolbarNestedDropdownMenu = exports.ToolbarNestedDropdownMenu = function Too
57
56
  triggerRef: triggerProps.triggerRef,
58
57
  hasNestedDropdownMenu: true,
59
58
  isDisabled: isDisabled,
60
- shouldTitleWrap: (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_2') ? shouldTitleWrap : undefined
59
+ shouldTitleWrap: shouldTitleWrap
61
60
  }, text);
62
- if (tooltipContent && (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_2')) {
61
+ if (tooltipContent) {
63
62
  return /*#__PURE__*/React.createElement(_ToolbarTooltip.ToolbarTooltip, {
64
63
  content: tooltipContent,
65
64
  position: "top"
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "CrossIcon", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _cross.default;
11
+ }
12
+ });
13
+ var _cross = _interopRequireDefault(require("@atlaskit/icon/core/cross"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "DeleteIcon", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _delete.default;
11
+ }
12
+ });
13
+ var _delete = _interopRequireDefault(require("@atlaskit/icon/core/delete"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "PaintBucketIcon", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _paintBucket.default;
11
+ }
12
+ });
13
+ var _paintBucket = _interopRequireDefault(require("@atlaskit/icon/core/paint-bucket"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "TableRowAddAboveIcon", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _tableRowAddAbove.default;
11
+ }
12
+ });
13
+ var _tableRowAddAbove = _interopRequireDefault(require("@atlaskit/icon/core/table-row-add-above"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "TableRowAddBelowIcon", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _tableRowAddBelow.default;
11
+ }
12
+ });
13
+ var _tableRowAddBelow = _interopRequireDefault(require("@atlaskit/icon/core/table-row-add-below"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "TableRowMoveDownIcon", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _tableRowMoveDown.default;
11
+ }
12
+ });
13
+ var _tableRowMoveDown = _interopRequireDefault(require("@atlaskit/icon/core/table-row-move-down"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "TableRowMoveUpIcon", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _tableRowMoveUp.default;
11
+ }
12
+ });
13
+ var _tableRowMoveUp = _interopRequireDefault(require("@atlaskit/icon/core/table-row-move-up"));
@@ -44,6 +44,9 @@ export { LinkIcon } from './ui/icons/LinkIcon';
44
44
  export { ListBulletedIcon } from './ui/icons/ListBulletedIcon';
45
45
  export { ListNumberedIcon } from './ui/icons/ListNumberedIcon';
46
46
  export { MoreItemsIcon } from './ui/icons/MoreItemsIcon';
47
+ export { CrossIcon } from './ui/icons/CrossIcon';
48
+ export { DeleteIcon } from './ui/icons/DeleteIcon';
49
+ export { PaintBucketIcon } from './ui/icons/PaintBucketIcon';
47
50
  export { PinIcon } from './ui/icons/PinIcon';
48
51
  export { PinnedIcon } from './ui/icons/PinnedIcon';
49
52
  export { QuoteIcon } from './ui/icons/QuoteIcon';
@@ -68,6 +71,10 @@ export { LayoutIcon } from './ui/icons/LayoutIcon';
68
71
  export { ImageIcon } from './ui/icons/ImageIcon';
69
72
  export { MentionIcon } from './ui/icons/MentionIcon';
70
73
  export { TableIcon } from './ui/icons/TableIcon';
74
+ export { TableRowAddAboveIcon } from './ui/icons/TableRowAddAboveIcon';
75
+ export { TableRowAddBelowIcon } from './ui/icons/TableRowAddBelowIcon';
76
+ export { TableRowMoveDownIcon } from './ui/icons/TableRowMoveDownIcon';
77
+ export { TableRowMoveUpIcon } from './ui/icons/TableRowMoveUpIcon';
71
78
  export { TaskIcon } from './ui/icons/TaskIcon';
72
79
  export { UndoIcon } from './ui/icons/UndoIcon';
73
80
  export { RedoIcon } from './ui/icons/RedoIcon';
@@ -5,7 +5,6 @@ import * as React from 'react';
5
5
  import { ax, ix } from "@compiled/react/runtime";
6
6
  import { cx } from '@compiled/react';
7
7
  import DropdownMenu from '@atlaskit/dropdown-menu';
8
- import { fg } from '@atlaskit/platform-feature-flags';
9
8
  import { Box } from '@atlaskit/primitives/compiled';
10
9
  import { ToolbarDropdownItem } from './ToolbarDropdownItem';
11
10
  import { ToolbarTooltip } from './ToolbarTooltip';
@@ -47,9 +46,9 @@ export const ToolbarNestedDropdownMenu = ({
47
46
  triggerRef: triggerProps.triggerRef,
48
47
  hasNestedDropdownMenu: true,
49
48
  isDisabled: isDisabled,
50
- shouldTitleWrap: fg('platform_editor_block_menu_v2_patch_2') ? shouldTitleWrap : undefined
49
+ shouldTitleWrap: shouldTitleWrap
51
50
  }, text);
52
- if (tooltipContent && fg('platform_editor_block_menu_v2_patch_2')) {
51
+ if (tooltipContent) {
53
52
  return /*#__PURE__*/React.createElement(ToolbarTooltip, {
54
53
  content: tooltipContent,
55
54
  position: "top"
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as CrossIcon } from '@atlaskit/icon/core/cross';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as DeleteIcon } from '@atlaskit/icon/core/delete';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as PaintBucketIcon } from '@atlaskit/icon/core/paint-bucket';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowAddAboveIcon } from '@atlaskit/icon/core/table-row-add-above';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowAddBelowIcon } from '@atlaskit/icon/core/table-row-add-below';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowMoveDownIcon } from '@atlaskit/icon/core/table-row-move-down';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowMoveUpIcon } from '@atlaskit/icon/core/table-row-move-up';
package/dist/esm/index.js CHANGED
@@ -44,6 +44,9 @@ export { LinkIcon } from './ui/icons/LinkIcon';
44
44
  export { ListBulletedIcon } from './ui/icons/ListBulletedIcon';
45
45
  export { ListNumberedIcon } from './ui/icons/ListNumberedIcon';
46
46
  export { MoreItemsIcon } from './ui/icons/MoreItemsIcon';
47
+ export { CrossIcon } from './ui/icons/CrossIcon';
48
+ export { DeleteIcon } from './ui/icons/DeleteIcon';
49
+ export { PaintBucketIcon } from './ui/icons/PaintBucketIcon';
47
50
  export { PinIcon } from './ui/icons/PinIcon';
48
51
  export { PinnedIcon } from './ui/icons/PinnedIcon';
49
52
  export { QuoteIcon } from './ui/icons/QuoteIcon';
@@ -68,6 +71,10 @@ export { LayoutIcon } from './ui/icons/LayoutIcon';
68
71
  export { ImageIcon } from './ui/icons/ImageIcon';
69
72
  export { MentionIcon } from './ui/icons/MentionIcon';
70
73
  export { TableIcon } from './ui/icons/TableIcon';
74
+ export { TableRowAddAboveIcon } from './ui/icons/TableRowAddAboveIcon';
75
+ export { TableRowAddBelowIcon } from './ui/icons/TableRowAddBelowIcon';
76
+ export { TableRowMoveDownIcon } from './ui/icons/TableRowMoveDownIcon';
77
+ export { TableRowMoveUpIcon } from './ui/icons/TableRowMoveUpIcon';
71
78
  export { TaskIcon } from './ui/icons/TaskIcon';
72
79
  export { UndoIcon } from './ui/icons/UndoIcon';
73
80
  export { RedoIcon } from './ui/icons/RedoIcon';
@@ -5,7 +5,6 @@ import * as React from 'react';
5
5
  import { ax, ix } from "@compiled/react/runtime";
6
6
  import { cx } from '@compiled/react';
7
7
  import DropdownMenu from '@atlaskit/dropdown-menu';
8
- import { fg } from '@atlaskit/platform-feature-flags';
9
8
  import { Box } from '@atlaskit/primitives/compiled';
10
9
  import { ToolbarDropdownItem } from './ToolbarDropdownItem';
11
10
  import { ToolbarTooltip } from './ToolbarTooltip';
@@ -48,9 +47,9 @@ export var ToolbarNestedDropdownMenu = function ToolbarNestedDropdownMenu(_ref)
48
47
  triggerRef: triggerProps.triggerRef,
49
48
  hasNestedDropdownMenu: true,
50
49
  isDisabled: isDisabled,
51
- shouldTitleWrap: fg('platform_editor_block_menu_v2_patch_2') ? shouldTitleWrap : undefined
50
+ shouldTitleWrap: shouldTitleWrap
52
51
  }, text);
53
- if (tooltipContent && fg('platform_editor_block_menu_v2_patch_2')) {
52
+ if (tooltipContent) {
54
53
  return /*#__PURE__*/React.createElement(ToolbarTooltip, {
55
54
  content: tooltipContent,
56
55
  position: "top"
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as CrossIcon } from '@atlaskit/icon/core/cross';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as DeleteIcon } from '@atlaskit/icon/core/delete';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as PaintBucketIcon } from '@atlaskit/icon/core/paint-bucket';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowAddAboveIcon } from '@atlaskit/icon/core/table-row-add-above';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowAddBelowIcon } from '@atlaskit/icon/core/table-row-add-below';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowMoveDownIcon } from '@atlaskit/icon/core/table-row-move-down';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as TableRowMoveUpIcon } from '@atlaskit/icon/core/table-row-move-up';
@@ -43,6 +43,9 @@ export { LinkIcon } from './ui/icons/LinkIcon';
43
43
  export { ListBulletedIcon } from './ui/icons/ListBulletedIcon';
44
44
  export { ListNumberedIcon } from './ui/icons/ListNumberedIcon';
45
45
  export { MoreItemsIcon } from './ui/icons/MoreItemsIcon';
46
+ export { CrossIcon } from './ui/icons/CrossIcon';
47
+ export { DeleteIcon } from './ui/icons/DeleteIcon';
48
+ export { PaintBucketIcon } from './ui/icons/PaintBucketIcon';
46
49
  export { PinIcon } from './ui/icons/PinIcon';
47
50
  export { PinnedIcon } from './ui/icons/PinnedIcon';
48
51
  export { QuoteIcon } from './ui/icons/QuoteIcon';
@@ -67,6 +70,10 @@ export { LayoutIcon } from './ui/icons/LayoutIcon';
67
70
  export { ImageIcon } from './ui/icons/ImageIcon';
68
71
  export { MentionIcon } from './ui/icons/MentionIcon';
69
72
  export { TableIcon } from './ui/icons/TableIcon';
73
+ export { TableRowAddAboveIcon } from './ui/icons/TableRowAddAboveIcon';
74
+ export { TableRowAddBelowIcon } from './ui/icons/TableRowAddBelowIcon';
75
+ export { TableRowMoveDownIcon } from './ui/icons/TableRowMoveDownIcon';
76
+ export { TableRowMoveUpIcon } from './ui/icons/TableRowMoveUpIcon';
70
77
  export { TaskIcon } from './ui/icons/TaskIcon';
71
78
  export { UndoIcon } from './ui/icons/UndoIcon';
72
79
  export { RedoIcon } from './ui/icons/RedoIcon';
@@ -0,0 +1 @@
1
+ export { default as CrossIcon } from '@atlaskit/icon/core/cross';
@@ -0,0 +1 @@
1
+ export { default as DeleteIcon } from '@atlaskit/icon/core/delete';
@@ -0,0 +1 @@
1
+ export { default as PaintBucketIcon } from '@atlaskit/icon/core/paint-bucket';
@@ -0,0 +1 @@
1
+ export { default as TableRowAddAboveIcon } from '@atlaskit/icon/core/table-row-add-above';
@@ -0,0 +1 @@
1
+ export { default as TableRowAddBelowIcon } from '@atlaskit/icon/core/table-row-add-below';
@@ -0,0 +1 @@
1
+ export { default as TableRowMoveDownIcon } from '@atlaskit/icon/core/table-row-move-down';
@@ -0,0 +1 @@
1
+ export { default as TableRowMoveUpIcon } from '@atlaskit/icon/core/table-row-move-up';
@@ -43,6 +43,9 @@ export { LinkIcon } from './ui/icons/LinkIcon';
43
43
  export { ListBulletedIcon } from './ui/icons/ListBulletedIcon';
44
44
  export { ListNumberedIcon } from './ui/icons/ListNumberedIcon';
45
45
  export { MoreItemsIcon } from './ui/icons/MoreItemsIcon';
46
+ export { CrossIcon } from './ui/icons/CrossIcon';
47
+ export { DeleteIcon } from './ui/icons/DeleteIcon';
48
+ export { PaintBucketIcon } from './ui/icons/PaintBucketIcon';
46
49
  export { PinIcon } from './ui/icons/PinIcon';
47
50
  export { PinnedIcon } from './ui/icons/PinnedIcon';
48
51
  export { QuoteIcon } from './ui/icons/QuoteIcon';
@@ -67,6 +70,10 @@ export { LayoutIcon } from './ui/icons/LayoutIcon';
67
70
  export { ImageIcon } from './ui/icons/ImageIcon';
68
71
  export { MentionIcon } from './ui/icons/MentionIcon';
69
72
  export { TableIcon } from './ui/icons/TableIcon';
73
+ export { TableRowAddAboveIcon } from './ui/icons/TableRowAddAboveIcon';
74
+ export { TableRowAddBelowIcon } from './ui/icons/TableRowAddBelowIcon';
75
+ export { TableRowMoveDownIcon } from './ui/icons/TableRowMoveDownIcon';
76
+ export { TableRowMoveUpIcon } from './ui/icons/TableRowMoveUpIcon';
70
77
  export { TaskIcon } from './ui/icons/TaskIcon';
71
78
  export { UndoIcon } from './ui/icons/UndoIcon';
72
79
  export { RedoIcon } from './ui/icons/RedoIcon';
@@ -0,0 +1 @@
1
+ export { default as CrossIcon } from '@atlaskit/icon/core/cross';
@@ -0,0 +1 @@
1
+ export { default as DeleteIcon } from '@atlaskit/icon/core/delete';
@@ -0,0 +1 @@
1
+ export { default as PaintBucketIcon } from '@atlaskit/icon/core/paint-bucket';
@@ -0,0 +1 @@
1
+ export { default as TableRowAddAboveIcon } from '@atlaskit/icon/core/table-row-add-above';
@@ -0,0 +1 @@
1
+ export { default as TableRowAddBelowIcon } from '@atlaskit/icon/core/table-row-add-below';
@@ -0,0 +1 @@
1
+ export { default as TableRowMoveDownIcon } from '@atlaskit/icon/core/table-row-move-down';
@@ -0,0 +1 @@
1
+ export { default as TableRowMoveUpIcon } from '@atlaskit/icon/core/table-row-move-up';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "registry": "https://registry.npmjs.org/"
5
5
  },
6
- "version": "1.1.1",
6
+ "version": "1.2.0",
7
7
  "description": "Common UI for Toolbars across the platform",
8
8
  "atlassian": {
9
9
  "react-compiler": {
@@ -37,7 +37,7 @@
37
37
  "@atlaskit/platform-feature-flags": "^1.1.0",
38
38
  "@atlaskit/popup": "^4.19.0",
39
39
  "@atlaskit/primitives": "^19.0.0",
40
- "@atlaskit/tmp-editor-statsig": "^79.0.0",
40
+ "@atlaskit/tmp-editor-statsig": "^80.0.0",
41
41
  "@atlaskit/tokens": "^13.0.0",
42
42
  "@atlaskit/tooltip": "^22.2.0",
43
43
  "@babel/runtime": "^7.0.0",
@@ -90,9 +90,6 @@
90
90
  }
91
91
  },
92
92
  "platform-feature-flags": {
93
- "platform_editor_block_menu_v2_patch_2": {
94
- "type": "boolean"
95
- },
96
93
  "platform_editor_fix_t_at_is_not_a_function": {
97
94
  "type": "boolean"
98
95
  }