@atlaskit/editor-plugin-table 5.0.0 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/cjs/plugins/table/index.js +44 -35
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/actions.js +12 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/commands.js +27 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/consts.js +11 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/index.js +32 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/plugin-factory.js +13 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/plugin-key.js +8 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/plugin.js +28 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/reducer.js +28 -0
- package/dist/cjs/plugins/table/pm-plugins/drag-and-drop/types.js +5 -0
- package/dist/es2019/plugins/table/index.js +9 -1
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/actions.js +6 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/commands.js +14 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/consts.js +5 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/index.js +3 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/plugin-factory.js +8 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/plugin-key.js +2 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/plugin.js +22 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/reducer.js +20 -0
- package/dist/es2019/plugins/table/pm-plugins/drag-and-drop/types.js +1 -0
- package/dist/esm/plugins/table/index.js +44 -35
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/actions.js +6 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/commands.js +22 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/consts.js +5 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/index.js +3 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/plugin-factory.js +7 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/plugin-key.js +2 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/plugin.js +22 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/reducer.js +21 -0
- package/dist/esm/plugins/table/pm-plugins/drag-and-drop/types.js +1 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/actions.d.ts +15 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/commands.d.ts +4 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/consts.d.ts +6 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/index.d.ts +4 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/plugin-factory.d.ts +2 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/plugin-key.d.ts +3 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/plugin.d.ts +3 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/reducer.d.ts +4 -0
- package/dist/types/plugins/table/pm-plugins/drag-and-drop/types.d.ts +5 -0
- package/dist/types-ts4.5/i18n/cs.d.ts +37 -0
- package/dist/types-ts4.5/i18n/da.d.ts +35 -0
- package/dist/types-ts4.5/i18n/de.d.ts +35 -0
- package/dist/types-ts4.5/i18n/en.d.ts +37 -0
- package/dist/types-ts4.5/i18n/en_GB.d.ts +37 -0
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +37 -0
- package/dist/types-ts4.5/i18n/es.d.ts +35 -0
- package/dist/types-ts4.5/i18n/fi.d.ts +35 -0
- package/dist/types-ts4.5/i18n/fr.d.ts +37 -0
- package/dist/types-ts4.5/i18n/hu.d.ts +37 -0
- package/dist/types-ts4.5/i18n/it.d.ts +37 -0
- package/dist/types-ts4.5/i18n/ja.d.ts +37 -0
- package/dist/types-ts4.5/i18n/ko.d.ts +35 -0
- package/dist/types-ts4.5/i18n/nb.d.ts +35 -0
- package/dist/types-ts4.5/i18n/nl.d.ts +37 -0
- package/dist/types-ts4.5/i18n/pl.d.ts +37 -0
- package/dist/types-ts4.5/i18n/pt_BR.d.ts +37 -0
- package/dist/types-ts4.5/i18n/ru.d.ts +37 -0
- package/dist/types-ts4.5/i18n/sv.d.ts +35 -0
- package/dist/types-ts4.5/i18n/th.d.ts +35 -0
- package/dist/types-ts4.5/i18n/tr.d.ts +37 -0
- package/dist/types-ts4.5/i18n/uk.d.ts +37 -0
- package/dist/types-ts4.5/i18n/vi.d.ts +35 -0
- package/dist/types-ts4.5/i18n/zh.d.ts +37 -0
- package/dist/types-ts4.5/i18n/zh_TW.d.ts +37 -0
- package/dist/types-ts4.5/index.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/commands/clear.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/commands/collapse.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/commands/delete.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/commands/go-to-next-cell.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/commands/hover.d.ts +8 -0
- package/dist/types-ts4.5/plugins/table/commands/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/table/commands/insert.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/commands/misc.d.ts +29 -0
- package/dist/types-ts4.5/plugins/table/commands/referentiality.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/commands/selection.d.ts +8 -0
- package/dist/types-ts4.5/plugins/table/commands/sort.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/commands/split-cell.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/commands/toggle.d.ts +12 -0
- package/dist/types-ts4.5/plugins/table/commands-with-analytics.d.ts +25 -0
- package/dist/types-ts4.5/plugins/table/create-plugin-config.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/event-handlers.d.ts +15 -0
- package/dist/types-ts4.5/plugins/table/handlers.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/index.d.ts +38 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/OverflowShadowsObserver.d.ts +24 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/TableComponent.d.ts +73 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/TableContainer.d.ts +44 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/TableResizer.d.ts +25 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/TableStickyScrollbar.d.ts +24 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/__mocks__/OverflowShadowsObserver.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/__mocks__/OverridableMock.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/table.d.ts +33 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/tableCell.d.ts +17 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/types.d.ts +26 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/update-overflow-shadows.d.ts +1 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/plugin.d.ts +7 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/utils/column-controls.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/utils/column-resizing.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/utils/compose-decorations.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/utils/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/decorations/utils/types.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/default-table-selection.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/actions.d.ts +15 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/commands.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/consts.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/index.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/plugin-factory.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/plugin.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/reducer.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/drag-and-drop/types.d.ts +5 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/keymap.d.ts +5 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/main.d.ts +8 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/plugin-factory.d.ts +1 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/safari-delete-composition-text-issue-workaround.d.ts +15 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/commands.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/nodeviews/dom.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/nodeviews/tableRow.d.ts +73 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/plugin-state.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/plugin.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/types.d.ts +16 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/sticky-headers/util.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-analytics.d.ts +23 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-local-id.d.ts +10 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/commands.d.ts +23 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/event-handlers.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/plugin-factory.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/plugin.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/colgroup.d.ts +23 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/column-state.d.ts +14 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/consts.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/content-width.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/dom.d.ts +12 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/misc.d.ts +20 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/resize-column.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/resize-logic.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/resize-state.d.ts +29 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/scale-table.d.ts +21 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/types.d.ts +22 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-resizing/utils/unit-to-number.d.ts +1 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-selection-keymap.d.ts +5 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/table-width.d.ts +17 -0
- package/dist/types-ts4.5/plugins/table/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/toolbar.d.ts +36 -0
- package/dist/types-ts4.5/plugins/table/transforms/column-width.d.ts +37 -0
- package/dist/types-ts4.5/plugins/table/transforms/delete-columns.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/transforms/delete-rows.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/transforms/fix-tables.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/transforms/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/transforms/merge.d.ts +5 -0
- package/dist/types-ts4.5/plugins/table/transforms/replace-table.d.ts +5 -0
- package/dist/types-ts4.5/plugins/table/transforms/split.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/types.d.ts +342 -0
- package/dist/types-ts4.5/plugins/table/ui/ColumnResizeWidget/index.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingContextualButton/FixedButton.d.ts +23 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingContextualButton/index.d.ts +21 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingContextualButton/styles.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingContextualMenu/ContextualMenu.d.ts +87 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingContextualMenu/index.d.ts +23 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingContextualMenu/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingDeleteButton/DeleteButton.d.ts +13 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingDeleteButton/getPopUpOptions.d.ts +10 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingDeleteButton/index.d.ts +54 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingDeleteButton/types.d.ts +1 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingInsertButton/InsertButton.d.ts +13 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingInsertButton/getPopupOptions.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/ui/FloatingInsertButton/index.d.ts +35 -0
- package/dist/types-ts4.5/plugins/table/ui/LayoutButton/index.d.ts +21 -0
- package/dist/types-ts4.5/plugins/table/ui/TableFloatingControls/CornerControls/index.d.ts +16 -0
- package/dist/types-ts4.5/plugins/table/ui/TableFloatingControls/NumberColumn/index.d.ts +21 -0
- package/dist/types-ts4.5/plugins/table/ui/TableFloatingControls/RowControls/index.d.ts +17 -0
- package/dist/types-ts4.5/plugins/table/ui/TableFloatingControls/index.d.ts +39 -0
- package/dist/types-ts4.5/plugins/table/ui/common-styles.d.ts +9 -0
- package/dist/types-ts4.5/plugins/table/ui/consts.d.ts +50 -0
- package/dist/types-ts4.5/plugins/table/ui/messages.d.ts +63 -0
- package/dist/types-ts4.5/plugins/table/ui/ui-styles.d.ts +15 -0
- package/dist/types-ts4.5/plugins/table/utils/analytics.d.ts +45 -0
- package/dist/types-ts4.5/plugins/table/utils/collapse.d.ts +29 -0
- package/dist/types-ts4.5/plugins/table/utils/column-controls.d.ts +10 -0
- package/dist/types-ts4.5/plugins/table/utils/decoration.d.ts +19 -0
- package/dist/types-ts4.5/plugins/table/utils/dom.d.ts +20 -0
- package/dist/types-ts4.5/plugins/table/utils/get-allow-add-column-custom-step.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/utils/guidelines.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/utils/index.d.ts +11 -0
- package/dist/types-ts4.5/plugins/table/utils/nodes.d.ts +13 -0
- package/dist/types-ts4.5/plugins/table/utils/paste.d.ts +14 -0
- package/dist/types-ts4.5/plugins/table/utils/row-controls.d.ts +16 -0
- package/dist/types-ts4.5/plugins/table/utils/selection.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/utils/snapping.d.ts +10 -0
- package/dist/types-ts4.5/plugins/table/utils/table.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/utils/update-plugin-state-decorations.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table-plugin.d.ts +2 -0
- package/dist/types-ts4.5/types/i18n.d.ts +5 -0
- package/package.json +3 -3
- package/report.api.md +2 -17
- package/src/plugins/table/index.tsx +12 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/actions.ts +29 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/commands.ts +32 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/consts.ts +8 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/index.ts +5 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/plugin-factory.ts +8 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/plugin-key.ts +7 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/plugin.ts +32 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/reducer.ts +26 -0
- package/src/plugins/table/pm-plugins/drag-and-drop/types.ts +6 -0
- package/tmp/api-report-tmp.d.ts +100 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
|
+
import { DropTargetType } from './consts';
|
|
3
|
+
import { createPluginState } from './plugin-factory';
|
|
4
|
+
import { pluginKey } from './plugin-key';
|
|
5
|
+
export var createPlugin = function createPlugin(dispatch, eventDispatcher) {
|
|
6
|
+
return new SafePlugin({
|
|
7
|
+
state: createPluginState(dispatch, {
|
|
8
|
+
// TODO: This is example placeholder state. We could use this to track which row/col is currently set as the drop target
|
|
9
|
+
// This would result in a blue highlight being displayed on the corrisponding row/column to single the drop target location.
|
|
10
|
+
dropTargetType: DropTargetType.NONE,
|
|
11
|
+
dropTargetIndex: 0
|
|
12
|
+
}),
|
|
13
|
+
key: pluginKey,
|
|
14
|
+
view: function view(editorView) {
|
|
15
|
+
// TODO: Add Pragmatic DnD monitor when the view is constructed.
|
|
16
|
+
return {
|
|
17
|
+
// TODO: Cleanup monitor instance
|
|
18
|
+
// destroy: cleanup,
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
|
+
import { DragAndDropActionType } from './actions';
|
|
5
|
+
import { DropTargetType } from './consts';
|
|
6
|
+
export default (function (pluginState, action) {
|
|
7
|
+
switch (action.type) {
|
|
8
|
+
case DragAndDropActionType.SET_DROP_TARGET:
|
|
9
|
+
return _objectSpread(_objectSpread({}, pluginState), {}, {
|
|
10
|
+
dropTargetType: action.data.type,
|
|
11
|
+
dropTargetIndex: action.data.index
|
|
12
|
+
});
|
|
13
|
+
case DragAndDropActionType.CLEAR_DROP_TARGET:
|
|
14
|
+
return _objectSpread(_objectSpread({}, pluginState), {}, {
|
|
15
|
+
dropTargetType: DropTargetType.NONE,
|
|
16
|
+
dropTargetIndex: 0
|
|
17
|
+
});
|
|
18
|
+
default:
|
|
19
|
+
return pluginState;
|
|
20
|
+
}
|
|
21
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DropTargetType } from './consts';
|
|
2
|
+
export interface DragAndDropAction<T, D> {
|
|
3
|
+
type: T;
|
|
4
|
+
data: D;
|
|
5
|
+
}
|
|
6
|
+
export declare const DragAndDropActionType: {
|
|
7
|
+
readonly SET_DROP_TARGET: "SET_DROP_TARGET";
|
|
8
|
+
readonly CLEAR_DROP_TARGET: "CLEAR_DROP_TARGET";
|
|
9
|
+
};
|
|
10
|
+
export type DragAndDropSetDropTargetAction = DragAndDropAction<typeof DragAndDropActionType.SET_DROP_TARGET, {
|
|
11
|
+
type: DropTargetType;
|
|
12
|
+
index: number;
|
|
13
|
+
}>;
|
|
14
|
+
export type DragAndDropClearDropTargetAction = DragAndDropAction<typeof DragAndDropActionType.CLEAR_DROP_TARGET, undefined>;
|
|
15
|
+
export type DragAndDropPluginAction = DragAndDropSetDropTargetAction | DragAndDropClearDropTargetAction;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
+
import type { DropTargetType } from './consts';
|
|
3
|
+
export declare const setDropTarget: (type: DropTargetType, index: number, tr?: Transaction) => import("@atlaskit/editor-common/types").Command;
|
|
4
|
+
export declare const clearDropTarget: (tr?: Transaction) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const createPluginState: (dispatch: import("@atlaskit/editor-common/event-dispatcher").Dispatch<any>, initialState: import("./types").DragAndDropPluginState | ((state: import("prosemirror-state").EditorState) => import("./types").DragAndDropPluginState)) => import("prosemirror-state").SafeStateField<import("./types").DragAndDropPluginState>, createCommand: <A = import("./actions").DragAndDropPluginAction>(action: A | ((state: Readonly<import("prosemirror-state").EditorState>) => false | A), transform?: ((tr: import("prosemirror-state").Transaction, state: import("prosemirror-state").EditorState) => import("prosemirror-state").Transaction) | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
2
|
+
export { createPluginState, createCommand };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { Dispatch, EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
2
|
+
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
3
|
+
export declare const createPlugin: (dispatch: Dispatch, eventDispatcher: EventDispatcher) => SafePlugin<import("./types").DragAndDropPluginState>;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,35 @@
|
|
|
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;
|
|
@@ -0,0 +1,35 @@
|
|
|
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;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,35 @@
|
|
|
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;
|
|
@@ -0,0 +1,35 @@
|
|
|
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;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,37 @@
|
|
|
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;
|
|
@@ -0,0 +1,35 @@
|
|
|
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;
|
|
@@ -0,0 +1,35 @@
|
|
|
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;
|