@atlaskit/editor-plugin-table 8.4.2 → 8.4.3
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 +9 -0
- package/commands/package.json +5 -5
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/nodeviews/ExternalDropTargets.js +1 -1
- package/dist/cjs/nodeviews/TableComponent.js +3 -3
- package/dist/cjs/nodeviews/TableContainer.js +2 -2
- package/dist/cjs/nodeviews/TableResizer.js +6 -6
- package/dist/cjs/nodeviews/TableRow.js +2 -2
- package/dist/cjs/nodeviews/table-container-styles.js +1 -1
- package/dist/cjs/nodeviews/table.js +2 -2
- package/dist/cjs/{toDOM.js → nodeviews/toDOM.js} +3 -3
- package/dist/cjs/pm-plugins/analytics/plugin.js +1 -1
- package/dist/cjs/{commands → pm-plugins/commands}/column-resize.js +8 -8
- package/dist/cjs/{commands-with-analytics.js → pm-plugins/commands/commands-with-analytics.js} +15 -15
- package/dist/cjs/{commands → pm-plugins/commands}/go-to-next-cell.js +2 -2
- package/dist/cjs/{commands → pm-plugins/commands}/hover.js +2 -2
- package/dist/cjs/{commands → pm-plugins/commands}/insert.js +2 -2
- package/dist/cjs/{commands → pm-plugins/commands}/misc.js +4 -4
- package/dist/cjs/{commands → pm-plugins/commands}/referentiality.js +1 -1
- package/dist/cjs/{commands → pm-plugins/commands}/selection.js +3 -3
- package/dist/cjs/{commands → pm-plugins/commands}/sort.js +1 -1
- package/dist/cjs/{commands → pm-plugins/commands}/split-cell.js +1 -1
- package/dist/cjs/{commands → pm-plugins/commands}/toggle.js +2 -2
- package/dist/cjs/pm-plugins/decorations/utils/column-controls.js +1 -1
- package/dist/cjs/pm-plugins/decorations/utils/column-resizing.js +1 -1
- package/dist/cjs/pm-plugins/drag-and-drop/commands-with-analytics.js +3 -3
- package/dist/cjs/pm-plugins/drag-and-drop/commands.js +1 -1
- package/dist/cjs/pm-plugins/drag-and-drop/plugin.js +6 -6
- package/dist/cjs/{handlers.js → pm-plugins/handlers.js} +2 -2
- package/dist/cjs/pm-plugins/keymap.js +18 -18
- package/dist/cjs/pm-plugins/main.js +7 -7
- package/dist/cjs/pm-plugins/plugin-factory.js +2 -2
- package/dist/cjs/{reducer.js → pm-plugins/reducer.js} +1 -1
- package/dist/cjs/pm-plugins/table-resizing/commands.js +1 -1
- package/dist/cjs/pm-plugins/table-resizing/event-handlers.js +5 -5
- package/dist/cjs/pm-plugins/table-resizing/utils/dom.js +2 -2
- package/dist/cjs/pm-plugins/table-resizing/utils/resize-column.js +1 -1
- package/dist/cjs/pm-plugins/table-resizing/utils/resize-state.js +1 -1
- package/dist/cjs/pm-plugins/table-resizing/utils/scale-table.js +2 -2
- package/dist/cjs/pm-plugins/table-selection-keymap.js +1 -1
- package/dist/cjs/pm-plugins/table-width-in-comment-fix.js +1 -1
- package/dist/cjs/pm-plugins/table-width.js +1 -1
- package/dist/cjs/{transforms → pm-plugins/transforms}/column-width.js +4 -4
- package/dist/cjs/{transforms → pm-plugins/transforms}/delete-columns.js +1 -1
- package/dist/cjs/{transforms → pm-plugins/transforms}/fix-tables.js +1 -1
- package/dist/cjs/{utils → pm-plugins/utils}/alignment.js +1 -1
- package/dist/cjs/{utils → pm-plugins/utils}/analytics.js +3 -3
- package/dist/cjs/{utils → pm-plugins/utils}/column-controls.js +1 -1
- package/dist/cjs/{utils → pm-plugins/utils}/create.js +1 -1
- package/dist/cjs/{utils → pm-plugins/utils}/decoration.js +2 -2
- package/dist/cjs/{utils → pm-plugins/utils}/dom.js +1 -1
- package/dist/cjs/{utils → pm-plugins/utils}/drag-menu.js +6 -6
- package/dist/cjs/{utils → pm-plugins/utils}/get-allow-add-column-custom-step.js +1 -1
- package/dist/cjs/{utils → pm-plugins/utils}/paste.js +1 -1
- package/dist/cjs/{utils → pm-plugins/utils}/row-controls.js +2 -2
- package/dist/cjs/{utils → pm-plugins/utils}/update-plugin-state-decorations.js +1 -1
- package/dist/cjs/{plugin.js → tablePlugin.js} +5 -7
- package/dist/cjs/tablePluginType.js +5 -0
- package/dist/cjs/ui/DragHandle/index.js +1 -1
- package/dist/cjs/ui/FloatingContextualButton/index.js +1 -1
- package/dist/cjs/ui/FloatingContextualMenu/ContextualMenu.js +4 -4
- package/dist/cjs/ui/FloatingDeleteButton/index.js +3 -3
- package/dist/cjs/ui/FloatingDragMenu/DragMenu.js +4 -4
- package/dist/cjs/ui/FloatingInsertButton/index.js +2 -2
- package/dist/cjs/ui/TableFloatingColumnControls/ColumnControls/index.js +2 -2
- package/dist/cjs/ui/TableFloatingColumnControls/index.js +1 -1
- package/dist/cjs/ui/TableFloatingControls/CornerControls/ClassicCornerControls.js +1 -1
- package/dist/cjs/ui/TableFloatingControls/CornerControls/DragCornerControls.js +1 -1
- package/dist/cjs/ui/TableFloatingControls/NumberColumn/index.js +2 -2
- package/dist/cjs/ui/TableFloatingControls/RowControls/ClassicControls.js +2 -2
- package/dist/cjs/ui/TableFloatingControls/RowControls/DragControls.js +2 -2
- package/dist/cjs/ui/TableFloatingControls/index.js +2 -2
- package/dist/cjs/{event-handlers.js → ui/event-handlers.js} +8 -8
- package/dist/cjs/{toolbar.js → ui/toolbar.js} +12 -12
- package/dist/es2019/index.js +1 -1
- package/dist/es2019/nodeviews/ExternalDropTargets.js +1 -1
- package/dist/es2019/nodeviews/TableComponent.js +3 -3
- package/dist/es2019/nodeviews/TableContainer.js +2 -2
- package/dist/es2019/nodeviews/TableResizer.js +6 -6
- package/dist/es2019/nodeviews/TableRow.js +2 -2
- package/dist/es2019/nodeviews/table-container-styles.js +1 -1
- package/dist/es2019/nodeviews/table.js +2 -2
- package/dist/es2019/{toDOM.js → nodeviews/toDOM.js} +3 -3
- package/dist/es2019/pm-plugins/analytics/plugin.js +1 -1
- package/dist/es2019/{commands → pm-plugins/commands}/column-resize.js +8 -8
- package/dist/es2019/{commands-with-analytics.js → pm-plugins/commands/commands-with-analytics.js} +15 -15
- package/dist/es2019/{commands → pm-plugins/commands}/go-to-next-cell.js +2 -2
- package/dist/es2019/{commands → pm-plugins/commands}/hover.js +2 -2
- package/dist/es2019/{commands → pm-plugins/commands}/insert.js +2 -2
- package/dist/es2019/{commands → pm-plugins/commands}/misc.js +4 -4
- package/dist/es2019/{commands → pm-plugins/commands}/referentiality.js +1 -1
- package/dist/es2019/{commands → pm-plugins/commands}/selection.js +3 -3
- package/dist/es2019/{commands → pm-plugins/commands}/sort.js +1 -1
- package/dist/es2019/{commands → pm-plugins/commands}/split-cell.js +2 -1
- package/dist/es2019/{commands → pm-plugins/commands}/toggle.js +2 -2
- package/dist/es2019/pm-plugins/decorations/utils/column-controls.js +1 -1
- package/dist/es2019/pm-plugins/decorations/utils/column-resizing.js +1 -1
- package/dist/es2019/pm-plugins/drag-and-drop/commands-with-analytics.js +3 -3
- package/dist/es2019/pm-plugins/drag-and-drop/commands.js +1 -1
- package/dist/es2019/pm-plugins/drag-and-drop/plugin.js +1 -1
- package/dist/es2019/{handlers.js → pm-plugins/handlers.js} +2 -2
- package/dist/es2019/pm-plugins/keymap.js +4 -4
- package/dist/es2019/pm-plugins/main.js +7 -7
- package/dist/es2019/pm-plugins/plugin-factory.js +2 -2
- package/dist/es2019/{reducer.js → pm-plugins/reducer.js} +1 -1
- package/dist/es2019/pm-plugins/table-resizing/commands.js +1 -1
- package/dist/es2019/pm-plugins/table-resizing/event-handlers.js +5 -5
- package/dist/es2019/pm-plugins/table-resizing/utils/dom.js +2 -2
- package/dist/es2019/pm-plugins/table-resizing/utils/resize-column.js +1 -1
- package/dist/es2019/pm-plugins/table-resizing/utils/resize-state.js +1 -1
- package/dist/es2019/pm-plugins/table-resizing/utils/scale-table.js +2 -2
- package/dist/es2019/pm-plugins/table-selection-keymap.js +1 -1
- package/dist/es2019/pm-plugins/table-width-in-comment-fix.js +1 -1
- package/dist/es2019/pm-plugins/table-width.js +1 -1
- package/dist/es2019/{transforms → pm-plugins/transforms}/column-width.js +5 -4
- package/dist/es2019/{transforms → pm-plugins/transforms}/delete-columns.js +1 -1
- package/dist/es2019/{transforms → pm-plugins/transforms}/fix-tables.js +1 -1
- package/dist/es2019/{utils → pm-plugins/utils}/alignment.js +1 -1
- package/dist/es2019/{utils → pm-plugins/utils}/analytics.js +2 -2
- package/dist/es2019/{utils → pm-plugins/utils}/column-controls.js +1 -1
- package/dist/es2019/{utils → pm-plugins/utils}/create.js +1 -1
- package/dist/es2019/{utils → pm-plugins/utils}/decoration.js +2 -2
- package/dist/es2019/{utils → pm-plugins/utils}/dom.js +1 -1
- package/dist/es2019/{utils → pm-plugins/utils}/drag-menu.js +6 -6
- package/dist/es2019/{utils → pm-plugins/utils}/get-allow-add-column-custom-step.js +1 -1
- package/dist/es2019/{utils → pm-plugins/utils}/paste.js +1 -1
- package/dist/es2019/{utils → pm-plugins/utils}/row-controls.js +2 -2
- package/dist/es2019/{utils → pm-plugins/utils}/update-plugin-state-decorations.js +1 -1
- package/dist/es2019/{plugin.js → tablePlugin.js} +5 -7
- package/dist/es2019/tablePluginType.js +1 -0
- package/dist/es2019/ui/DragHandle/index.js +1 -1
- package/dist/es2019/ui/FloatingContextualButton/index.js +1 -1
- package/dist/es2019/ui/FloatingContextualMenu/ContextualMenu.js +4 -4
- package/dist/es2019/ui/FloatingDeleteButton/index.js +3 -3
- package/dist/es2019/ui/FloatingDragMenu/DragMenu.js +4 -4
- package/dist/es2019/ui/FloatingInsertButton/index.js +2 -2
- package/dist/es2019/ui/TableFloatingColumnControls/ColumnControls/index.js +2 -2
- package/dist/es2019/ui/TableFloatingColumnControls/index.js +1 -1
- package/dist/es2019/ui/TableFloatingControls/CornerControls/ClassicCornerControls.js +1 -1
- package/dist/es2019/ui/TableFloatingControls/CornerControls/DragCornerControls.js +1 -1
- package/dist/es2019/ui/TableFloatingControls/NumberColumn/index.js +2 -2
- package/dist/es2019/ui/TableFloatingControls/RowControls/ClassicControls.js +2 -2
- package/dist/es2019/ui/TableFloatingControls/RowControls/DragControls.js +2 -2
- package/dist/es2019/ui/TableFloatingControls/index.js +2 -2
- package/dist/es2019/{event-handlers.js → ui/event-handlers.js} +8 -8
- package/dist/es2019/{toolbar.js → ui/toolbar.js} +12 -12
- package/dist/esm/index.js +1 -1
- package/dist/esm/nodeviews/ExternalDropTargets.js +1 -1
- package/dist/esm/nodeviews/TableComponent.js +3 -3
- package/dist/esm/nodeviews/TableContainer.js +2 -2
- package/dist/esm/nodeviews/TableResizer.js +6 -6
- package/dist/esm/nodeviews/TableRow.js +2 -2
- package/dist/esm/nodeviews/table-container-styles.js +1 -1
- package/dist/esm/nodeviews/table.js +2 -2
- package/dist/esm/{toDOM.js → nodeviews/toDOM.js} +3 -3
- package/dist/esm/pm-plugins/analytics/plugin.js +1 -1
- package/dist/esm/{commands → pm-plugins/commands}/column-resize.js +8 -8
- package/dist/esm/{commands-with-analytics.js → pm-plugins/commands/commands-with-analytics.js} +15 -15
- package/dist/esm/{commands → pm-plugins/commands}/go-to-next-cell.js +2 -2
- package/dist/esm/{commands → pm-plugins/commands}/hover.js +2 -2
- package/dist/esm/{commands → pm-plugins/commands}/insert.js +2 -2
- package/dist/esm/{commands → pm-plugins/commands}/misc.js +4 -4
- package/dist/esm/{commands → pm-plugins/commands}/referentiality.js +1 -1
- package/dist/esm/{commands → pm-plugins/commands}/selection.js +3 -3
- package/dist/esm/{commands → pm-plugins/commands}/sort.js +1 -1
- package/dist/esm/{commands → pm-plugins/commands}/split-cell.js +2 -1
- package/dist/esm/{commands → pm-plugins/commands}/toggle.js +2 -2
- package/dist/esm/pm-plugins/decorations/utils/column-controls.js +1 -1
- package/dist/esm/pm-plugins/decorations/utils/column-resizing.js +1 -1
- package/dist/esm/pm-plugins/drag-and-drop/commands-with-analytics.js +3 -3
- package/dist/esm/pm-plugins/drag-and-drop/commands.js +1 -1
- package/dist/esm/pm-plugins/drag-and-drop/plugin.js +1 -1
- package/dist/esm/{handlers.js → pm-plugins/handlers.js} +2 -2
- package/dist/esm/pm-plugins/keymap.js +4 -4
- package/dist/esm/pm-plugins/main.js +7 -7
- package/dist/esm/pm-plugins/plugin-factory.js +2 -2
- package/dist/esm/{reducer.js → pm-plugins/reducer.js} +1 -1
- package/dist/esm/pm-plugins/table-resizing/commands.js +1 -1
- package/dist/esm/pm-plugins/table-resizing/event-handlers.js +5 -5
- package/dist/esm/pm-plugins/table-resizing/utils/dom.js +2 -2
- package/dist/esm/pm-plugins/table-resizing/utils/resize-column.js +1 -1
- package/dist/esm/pm-plugins/table-resizing/utils/resize-state.js +1 -1
- package/dist/esm/pm-plugins/table-resizing/utils/scale-table.js +2 -2
- package/dist/esm/pm-plugins/table-selection-keymap.js +1 -1
- package/dist/esm/pm-plugins/table-width-in-comment-fix.js +1 -1
- package/dist/esm/pm-plugins/table-width.js +1 -1
- package/dist/esm/{transforms → pm-plugins/transforms}/column-width.js +5 -4
- package/dist/esm/{transforms → pm-plugins/transforms}/delete-columns.js +1 -1
- package/dist/esm/{transforms → pm-plugins/transforms}/fix-tables.js +1 -1
- package/dist/esm/{utils → pm-plugins/utils}/alignment.js +1 -1
- package/dist/esm/{utils → pm-plugins/utils}/analytics.js +2 -2
- package/dist/esm/{utils → pm-plugins/utils}/column-controls.js +1 -1
- package/dist/esm/{utils → pm-plugins/utils}/create.js +1 -1
- package/dist/esm/{utils → pm-plugins/utils}/decoration.js +2 -2
- package/dist/esm/{utils → pm-plugins/utils}/dom.js +1 -1
- package/dist/esm/{utils → pm-plugins/utils}/drag-menu.js +6 -6
- package/dist/esm/{utils → pm-plugins/utils}/get-allow-add-column-custom-step.js +1 -1
- package/dist/esm/{utils → pm-plugins/utils}/paste.js +1 -1
- package/dist/esm/{utils → pm-plugins/utils}/row-controls.js +2 -2
- package/dist/esm/{utils → pm-plugins/utils}/update-plugin-state-decorations.js +1 -1
- package/dist/esm/{plugin.js → tablePlugin.js} +5 -7
- package/dist/esm/tablePluginType.js +1 -0
- package/dist/esm/ui/DragHandle/index.js +1 -1
- package/dist/esm/ui/FloatingContextualButton/index.js +1 -1
- package/dist/esm/ui/FloatingContextualMenu/ContextualMenu.js +4 -4
- package/dist/esm/ui/FloatingDeleteButton/index.js +3 -3
- package/dist/esm/ui/FloatingDragMenu/DragMenu.js +4 -4
- package/dist/esm/ui/FloatingInsertButton/index.js +2 -2
- package/dist/esm/ui/TableFloatingColumnControls/ColumnControls/index.js +2 -2
- package/dist/esm/ui/TableFloatingColumnControls/index.js +1 -1
- package/dist/esm/ui/TableFloatingControls/CornerControls/ClassicCornerControls.js +1 -1
- package/dist/esm/ui/TableFloatingControls/CornerControls/DragCornerControls.js +1 -1
- package/dist/esm/ui/TableFloatingControls/NumberColumn/index.js +2 -2
- package/dist/esm/ui/TableFloatingControls/RowControls/ClassicControls.js +2 -2
- package/dist/esm/ui/TableFloatingControls/RowControls/DragControls.js +2 -2
- package/dist/esm/ui/TableFloatingControls/index.js +2 -2
- package/dist/esm/{event-handlers.js → ui/event-handlers.js} +8 -8
- package/dist/esm/{toolbar.js → ui/toolbar.js} +12 -12
- package/dist/types/index.d.ts +2 -2
- package/dist/{types-ts4.5 → types/pm-plugins}/commands/column-resize.d.ts +1 -1
- package/dist/types/{commands-with-analytics.d.ts → pm-plugins/commands/commands-with-analytics.d.ts} +2 -2
- package/dist/types/{commands → pm-plugins/commands}/delete.d.ts +1 -1
- package/dist/{types-ts4.5 → types/pm-plugins}/commands/hover.d.ts +1 -1
- package/dist/{types-ts4.5 → types/pm-plugins}/commands/insert.d.ts +1 -1
- package/dist/{types-ts4.5 → types/pm-plugins}/commands/misc.d.ts +1 -1
- package/dist/{types-ts4.5 → types/pm-plugins}/commands/selection.d.ts +1 -1
- package/dist/types/{commands → pm-plugins/commands}/toggle.d.ts +1 -1
- package/dist/types/{create-plugin-config.d.ts → pm-plugins/create-plugin-config.d.ts} +1 -1
- package/dist/types/{handlers.d.ts → pm-plugins/handlers.d.ts} +1 -1
- package/dist/types/{reducer.d.ts → pm-plugins/reducer.d.ts} +1 -1
- package/dist/{types-ts4.5 → types/pm-plugins}/transforms/column-width.d.ts +2 -2
- package/dist/{types-ts4.5 → types/pm-plugins}/transforms/delete-columns.d.ts +1 -1
- package/dist/types/{transforms → pm-plugins/transforms}/fix-tables.d.ts +1 -1
- package/dist/{types-ts4.5 → types/pm-plugins}/utils/alignment.d.ts +1 -1
- package/dist/types/{utils → pm-plugins/utils}/decoration.d.ts +2 -2
- package/dist/types/{utils → pm-plugins/utils}/drag-menu.d.ts +1 -1
- package/dist/{types-ts4.5 → types/pm-plugins}/utils/update-plugin-state-decorations.d.ts +1 -1
- package/dist/types/pm-plugins/view-mode-sort/index.d.ts +1 -1
- package/dist/types/tablePlugin.d.ts +7 -0
- package/dist/types/{plugin.d.ts → tablePluginType.d.ts} +2 -8
- package/dist/types/{types.d.ts → types/index.d.ts} +1 -1
- package/dist/types/ui/TableFloatingColumnControls/ColumnControls/index.d.ts +2 -2
- package/dist/types/ui/TableFloatingControls/CornerControls/DragCornerControls.d.ts +2 -2
- package/dist/types/ui/TableFloatingControls/FloatingControlsWithSelection.d.ts +1 -1
- package/dist/types/ui/TableFloatingControls/index.d.ts +2 -2
- package/dist/{types-ts4.5 → types/ui}/event-handlers.d.ts +1 -1
- package/dist/types/ui/icons/SortingIconWrapper.d.ts +1 -1
- package/dist/types/{toolbar.d.ts → ui/toolbar.d.ts} +2 -2
- package/dist/types-ts4.5/index.d.ts +2 -2
- package/dist/{types → types-ts4.5/pm-plugins}/commands/column-resize.d.ts +1 -1
- package/dist/types-ts4.5/{commands-with-analytics.d.ts → pm-plugins/commands/commands-with-analytics.d.ts} +2 -2
- package/dist/types-ts4.5/{commands → pm-plugins/commands}/delete.d.ts +1 -1
- package/dist/{types → types-ts4.5/pm-plugins}/commands/hover.d.ts +1 -1
- package/dist/{types → types-ts4.5/pm-plugins}/commands/insert.d.ts +1 -1
- package/dist/{types → types-ts4.5/pm-plugins}/commands/misc.d.ts +1 -1
- package/dist/{types → types-ts4.5/pm-plugins}/commands/selection.d.ts +1 -1
- package/dist/types-ts4.5/{commands → pm-plugins/commands}/toggle.d.ts +1 -1
- package/dist/types-ts4.5/{create-plugin-config.d.ts → pm-plugins/create-plugin-config.d.ts} +1 -1
- package/dist/types-ts4.5/{handlers.d.ts → pm-plugins/handlers.d.ts} +1 -1
- package/dist/types-ts4.5/{reducer.d.ts → pm-plugins/reducer.d.ts} +1 -1
- package/dist/{types → types-ts4.5/pm-plugins}/transforms/column-width.d.ts +2 -2
- package/dist/{types → types-ts4.5/pm-plugins}/transforms/delete-columns.d.ts +1 -1
- package/dist/types-ts4.5/{transforms → pm-plugins/transforms}/fix-tables.d.ts +1 -1
- package/dist/{types → types-ts4.5/pm-plugins}/utils/alignment.d.ts +1 -1
- package/dist/types-ts4.5/{utils → pm-plugins/utils}/decoration.d.ts +2 -2
- package/dist/types-ts4.5/{utils → pm-plugins/utils}/drag-menu.d.ts +1 -1
- package/dist/{types → types-ts4.5/pm-plugins}/utils/update-plugin-state-decorations.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/view-mode-sort/index.d.ts +1 -1
- package/dist/types-ts4.5/tablePlugin.d.ts +7 -0
- package/dist/types-ts4.5/{plugin.d.ts → tablePluginType.d.ts} +2 -8
- package/dist/types-ts4.5/{types.d.ts → types/index.d.ts} +1 -1
- package/dist/types-ts4.5/ui/TableFloatingColumnControls/ColumnControls/index.d.ts +2 -2
- package/dist/types-ts4.5/ui/TableFloatingControls/CornerControls/DragCornerControls.d.ts +2 -2
- package/dist/types-ts4.5/ui/TableFloatingControls/FloatingControlsWithSelection.d.ts +1 -1
- package/dist/types-ts4.5/ui/TableFloatingControls/index.d.ts +2 -2
- package/dist/{types → types-ts4.5/ui}/event-handlers.d.ts +1 -1
- package/dist/types-ts4.5/ui/icons/SortingIconWrapper.d.ts +1 -1
- package/dist/types-ts4.5/{toolbar.d.ts → ui/toolbar.d.ts} +2 -2
- package/package.json +12 -8
- package/src/index.ts +2 -2
- package/src/nodeviews/ExternalDropTargets.tsx +1 -1
- package/src/nodeviews/TableComponent.tsx +12 -12
- package/src/nodeviews/TableContainer.tsx +2 -2
- package/src/nodeviews/TableResizer.tsx +13 -13
- package/src/nodeviews/TableRow.ts +3 -3
- package/src/nodeviews/table-container-styles.ts +1 -1
- package/src/nodeviews/table.tsx +2 -2
- package/src/{toDOM.ts → nodeviews/toDOM.ts} +4 -3
- package/src/pm-plugins/analytics/plugin.ts +1 -1
- package/src/{commands → pm-plugins/commands}/column-resize.ts +9 -9
- package/src/{commands-with-analytics.ts → pm-plugins/commands/commands-with-analytics.ts} +24 -23
- package/src/{commands → pm-plugins/commands}/delete.ts +1 -1
- package/src/{commands → pm-plugins/commands}/go-to-next-cell.ts +2 -2
- package/src/{commands → pm-plugins/commands}/hover.ts +3 -3
- package/src/{commands → pm-plugins/commands}/insert.ts +3 -3
- package/src/{commands → pm-plugins/commands}/misc.ts +5 -5
- package/src/{commands → pm-plugins/commands}/referentiality.ts +1 -1
- package/src/{commands → pm-plugins/commands}/selection.ts +5 -4
- package/src/{commands → pm-plugins/commands}/sort.ts +2 -2
- package/src/{commands → pm-plugins/commands}/split-cell.ts +2 -2
- package/src/{commands → pm-plugins/commands}/toggle.ts +2 -2
- package/src/{create-plugin-config.ts → pm-plugins/create-plugin-config.ts} +1 -1
- package/src/pm-plugins/decorations/utils/column-controls.ts +1 -1
- package/src/pm-plugins/decorations/utils/column-resizing.ts +1 -1
- package/src/pm-plugins/drag-and-drop/commands-with-analytics.ts +3 -3
- package/src/pm-plugins/drag-and-drop/commands.ts +1 -1
- package/src/pm-plugins/drag-and-drop/plugin.ts +1 -1
- package/src/{handlers.ts → pm-plugins/handlers.ts} +4 -3
- package/src/pm-plugins/keymap.ts +11 -10
- package/src/pm-plugins/main.ts +28 -28
- package/src/pm-plugins/plugin-factory.ts +2 -3
- package/src/{reducer.ts → pm-plugins/reducer.ts} +3 -2
- package/src/pm-plugins/table-resizing/commands.ts +1 -1
- package/src/pm-plugins/table-resizing/event-handlers.ts +7 -7
- package/src/pm-plugins/table-resizing/utils/dom.ts +2 -2
- package/src/pm-plugins/table-resizing/utils/resize-column.ts +1 -1
- package/src/pm-plugins/table-resizing/utils/resize-state.ts +1 -1
- package/src/pm-plugins/table-resizing/utils/scale-table.ts +2 -2
- package/src/pm-plugins/table-selection-keymap.ts +3 -2
- package/src/pm-plugins/table-width-in-comment-fix.ts +1 -1
- package/src/pm-plugins/table-width.ts +1 -2
- package/src/{transforms → pm-plugins/transforms}/column-width.ts +6 -6
- package/src/{transforms → pm-plugins/transforms}/delete-columns.ts +2 -2
- package/src/{transforms → pm-plugins/transforms}/fix-tables.ts +2 -2
- package/src/{utils → pm-plugins/utils}/alignment.ts +2 -2
- package/src/{utils → pm-plugins/utils}/analytics.ts +3 -2
- package/src/{utils → pm-plugins/utils}/column-controls.ts +1 -1
- package/src/{utils → pm-plugins/utils}/create.ts +1 -1
- package/src/{utils → pm-plugins/utils}/decoration.ts +3 -3
- package/src/{utils → pm-plugins/utils}/dom.ts +1 -1
- package/src/{utils → pm-plugins/utils}/drag-menu.ts +7 -7
- package/src/{utils → pm-plugins/utils}/get-allow-add-column-custom-step.ts +1 -1
- package/src/{utils → pm-plugins/utils}/paste.ts +1 -1
- package/src/{utils → pm-plugins/utils}/row-controls.ts +2 -2
- package/src/{utils → pm-plugins/utils}/update-plugin-state-decorations.ts +2 -2
- package/src/pm-plugins/view-mode-sort/index.ts +1 -1
- package/src/{plugin.tsx → tablePlugin.tsx} +8 -85
- package/src/tablePluginType.ts +79 -0
- package/src/{types.ts → types/index.ts} +1 -1
- package/src/ui/DragHandle/index.tsx +1 -1
- package/src/ui/FloatingContextualButton/index.tsx +1 -1
- package/src/ui/FloatingContextualMenu/ContextualMenu.tsx +6 -6
- package/src/ui/FloatingDeleteButton/index.tsx +8 -5
- package/src/ui/FloatingDragMenu/DragMenu.tsx +7 -7
- package/src/ui/FloatingInsertButton/index.tsx +5 -2
- package/src/ui/TableFloatingColumnControls/ColumnControls/index.tsx +3 -3
- package/src/ui/TableFloatingColumnControls/index.tsx +1 -1
- package/src/ui/TableFloatingControls/CornerControls/ClassicCornerControls.tsx +1 -1
- package/src/ui/TableFloatingControls/CornerControls/DragCornerControls.tsx +2 -2
- package/src/ui/TableFloatingControls/FloatingControlsWithSelection.tsx +1 -1
- package/src/ui/TableFloatingControls/NumberColumn/index.tsx +2 -2
- package/src/ui/TableFloatingControls/RowControls/ClassicControls.tsx +3 -3
- package/src/ui/TableFloatingControls/RowControls/DragControls.tsx +2 -2
- package/src/ui/TableFloatingControls/index.tsx +3 -3
- package/src/{event-handlers.ts → ui/event-handlers.ts} +9 -9
- package/src/ui/icons/SortingIconWrapper.tsx +1 -1
- package/src/{toolbar.tsx → ui/toolbar.tsx} +20 -19
- package/tsconfig.dev.json +1 -1
- package/types/package.json +5 -5
- package/dist/cjs/i18n/cs.js +0 -44
- package/dist/cjs/i18n/da.js +0 -42
- package/dist/cjs/i18n/de.js +0 -42
- package/dist/cjs/i18n/en.js +0 -44
- package/dist/cjs/i18n/en_GB.js +0 -44
- package/dist/cjs/i18n/en_ZZ.js +0 -44
- package/dist/cjs/i18n/es.js +0 -42
- package/dist/cjs/i18n/fi.js +0 -42
- package/dist/cjs/i18n/fr.js +0 -44
- package/dist/cjs/i18n/hu.js +0 -44
- package/dist/cjs/i18n/it.js +0 -44
- package/dist/cjs/i18n/ja.js +0 -44
- package/dist/cjs/i18n/ko.js +0 -42
- package/dist/cjs/i18n/nb.js +0 -42
- package/dist/cjs/i18n/nl.js +0 -44
- package/dist/cjs/i18n/pl.js +0 -44
- package/dist/cjs/i18n/pt_BR.js +0 -44
- package/dist/cjs/i18n/ru.js +0 -44
- package/dist/cjs/i18n/sv.js +0 -42
- package/dist/cjs/i18n/th.js +0 -42
- package/dist/cjs/i18n/tr.js +0 -44
- package/dist/cjs/i18n/uk.js +0 -44
- package/dist/cjs/i18n/vi.js +0 -42
- package/dist/cjs/i18n/zh.js +0 -44
- package/dist/cjs/i18n/zh_TW.js +0 -44
- package/dist/es2019/i18n/cs.js +0 -38
- package/dist/es2019/i18n/da.js +0 -36
- package/dist/es2019/i18n/de.js +0 -36
- package/dist/es2019/i18n/en.js +0 -38
- package/dist/es2019/i18n/en_GB.js +0 -38
- package/dist/es2019/i18n/en_ZZ.js +0 -38
- package/dist/es2019/i18n/es.js +0 -36
- package/dist/es2019/i18n/fi.js +0 -36
- package/dist/es2019/i18n/fr.js +0 -38
- package/dist/es2019/i18n/hu.js +0 -38
- package/dist/es2019/i18n/it.js +0 -38
- package/dist/es2019/i18n/ja.js +0 -38
- package/dist/es2019/i18n/ko.js +0 -36
- package/dist/es2019/i18n/nb.js +0 -36
- package/dist/es2019/i18n/nl.js +0 -38
- package/dist/es2019/i18n/pl.js +0 -38
- package/dist/es2019/i18n/pt_BR.js +0 -38
- package/dist/es2019/i18n/ru.js +0 -38
- package/dist/es2019/i18n/sv.js +0 -36
- package/dist/es2019/i18n/th.js +0 -36
- package/dist/es2019/i18n/tr.js +0 -38
- package/dist/es2019/i18n/uk.js +0 -38
- package/dist/es2019/i18n/vi.js +0 -36
- package/dist/es2019/i18n/zh.js +0 -38
- package/dist/es2019/i18n/zh_TW.js +0 -38
- package/dist/esm/i18n/cs.js +0 -38
- package/dist/esm/i18n/da.js +0 -36
- package/dist/esm/i18n/de.js +0 -36
- package/dist/esm/i18n/en.js +0 -38
- package/dist/esm/i18n/en_GB.js +0 -38
- package/dist/esm/i18n/en_ZZ.js +0 -38
- package/dist/esm/i18n/es.js +0 -36
- package/dist/esm/i18n/fi.js +0 -36
- package/dist/esm/i18n/fr.js +0 -38
- package/dist/esm/i18n/hu.js +0 -38
- package/dist/esm/i18n/it.js +0 -38
- package/dist/esm/i18n/ja.js +0 -38
- package/dist/esm/i18n/ko.js +0 -36
- package/dist/esm/i18n/nb.js +0 -36
- package/dist/esm/i18n/nl.js +0 -38
- package/dist/esm/i18n/pl.js +0 -38
- package/dist/esm/i18n/pt_BR.js +0 -38
- package/dist/esm/i18n/ru.js +0 -38
- package/dist/esm/i18n/sv.js +0 -36
- package/dist/esm/i18n/th.js +0 -36
- package/dist/esm/i18n/tr.js +0 -38
- package/dist/esm/i18n/uk.js +0 -38
- package/dist/esm/i18n/vi.js +0 -36
- package/dist/esm/i18n/zh.js +0 -38
- package/dist/esm/i18n/zh_TW.js +0 -38
- package/dist/types/i18n/cs.d.ts +0 -37
- package/dist/types/i18n/da.d.ts +0 -35
- package/dist/types/i18n/de.d.ts +0 -35
- package/dist/types/i18n/en.d.ts +0 -37
- package/dist/types/i18n/en_GB.d.ts +0 -37
- package/dist/types/i18n/en_ZZ.d.ts +0 -37
- package/dist/types/i18n/es.d.ts +0 -35
- package/dist/types/i18n/fi.d.ts +0 -35
- package/dist/types/i18n/fr.d.ts +0 -37
- package/dist/types/i18n/hu.d.ts +0 -37
- package/dist/types/i18n/it.d.ts +0 -37
- package/dist/types/i18n/ja.d.ts +0 -37
- package/dist/types/i18n/ko.d.ts +0 -35
- package/dist/types/i18n/nb.d.ts +0 -35
- package/dist/types/i18n/nl.d.ts +0 -37
- package/dist/types/i18n/pl.d.ts +0 -37
- package/dist/types/i18n/pt_BR.d.ts +0 -37
- package/dist/types/i18n/ru.d.ts +0 -37
- package/dist/types/i18n/sv.d.ts +0 -35
- package/dist/types/i18n/th.d.ts +0 -35
- package/dist/types/i18n/tr.d.ts +0 -37
- package/dist/types/i18n/uk.d.ts +0 -37
- package/dist/types/i18n/vi.d.ts +0 -35
- package/dist/types/i18n/zh.d.ts +0 -37
- package/dist/types/i18n/zh_TW.d.ts +0 -37
- package/dist/types-ts4.5/i18n/cs.d.ts +0 -37
- package/dist/types-ts4.5/i18n/da.d.ts +0 -35
- package/dist/types-ts4.5/i18n/de.d.ts +0 -35
- package/dist/types-ts4.5/i18n/en.d.ts +0 -37
- package/dist/types-ts4.5/i18n/en_GB.d.ts +0 -37
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +0 -37
- package/dist/types-ts4.5/i18n/es.d.ts +0 -35
- package/dist/types-ts4.5/i18n/fi.d.ts +0 -35
- package/dist/types-ts4.5/i18n/fr.d.ts +0 -37
- package/dist/types-ts4.5/i18n/hu.d.ts +0 -37
- package/dist/types-ts4.5/i18n/it.d.ts +0 -37
- package/dist/types-ts4.5/i18n/ja.d.ts +0 -37
- package/dist/types-ts4.5/i18n/ko.d.ts +0 -35
- package/dist/types-ts4.5/i18n/nb.d.ts +0 -35
- package/dist/types-ts4.5/i18n/nl.d.ts +0 -37
- package/dist/types-ts4.5/i18n/pl.d.ts +0 -37
- package/dist/types-ts4.5/i18n/pt_BR.d.ts +0 -37
- package/dist/types-ts4.5/i18n/ru.d.ts +0 -37
- package/dist/types-ts4.5/i18n/sv.d.ts +0 -35
- package/dist/types-ts4.5/i18n/th.d.ts +0 -35
- package/dist/types-ts4.5/i18n/tr.d.ts +0 -37
- package/dist/types-ts4.5/i18n/uk.d.ts +0 -37
- package/dist/types-ts4.5/i18n/vi.d.ts +0 -35
- package/dist/types-ts4.5/i18n/zh.d.ts +0 -37
- package/dist/types-ts4.5/i18n/zh_TW.d.ts +0 -37
- package/src/i18n/cs.ts +0 -42
- package/src/i18n/da.ts +0 -37
- package/src/i18n/de.ts +0 -37
- package/src/i18n/en.ts +0 -38
- package/src/i18n/en_GB.ts +0 -38
- package/src/i18n/en_ZZ.ts +0 -43
- package/src/i18n/es.ts +0 -37
- package/src/i18n/fi.ts +0 -37
- package/src/i18n/fr.ts +0 -39
- package/src/i18n/hu.ts +0 -39
- package/src/i18n/it.ts +0 -39
- package/src/i18n/ja.ts +0 -39
- package/src/i18n/ko.ts +0 -36
- package/src/i18n/nb.ts +0 -37
- package/src/i18n/nl.ts +0 -39
- package/src/i18n/pl.ts +0 -42
- package/src/i18n/pt_BR.ts +0 -39
- package/src/i18n/ru.ts +0 -42
- package/src/i18n/sv.ts +0 -37
- package/src/i18n/th.ts +0 -36
- package/src/i18n/tr.ts +0 -39
- package/src/i18n/uk.ts +0 -42
- package/src/i18n/vi.ts +0 -36
- package/src/i18n/zh.ts +0 -38
- package/src/i18n/zh_TW.ts +0 -38
- /package/dist/cjs/{commands → pm-plugins/commands}/clear.js +0 -0
- /package/dist/cjs/{commands → pm-plugins/commands}/collapse.js +0 -0
- /package/dist/cjs/{commands → pm-plugins/commands}/delete.js +0 -0
- /package/dist/cjs/{commands → pm-plugins/commands}/display-mode.js +0 -0
- /package/dist/cjs/{commands → pm-plugins/commands}/index.js +0 -0
- /package/dist/cjs/{create-plugin-config.js → pm-plugins/create-plugin-config.js} +0 -0
- /package/dist/cjs/{transforms → pm-plugins/transforms}/delete-rows.js +0 -0
- /package/dist/cjs/{transforms → pm-plugins/transforms}/index.js +0 -0
- /package/dist/cjs/{transforms → pm-plugins/transforms}/merge.js +0 -0
- /package/dist/cjs/{transforms → pm-plugins/transforms}/replace-table.js +0 -0
- /package/dist/cjs/{transforms → pm-plugins/transforms}/split.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/collapse.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/guidelines.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/index.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/merged-cells.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/nodes.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/selection.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/snapping.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/table.js +0 -0
- /package/dist/cjs/{types.js → types/index.js} +0 -0
- /package/dist/es2019/{commands → pm-plugins/commands}/clear.js +0 -0
- /package/dist/es2019/{commands → pm-plugins/commands}/collapse.js +0 -0
- /package/dist/es2019/{commands → pm-plugins/commands}/delete.js +0 -0
- /package/dist/es2019/{commands → pm-plugins/commands}/display-mode.js +0 -0
- /package/dist/es2019/{commands → pm-plugins/commands}/index.js +0 -0
- /package/dist/es2019/{create-plugin-config.js → pm-plugins/create-plugin-config.js} +0 -0
- /package/dist/es2019/{transforms → pm-plugins/transforms}/delete-rows.js +0 -0
- /package/dist/es2019/{transforms → pm-plugins/transforms}/index.js +0 -0
- /package/dist/es2019/{transforms → pm-plugins/transforms}/merge.js +0 -0
- /package/dist/es2019/{transforms → pm-plugins/transforms}/replace-table.js +0 -0
- /package/dist/es2019/{transforms → pm-plugins/transforms}/split.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/collapse.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/guidelines.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/index.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/merged-cells.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/nodes.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/selection.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/snapping.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/table.js +0 -0
- /package/dist/es2019/{types.js → types/index.js} +0 -0
- /package/dist/esm/{commands → pm-plugins/commands}/clear.js +0 -0
- /package/dist/esm/{commands → pm-plugins/commands}/collapse.js +0 -0
- /package/dist/esm/{commands → pm-plugins/commands}/delete.js +0 -0
- /package/dist/esm/{commands → pm-plugins/commands}/display-mode.js +0 -0
- /package/dist/esm/{commands → pm-plugins/commands}/index.js +0 -0
- /package/dist/esm/{create-plugin-config.js → pm-plugins/create-plugin-config.js} +0 -0
- /package/dist/esm/{transforms → pm-plugins/transforms}/delete-rows.js +0 -0
- /package/dist/esm/{transforms → pm-plugins/transforms}/index.js +0 -0
- /package/dist/esm/{transforms → pm-plugins/transforms}/merge.js +0 -0
- /package/dist/esm/{transforms → pm-plugins/transforms}/replace-table.js +0 -0
- /package/dist/esm/{transforms → pm-plugins/transforms}/split.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/collapse.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/guidelines.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/index.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/merged-cells.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/nodes.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/selection.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/snapping.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/table.js +0 -0
- /package/dist/esm/{types.js → types/index.js} +0 -0
- /package/dist/types/{toDOM.d.ts → nodeviews/toDOM.d.ts} +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/clear.d.ts +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/collapse.d.ts +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/display-mode.d.ts +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/go-to-next-cell.d.ts +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/index.d.ts +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/referentiality.d.ts +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/sort.d.ts +0 -0
- /package/dist/types/{commands → pm-plugins/commands}/split-cell.d.ts +0 -0
- /package/dist/types/{transforms → pm-plugins/transforms}/delete-rows.d.ts +0 -0
- /package/dist/types/{transforms → pm-plugins/transforms}/index.d.ts +0 -0
- /package/dist/types/{transforms → pm-plugins/transforms}/merge.d.ts +0 -0
- /package/dist/types/{transforms → pm-plugins/transforms}/replace-table.d.ts +0 -0
- /package/dist/types/{transforms → pm-plugins/transforms}/split.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/analytics.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/collapse.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/column-controls.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/create.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/dom.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/get-allow-add-column-custom-step.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/guidelines.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/index.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/merged-cells.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/nodes.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/paste.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/row-controls.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/selection.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/snapping.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/table.d.ts +0 -0
- /package/dist/types-ts4.5/{toDOM.d.ts → nodeviews/toDOM.d.ts} +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/clear.d.ts +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/collapse.d.ts +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/display-mode.d.ts +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/go-to-next-cell.d.ts +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/index.d.ts +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/referentiality.d.ts +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/sort.d.ts +0 -0
- /package/dist/types-ts4.5/{commands → pm-plugins/commands}/split-cell.d.ts +0 -0
- /package/dist/types-ts4.5/{transforms → pm-plugins/transforms}/delete-rows.d.ts +0 -0
- /package/dist/types-ts4.5/{transforms → pm-plugins/transforms}/index.d.ts +0 -0
- /package/dist/types-ts4.5/{transforms → pm-plugins/transforms}/merge.d.ts +0 -0
- /package/dist/types-ts4.5/{transforms → pm-plugins/transforms}/replace-table.d.ts +0 -0
- /package/dist/types-ts4.5/{transforms → pm-plugins/transforms}/split.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/analytics.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/collapse.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/column-controls.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/create.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/dom.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/get-allow-add-column-custom-step.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/guidelines.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/index.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/merged-cells.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/nodes.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/paste.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/row-controls.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/selection.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/snapping.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/table.d.ts +0 -0
- /package/src/{commands → pm-plugins/commands}/clear.ts +0 -0
- /package/src/{commands → pm-plugins/commands}/collapse.ts +0 -0
- /package/src/{commands → pm-plugins/commands}/display-mode.ts +0 -0
- /package/src/{commands → pm-plugins/commands}/index.ts +0 -0
- /package/src/{transforms → pm-plugins/transforms}/delete-rows.ts +0 -0
- /package/src/{transforms → pm-plugins/transforms}/index.ts +0 -0
- /package/src/{transforms → pm-plugins/transforms}/merge.ts +0 -0
- /package/src/{transforms → pm-plugins/transforms}/replace-table.ts +0 -0
- /package/src/{transforms → pm-plugins/transforms}/split.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/collapse.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/guidelines.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/index.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/merged-cells.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/nodes.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/selection.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/snapping.ts +0 -0
- /package/src/{utils → pm-plugins/utils}/table.ts +0 -0
package/dist/esm/i18n/sv.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/* prettier-ignore */
|
|
2
|
-
/**
|
|
3
|
-
* NOTE:
|
|
4
|
-
*
|
|
5
|
-
* This file is automatically generated by Traduki 2.0.
|
|
6
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
-
*/
|
|
8
|
-
//Swedish
|
|
9
|
-
export default {
|
|
10
|
-
'fabric.editor.canNotSortTable': '⚠️ Du kan inte sortera en panelvy med sammanslagna celler',
|
|
11
|
-
'fabric.editor.cellBackground': 'Cellbakgrund',
|
|
12
|
-
'fabric.editor.cellOptions': 'Cellalternativ',
|
|
13
|
-
'fabric.editor.clearCells': '{0, plural, one {Rensa cell} other {Rensa celler}}',
|
|
14
|
-
'fabric.editor.collapseTable': 'Dölj tabell',
|
|
15
|
-
'fabric.editor.cornerControl': 'Markera tabellen',
|
|
16
|
-
'fabric.editor.distributeColumns': 'Fördela kolumner',
|
|
17
|
-
'fabric.editor.extension.deleteElementTitle': 'Radera element',
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Radera även anslutna element',
|
|
19
|
-
'fabric.editor.headerColumn': 'Rubrikkolumn',
|
|
20
|
-
'fabric.editor.headerRow': 'Rubrikrad',
|
|
21
|
-
'fabric.editor.insertColumn': 'Infoga kolumn till höger',
|
|
22
|
-
'fabric.editor.insertRow': 'Infoga rad nedanför',
|
|
23
|
-
'fabric.editor.mergeCells': 'Sammanfoga celler',
|
|
24
|
-
'fabric.editor.numberedColumn': 'Numrerad kolumn',
|
|
25
|
-
'fabric.editor.removeColumns': '{0, plural, one {Radera kolumn} other {Radera kolumner}}',
|
|
26
|
-
'fabric.editor.removeRows': '{0, plural, one {Radera rad} other {Radera rader}}',
|
|
27
|
-
'fabric.editor.rowControl': 'Markera raden',
|
|
28
|
-
'fabric.editor.sortColumnASC': 'Sortera kolumn A → Ö',
|
|
29
|
-
'fabric.editor.sortColumnDESC': 'Sortera kolumn Ö → A',
|
|
30
|
-
'fabric.editor.splitCell': 'Dela cell',
|
|
31
|
-
'fabric.editor.tableOptions': 'Tabellalternativ',
|
|
32
|
-
'fabric.editor.tables.adjustColumn': 'Justera kolumn',
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': 'Om du raderar {nodeName} bryts allt som är kopplat till den.',
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': 'Radera',
|
|
35
|
-
'fabric.editor.tables.resizeTable': 'Ändra storlek på tabell'
|
|
36
|
-
};
|
package/dist/esm/i18n/th.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/* prettier-ignore */
|
|
2
|
-
/**
|
|
3
|
-
* NOTE:
|
|
4
|
-
*
|
|
5
|
-
* This file is automatically generated by Traduki 2.0.
|
|
6
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
-
*/
|
|
8
|
-
//Thai (Thailand)
|
|
9
|
-
export default {
|
|
10
|
-
'fabric.editor.canNotSortTable': '⚠️ คุณไม่สามารถจัดเรียงตารางด้วยช่องข้อมูลที่ถูกรวมได้',
|
|
11
|
-
'fabric.editor.cellBackground': 'พื้นหลังช่องข้อมูล',
|
|
12
|
-
'fabric.editor.cellOptions': 'ตัวเลือกช่องข้อมูล',
|
|
13
|
-
'fabric.editor.clearCells': '{0, plural, other {ล้างเซลล์}}',
|
|
14
|
-
'fabric.editor.collapseTable': 'ย่อตาราง',
|
|
15
|
-
'fabric.editor.cornerControl': 'ไฮไลท์ตาราง',
|
|
16
|
-
'fabric.editor.distributeColumns': 'แบ่งคอลัมน์',
|
|
17
|
-
'fabric.editor.extension.deleteElementTitle': 'ลบองค์ประกอบ',
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'ลบองค์ประกอบที่เชื่อมต่อด้วย',
|
|
19
|
-
'fabric.editor.headerColumn': 'คอลัมน์ส่วนหัว',
|
|
20
|
-
'fabric.editor.headerRow': 'แถวส่วนหัว',
|
|
21
|
-
'fabric.editor.insertColumn': 'แทรกคอลัมน์ทางด้านขวา',
|
|
22
|
-
'fabric.editor.insertRow': 'แทรกแถวด้านล่าง',
|
|
23
|
-
'fabric.editor.mergeCells': 'รวมช่องข้อมูล',
|
|
24
|
-
'fabric.editor.numberedColumn': 'คอลัมน์แบบมีตัวเลข',
|
|
25
|
-
'fabric.editor.removeColumns': '{0, plural, other {ลบคอลัมน์}}',
|
|
26
|
-
'fabric.editor.removeRows': '{0, plural, other {ลบแถว}}',
|
|
27
|
-
'fabric.editor.rowControl': 'ไฮไลท์แถว',
|
|
28
|
-
'fabric.editor.sortColumnASC': 'จัดเรียงคอลัมน์ A → Z',
|
|
29
|
-
'fabric.editor.sortColumnDESC': 'จัดเรียงคอลัมน์ Z → A',
|
|
30
|
-
'fabric.editor.splitCell': 'แยกช่องข้อมูล',
|
|
31
|
-
'fabric.editor.tableOptions': 'ตัวเลือกตาราง',
|
|
32
|
-
'fabric.editor.tables.adjustColumn': 'ปรับเปลี่ยนคอลัมน์',
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': 'การลบ {nodeName} จะยุติทุกอย่างที่เชื่อมโยงอยู่',
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': 'ลบ',
|
|
35
|
-
'fabric.editor.tables.resizeTable': 'ปรับขนาดตาราง'
|
|
36
|
-
};
|
package/dist/esm/i18n/tr.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/* prettier-ignore */
|
|
2
|
-
/**
|
|
3
|
-
* NOTE:
|
|
4
|
-
*
|
|
5
|
-
* This file is automatically generated by Traduki 2.0.
|
|
6
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
-
*/
|
|
8
|
-
//Turkish (Turkey)
|
|
9
|
-
export default {
|
|
10
|
-
'fabric.editor.canNotSortTable': '⚠️ Birleştirilmiş hücre içeren bir tabloyu sıralayamazsınız',
|
|
11
|
-
'fabric.editor.cellBackground': 'Hücre arka planı',
|
|
12
|
-
'fabric.editor.cellOptions': 'Hücre seçenekleri',
|
|
13
|
-
'fabric.editor.clearCells': '{0, plural, one {Hücreyi temizle} other {Hücreleri temizle}}',
|
|
14
|
-
'fabric.editor.collapseTable': 'Tabloyu daralt',
|
|
15
|
-
'fabric.editor.cornerControl': 'Tabloyu vurgula',
|
|
16
|
-
'fabric.editor.distributeColumns': 'Sütunları eşit dağıt',
|
|
17
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': 'Siliniyor',
|
|
18
|
-
'fabric.editor.extension.deleteElementTitle': 'Öğeyi sil',
|
|
19
|
-
'fabric.editor.extension.sourceNoTitledName': 'bu öğe',
|
|
20
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Bağlı öğeleri de sil',
|
|
21
|
-
'fabric.editor.headerColumn': 'Başlık sütunu',
|
|
22
|
-
'fabric.editor.headerRow': 'Başlık satırı',
|
|
23
|
-
'fabric.editor.insertColumn': 'Sağa sütun ekle',
|
|
24
|
-
'fabric.editor.insertRow': 'Aşağıya satır ekle',
|
|
25
|
-
'fabric.editor.mergeCells': 'Hücreleri birleştir',
|
|
26
|
-
'fabric.editor.numberedColumn': 'Numaralı sütun',
|
|
27
|
-
'fabric.editor.removeColumns': '{0, plural, one {Sütunu sil} other {Sütunları sil}}',
|
|
28
|
-
'fabric.editor.removeRows': '{0, plural, one {Satırı sil} other {Satırları sil}}',
|
|
29
|
-
'fabric.editor.rowControl': 'Satırı vurgula',
|
|
30
|
-
'fabric.editor.sortColumnASC': "Sütunu A'dan Z'ye sırala",
|
|
31
|
-
'fabric.editor.sortColumnDESC': "Sütunu Z'den A'ya sırala",
|
|
32
|
-
'fabric.editor.splitCell': 'Hücreyi ayır',
|
|
33
|
-
'fabric.editor.tableOptions': 'Tablo seçenekleri',
|
|
34
|
-
'fabric.editor.tables.adjustColumn': 'Sütunu ayarla',
|
|
35
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': '{nodeName} düğümünün silinmesi, bu düğüme bağlı her şeyin bozulmasına neden olur.',
|
|
36
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': 'Sil',
|
|
37
|
-
'fabric.editor.tables.resizeTable': 'Tabloyu yeniden boyutlandır'
|
|
38
|
-
};
|
package/dist/esm/i18n/uk.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/* prettier-ignore */
|
|
2
|
-
/**
|
|
3
|
-
* NOTE:
|
|
4
|
-
*
|
|
5
|
-
* This file is automatically generated by Traduki 2.0.
|
|
6
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
-
*/
|
|
8
|
-
//Ukrainian (Ukraine)
|
|
9
|
-
export default {
|
|
10
|
-
'fabric.editor.canNotSortTable': '⚠️ Не можна сортувати таблицю, у якій є об’єднані клітинки',
|
|
11
|
-
'fabric.editor.cellBackground': 'Фон клітинки',
|
|
12
|
-
'fabric.editor.cellOptions': 'Параметри клітинки',
|
|
13
|
-
'fabric.editor.clearCells': '{0, plural, one {Очистити клітинки} few {Очистити клітинки} many {Очистити клітинки} other {Очистити клітинки}}',
|
|
14
|
-
'fabric.editor.collapseTable': 'Згорнути таблицю',
|
|
15
|
-
'fabric.editor.cornerControl': 'Виділити таблицю',
|
|
16
|
-
'fabric.editor.distributeColumns': 'Вирівняти стовпці по ширині',
|
|
17
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': 'Видалення',
|
|
18
|
-
'fabric.editor.extension.deleteElementTitle': 'Видалення елемента',
|
|
19
|
-
'fabric.editor.extension.sourceNoTitledName': 'цей елемент',
|
|
20
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Видалити пов’язані елементи',
|
|
21
|
-
'fabric.editor.headerColumn': 'Стовпець заголовка',
|
|
22
|
-
'fabric.editor.headerRow': 'Рядок заголовка',
|
|
23
|
-
'fabric.editor.insertColumn': 'Вставити стовпець справа',
|
|
24
|
-
'fabric.editor.insertRow': 'Вставити рядок знизу',
|
|
25
|
-
'fabric.editor.mergeCells': 'Об’єднати клітинки',
|
|
26
|
-
'fabric.editor.numberedColumn': 'Нумерований стовпець',
|
|
27
|
-
'fabric.editor.removeColumns': '{0, plural, one {Видалити стовпець} few {Видалити стовпці} many {Видалити стовпці} other {Видалити стовпці}}',
|
|
28
|
-
'fabric.editor.removeRows': '{0, plural, one {Видалити рядок} few {Видалити рядки} many {Видалити рядки} other {Видалити рядки}}',
|
|
29
|
-
'fabric.editor.rowControl': 'Виділити рядок',
|
|
30
|
-
'fabric.editor.sortColumnASC': 'Сортувати стовпці від А до Я',
|
|
31
|
-
'fabric.editor.sortColumnDESC': 'Сортувати стовпці від Я до А',
|
|
32
|
-
'fabric.editor.splitCell': 'Розділити клітинки',
|
|
33
|
-
'fabric.editor.tableOptions': 'Параметри таблиці',
|
|
34
|
-
'fabric.editor.tables.adjustColumn': 'Налаштувати стовпець',
|
|
35
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': 'Видалення розширення {nodeName} порушить роботу всього, що з ним пов’язано.',
|
|
36
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': 'Видалити',
|
|
37
|
-
'fabric.editor.tables.resizeTable': 'Змінити розмір таблиці'
|
|
38
|
-
};
|
package/dist/esm/i18n/vi.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/* prettier-ignore */
|
|
2
|
-
/**
|
|
3
|
-
* NOTE:
|
|
4
|
-
*
|
|
5
|
-
* This file is automatically generated by Traduki 2.0.
|
|
6
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
-
*/
|
|
8
|
-
//Vietnamese (Vietnam)
|
|
9
|
-
export default {
|
|
10
|
-
'fabric.editor.canNotSortTable': '⚠️ Bạn không thể sắp xếp bảng có các ô đã hợp nhất',
|
|
11
|
-
'fabric.editor.cellBackground': 'Nền ô',
|
|
12
|
-
'fabric.editor.cellOptions': 'Tùy chọn ô',
|
|
13
|
-
'fabric.editor.clearCells': '{0, plural, other {Xóa ô}}',
|
|
14
|
-
'fabric.editor.collapseTable': 'Thu gọn bảng',
|
|
15
|
-
'fabric.editor.cornerControl': 'Làm nổi bật bảng',
|
|
16
|
-
'fabric.editor.distributeColumns': 'Phân phối cột',
|
|
17
|
-
'fabric.editor.extension.deleteElementTitle': 'Xóa thành phần',
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Đồng thời xóa các thành phần được kết nối',
|
|
19
|
-
'fabric.editor.headerColumn': 'Cột tiêu đề',
|
|
20
|
-
'fabric.editor.headerRow': 'Hàng tiêu đề',
|
|
21
|
-
'fabric.editor.insertColumn': 'Chèn cột vào bên phải',
|
|
22
|
-
'fabric.editor.insertRow': 'Chèn hàng ở bên dưới',
|
|
23
|
-
'fabric.editor.mergeCells': 'Hợp nhất ô',
|
|
24
|
-
'fabric.editor.numberedColumn': 'Cột được đánh số',
|
|
25
|
-
'fabric.editor.removeColumns': '{0, plural, other {Xóa cột}}',
|
|
26
|
-
'fabric.editor.removeRows': '{0, plural, other {Xóa hàng}}',
|
|
27
|
-
'fabric.editor.rowControl': 'Làm nổi bật hàng',
|
|
28
|
-
'fabric.editor.sortColumnASC': 'Sắp xếp cột A → Z',
|
|
29
|
-
'fabric.editor.sortColumnDESC': 'Sắp xếp cột Z → A',
|
|
30
|
-
'fabric.editor.splitCell': 'Tách ô',
|
|
31
|
-
'fabric.editor.tableOptions': 'Tùy chọn bảng',
|
|
32
|
-
'fabric.editor.tables.adjustColumn': 'Điều chỉnh cột',
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': 'Việc xóa {nodeName} sẽ ngắt mọi nội dung được kết nối.',
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': 'Xóa',
|
|
35
|
-
'fabric.editor.tables.resizeTable': 'Thay đổi kích cỡ bảng'
|
|
36
|
-
};
|
package/dist/esm/i18n/zh.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/* prettier-ignore */
|
|
2
|
-
/**
|
|
3
|
-
* NOTE:
|
|
4
|
-
*
|
|
5
|
-
* This file is automatically generated by Traduki 2.0.
|
|
6
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
-
*/
|
|
8
|
-
//Chinese (Simplified)
|
|
9
|
-
export default {
|
|
10
|
-
'fabric.editor.canNotSortTable': '⚠️ 无法对包含合并单元格的表格进行排序',
|
|
11
|
-
'fabric.editor.cellBackground': '单元格背景',
|
|
12
|
-
'fabric.editor.cellOptions': '单元格选项',
|
|
13
|
-
'fabric.editor.clearCells': '{0, plural, other {清除单元格}}',
|
|
14
|
-
'fabric.editor.collapseTable': '收起表格',
|
|
15
|
-
'fabric.editor.cornerControl': '突出显示表格',
|
|
16
|
-
'fabric.editor.distributeColumns': '分散列',
|
|
17
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': '正在删除',
|
|
18
|
-
'fabric.editor.extension.deleteElementTitle': '删除元素',
|
|
19
|
-
'fabric.editor.extension.sourceNoTitledName': '此元素',
|
|
20
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': '同时删除已连接的元素',
|
|
21
|
-
'fabric.editor.headerColumn': '标题列',
|
|
22
|
-
'fabric.editor.headerRow': '标题行',
|
|
23
|
-
'fabric.editor.insertColumn': '在右侧插入列',
|
|
24
|
-
'fabric.editor.insertRow': '在下方插入行',
|
|
25
|
-
'fabric.editor.mergeCells': '合并单元格',
|
|
26
|
-
'fabric.editor.numberedColumn': '编号列',
|
|
27
|
-
'fabric.editor.removeColumns': '{0, plural, other {删除列}}',
|
|
28
|
-
'fabric.editor.removeRows': '{0, plural, other {删除行}}',
|
|
29
|
-
'fabric.editor.rowControl': '突出显示行',
|
|
30
|
-
'fabric.editor.sortColumnASC': '对列 A → Z 进行排序',
|
|
31
|
-
'fabric.editor.sortColumnDESC': '对列 Z → A 进行排序',
|
|
32
|
-
'fabric.editor.splitCell': '拆分单元格',
|
|
33
|
-
'fabric.editor.tableOptions': '表格选项',
|
|
34
|
-
'fabric.editor.tables.adjustColumn': '调整列',
|
|
35
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': '删除 {nodeName} 将断开与其连接的所有内容。',
|
|
36
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': '删除',
|
|
37
|
-
'fabric.editor.tables.resizeTable': '调整表格大小'
|
|
38
|
-
};
|
package/dist/esm/i18n/zh_TW.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/* prettier-ignore */
|
|
2
|
-
/**
|
|
3
|
-
* NOTE:
|
|
4
|
-
*
|
|
5
|
-
* This file is automatically generated by Traduki 2.0.
|
|
6
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
-
*/
|
|
8
|
-
//Chinese (Traditional)
|
|
9
|
-
export default {
|
|
10
|
-
'fabric.editor.canNotSortTable': '⚠️ 您無法排序包含合併儲存格的表格',
|
|
11
|
-
'fabric.editor.cellBackground': '儲存格背景',
|
|
12
|
-
'fabric.editor.cellOptions': '儲存格選項',
|
|
13
|
-
'fabric.editor.clearCells': '{0, plural, other {清除儲存格}}',
|
|
14
|
-
'fabric.editor.collapseTable': '摺疊表格',
|
|
15
|
-
'fabric.editor.cornerControl': '醒目提示表格',
|
|
16
|
-
'fabric.editor.distributeColumns': '平均分配直欄寬度',
|
|
17
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': '正在刪除',
|
|
18
|
-
'fabric.editor.extension.deleteElementTitle': '刪除元素',
|
|
19
|
-
'fabric.editor.extension.sourceNoTitledName': '這個元素',
|
|
20
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': '同時刪除已連結的元素',
|
|
21
|
-
'fabric.editor.headerColumn': '標題欄',
|
|
22
|
-
'fabric.editor.headerRow': '標題列',
|
|
23
|
-
'fabric.editor.insertColumn': '在右側插入直欄',
|
|
24
|
-
'fabric.editor.insertRow': '在下方插入列',
|
|
25
|
-
'fabric.editor.mergeCells': '合併儲存格',
|
|
26
|
-
'fabric.editor.numberedColumn': '編號直欄',
|
|
27
|
-
'fabric.editor.removeColumns': '{0, plural, other {刪除直欄}}',
|
|
28
|
-
'fabric.editor.removeRows': '{0, plural, other {刪除列}}',
|
|
29
|
-
'fabric.editor.rowControl': '醒目提示列',
|
|
30
|
-
'fabric.editor.sortColumnASC': '以 A → Z 排序直欄',
|
|
31
|
-
'fabric.editor.sortColumnDESC': '以 Z → A 排序直欄',
|
|
32
|
-
'fabric.editor.splitCell': '分割儲存格',
|
|
33
|
-
'fabric.editor.tableOptions': '表格選項',
|
|
34
|
-
'fabric.editor.tables.adjustColumn': '調整欄',
|
|
35
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': '刪除 {nodeName} 將中斷與其連結的任何內容。',
|
|
36
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': '刪除',
|
|
37
|
-
'fabric.editor.tables.resizeTable': '重新調整表格'
|
|
38
|
-
};
|
package/dist/types/i18n/cs.d.ts
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': string;
|
|
16
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
17
|
-
'fabric.editor.extension.sourceNoTitledName': string;
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
19
|
-
'fabric.editor.headerColumn': string;
|
|
20
|
-
'fabric.editor.headerRow': string;
|
|
21
|
-
'fabric.editor.insertColumn': string;
|
|
22
|
-
'fabric.editor.insertRow': string;
|
|
23
|
-
'fabric.editor.mergeCells': string;
|
|
24
|
-
'fabric.editor.numberedColumn': string;
|
|
25
|
-
'fabric.editor.removeColumns': string;
|
|
26
|
-
'fabric.editor.removeRows': string;
|
|
27
|
-
'fabric.editor.rowControl': string;
|
|
28
|
-
'fabric.editor.sortColumnASC': string;
|
|
29
|
-
'fabric.editor.sortColumnDESC': string;
|
|
30
|
-
'fabric.editor.splitCell': string;
|
|
31
|
-
'fabric.editor.tableOptions': string;
|
|
32
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
35
|
-
'fabric.editor.tables.resizeTable': string;
|
|
36
|
-
};
|
|
37
|
-
export default _default;
|
package/dist/types/i18n/da.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
16
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
17
|
-
'fabric.editor.headerColumn': string;
|
|
18
|
-
'fabric.editor.headerRow': string;
|
|
19
|
-
'fabric.editor.insertColumn': string;
|
|
20
|
-
'fabric.editor.insertRow': string;
|
|
21
|
-
'fabric.editor.mergeCells': string;
|
|
22
|
-
'fabric.editor.numberedColumn': string;
|
|
23
|
-
'fabric.editor.removeColumns': string;
|
|
24
|
-
'fabric.editor.removeRows': string;
|
|
25
|
-
'fabric.editor.rowControl': string;
|
|
26
|
-
'fabric.editor.sortColumnASC': string;
|
|
27
|
-
'fabric.editor.sortColumnDESC': string;
|
|
28
|
-
'fabric.editor.splitCell': string;
|
|
29
|
-
'fabric.editor.tableOptions': string;
|
|
30
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
31
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
32
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
33
|
-
'fabric.editor.tables.resizeTable': string;
|
|
34
|
-
};
|
|
35
|
-
export default _default;
|
package/dist/types/i18n/de.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
16
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
17
|
-
'fabric.editor.headerColumn': string;
|
|
18
|
-
'fabric.editor.headerRow': string;
|
|
19
|
-
'fabric.editor.insertColumn': string;
|
|
20
|
-
'fabric.editor.insertRow': string;
|
|
21
|
-
'fabric.editor.mergeCells': string;
|
|
22
|
-
'fabric.editor.numberedColumn': string;
|
|
23
|
-
'fabric.editor.removeColumns': string;
|
|
24
|
-
'fabric.editor.removeRows': string;
|
|
25
|
-
'fabric.editor.rowControl': string;
|
|
26
|
-
'fabric.editor.sortColumnASC': string;
|
|
27
|
-
'fabric.editor.sortColumnDESC': string;
|
|
28
|
-
'fabric.editor.splitCell': string;
|
|
29
|
-
'fabric.editor.tableOptions': string;
|
|
30
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
31
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
32
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
33
|
-
'fabric.editor.tables.resizeTable': string;
|
|
34
|
-
};
|
|
35
|
-
export default _default;
|
package/dist/types/i18n/en.d.ts
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': string;
|
|
16
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
17
|
-
'fabric.editor.extension.sourceNoTitledName': string;
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
19
|
-
'fabric.editor.headerColumn': string;
|
|
20
|
-
'fabric.editor.headerRow': string;
|
|
21
|
-
'fabric.editor.insertColumn': string;
|
|
22
|
-
'fabric.editor.insertRow': string;
|
|
23
|
-
'fabric.editor.mergeCells': string;
|
|
24
|
-
'fabric.editor.numberedColumn': string;
|
|
25
|
-
'fabric.editor.removeColumns': string;
|
|
26
|
-
'fabric.editor.removeRows': string;
|
|
27
|
-
'fabric.editor.rowControl': string;
|
|
28
|
-
'fabric.editor.sortColumnASC': string;
|
|
29
|
-
'fabric.editor.sortColumnDESC': string;
|
|
30
|
-
'fabric.editor.splitCell': string;
|
|
31
|
-
'fabric.editor.tableOptions': string;
|
|
32
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
35
|
-
'fabric.editor.tables.resizeTable': string;
|
|
36
|
-
};
|
|
37
|
-
export default _default;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': string;
|
|
16
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
17
|
-
'fabric.editor.extension.sourceNoTitledName': string;
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
19
|
-
'fabric.editor.headerColumn': string;
|
|
20
|
-
'fabric.editor.headerRow': string;
|
|
21
|
-
'fabric.editor.insertColumn': string;
|
|
22
|
-
'fabric.editor.insertRow': string;
|
|
23
|
-
'fabric.editor.mergeCells': string;
|
|
24
|
-
'fabric.editor.numberedColumn': string;
|
|
25
|
-
'fabric.editor.removeColumns': string;
|
|
26
|
-
'fabric.editor.removeRows': string;
|
|
27
|
-
'fabric.editor.rowControl': string;
|
|
28
|
-
'fabric.editor.sortColumnASC': string;
|
|
29
|
-
'fabric.editor.sortColumnDESC': string;
|
|
30
|
-
'fabric.editor.splitCell': string;
|
|
31
|
-
'fabric.editor.tableOptions': string;
|
|
32
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
35
|
-
'fabric.editor.tables.resizeTable': string;
|
|
36
|
-
};
|
|
37
|
-
export default _default;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': string;
|
|
16
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
17
|
-
'fabric.editor.extension.sourceNoTitledName': string;
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
19
|
-
'fabric.editor.headerColumn': string;
|
|
20
|
-
'fabric.editor.headerRow': string;
|
|
21
|
-
'fabric.editor.insertColumn': string;
|
|
22
|
-
'fabric.editor.insertRow': string;
|
|
23
|
-
'fabric.editor.mergeCells': string;
|
|
24
|
-
'fabric.editor.numberedColumn': string;
|
|
25
|
-
'fabric.editor.removeColumns': string;
|
|
26
|
-
'fabric.editor.removeRows': string;
|
|
27
|
-
'fabric.editor.rowControl': string;
|
|
28
|
-
'fabric.editor.sortColumnASC': string;
|
|
29
|
-
'fabric.editor.sortColumnDESC': string;
|
|
30
|
-
'fabric.editor.splitCell': string;
|
|
31
|
-
'fabric.editor.tableOptions': string;
|
|
32
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
35
|
-
'fabric.editor.tables.resizeTable': string;
|
|
36
|
-
};
|
|
37
|
-
export default _default;
|
package/dist/types/i18n/es.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
16
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
17
|
-
'fabric.editor.headerColumn': string;
|
|
18
|
-
'fabric.editor.headerRow': string;
|
|
19
|
-
'fabric.editor.insertColumn': string;
|
|
20
|
-
'fabric.editor.insertRow': string;
|
|
21
|
-
'fabric.editor.mergeCells': string;
|
|
22
|
-
'fabric.editor.numberedColumn': string;
|
|
23
|
-
'fabric.editor.removeColumns': string;
|
|
24
|
-
'fabric.editor.removeRows': string;
|
|
25
|
-
'fabric.editor.rowControl': string;
|
|
26
|
-
'fabric.editor.sortColumnASC': string;
|
|
27
|
-
'fabric.editor.sortColumnDESC': string;
|
|
28
|
-
'fabric.editor.splitCell': string;
|
|
29
|
-
'fabric.editor.tableOptions': string;
|
|
30
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
31
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
32
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
33
|
-
'fabric.editor.tables.resizeTable': string;
|
|
34
|
-
};
|
|
35
|
-
export default _default;
|
package/dist/types/i18n/fi.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
16
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
17
|
-
'fabric.editor.headerColumn': string;
|
|
18
|
-
'fabric.editor.headerRow': string;
|
|
19
|
-
'fabric.editor.insertColumn': string;
|
|
20
|
-
'fabric.editor.insertRow': string;
|
|
21
|
-
'fabric.editor.mergeCells': string;
|
|
22
|
-
'fabric.editor.numberedColumn': string;
|
|
23
|
-
'fabric.editor.removeColumns': string;
|
|
24
|
-
'fabric.editor.removeRows': string;
|
|
25
|
-
'fabric.editor.rowControl': string;
|
|
26
|
-
'fabric.editor.sortColumnASC': string;
|
|
27
|
-
'fabric.editor.sortColumnDESC': string;
|
|
28
|
-
'fabric.editor.splitCell': string;
|
|
29
|
-
'fabric.editor.tableOptions': string;
|
|
30
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
31
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
32
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
33
|
-
'fabric.editor.tables.resizeTable': string;
|
|
34
|
-
};
|
|
35
|
-
export default _default;
|
package/dist/types/i18n/fr.d.ts
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': string;
|
|
16
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
17
|
-
'fabric.editor.extension.sourceNoTitledName': string;
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
19
|
-
'fabric.editor.headerColumn': string;
|
|
20
|
-
'fabric.editor.headerRow': string;
|
|
21
|
-
'fabric.editor.insertColumn': string;
|
|
22
|
-
'fabric.editor.insertRow': string;
|
|
23
|
-
'fabric.editor.mergeCells': string;
|
|
24
|
-
'fabric.editor.numberedColumn': string;
|
|
25
|
-
'fabric.editor.removeColumns': string;
|
|
26
|
-
'fabric.editor.removeRows': string;
|
|
27
|
-
'fabric.editor.rowControl': string;
|
|
28
|
-
'fabric.editor.sortColumnASC': string;
|
|
29
|
-
'fabric.editor.sortColumnDESC': string;
|
|
30
|
-
'fabric.editor.splitCell': string;
|
|
31
|
-
'fabric.editor.tableOptions': string;
|
|
32
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
35
|
-
'fabric.editor.tables.resizeTable': string;
|
|
36
|
-
};
|
|
37
|
-
export default _default;
|
package/dist/types/i18n/hu.d.ts
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically generated by Traduki 2.0.
|
|
5
|
-
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
-
*/
|
|
7
|
-
declare const _default: {
|
|
8
|
-
'fabric.editor.canNotSortTable': string;
|
|
9
|
-
'fabric.editor.cellBackground': string;
|
|
10
|
-
'fabric.editor.cellOptions': string;
|
|
11
|
-
'fabric.editor.clearCells': string;
|
|
12
|
-
'fabric.editor.collapseTable': string;
|
|
13
|
-
'fabric.editor.cornerControl': string;
|
|
14
|
-
'fabric.editor.distributeColumns': string;
|
|
15
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessagePrefix': string;
|
|
16
|
-
'fabric.editor.extension.deleteElementTitle': string;
|
|
17
|
-
'fabric.editor.extension.sourceNoTitledName': string;
|
|
18
|
-
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': string;
|
|
19
|
-
'fabric.editor.headerColumn': string;
|
|
20
|
-
'fabric.editor.headerRow': string;
|
|
21
|
-
'fabric.editor.insertColumn': string;
|
|
22
|
-
'fabric.editor.insertRow': string;
|
|
23
|
-
'fabric.editor.mergeCells': string;
|
|
24
|
-
'fabric.editor.numberedColumn': string;
|
|
25
|
-
'fabric.editor.removeColumns': string;
|
|
26
|
-
'fabric.editor.removeRows': string;
|
|
27
|
-
'fabric.editor.rowControl': string;
|
|
28
|
-
'fabric.editor.sortColumnASC': string;
|
|
29
|
-
'fabric.editor.sortColumnDESC': string;
|
|
30
|
-
'fabric.editor.splitCell': string;
|
|
31
|
-
'fabric.editor.tableOptions': string;
|
|
32
|
-
'fabric.editor.tables.adjustColumn': string;
|
|
33
|
-
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
34
|
-
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
35
|
-
'fabric.editor.tables.resizeTable': string;
|
|
36
|
-
};
|
|
37
|
-
export default _default;
|