@atlaskit/editor-plugin-table 10.1.4 → 10.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.
- package/CHANGELOG.md +13 -0
- package/dist/cjs/ui/toolbar.js +0 -1
- package/dist/es2019/ui/toolbar.js +0 -1
- package/dist/esm/ui/toolbar.js +0 -1
- package/package.json +2 -2
- package/src/ui/toolbar.tsx +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 10.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#119765](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119765)
|
|
8
|
+
[`5a27b842be965`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a27b842be965) -
|
|
9
|
+
Add deprecated label to `forceStaticToolbar` in floating toolbar property and remove its usage
|
|
10
|
+
across plugins
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 10.1.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/cjs/ui/toolbar.js
CHANGED
|
@@ -464,7 +464,6 @@ var getToolbarConfig = exports.getToolbarConfig = function getToolbarConfig(getE
|
|
|
464
464
|
},
|
|
465
465
|
zIndex: _editorSharedStyles.akEditorFloatingPanelZIndex + 1,
|
|
466
466
|
// Place the context menu slightly above the others
|
|
467
|
-
forceStaticToolbar: true,
|
|
468
467
|
items: [menu, separator(menu.hidden)].concat((0, _toConsumableArray2.default)(alignmentMenu), [separator(alignmentMenu.length === 0)], (0, _toConsumableArray2.default)(cellItems), (0, _toConsumableArray2.default)(columnSettingsItems), (0, _toConsumableArray2.default)(colorPicker), [
|
|
469
468
|
// TODO: editor controls to move to overflow menu
|
|
470
469
|
{
|
|
@@ -436,7 +436,6 @@ export const getToolbarConfig = (getEditorContainerWidth, api, editorAnalyticsAP
|
|
|
436
436
|
},
|
|
437
437
|
zIndex: akEditorFloatingPanelZIndex + 1,
|
|
438
438
|
// Place the context menu slightly above the others
|
|
439
|
-
forceStaticToolbar: true,
|
|
440
439
|
items: [menu, separator(menu.hidden), ...alignmentMenu, separator(alignmentMenu.length === 0), ...cellItems, ...columnSettingsItems, ...colorPicker,
|
|
441
440
|
// TODO: editor controls to move to overflow menu
|
|
442
441
|
{
|
package/dist/esm/ui/toolbar.js
CHANGED
|
@@ -456,7 +456,6 @@ export var getToolbarConfig = function getToolbarConfig(getEditorContainerWidth,
|
|
|
456
456
|
},
|
|
457
457
|
zIndex: akEditorFloatingPanelZIndex + 1,
|
|
458
458
|
// Place the context menu slightly above the others
|
|
459
|
-
forceStaticToolbar: true,
|
|
460
459
|
items: [menu, separator(menu.hidden)].concat(_toConsumableArray(alignmentMenu), [separator(alignmentMenu.length === 0)], _toConsumableArray(cellItems), _toConsumableArray(columnSettingsItems), _toConsumableArray(colorPicker), [
|
|
461
460
|
// TODO: editor controls to move to overflow menu
|
|
462
461
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@atlaskit/adf-schema": "^47.2.1",
|
|
31
31
|
"@atlaskit/button": "^21.1.0",
|
|
32
32
|
"@atlaskit/custom-steps": "^0.10.0",
|
|
33
|
-
"@atlaskit/editor-common": "^100.
|
|
33
|
+
"@atlaskit/editor-common": "^100.3.0",
|
|
34
34
|
"@atlaskit/editor-palette": "2.0.0",
|
|
35
35
|
"@atlaskit/editor-plugin-accessibility-utils": "^2.0.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^2.0.0",
|
package/src/ui/toolbar.tsx
CHANGED
|
@@ -639,7 +639,6 @@ export const getToolbarConfig =
|
|
|
639
639
|
offset: [0, 18],
|
|
640
640
|
absoluteOffset: { top: -6 },
|
|
641
641
|
zIndex: akEditorFloatingPanelZIndex + 1, // Place the context menu slightly above the others
|
|
642
|
-
forceStaticToolbar: true,
|
|
643
642
|
items: [
|
|
644
643
|
menu,
|
|
645
644
|
separator(menu.hidden),
|