@atlaskit/editor-plugin-table 7.24.7 → 7.25.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
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 7.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#128347](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128347)
|
|
8
|
+
[`e33566cebd5d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e33566cebd5d1) -
|
|
9
|
+
[ED-24175] bump @atlaskit/adf-schema to 40.8.1 and @atlassian/adf-schema-json to 1.22.0 to
|
|
10
|
+
promotecodeblocks & media in quotes, and nested expands in expands to full schema, and allow
|
|
11
|
+
quotes in panels and decisions in lists in stage0 schema, and a validator spec change
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
17
|
+
## 7.24.8
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#127766](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/127766)
|
|
22
|
+
[`8a9803d7d9555`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8a9803d7d9555) -
|
|
23
|
+
ED-24425: Fixed the drag handle show hover state when hover delete column on the next column/row
|
|
24
|
+
|
|
3
25
|
## 7.24.7
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -60,8 +60,11 @@ var DragHandleComponent = function DragHandleComponent(_ref) {
|
|
|
60
60
|
isDragMenuOpen = _getDnDPluginState.isDragMenuOpen;
|
|
61
61
|
var isRow = direction === 'row';
|
|
62
62
|
var isColumn = direction === 'column';
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
|
|
64
|
+
// Added !isDragMenuOpen check so when hover 'Delete column/row' from drag menu
|
|
65
|
+
// the handle of the next column/row does not show the 'hovered' state icon
|
|
66
|
+
var isRowHandleHovered = isRow && hoveredRows.length > 0 && !isDragMenuOpen;
|
|
67
|
+
var isColumnHandleHovered = isColumn && hoveredColumns.length > 0 && !isDragMenuOpen;
|
|
65
68
|
var hasMergedCells = (0, _react.useMemo)(function () {
|
|
66
69
|
var table = (0, _editorTables.findTable)(selection);
|
|
67
70
|
if (!table) {
|
|
@@ -51,8 +51,11 @@ const DragHandleComponent = ({
|
|
|
51
51
|
} = getDnDPluginState(state);
|
|
52
52
|
const isRow = direction === 'row';
|
|
53
53
|
const isColumn = direction === 'column';
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
|
|
55
|
+
// Added !isDragMenuOpen check so when hover 'Delete column/row' from drag menu
|
|
56
|
+
// the handle of the next column/row does not show the 'hovered' state icon
|
|
57
|
+
const isRowHandleHovered = isRow && hoveredRows.length > 0 && !isDragMenuOpen;
|
|
58
|
+
const isColumnHandleHovered = isColumn && hoveredColumns.length > 0 && !isDragMenuOpen;
|
|
56
59
|
const hasMergedCells = useMemo(() => {
|
|
57
60
|
const table = findTable(selection);
|
|
58
61
|
if (!table) {
|
|
@@ -50,8 +50,11 @@ var DragHandleComponent = function DragHandleComponent(_ref) {
|
|
|
50
50
|
isDragMenuOpen = _getDnDPluginState.isDragMenuOpen;
|
|
51
51
|
var isRow = direction === 'row';
|
|
52
52
|
var isColumn = direction === 'column';
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
|
|
54
|
+
// Added !isDragMenuOpen check so when hover 'Delete column/row' from drag menu
|
|
55
|
+
// the handle of the next column/row does not show the 'hovered' state icon
|
|
56
|
+
var isRowHandleHovered = isRow && hoveredRows.length > 0 && !isDragMenuOpen;
|
|
57
|
+
var isColumnHandleHovered = isColumn && hoveredColumns.length > 0 && !isDragMenuOpen;
|
|
55
58
|
var hasMergedCells = useMemo(function () {
|
|
56
59
|
var table = findTable(selection);
|
|
57
60
|
if (!table) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.25.0",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"runReact18": false
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atlaskit/adf-schema": "^40.
|
|
31
|
+
"@atlaskit/adf-schema": "^40.8.1",
|
|
32
32
|
"@atlaskit/button": "^19.1.0",
|
|
33
|
-
"@atlaskit/custom-steps": "^0.
|
|
34
|
-
"@atlaskit/editor-common": "^87.
|
|
33
|
+
"@atlaskit/custom-steps": "^0.7.0",
|
|
34
|
+
"@atlaskit/editor-common": "^87.6.0",
|
|
35
35
|
"@atlaskit/editor-palette": "1.6.0",
|
|
36
36
|
"@atlaskit/editor-plugin-accessibility-utils": "^1.2.0",
|
|
37
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
38
|
-
"@atlaskit/editor-plugin-content-insertion": "^1.
|
|
37
|
+
"@atlaskit/editor-plugin-analytics": "^1.7.0",
|
|
38
|
+
"@atlaskit/editor-plugin-content-insertion": "^1.7.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-viewmode": "^2.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-guideline": "^1.2.0",
|
|
41
41
|
"@atlaskit/editor-plugin-selection": "^1.3.0",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@atlaskit/editor-prosemirror": "5.0.1",
|
|
44
44
|
"@atlaskit/editor-shared-styles": "^2.13.0",
|
|
45
45
|
"@atlaskit/editor-tables": "^2.8.0",
|
|
46
|
-
"@atlaskit/icon": "^22.
|
|
47
|
-
"@atlaskit/menu": "^2.
|
|
46
|
+
"@atlaskit/icon": "^22.11.0",
|
|
47
|
+
"@atlaskit/menu": "^2.10.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
49
49
|
"@atlaskit/pragmatic-drag-and-drop": "^1.2.0",
|
|
50
50
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^1.4.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@atlaskit/theme": "^12.11.0",
|
|
54
54
|
"@atlaskit/toggle": "^13.2.0",
|
|
55
55
|
"@atlaskit/tokens": "^1.57.0",
|
|
56
|
-
"@atlaskit/tooltip": "^18.
|
|
56
|
+
"@atlaskit/tooltip": "^18.6.0",
|
|
57
57
|
"@babel/runtime": "^7.0.0",
|
|
58
58
|
"@emotion/react": "^11.7.1",
|
|
59
59
|
"classnames": "^2.2.5",
|
|
@@ -77,8 +77,10 @@ const DragHandleComponent = ({
|
|
|
77
77
|
const isRow = direction === 'row';
|
|
78
78
|
const isColumn = direction === 'column';
|
|
79
79
|
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
// Added !isDragMenuOpen check so when hover 'Delete column/row' from drag menu
|
|
81
|
+
// the handle of the next column/row does not show the 'hovered' state icon
|
|
82
|
+
const isRowHandleHovered = isRow && hoveredRows.length > 0 && !isDragMenuOpen;
|
|
83
|
+
const isColumnHandleHovered = isColumn && hoveredColumns.length > 0 && !isDragMenuOpen;
|
|
82
84
|
|
|
83
85
|
const hasMergedCells = useMemo(() => {
|
|
84
86
|
const table = findTable(selection);
|