@atlaskit/editor-plugin-table 9.2.0 → 9.2.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 +10 -0
- package/dist/cjs/nodeviews/TableCell.js +0 -2
- package/dist/cjs/nodeviews/TableContainer.js +13 -2
- package/dist/cjs/nodeviews/TableNodeViewBase.js +0 -2
- package/dist/cjs/nodeviews/TableResizer.js +5 -10
- package/dist/cjs/nodeviews/TableRow.js +0 -2
- package/dist/cjs/nodeviews/lazy-node-views.js +4 -16
- package/dist/cjs/nodeviews/table.js +2 -8
- package/dist/cjs/pm-plugins/commands/column-resize.js +1 -4
- package/dist/cjs/pm-plugins/commands/commands-with-analytics.js +4 -16
- package/dist/cjs/pm-plugins/commands/insert.js +4 -19
- package/dist/cjs/pm-plugins/commands/misc.js +3 -12
- package/dist/cjs/pm-plugins/decorations/plugin.js +1 -6
- package/dist/cjs/pm-plugins/decorations/utils/column-resizing.js +1 -4
- package/dist/cjs/pm-plugins/drag-and-drop/commands-with-analytics.js +3 -12
- package/dist/cjs/pm-plugins/drag-and-drop/commands.js +3 -12
- package/dist/cjs/pm-plugins/drag-and-drop/plugin.js +1 -4
- package/dist/cjs/pm-plugins/keymap.js +0 -2
- package/dist/cjs/pm-plugins/main.js +1 -6
- package/dist/cjs/pm-plugins/table-resizing/event-handlers.js +1 -4
- package/dist/cjs/pm-plugins/table-resizing/plugin.js +0 -2
- package/dist/cjs/pm-plugins/table-resizing/utils/colgroup.js +1 -7
- package/dist/cjs/pm-plugins/table-resizing/utils/column-state.js +1 -4
- package/dist/cjs/pm-plugins/table-resizing/utils/content-width.js +0 -8
- package/dist/cjs/pm-plugins/table-resizing/utils/resize-logic.js +2 -10
- package/dist/cjs/pm-plugins/table-resizing/utils/resize-state.js +1 -4
- package/dist/cjs/pm-plugins/table-width.js +1 -6
- package/dist/cjs/pm-plugins/transforms/column-width.js +1 -4
- package/dist/cjs/pm-plugins/transforms/fix-tables.js +3 -15
- package/dist/cjs/pm-plugins/transforms/replace-table.js +1 -4
- package/dist/cjs/pm-plugins/transforms/split.js +0 -2
- package/dist/cjs/pm-plugins/utils/alignment.js +1 -4
- package/dist/cjs/pm-plugins/utils/decoration.js +4 -16
- package/dist/cjs/pm-plugins/utils/drag-menu.js +1 -4
- package/dist/cjs/pm-plugins/utils/nodes.js +0 -3
- package/dist/cjs/pm-plugins/utils/paste.js +4 -0
- package/dist/cjs/pm-plugins/utils/row-controls.js +1 -4
- package/dist/cjs/ui/FloatingInsertButton/getPopupOptions.js +0 -6
- package/dist/cjs/ui/TableFloatingColumnControls/ColumnControls/index.js +1 -4
- package/dist/cjs/ui/TableFloatingControls/RowControls/DragControls.js +1 -4
- package/dist/cjs/ui/TableFloatingControls/index.js +1 -4
- package/dist/cjs/ui/toolbar.js +3 -12
- package/dist/es2019/nodeviews/TableCell.js +0 -2
- package/dist/es2019/nodeviews/TableContainer.js +13 -2
- package/dist/es2019/nodeviews/TableNodeViewBase.js +0 -2
- package/dist/es2019/nodeviews/TableResizer.js +5 -10
- package/dist/es2019/nodeviews/TableRow.js +0 -2
- package/dist/es2019/nodeviews/lazy-node-views.js +4 -16
- package/dist/es2019/nodeviews/table.js +2 -8
- package/dist/es2019/pm-plugins/commands/column-resize.js +1 -4
- package/dist/es2019/pm-plugins/commands/commands-with-analytics.js +6 -24
- package/dist/es2019/pm-plugins/commands/delete.js +1 -4
- package/dist/es2019/pm-plugins/commands/insert.js +5 -23
- package/dist/es2019/pm-plugins/commands/misc.js +3 -12
- package/dist/es2019/pm-plugins/decorations/plugin.js +1 -6
- package/dist/es2019/pm-plugins/decorations/utils/column-resizing.js +1 -4
- package/dist/es2019/pm-plugins/drag-and-drop/commands-with-analytics.js +3 -12
- package/dist/es2019/pm-plugins/drag-and-drop/commands.js +4 -16
- package/dist/es2019/pm-plugins/drag-and-drop/plugin.js +2 -8
- package/dist/es2019/pm-plugins/keymap.js +0 -3
- package/dist/es2019/pm-plugins/main.js +1 -6
- package/dist/es2019/pm-plugins/table-resizing/event-handlers.js +1 -4
- package/dist/es2019/pm-plugins/table-resizing/plugin.js +0 -3
- package/dist/es2019/pm-plugins/table-resizing/utils/colgroup.js +2 -11
- package/dist/es2019/pm-plugins/table-resizing/utils/column-state.js +1 -4
- package/dist/es2019/pm-plugins/table-resizing/utils/content-width.js +0 -8
- package/dist/es2019/pm-plugins/table-resizing/utils/resize-column.js +1 -4
- package/dist/es2019/pm-plugins/table-resizing/utils/resize-logic.js +2 -10
- package/dist/es2019/pm-plugins/table-resizing/utils/resize-state.js +2 -8
- package/dist/es2019/pm-plugins/table-resizing/utils/scale-table.js +4 -16
- package/dist/es2019/pm-plugins/table-width.js +1 -6
- package/dist/es2019/pm-plugins/transforms/column-width.js +2 -8
- package/dist/es2019/pm-plugins/transforms/delete-columns.js +1 -4
- package/dist/es2019/pm-plugins/transforms/fix-tables.js +3 -15
- package/dist/es2019/pm-plugins/transforms/replace-table.js +1 -4
- package/dist/es2019/pm-plugins/transforms/split.js +0 -2
- package/dist/es2019/pm-plugins/utils/alignment.js +1 -4
- package/dist/es2019/pm-plugins/utils/decoration.js +4 -16
- package/dist/es2019/pm-plugins/utils/drag-menu.js +2 -8
- package/dist/es2019/pm-plugins/utils/nodes.js +0 -3
- package/dist/es2019/pm-plugins/utils/paste.js +5 -4
- package/dist/es2019/pm-plugins/utils/row-controls.js +1 -4
- package/dist/es2019/pm-plugins/utils/snapping.js +1 -4
- package/dist/es2019/ui/FloatingInsertButton/getPopupOptions.js +0 -6
- package/dist/es2019/ui/TableFloatingColumnControls/ColumnControls/index.js +1 -4
- package/dist/es2019/ui/TableFloatingControls/RowControls/DragControls.js +1 -4
- package/dist/es2019/ui/TableFloatingControls/index.js +1 -5
- package/dist/es2019/ui/event-handlers.js +1 -4
- package/dist/es2019/ui/toolbar.js +9 -36
- package/dist/esm/nodeviews/TableCell.js +0 -2
- package/dist/esm/nodeviews/TableContainer.js +13 -2
- package/dist/esm/nodeviews/TableNodeViewBase.js +0 -2
- package/dist/esm/nodeviews/TableResizer.js +5 -10
- package/dist/esm/nodeviews/TableRow.js +0 -2
- package/dist/esm/nodeviews/lazy-node-views.js +4 -16
- package/dist/esm/nodeviews/table.js +2 -8
- package/dist/esm/pm-plugins/commands/column-resize.js +1 -4
- package/dist/esm/pm-plugins/commands/commands-with-analytics.js +4 -16
- package/dist/esm/pm-plugins/commands/insert.js +4 -19
- package/dist/esm/pm-plugins/commands/misc.js +3 -12
- package/dist/esm/pm-plugins/decorations/plugin.js +1 -6
- package/dist/esm/pm-plugins/decorations/utils/column-resizing.js +1 -4
- package/dist/esm/pm-plugins/drag-and-drop/commands-with-analytics.js +3 -12
- package/dist/esm/pm-plugins/drag-and-drop/commands.js +3 -12
- package/dist/esm/pm-plugins/drag-and-drop/plugin.js +1 -4
- package/dist/esm/pm-plugins/keymap.js +0 -3
- package/dist/esm/pm-plugins/main.js +1 -6
- package/dist/esm/pm-plugins/table-resizing/event-handlers.js +1 -4
- package/dist/esm/pm-plugins/table-resizing/plugin.js +0 -3
- package/dist/esm/pm-plugins/table-resizing/utils/colgroup.js +1 -7
- package/dist/esm/pm-plugins/table-resizing/utils/column-state.js +1 -4
- package/dist/esm/pm-plugins/table-resizing/utils/content-width.js +0 -8
- package/dist/esm/pm-plugins/table-resizing/utils/resize-logic.js +2 -10
- package/dist/esm/pm-plugins/table-resizing/utils/resize-state.js +1 -4
- package/dist/esm/pm-plugins/table-width.js +1 -6
- package/dist/esm/pm-plugins/transforms/column-width.js +1 -4
- package/dist/esm/pm-plugins/transforms/fix-tables.js +3 -15
- package/dist/esm/pm-plugins/transforms/replace-table.js +1 -4
- package/dist/esm/pm-plugins/transforms/split.js +0 -2
- package/dist/esm/pm-plugins/utils/alignment.js +1 -4
- package/dist/esm/pm-plugins/utils/decoration.js +4 -16
- package/dist/esm/pm-plugins/utils/drag-menu.js +1 -4
- package/dist/esm/pm-plugins/utils/nodes.js +0 -3
- package/dist/esm/pm-plugins/utils/paste.js +4 -0
- package/dist/esm/pm-plugins/utils/row-controls.js +1 -4
- package/dist/esm/ui/FloatingInsertButton/getPopupOptions.js +0 -6
- package/dist/esm/ui/TableFloatingColumnControls/ColumnControls/index.js +1 -4
- package/dist/esm/ui/TableFloatingControls/RowControls/DragControls.js +1 -4
- package/dist/esm/ui/TableFloatingControls/index.js +1 -4
- package/dist/esm/ui/toolbar.js +3 -12
- package/dist/types/nodeviews/TableResizer.d.ts +2 -1
- package/dist/types-ts4.5/nodeviews/TableResizer.d.ts +2 -1
- package/package.json +11 -5
- package/src/nodeviews/TableCell.ts +0 -2
- package/src/nodeviews/TableComponent.tsx +1 -1
- package/src/nodeviews/TableContainer.tsx +12 -1
- package/src/nodeviews/TableNodeViewBase.ts +0 -2
- package/src/nodeviews/TableResizer.tsx +9 -5
- package/src/nodeviews/TableRow.ts +0 -2
- package/src/nodeviews/lazy-node-views.ts +0 -8
- package/src/nodeviews/table.tsx +0 -4
- package/src/pm-plugins/commands/column-resize.ts +0 -2
- package/src/pm-plugins/commands/commands-with-analytics.ts +0 -12
- package/src/pm-plugins/commands/delete.ts +0 -2
- package/src/pm-plugins/commands/insert.ts +0 -12
- package/src/pm-plugins/commands/misc.ts +0 -6
- package/src/pm-plugins/decorations/plugin.ts +0 -4
- package/src/pm-plugins/decorations/utils/column-resizing.ts +0 -2
- package/src/pm-plugins/drag-and-drop/commands-with-analytics.ts +0 -6
- package/src/pm-plugins/drag-and-drop/commands.ts +0 -8
- package/src/pm-plugins/drag-and-drop/plugin.ts +0 -4
- package/src/pm-plugins/keymap.ts +0 -2
- package/src/pm-plugins/main.ts +0 -4
- package/src/pm-plugins/table-resizing/event-handlers.ts +0 -2
- package/src/pm-plugins/table-resizing/plugin.ts +0 -2
- package/src/pm-plugins/table-resizing/utils/colgroup.ts +0 -6
- package/src/pm-plugins/table-resizing/utils/column-state.ts +0 -2
- package/src/pm-plugins/table-resizing/utils/content-width.ts +0 -6
- package/src/pm-plugins/table-resizing/utils/resize-column.ts +0 -2
- package/src/pm-plugins/table-resizing/utils/resize-logic.ts +0 -6
- package/src/pm-plugins/table-resizing/utils/resize-state.ts +0 -4
- package/src/pm-plugins/table-resizing/utils/scale-table.ts +0 -8
- package/src/pm-plugins/table-width.ts +0 -4
- package/src/pm-plugins/transforms/column-width.ts +0 -4
- package/src/pm-plugins/transforms/delete-columns.ts +0 -2
- package/src/pm-plugins/transforms/fix-tables.ts +0 -8
- package/src/pm-plugins/transforms/replace-table.ts +0 -2
- package/src/pm-plugins/transforms/split.ts +0 -2
- package/src/pm-plugins/utils/alignment.ts +0 -2
- package/src/pm-plugins/utils/decoration.ts +0 -8
- package/src/pm-plugins/utils/drag-menu.ts +0 -4
- package/src/pm-plugins/utils/nodes.ts +0 -2
- package/src/pm-plugins/utils/paste.ts +4 -2
- package/src/pm-plugins/utils/row-controls.ts +0 -2
- package/src/pm-plugins/utils/snapping.ts +0 -2
- package/src/ui/FloatingInsertButton/getPopupOptions.ts +0 -4
- package/src/ui/TableFloatingColumnControls/ColumnControls/index.tsx +1 -3
- package/src/ui/TableFloatingColumnControls/index.tsx +1 -1
- package/src/ui/TableFloatingControls/RowControls/DragControls.tsx +0 -2
- package/src/ui/TableFloatingControls/index.tsx +1 -5
- package/src/ui/event-handlers.ts +0 -2
- package/src/ui/toolbar.tsx +0 -18
|
@@ -6,6 +6,7 @@ import { getParentOfTypeCount } from '@atlaskit/editor-common/nesting';
|
|
|
6
6
|
import { flatmap, mapChildren, mapSlice } from '@atlaskit/editor-common/utils';
|
|
7
7
|
import { Slice, Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
8
8
|
import { flatten, hasParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
|
|
9
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
10
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
10
11
|
import { getPluginState } from '../plugin-factory';
|
|
11
12
|
|
|
@@ -22,6 +23,9 @@ export var unwrapContentFromTable = function unwrapContentFromTable(maybeTable)
|
|
|
22
23
|
content.push.apply(content, _toConsumableArray(flatten(maybeCell, false).map(function (child) {
|
|
23
24
|
return child.node;
|
|
24
25
|
})));
|
|
26
|
+
if (fg('platform_editor_nested_tables_paste_dupe_fix')) {
|
|
27
|
+
return false;
|
|
28
|
+
}
|
|
25
29
|
}
|
|
26
30
|
return true;
|
|
27
31
|
});
|
|
@@ -81,10 +81,7 @@ export var getRowsParams = function getRowsParams(rowsHeights) {
|
|
|
81
81
|
export var getRowClassNames = function getRowClassNames(index, selection) {
|
|
82
82
|
var hoveredRows = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
|
|
83
83
|
var isInDanger = arguments.length > 3 ? arguments[3] : undefined;
|
|
84
|
-
var isResizing
|
|
85
|
-
// Ignored via go/ees005
|
|
86
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
87
|
-
= arguments.length > 4 ? arguments[4] : undefined;
|
|
84
|
+
var isResizing = arguments.length > 4 ? arguments[4] : undefined;
|
|
88
85
|
var classNames = [];
|
|
89
86
|
if (isRowSelected(index)(selection) || hoveredRows.indexOf(index) > -1 && !isResizing) {
|
|
90
87
|
classNames.push(ClassName.HOVERED_CELL_ACTIVE);
|
|
@@ -32,9 +32,6 @@ function getRowOptions(index, isDragAndDropEnabled) {
|
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
|
-
|
|
36
|
-
// Ignored via go/ees005
|
|
37
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
38
35
|
function getColumnOptions(index, tableContainer, hasNumberedColumns, isDragAndDropEnabled) {
|
|
39
36
|
var options = {
|
|
40
37
|
alignX: 'end',
|
|
@@ -75,9 +72,6 @@ function getColumnOptions(index, tableContainer, hasNumberedColumns, isDragAndDr
|
|
|
75
72
|
}
|
|
76
73
|
return options;
|
|
77
74
|
}
|
|
78
|
-
|
|
79
|
-
// Ignored via go/ees005
|
|
80
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
81
75
|
function getPopupOptions(direction, index, hasNumberedColumns, isDragAndDropEnabled, tableContainer) {
|
|
82
76
|
switch (direction) {
|
|
83
77
|
case 'column':
|
|
@@ -128,10 +128,7 @@ export var ColumnControls = function ColumnControls(_ref) {
|
|
|
128
128
|
var _getScrollOffset;
|
|
129
129
|
columnControlsRef.current.scrollLeft = (_getScrollOffset = getScrollOffset === null || getScrollOffset === void 0 ? void 0 : getScrollOffset()) !== null && _getScrollOffset !== void 0 ? _getScrollOffset : 0;
|
|
130
130
|
}
|
|
131
|
-
var generateHandleByType = function generateHandleByType(type, appearance, gridColumn, indexes
|
|
132
|
-
// Ignored via go/ees005
|
|
133
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
134
|
-
) {
|
|
131
|
+
var generateHandleByType = function generateHandleByType(type, appearance, gridColumn, indexes) {
|
|
135
132
|
var _rowHeights$reduce, _colWidths$reduce;
|
|
136
133
|
var isHover = type === 'hover';
|
|
137
134
|
var isPlaceholder = appearance === 'placeholder';
|
|
@@ -131,10 +131,7 @@ export var DragControls = function DragControls(_ref) {
|
|
|
131
131
|
selectRows(selectedRowIndexes);
|
|
132
132
|
}
|
|
133
133
|
}, [rowIndex, selectRow, selectRows, selectedRowIndexes]);
|
|
134
|
-
var generateHandleByType = function generateHandleByType(type, appearance, gridRow, indexes
|
|
135
|
-
// Ignored via go/ees005
|
|
136
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
137
|
-
) {
|
|
134
|
+
var generateHandleByType = function generateHandleByType(type, appearance, gridRow, indexes) {
|
|
138
135
|
var isHover = type === 'hover';
|
|
139
136
|
var previewHeight = rowHeights.reduce(function (sum, v, i) {
|
|
140
137
|
return sum + v * (indexes.includes(i) ? 1 : 0);
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React, { useCallback } from 'react';
|
|
2
2
|
import { browser } from '@atlaskit/editor-common/browser';
|
|
3
|
-
import { useSharedPluginState } from '@atlaskit/editor-common/hooks';
|
|
4
3
|
import { findTable } from '@atlaskit/editor-tables/utils';
|
|
5
4
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
5
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
@@ -74,8 +73,6 @@ export var TableFloatingControls = function TableFloatingControls(_ref) {
|
|
|
74
73
|
hoverCell(rowIndex, 0)(state, dispatch);
|
|
75
74
|
}
|
|
76
75
|
}, [editorView, tableActive]);
|
|
77
|
-
var _useSharedPluginState = useSharedPluginState(api, ['featureFlags']),
|
|
78
|
-
featureFlagsState = _useSharedPluginState.featureFlagsState;
|
|
79
76
|
if (!tableRef) {
|
|
80
77
|
return null;
|
|
81
78
|
}
|
|
@@ -85,7 +82,7 @@ export var TableFloatingControls = function TableFloatingControls(_ref) {
|
|
|
85
82
|
// Ignored via go/ees005
|
|
86
83
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
87
84
|
var isNested = tablePos !== undefined && isTableNested(editorView.state, tablePos);
|
|
88
|
-
var shouldShowCornerControls =
|
|
85
|
+
var shouldShowCornerControls = isNested && !editorExperiment('nested-dnd', true);
|
|
89
86
|
return (
|
|
90
87
|
/*#__PURE__*/
|
|
91
88
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
package/dist/esm/ui/toolbar.js
CHANGED
|
@@ -543,10 +543,7 @@ var getColumnSettingItems = function getColumnSettingItems(editorState, editorVi
|
|
|
543
543
|
}
|
|
544
544
|
return items;
|
|
545
545
|
};
|
|
546
|
-
var getColorPicker = function getColorPicker(state, menu, _ref5, editorAnalyticsAPI, getEditorView
|
|
547
|
-
// Ignored via go/ees005
|
|
548
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
549
|
-
) {
|
|
546
|
+
var getColorPicker = function getColorPicker(state, menu, _ref5, editorAnalyticsAPI, getEditorView) {
|
|
550
547
|
var _node$attrs;
|
|
551
548
|
var formatMessage = _ref5.formatMessage;
|
|
552
549
|
var _getPluginState2 = getPluginState(state),
|
|
@@ -609,10 +606,7 @@ var highlightColumnsHandler = function highlightColumnsHandler(state, dispatch)
|
|
|
609
606
|
}
|
|
610
607
|
return false;
|
|
611
608
|
};
|
|
612
|
-
var getAlignmentOptionsConfig = function getAlignmentOptionsConfig(editorState, _ref6, editorAnalyticsAPI, getEditorContainerWidth, getDomRef, editorView, shouldUseIncreasedScalingPercent, isFullWidthEditor, isCommentEditor
|
|
613
|
-
// Ignored via go/ees005
|
|
614
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
615
|
-
) {
|
|
609
|
+
var getAlignmentOptionsConfig = function getAlignmentOptionsConfig(editorState, _ref6, editorAnalyticsAPI, getEditorContainerWidth, getDomRef, editorView, shouldUseIncreasedScalingPercent, isFullWidthEditor, isCommentEditor) {
|
|
616
610
|
var formatMessage = _ref6.formatMessage;
|
|
617
611
|
var tableObject = findTable(editorState.selection);
|
|
618
612
|
if (!tableObject) {
|
|
@@ -691,10 +685,7 @@ var getSelectedAlignmentIcon = function getSelectedAlignmentIcon(alignmentIcons,
|
|
|
691
685
|
return icon.value === normaliseAlignment(selectedAlignment);
|
|
692
686
|
});
|
|
693
687
|
};
|
|
694
|
-
var isLayoutOptionDisabled = function isLayoutOptionDisabled(selectedNode, getEditorContainerWidth, getDomRef, editorView, shouldUseIncreasedScalingPercent, isFullWidthEditor
|
|
695
|
-
// Ignored via go/ees005
|
|
696
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
697
|
-
) {
|
|
688
|
+
var isLayoutOptionDisabled = function isLayoutOptionDisabled(selectedNode, getEditorContainerWidth, getDomRef, editorView, shouldUseIncreasedScalingPercent, isFullWidthEditor) {
|
|
698
689
|
var _getEditorContainerWi = getEditorContainerWidth(),
|
|
699
690
|
lineLength = _getEditorContainerWi.lineLength;
|
|
700
691
|
var tableContainerWidth = getTableContainerWidth(selectedNode);
|
|
@@ -28,6 +28,7 @@ interface TableResizerProps {
|
|
|
28
28
|
isCommentEditor?: boolean;
|
|
29
29
|
onResizeStop?: () => void;
|
|
30
30
|
onResizeStart?: () => void;
|
|
31
|
+
disabled?: boolean;
|
|
31
32
|
}
|
|
32
|
-
export declare const TableResizer: ({ children, width, maxWidth, containerWidth, lineLength, updateWidth, onResizeStop, onResizeStart, editorView, getPos, node, tableRef, displayGuideline, attachAnalyticsEvent, displayGapCursor, isTableScalingEnabled, isTableWithFixedColumnWidthsOptionEnabled, isTableAlignmentEnabled, isWholeTableInDanger, shouldUseIncreasedScalingPercent, pluginInjectionApi, isFullWidthModeEnabled, isCommentEditor, }: PropsWithChildren<TableResizerProps>) => JSX.Element;
|
|
33
|
+
export declare const TableResizer: ({ children, width, maxWidth, containerWidth, lineLength, updateWidth, onResizeStop, onResizeStart, editorView, getPos, node, tableRef, displayGuideline, attachAnalyticsEvent, displayGapCursor, isTableScalingEnabled, isTableWithFixedColumnWidthsOptionEnabled, isTableAlignmentEnabled, isWholeTableInDanger, shouldUseIncreasedScalingPercent, pluginInjectionApi, isFullWidthModeEnabled, isCommentEditor, disabled, }: PropsWithChildren<TableResizerProps>) => JSX.Element;
|
|
33
34
|
export {};
|
|
@@ -28,6 +28,7 @@ interface TableResizerProps {
|
|
|
28
28
|
isCommentEditor?: boolean;
|
|
29
29
|
onResizeStop?: () => void;
|
|
30
30
|
onResizeStart?: () => void;
|
|
31
|
+
disabled?: boolean;
|
|
31
32
|
}
|
|
32
|
-
export declare const TableResizer: ({ children, width, maxWidth, containerWidth, lineLength, updateWidth, onResizeStop, onResizeStart, editorView, getPos, node, tableRef, displayGuideline, attachAnalyticsEvent, displayGapCursor, isTableScalingEnabled, isTableWithFixedColumnWidthsOptionEnabled, isTableAlignmentEnabled, isWholeTableInDanger, shouldUseIncreasedScalingPercent, pluginInjectionApi, isFullWidthModeEnabled, isCommentEditor, }: PropsWithChildren<TableResizerProps>) => JSX.Element;
|
|
33
|
+
export declare const TableResizer: ({ children, width, maxWidth, containerWidth, lineLength, updateWidth, onResizeStop, onResizeStart, editorView, getPos, node, tableRef, displayGuideline, attachAnalyticsEvent, displayGapCursor, isTableScalingEnabled, isTableWithFixedColumnWidthsOptionEnabled, isTableAlignmentEnabled, isWholeTableInDanger, shouldUseIncreasedScalingPercent, pluginInjectionApi, isFullWidthModeEnabled, isCommentEditor, disabled, }: PropsWithChildren<TableResizerProps>) => JSX.Element;
|
|
33
34
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.1",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
31
31
|
"@atlaskit/button": "^20.3.0",
|
|
32
32
|
"@atlaskit/custom-steps": "^0.9.0",
|
|
33
|
-
"@atlaskit/editor-common": "^99.
|
|
33
|
+
"@atlaskit/editor-common": "^99.5.0",
|
|
34
34
|
"@atlaskit/editor-palette": "1.6.4",
|
|
35
35
|
"@atlaskit/editor-plugin-accessibility-utils": "^1.2.0",
|
|
36
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
36
|
+
"@atlaskit/editor-plugin-analytics": "^1.11.0",
|
|
37
37
|
"@atlaskit/editor-plugin-batch-attribute-updates": "1.1.11",
|
|
38
38
|
"@atlaskit/editor-plugin-content-insertion": "^1.11.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-viewmode": "^2.1.0",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
|
|
52
52
|
"@atlaskit/primitives": "^13.3.0",
|
|
53
53
|
"@atlaskit/theme": "^14.0.0",
|
|
54
|
-
"@atlaskit/tmp-editor-statsig": "^2.
|
|
54
|
+
"@atlaskit/tmp-editor-statsig": "^2.41.0",
|
|
55
55
|
"@atlaskit/toggle": "^14.0.0",
|
|
56
|
-
"@atlaskit/tokens": "^3.
|
|
56
|
+
"@atlaskit/tokens": "^3.2.0",
|
|
57
57
|
"@atlaskit/tooltip": "^19.0.0",
|
|
58
58
|
"@babel/runtime": "^7.0.0",
|
|
59
59
|
"@emotion/react": "^11.7.1",
|
|
@@ -137,6 +137,12 @@
|
|
|
137
137
|
},
|
|
138
138
|
"platform_editor_table_use_shared_state_hook_fg": {
|
|
139
139
|
"type": "boolean"
|
|
140
|
+
},
|
|
141
|
+
"platform_editor_live_page_prevent_table_recreation": {
|
|
142
|
+
"type": "boolean"
|
|
143
|
+
},
|
|
144
|
+
"platform_editor_nested_tables_paste_dupe_fix": {
|
|
145
|
+
"type": "boolean"
|
|
140
146
|
}
|
|
141
147
|
}
|
|
142
148
|
}
|
|
@@ -37,8 +37,6 @@ const cssVariablePattern = /^VAR\(--.*\)$/;
|
|
|
37
37
|
export default class TableCell extends TableNodeView<HTMLElement> implements NodeView {
|
|
38
38
|
private delayHandle: number | undefined;
|
|
39
39
|
|
|
40
|
-
// Ignored via go/ees005
|
|
41
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
42
40
|
constructor(
|
|
43
41
|
node: PMNode,
|
|
44
42
|
view: EditorView,
|
|
@@ -910,7 +910,7 @@ class TableComponent extends React.Component<ComponentProps, TableState> {
|
|
|
910
910
|
const topShadowPadding = isDragAndDropEnabled ? 0 : shadowPadding;
|
|
911
911
|
const topOffset = fg('platform_editor_breakout_use_css')
|
|
912
912
|
? 0
|
|
913
|
-
:
|
|
913
|
+
: this.state.stickyHeader?.top ?? 0;
|
|
914
914
|
|
|
915
915
|
const topStickyShadowPosition =
|
|
916
916
|
this.state.stickyHeader && topOffset + this.state.stickyHeader.padding + topShadowPadding + 2;
|
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
akEditorGutterPaddingDynamic,
|
|
20
20
|
akEditorMobileBreakoutPoint,
|
|
21
21
|
} from '@atlaskit/editor-shared-styles';
|
|
22
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
22
23
|
|
|
23
24
|
import { setTableAlignmentWithTableContentWithPosWithAnalytics } from '../pm-plugins/commands/commands-with-analytics';
|
|
24
25
|
import { getPluginState } from '../pm-plugins/plugin-factory';
|
|
@@ -360,7 +361,7 @@ export const ResizableTableContainer = React.memo(
|
|
|
360
361
|
className={ClassName.TABLE_RESIZER_CONTAINER}
|
|
361
362
|
ref={containerRef}
|
|
362
363
|
>
|
|
363
|
-
{isLivePageViewMode ? (
|
|
364
|
+
{fg('platform_editor_live_page_prevent_table_recreation') ? null : isLivePageViewMode ? (
|
|
364
365
|
<InnerContainer
|
|
365
366
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
366
367
|
className={className}
|
|
@@ -380,6 +381,16 @@ export const ResizableTableContainer = React.memo(
|
|
|
380
381
|
</InnerContainer>
|
|
381
382
|
</TableResizer>
|
|
382
383
|
)}
|
|
384
|
+
{fg('platform_editor_live_page_prevent_table_recreation') ? (
|
|
385
|
+
// Ignored via go/ees005
|
|
386
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
387
|
+
<TableResizer {...tableResizerProps} disabled={isLivePageViewMode}>
|
|
388
|
+
{/* eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766 */}
|
|
389
|
+
<InnerContainer className={className} node={node}>
|
|
390
|
+
{children}
|
|
391
|
+
</InnerContainer>
|
|
392
|
+
</TableResizer>
|
|
393
|
+
) : null}
|
|
383
394
|
</div>
|
|
384
395
|
</AlignmentTableContainerWrapper>
|
|
385
396
|
);
|
|
@@ -7,8 +7,6 @@ export default abstract class TableNodeView<T extends HTMLElement> implements No
|
|
|
7
7
|
/**
|
|
8
8
|
* @constructor
|
|
9
9
|
*/
|
|
10
|
-
// Ignored via go/ees005
|
|
11
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
12
10
|
constructor(
|
|
13
11
|
protected node: PmNode,
|
|
14
12
|
protected readonly view: EditorView,
|
|
@@ -92,6 +92,7 @@ interface TableResizerProps {
|
|
|
92
92
|
isCommentEditor?: boolean;
|
|
93
93
|
onResizeStop?: () => void;
|
|
94
94
|
onResizeStart?: () => void;
|
|
95
|
+
disabled?: boolean;
|
|
95
96
|
}
|
|
96
97
|
|
|
97
98
|
type ResizerNextHandler = React.ElementRef<typeof ResizerNext>;
|
|
@@ -152,8 +153,6 @@ const getVisibleGuidelines = (
|
|
|
152
153
|
lineLength: number,
|
|
153
154
|
isTableScalingEnabled: boolean,
|
|
154
155
|
isFullWidthModeEnabled: boolean,
|
|
155
|
-
// Ignored via go/ees005
|
|
156
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
157
156
|
) => {
|
|
158
157
|
let guidelineVisibleAdjustment = TABLE_GUIDELINE_VISIBLE_ADJUSTMENT;
|
|
159
158
|
if (isTableScalingEnabled) {
|
|
@@ -205,6 +204,7 @@ export const TableResizer = ({
|
|
|
205
204
|
pluginInjectionApi,
|
|
206
205
|
isFullWidthModeEnabled,
|
|
207
206
|
isCommentEditor,
|
|
207
|
+
disabled,
|
|
208
208
|
}: PropsWithChildren<TableResizerProps>) => {
|
|
209
209
|
const currentGap = useRef(0);
|
|
210
210
|
// track resizing state - use ref over state to avoid re-render
|
|
@@ -325,8 +325,6 @@ export const TableResizer = ({
|
|
|
325
325
|
newWidth: any,
|
|
326
326
|
state: EditorState,
|
|
327
327
|
dispatch: ((tr: Transaction) => void) | undefined,
|
|
328
|
-
// Ignored via go/ees005
|
|
329
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
330
328
|
) => {
|
|
331
329
|
if (
|
|
332
330
|
shouldChangeAlignmentToCenterResized(isTableAlignmentEnabled, node, lineLength, newWidth) &&
|
|
@@ -793,7 +791,13 @@ export const TableResizer = ({
|
|
|
793
791
|
<>
|
|
794
792
|
<ResizerNext
|
|
795
793
|
ref={resizerRef}
|
|
796
|
-
enable={
|
|
794
|
+
enable={
|
|
795
|
+
fg('platform_editor_live_page_prevent_table_recreation')
|
|
796
|
+
? disabled
|
|
797
|
+
? {}
|
|
798
|
+
: handles
|
|
799
|
+
: handles
|
|
800
|
+
}
|
|
797
801
|
width={width}
|
|
798
802
|
handleAlignmentMethod="sticky"
|
|
799
803
|
handleSize={handleSize}
|
|
@@ -42,8 +42,6 @@ const HEADER_ROW_SCROLL_THROTTLE_TIMEOUT = 200;
|
|
|
42
42
|
const HEADER_ROW_SCROLL_RESET_DEBOUNCE_TIMEOUT = 400;
|
|
43
43
|
|
|
44
44
|
export default class TableRow extends TableNodeView<HTMLTableRowElement> implements NodeView {
|
|
45
|
-
// Ignored via go/ees005
|
|
46
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
47
45
|
constructor(
|
|
48
46
|
node: PMNode,
|
|
49
47
|
view: EditorView,
|
|
@@ -55,8 +55,6 @@ export const lazyTableView = (options: TableViewOptions) => {
|
|
|
55
55
|
getPos: () => number | undefined,
|
|
56
56
|
decorations: readonly Decoration[],
|
|
57
57
|
getNodeViewOptions: () => TableViewOptions,
|
|
58
|
-
// Ignored via go/ees005
|
|
59
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
60
58
|
) => {
|
|
61
59
|
const {
|
|
62
60
|
portalProviderAPI,
|
|
@@ -122,8 +120,6 @@ export const lazyTableCellView = (options: TableCellViewOptions) => {
|
|
|
122
120
|
getPos: () => number | undefined,
|
|
123
121
|
decorations: readonly Decoration[],
|
|
124
122
|
getNodeViewOptions: () => TableCellViewOptions,
|
|
125
|
-
// Ignored via go/ees005
|
|
126
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
127
123
|
) => {
|
|
128
124
|
const { eventDispatcher, pluginInjectionApi } = getNodeViewOptions();
|
|
129
125
|
|
|
@@ -171,8 +167,6 @@ export const lazyTableHeaderView = (options: TableCellViewOptions) => {
|
|
|
171
167
|
getPos: () => number | undefined,
|
|
172
168
|
decorations: readonly Decoration[],
|
|
173
169
|
getNodeViewOptions: () => TableCellViewOptions,
|
|
174
|
-
// Ignored via go/ees005
|
|
175
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
176
170
|
) => {
|
|
177
171
|
const { eventDispatcher, pluginInjectionApi } = getNodeViewOptions();
|
|
178
172
|
|
|
@@ -214,8 +208,6 @@ export const lazyTableRowView = (options: TableCellViewOptions) => {
|
|
|
214
208
|
getPos: () => number | undefined,
|
|
215
209
|
decorations: readonly Decoration[],
|
|
216
210
|
getNodeViewOptions: () => TableCellViewOptions,
|
|
217
|
-
// Ignored via go/ees005
|
|
218
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
219
211
|
) => {
|
|
220
212
|
const { eventDispatcher } = getNodeViewOptions();
|
|
221
213
|
|
package/src/nodeviews/table.tsx
CHANGED
|
@@ -54,8 +54,6 @@ const getInlineWidth = (
|
|
|
54
54
|
state: EditorState,
|
|
55
55
|
pos: number | undefined,
|
|
56
56
|
allowTableResizing?: boolean,
|
|
57
|
-
// Ignored via go/ees005
|
|
58
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
59
57
|
): number | undefined => {
|
|
60
58
|
if (!node.attrs.width && options?.isCommentEditor && allowTableResizing) {
|
|
61
59
|
return;
|
|
@@ -398,8 +396,6 @@ export const createTableView = (
|
|
|
398
396
|
pluginInjectionApi?: PluginInjectionAPI,
|
|
399
397
|
isCommentEditor?: boolean,
|
|
400
398
|
isChromelessEditor?: boolean,
|
|
401
|
-
// Ignored via go/ees005
|
|
402
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
403
399
|
): NodeView => {
|
|
404
400
|
const {
|
|
405
401
|
pluginConfig,
|
|
@@ -59,8 +59,6 @@ const updateResizeHandleAndStatePosition =
|
|
|
59
59
|
columnIndex: number,
|
|
60
60
|
nextResizeHandlePos: number,
|
|
61
61
|
nodeViewPortalProviderAPI: PortalProviderAPI,
|
|
62
|
-
// Ignored via go/ees005
|
|
63
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
64
62
|
): Command =>
|
|
65
63
|
(state, dispatch) => {
|
|
66
64
|
let customTr = state.tr;
|
|
@@ -240,8 +240,6 @@ export const changeColumnWidthByStepWithAnalytics =
|
|
|
240
240
|
inputMethod: INPUT_METHOD.SHORTCUT,
|
|
241
241
|
ariaNotify?: (message: string) => void,
|
|
242
242
|
getIntl?: () => IntlShape,
|
|
243
|
-
// Ignored via go/ees005
|
|
244
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
245
243
|
) =>
|
|
246
244
|
withEditorAnalyticsAPI((state) => {
|
|
247
245
|
const { table, totalRowCount, totalColumnCount } = getSelectedTableInfo(state.selection);
|
|
@@ -284,8 +282,6 @@ export const insertColumnWithAnalytics =
|
|
|
284
282
|
isTableFixedColumnWidthsOptionEnabled = false,
|
|
285
283
|
shouldUseIncreasedScalingPercent = false,
|
|
286
284
|
isCommentEditor = false,
|
|
287
|
-
// Ignored via go/ees005
|
|
288
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
289
285
|
) =>
|
|
290
286
|
(
|
|
291
287
|
inputMethod:
|
|
@@ -363,8 +359,6 @@ export const deleteColumnsWithAnalytics =
|
|
|
363
359
|
isTableFixedColumnWidthsOptionEnabled = false,
|
|
364
360
|
shouldUseIncreasedScalingPercent = false,
|
|
365
361
|
isCommentEditor = false,
|
|
366
|
-
// Ignored via go/ees005
|
|
367
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
368
362
|
) =>
|
|
369
363
|
(
|
|
370
364
|
inputMethod:
|
|
@@ -409,8 +403,6 @@ export const deleteSelectedRowsOrColumnsWithAnalyticsViaShortcut =
|
|
|
409
403
|
isTableScalingEnabled?: boolean,
|
|
410
404
|
isTableFixedColumnWidthsOptionEnabled?: boolean,
|
|
411
405
|
shouldUseIncreasedScalingPercent?: boolean,
|
|
412
|
-
// Ignored via go/ees005
|
|
413
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
414
406
|
): Command =>
|
|
415
407
|
(state, dispatch) => {
|
|
416
408
|
const { selection } = state;
|
|
@@ -659,8 +651,6 @@ export const setTableAlignmentWithAnalytics =
|
|
|
659
651
|
previousAlignment: TableLayout,
|
|
660
652
|
inputMethod: INPUT_METHOD.FLOATING_TB,
|
|
661
653
|
reason: CHANGE_ALIGNMENT_REASON,
|
|
662
|
-
// Ignored via go/ees005
|
|
663
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
664
654
|
) =>
|
|
665
655
|
withEditorAnalyticsAPI((state) => {
|
|
666
656
|
const { table, totalRowCount, totalColumnCount } = getSelectedTableInfo(state.selection);
|
|
@@ -695,8 +685,6 @@ export const setTableAlignmentWithTableContentWithPosWithAnalytics =
|
|
|
695
685
|
tableNodeWithPos: NodeWithPos,
|
|
696
686
|
inputMethod: INPUT_METHOD.AUTO,
|
|
697
687
|
reason: CHANGE_ALIGNMENT_REASON,
|
|
698
|
-
// Ignored via go/ees005
|
|
699
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
700
688
|
) =>
|
|
701
689
|
withEditorAnalyticsAPI(() => {
|
|
702
690
|
const map = TableMap.get(tableNodeWithPos.node);
|
|
@@ -13,8 +13,6 @@ export const deleteColumnsCommand =
|
|
|
13
13
|
isTableFixedColumnWidthsOptionEnabled = false,
|
|
14
14
|
shouldUseIncreasedScalingPercent = false,
|
|
15
15
|
isCommentEditor = false,
|
|
16
|
-
// Ignored via go/ees005
|
|
17
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
18
16
|
): Command =>
|
|
19
17
|
(state, dispatch, view) => {
|
|
20
18
|
const tr = deleteColumns(
|
|
@@ -64,8 +64,6 @@ function addColumnAtCustomStep(column: number) {
|
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
// Ignored via go/ees005
|
|
68
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
69
67
|
export function addColumnAt(
|
|
70
68
|
api: PluginInjectionAPI | undefined | null,
|
|
71
69
|
isTableScalingEnabled = false,
|
|
@@ -125,8 +123,6 @@ export const addColumnBefore =
|
|
|
125
123
|
isTableFixedColumnWidthsOptionEnabled = false,
|
|
126
124
|
shouldUseIncreasedScalingPercent = false,
|
|
127
125
|
isCommentEditor = false,
|
|
128
|
-
// Ignored via go/ees005
|
|
129
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
130
126
|
): Command =>
|
|
131
127
|
(state, dispatch, view) => {
|
|
132
128
|
const table = findTable(state.selection);
|
|
@@ -161,8 +157,6 @@ export const addColumnAfter =
|
|
|
161
157
|
isTableFixedColumnWidthsOptionEnabled?: boolean,
|
|
162
158
|
shouldUseIncreasedScalingPercent?: boolean,
|
|
163
159
|
isCommentEditor?: boolean,
|
|
164
|
-
// Ignored via go/ees005
|
|
165
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
166
160
|
): Command =>
|
|
167
161
|
(state, dispatch, view) => {
|
|
168
162
|
const table = findTable(state.selection);
|
|
@@ -196,8 +190,6 @@ export const insertColumn =
|
|
|
196
190
|
isTableFixedColumnWidthsOptionEnabled?: boolean,
|
|
197
191
|
shouldUseIncreasedScalingPercent?: boolean,
|
|
198
192
|
isCommentEditor?: boolean,
|
|
199
|
-
// Ignored via go/ees005
|
|
200
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
201
193
|
) =>
|
|
202
194
|
(column: number): Command =>
|
|
203
195
|
(state, dispatch, view) => {
|
|
@@ -282,8 +274,6 @@ export const createTable =
|
|
|
282
274
|
isCommentEditor?: boolean,
|
|
283
275
|
isChromelessEditor?: boolean,
|
|
284
276
|
isTableResizingEnabled?: boolean,
|
|
285
|
-
// Ignored via go/ees005
|
|
286
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
287
277
|
): Command =>
|
|
288
278
|
(state, dispatch) => {
|
|
289
279
|
const table = createTableWithWidth({
|
|
@@ -325,8 +315,6 @@ export const insertTableWithSize =
|
|
|
325
315
|
editorAnalyticsAPI?: EditorAnalyticsAPI,
|
|
326
316
|
isCommentEditor?: boolean,
|
|
327
317
|
isChromelessEditor?: boolean,
|
|
328
|
-
// Ignored via go/ees005
|
|
329
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
330
318
|
) =>
|
|
331
319
|
(rowsCount: number, colsCount: number, inputMethod?: INPUT_METHOD.PICKER): EditorCommand => {
|
|
332
320
|
return ({ tr }) => {
|
|
@@ -578,8 +578,6 @@ export const addResizeHandleDecorations = (
|
|
|
578
578
|
includeTooltip: boolean,
|
|
579
579
|
nodeViewPortalProviderAPI: PortalProviderAPI,
|
|
580
580
|
isKeyboardResize?: boolean,
|
|
581
|
-
// Ignored via go/ees005
|
|
582
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
583
581
|
) =>
|
|
584
582
|
createCommand(
|
|
585
583
|
(state) => {
|
|
@@ -621,8 +619,6 @@ export const updateResizeHandleDecorations = (
|
|
|
621
619
|
rowIndex?: number,
|
|
622
620
|
columnIndex?: number,
|
|
623
621
|
includeTooltip?: boolean,
|
|
624
|
-
// Ignored via go/ees005
|
|
625
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
626
622
|
) =>
|
|
627
623
|
createCommand(
|
|
628
624
|
(state) => {
|
|
@@ -693,8 +689,6 @@ export const autoSizeTable = (
|
|
|
693
689
|
table: HTMLTableElement,
|
|
694
690
|
basePos: number | undefined,
|
|
695
691
|
opts: { containerWidth: number },
|
|
696
|
-
// Ignored via go/ees005
|
|
697
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
698
692
|
) => {
|
|
699
693
|
if (typeof basePos !== 'number') {
|
|
700
694
|
return false;
|
|
@@ -26,8 +26,6 @@ export const handleDocOrSelectionChanged = (
|
|
|
26
26
|
decorationSet: DecorationSet,
|
|
27
27
|
oldState: EditorState,
|
|
28
28
|
newState: EditorState,
|
|
29
|
-
// Ignored via go/ees005
|
|
30
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
31
29
|
): DecorationSet => {
|
|
32
30
|
const isResizing = tableWidthPluginKey.getState(newState)?.resizing;
|
|
33
31
|
const wasResizing = tableWidthPluginKey.getState(oldState)?.resizing;
|
|
@@ -64,8 +62,6 @@ export const createPlugin = () => {
|
|
|
64
62
|
state: {
|
|
65
63
|
init: () => DecorationSet.empty,
|
|
66
64
|
|
|
67
|
-
// Ignored via go/ees005
|
|
68
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
69
65
|
apply: (tr, decorationSet, oldState, newState) => {
|
|
70
66
|
let pluginState = decorationSet;
|
|
71
67
|
// main table plugin --->
|
|
@@ -38,8 +38,6 @@ export const buildColumnResizingDecorations =
|
|
|
38
38
|
includeTooltip: boolean,
|
|
39
39
|
getIntl: () => IntlShape,
|
|
40
40
|
nodeViewPortalProviderAPI: PortalProviderAPI,
|
|
41
|
-
// Ignored via go/ees005
|
|
42
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
43
41
|
): DecorationTransformer =>
|
|
44
42
|
({ tr, decorationSet }): DecorationSet => {
|
|
45
43
|
const [columnResizesDecorations, lastCellElementsDecorations] =
|
|
@@ -30,8 +30,6 @@ export const clearDropTargetWithAnalytics =
|
|
|
30
30
|
sourceIndexes: number[] | undefined,
|
|
31
31
|
status: TABLE_STATUS.CANCELLED | TABLE_STATUS.INVALID,
|
|
32
32
|
tr?: Transaction,
|
|
33
|
-
// Ignored via go/ees005
|
|
34
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
35
33
|
) => {
|
|
36
34
|
return withEditorAnalyticsAPI(({ selection }: EditorState) => {
|
|
37
35
|
const { totalRowCount, totalColumnCount } = getSelectedTableInfo(selection);
|
|
@@ -72,8 +70,6 @@ export const moveSourceWithAnalytics =
|
|
|
72
70
|
sourceIndexes: number[],
|
|
73
71
|
targetIndex: number,
|
|
74
72
|
tr?: Transaction,
|
|
75
|
-
// Ignored via go/ees005
|
|
76
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
77
73
|
) => {
|
|
78
74
|
return withEditorAnalyticsAPI(({ selection }: EditorState) => {
|
|
79
75
|
const direction = sourceIndexes[0] > targetIndex ? -1 : 1;
|
|
@@ -194,8 +190,6 @@ export const cloneSourceWithAnalytics =
|
|
|
194
190
|
targetIndex: number,
|
|
195
191
|
targetDirection: 'start' | 'end',
|
|
196
192
|
tr?: Transaction,
|
|
197
|
-
// Ignored via go/ees005
|
|
198
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
199
193
|
) => {
|
|
200
194
|
return withEditorAnalyticsAPI(({ selection }: EditorState) => {
|
|
201
195
|
const direction = sourceIndexes[0] > targetIndex ? -1 : 1;
|
|
@@ -33,8 +33,6 @@ export const setDropTarget = (
|
|
|
33
33
|
index: number,
|
|
34
34
|
hasMergedCells: boolean,
|
|
35
35
|
tr?: Transaction,
|
|
36
|
-
// Ignored via go/ees005
|
|
37
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
38
36
|
) =>
|
|
39
37
|
createCommand(
|
|
40
38
|
(state) => {
|
|
@@ -92,8 +90,6 @@ export const moveSource = (
|
|
|
92
90
|
sourceIndexes: number[],
|
|
93
91
|
targetIndex: number,
|
|
94
92
|
tr?: Transaction,
|
|
95
|
-
// Ignored via go/ees005
|
|
96
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
97
93
|
) =>
|
|
98
94
|
createCommand(
|
|
99
95
|
(state) => {
|
|
@@ -121,8 +117,6 @@ export const toggleDragMenu = (
|
|
|
121
117
|
direction?: TableDirection,
|
|
122
118
|
index?: number,
|
|
123
119
|
trigger: TriggerType = 'mouse',
|
|
124
|
-
// Ignored via go/ees005
|
|
125
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
126
120
|
) =>
|
|
127
121
|
createCommand(
|
|
128
122
|
(state) => {
|
|
@@ -180,8 +174,6 @@ export const cloneSource = (
|
|
|
180
174
|
targetIndex: number,
|
|
181
175
|
targetDirection: 'start' | 'end',
|
|
182
176
|
tr?: Transaction,
|
|
183
|
-
// Ignored via go/ees005
|
|
184
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
185
177
|
) =>
|
|
186
178
|
createCommand(
|
|
187
179
|
(state) => {
|
|
@@ -37,8 +37,6 @@ const destroyFn = (
|
|
|
37
37
|
isTableScalingEnabled: boolean,
|
|
38
38
|
isTableFixedColumnWidthsOptionEnabled: boolean,
|
|
39
39
|
isCommentEditor: boolean,
|
|
40
|
-
// Ignored via go/ees005
|
|
41
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
42
40
|
) => {
|
|
43
41
|
const editorPageScrollContainer = document.querySelector('.fabric-editor-popup-scroll-parent');
|
|
44
42
|
|
|
@@ -265,8 +263,6 @@ export const createPlugin = (
|
|
|
265
263
|
isTableScalingEnabled = false,
|
|
266
264
|
isTableFixedColumnWidthsOptionEnabled = false,
|
|
267
265
|
isCommentEditor = false,
|
|
268
|
-
// Ignored via go/ees005
|
|
269
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
270
266
|
) => {
|
|
271
267
|
return new SafePlugin({
|
|
272
268
|
state: createPluginState(dispatch, (state) => ({
|
package/src/pm-plugins/keymap.ts
CHANGED
|
@@ -67,8 +67,6 @@ import {
|
|
|
67
67
|
insertTableWithNestingSupport,
|
|
68
68
|
} from './commands/insert';
|
|
69
69
|
|
|
70
|
-
// Ignored via go/ees005
|
|
71
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
72
70
|
export function keymapPlugin(
|
|
73
71
|
getEditorContainerWidth: GetEditorContainerWidth,
|
|
74
72
|
api: PluginInjectionAPI | undefined | null,
|