@univerjs/sheets-ui 0.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +16 -0
- package/lib/cjs/index.js +21729 -0
- package/lib/cjs/locale/en-US.js +605 -0
- package/lib/cjs/locale/zh-CN.js +442 -0
- package/lib/esm/index.js +21640 -0
- package/lib/esm/locale/en-US.js +584 -0
- package/lib/esm/locale/zh-CN.js +421 -0
- package/lib/index.css +587 -0
- package/lib/types/basics/const/default-univer-sheet-config.d.ts +127 -0
- package/lib/types/basics/const/default-univer-sheet-config.d.ts.map +1 -0
- package/lib/types/basics/const/index.d.ts +3 -0
- package/lib/types/basics/const/index.d.ts.map +1 -0
- package/lib/types/basics/const/plugin-name.d.ts +2 -0
- package/lib/types/basics/const/plugin-name.d.ts.map +1 -0
- package/lib/types/basics/editor/get-editor-object.d.ts +9 -0
- package/lib/types/basics/editor/get-editor-object.d.ts.map +1 -0
- package/lib/types/basics/index.d.ts +3 -0
- package/lib/types/basics/index.d.ts.map +1 -0
- package/lib/types/basics/interfaces/cell.d.ts +6 -0
- package/lib/types/basics/interfaces/cell.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts +13 -0
- package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/index.d.ts +3 -0
- package/lib/types/basics/interfaces/component-config/index.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts +20 -0
- package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts +25 -0
- package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts.map +1 -0
- package/lib/types/basics/interfaces/index.d.ts +2 -0
- package/lib/types/basics/interfaces/index.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts +2 -0
- package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts +29 -0
- package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts +2 -0
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts +2 -0
- package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts.map +1 -0
- package/lib/types/commands/commands/auto-fill.command.d.ts +20 -0
- package/lib/types/commands/commands/auto-fill.command.d.ts.map +1 -0
- package/lib/types/commands/commands/clipboard.command.d.ts +12 -0
- package/lib/types/commands/commands/clipboard.command.d.ts.map +1 -0
- package/lib/types/commands/commands/inline-format.command.d.ts +15 -0
- package/lib/types/commands/commands/inline-format.command.d.ts.map +1 -0
- package/lib/types/commands/commands/refill.command.d.ts +3 -0
- package/lib/types/commands/commands/refill.command.d.ts.map +1 -0
- package/lib/types/commands/commands/rename.command.d.ts +3 -0
- package/lib/types/commands/commands/rename.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-format-painter.command.d.ts +12 -0
- package/lib/types/commands/commands/set-format-painter.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-frozen.command.d.ts +14 -0
- package/lib/types/commands/commands/set-frozen.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-scroll.command.d.ts +24 -0
- package/lib/types/commands/commands/set-scroll.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-selection-frozen.command.d.ts +3 -0
- package/lib/types/commands/commands/set-selection-frozen.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-selection.command.d.ts +40 -0
- package/lib/types/commands/commands/set-selection.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-zoom-ratio.command.d.ts +16 -0
- package/lib/types/commands/commands/set-zoom-ratio.command.d.ts.map +1 -0
- package/lib/types/commands/commands/unhide.command.d.ts +3 -0
- package/lib/types/commands/commands/unhide.command.d.ts.map +1 -0
- package/lib/types/commands/operations/activate-cell-edit.operation.d.ts +4 -0
- package/lib/types/commands/operations/activate-cell-edit.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/cell-edit.operation.d.ts +9 -0
- package/lib/types/commands/operations/cell-edit.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/scroll.operation.d.ts +4 -0
- package/lib/types/commands/operations/scroll.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/selection.operation.d.ts +12 -0
- package/lib/types/commands/operations/selection.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/set-editor-resize.operation.d.ts +3 -0
- package/lib/types/commands/operations/set-editor-resize.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/set-format-painter.operation.d.ts +7 -0
- package/lib/types/commands/operations/set-format-painter.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts +10 -0
- package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts.map +1 -0
- package/lib/types/common/keys.d.ts +22 -0
- package/lib/types/common/keys.d.ts.map +1 -0
- package/lib/types/components/border-panel/BorderPanel.d.ts +4 -0
- package/lib/types/components/border-panel/BorderPanel.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/BorderLine.d.ts +8 -0
- package/lib/types/components/border-panel/border-line/BorderLine.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts.map +1 -0
- package/lib/types/components/border-panel/index.d.ts +1 -0
- package/lib/types/components/border-panel/index.d.ts.map +1 -0
- package/lib/types/components/border-panel/interface.d.ts +11 -0
- package/lib/types/components/border-panel/interface.d.ts.map +1 -0
- package/lib/types/components/color-picker/index.d.ts +3 -0
- package/lib/types/components/color-picker/index.d.ts.map +1 -0
- package/lib/types/components/color-picker/interface.d.ts +2 -0
- package/lib/types/components/color-picker/interface.d.ts.map +1 -0
- package/lib/types/components/const.d.ts +2 -0
- package/lib/types/components/const.d.ts.map +1 -0
- package/lib/types/components/font-family/FontFamily.d.ts +4 -0
- package/lib/types/components/font-family/FontFamily.d.ts.map +1 -0
- package/lib/types/components/font-family/FontFamilyItem.d.ts +4 -0
- package/lib/types/components/font-family/FontFamilyItem.d.ts.map +1 -0
- package/lib/types/components/font-family/index.d.ts +4 -0
- package/lib/types/components/font-family/index.d.ts.map +1 -0
- package/lib/types/components/font-family/interface.d.ts +10 -0
- package/lib/types/components/font-family/interface.d.ts.map +1 -0
- package/lib/types/components/font-size/FontSize.d.ts +4 -0
- package/lib/types/components/font-size/FontSize.d.ts.map +1 -0
- package/lib/types/components/font-size/index.d.ts +3 -0
- package/lib/types/components/font-size/index.d.ts.map +1 -0
- package/lib/types/components/font-size/interface.d.ts +9 -0
- package/lib/types/components/font-size/interface.d.ts.map +1 -0
- package/lib/types/components/menu-item-input/MenuItemInput.d.ts +4 -0
- package/lib/types/components/menu-item-input/MenuItemInput.d.ts.map +1 -0
- package/lib/types/components/menu-item-input/index.d.ts +3 -0
- package/lib/types/components/menu-item-input/index.d.ts.map +1 -0
- package/lib/types/components/menu-item-input/interface.d.ts +7 -0
- package/lib/types/components/menu-item-input/interface.d.ts.map +1 -0
- package/lib/types/components/range-selector/RangeSelector.d.ts +7 -0
- package/lib/types/components/range-selector/RangeSelector.d.ts.map +1 -0
- package/lib/types/controllers/auto-fill.controller.d.ts +32 -0
- package/lib/types/controllers/auto-fill.controller.d.ts.map +1 -0
- package/lib/types/controllers/auto-height.controller.d.ts +15 -0
- package/lib/types/controllers/auto-height.controller.d.ts.map +1 -0
- package/lib/types/controllers/clipboard/clipboard.controller.d.ts +25 -0
- package/lib/types/controllers/clipboard/clipboard.controller.d.ts.map +1 -0
- package/lib/types/controllers/clipboard/utils.d.ts +36 -0
- package/lib/types/controllers/clipboard/utils.d.ts.map +1 -0
- package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts +20 -0
- package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/editing.controller.d.ts +16 -0
- package/lib/types/controllers/editor/editing.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/end-edit.controller.d.ts +36 -0
- package/lib/types/controllers/editor/end-edit.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/formula-editor.controller.d.ts +28 -0
- package/lib/types/controllers/editor/formula-editor.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/initialize-editor.controller.d.ts +13 -0
- package/lib/types/controllers/editor/initialize-editor.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/start-edit.controller.d.ts +49 -0
- package/lib/types/controllers/editor/start-edit.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor-bridge.controller.d.ts +29 -0
- package/lib/types/controllers/editor-bridge.controller.d.ts.map +1 -0
- package/lib/types/controllers/format-painter/format-painter.controller.d.ts +17 -0
- package/lib/types/controllers/format-painter/format-painter.controller.d.ts.map +1 -0
- package/lib/types/controllers/freeze.controller.d.ts +57 -0
- package/lib/types/controllers/freeze.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-menu.controller.d.ts +27 -0
- package/lib/types/controllers/header-menu.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-move.controller.d.ts +39 -0
- package/lib/types/controllers/header-move.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-resize.controller.d.ts +27 -0
- package/lib/types/controllers/header-resize.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-unhide.controller.d.ts +21 -0
- package/lib/types/controllers/header-unhide.controller.d.ts.map +1 -0
- package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts +7 -0
- package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts.map +1 -0
- package/lib/types/controllers/menu/__tests__/menu.spec.d.ts +2 -0
- package/lib/types/controllers/menu/__tests__/menu.spec.d.ts.map +1 -0
- package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts +2 -0
- package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts.map +1 -0
- package/lib/types/controllers/menu/border.menu.d.ts +5 -0
- package/lib/types/controllers/menu/border.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/clear.menu.d.ts +6 -0
- package/lib/types/controllers/menu/clear.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/delete.menu.d.ts +7 -0
- package/lib/types/controllers/menu/delete.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/insert.menu.d.ts +12 -0
- package/lib/types/controllers/menu/insert.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/menu.d.ts +79 -0
- package/lib/types/controllers/menu/menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/merge.menu.d.ts +8 -0
- package/lib/types/controllers/menu/merge.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/sheet.menu.d.ts +10 -0
- package/lib/types/controllers/menu/sheet.menu.d.ts.map +1 -0
- package/lib/types/controllers/move-range.controller.d.ts +11 -0
- package/lib/types/controllers/move-range.controller.d.ts.map +1 -0
- package/lib/types/controllers/navigation/navigation.controller.d.ts +8 -0
- package/lib/types/controllers/navigation/navigation.controller.d.ts.map +1 -0
- package/lib/types/controllers/scroll.controller.d.ts +24 -0
- package/lib/types/controllers/scroll.controller.d.ts.map +1 -0
- package/lib/types/controllers/selection.controller.d.ts +27 -0
- package/lib/types/controllers/selection.controller.d.ts.map +1 -0
- package/lib/types/controllers/sheet-render.controller.d.ts +19 -0
- package/lib/types/controllers/sheet-render.controller.d.ts.map +1 -0
- package/lib/types/controllers/sheet-ui.controller.d.ts +15 -0
- package/lib/types/controllers/sheet-ui.controller.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/editor.shortcut.d.ts +12 -0
- package/lib/types/controllers/shortcuts/editor.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/operation.shortcut.d.ts +4 -0
- package/lib/types/controllers/shortcuts/operation.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/selection.shortcut.d.ts +24 -0
- package/lib/types/controllers/shortcuts/selection.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/style.shortcut.d.ts +6 -0
- package/lib/types/controllers/shortcuts/style.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/utils.d.ts +9 -0
- package/lib/types/controllers/shortcuts/utils.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts +3 -0
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/view.shortcut.d.ts +5 -0
- package/lib/types/controllers/shortcuts/view.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/status-bar.controller.d.ts +16 -0
- package/lib/types/controllers/status-bar.controller.d.ts.map +1 -0
- package/lib/types/controllers/utils/component-tools.d.ts +30 -0
- package/lib/types/controllers/utils/component-tools.d.ts.map +1 -0
- package/lib/types/controllers/zoom.controller.d.ts +24 -0
- package/lib/types/controllers/zoom.controller.d.ts.map +1 -0
- package/lib/types/index.d.ts +26 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/locale/en-US.d.ts +471 -0
- package/lib/types/locale/en-US.d.ts.map +1 -0
- package/lib/types/locale/index.d.ts +3 -0
- package/lib/types/locale/index.d.ts.map +1 -0
- package/lib/types/locale/zh-CN.d.ts +436 -0
- package/lib/types/locale/zh-CN.d.ts.map +1 -0
- package/lib/types/services/auto-fill/auto-fill.service.d.ts +65 -0
- package/lib/types/services/auto-fill/auto-fill.service.d.ts.map +1 -0
- package/lib/types/services/auto-fill/rules.d.ts +9 -0
- package/lib/types/services/auto-fill/rules.d.ts.map +1 -0
- package/lib/types/services/auto-fill/tools.d.ts +96 -0
- package/lib/types/services/auto-fill/tools.d.ts.map +1 -0
- package/lib/types/services/auto-fill/type.d.ts +54 -0
- package/lib/types/services/auto-fill/type.d.ts.map +1 -0
- package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts +2 -0
- package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts.map +1 -0
- package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts +21 -0
- package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts.map +1 -0
- package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts +23 -0
- package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts.map +1 -0
- package/lib/types/services/clipboard/clipboard.service.d.ts +104 -0
- package/lib/types/services/clipboard/clipboard.service.d.ts.map +1 -0
- package/lib/types/services/clipboard/copy-content-cache.d.ts +20 -0
- package/lib/types/services/clipboard/copy-content-cache.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/converter.d.ts +27 -0
- package/lib/types/services/clipboard/html-to-usm/converter.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts +3 -0
- package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts +4 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts +4 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts +16 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/utils.d.ts +5 -0
- package/lib/types/services/clipboard/html-to-usm/utils.d.ts.map +1 -0
- package/lib/types/services/clipboard/type.d.ts +120 -0
- package/lib/types/services/clipboard/type.d.ts.map +1 -0
- package/lib/types/services/clipboard/usm-to-html/convertor.d.ts +9 -0
- package/lib/types/services/clipboard/usm-to-html/convertor.d.ts.map +1 -0
- package/lib/types/services/editor/cell-editor-manager.service.d.ts +43 -0
- package/lib/types/services/editor/cell-editor-manager.service.d.ts.map +1 -0
- package/lib/types/services/editor/formula-editor-manager.service.d.ts +30 -0
- package/lib/types/services/editor/formula-editor-manager.service.d.ts.map +1 -0
- package/lib/types/services/editor-bridge.service.d.ts +79 -0
- package/lib/types/services/editor-bridge.service.d.ts.map +1 -0
- package/lib/types/services/format-painter/format-painter.service.d.ts +29 -0
- package/lib/types/services/format-painter/format-painter.service.d.ts.map +1 -0
- package/lib/types/services/mark-selection/mark-selection.service.d.ts +28 -0
- package/lib/types/services/mark-selection/mark-selection.service.d.ts.map +1 -0
- package/lib/types/services/scroll-manager.service.d.ts +38 -0
- package/lib/types/services/scroll-manager.service.d.ts.map +1 -0
- package/lib/types/services/selection/selection-render-model.d.ts +45 -0
- package/lib/types/services/selection/selection-render-model.d.ts.map +1 -0
- package/lib/types/services/selection/selection-render.service.d.ts +165 -0
- package/lib/types/services/selection/selection-render.service.d.ts.map +1 -0
- package/lib/types/services/selection/selection-shape-extension.d.ts +45 -0
- package/lib/types/services/selection/selection-shape-extension.d.ts.map +1 -0
- package/lib/types/services/selection/selection-shape.d.ts +114 -0
- package/lib/types/services/selection/selection-shape.d.ts.map +1 -0
- package/lib/types/services/sheet-bar/sheet-bar.service.d.ts +39 -0
- package/lib/types/services/sheet-bar/sheet-bar.service.d.ts.map +1 -0
- package/lib/types/services/sheet-skeleton-manager.service.d.ts +47 -0
- package/lib/types/services/sheet-skeleton-manager.service.d.ts.map +1 -0
- package/lib/types/services/status-bar.service.d.ts +26 -0
- package/lib/types/services/status-bar.service.d.ts.map +1 -0
- package/lib/types/sheets-ui-plugin.d.ts +13 -0
- package/lib/types/sheets-ui-plugin.d.ts.map +1 -0
- package/lib/types/views/count-bar/CountBar.d.ts +8 -0
- package/lib/types/views/count-bar/CountBar.d.ts.map +1 -0
- package/lib/types/views/count-bar/index.d.ts +2 -0
- package/lib/types/views/count-bar/index.d.ts.map +1 -0
- package/lib/types/views/count-bar/zoom-slider.d.ts +3 -0
- package/lib/types/views/count-bar/zoom-slider.d.ts.map +1 -0
- package/lib/types/views/editor-container/EditorContainer.d.ts +10 -0
- package/lib/types/views/editor-container/EditorContainer.d.ts.map +1 -0
- package/lib/types/views/editor-container/index.d.ts +2 -0
- package/lib/types/views/editor-container/index.d.ts.map +1 -0
- package/lib/types/views/formula-bar/FormulaBar.d.ts +3 -0
- package/lib/types/views/formula-bar/FormulaBar.d.ts.map +1 -0
- package/lib/types/views/formula-bar/index.d.ts +2 -0
- package/lib/types/views/formula-bar/index.d.ts.map +1 -0
- package/lib/types/views/header-menu-shape.d.ts +23 -0
- package/lib/types/views/header-menu-shape.d.ts.map +1 -0
- package/lib/types/views/header-resize-shape.d.ts +27 -0
- package/lib/types/views/header-resize-shape.d.ts.map +1 -0
- package/lib/types/views/header-unhide-shape.d.ts +35 -0
- package/lib/types/views/header-unhide-shape.d.ts.map +1 -0
- package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts +14 -0
- package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts.map +1 -0
- package/lib/types/views/operate-container/OperateContainer.d.ts +3 -0
- package/lib/types/views/operate-container/OperateContainer.d.ts.map +1 -0
- package/lib/types/views/operate-container/index.d.ts +2 -0
- package/lib/types/views/operate-container/index.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/SheetBar.d.ts +3 -0
- package/lib/types/views/sheet-bar/SheetBar.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts +20 -0
- package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts +14 -0
- package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts +14 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts +5 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts +29 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts +142 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts.map +1 -0
- package/lib/types/views/sheet-canvas-view.d.ts +20 -0
- package/lib/types/views/sheet-canvas-view.d.ts.map +1 -0
- package/lib/types/views/sheet-container/SheetContainer.d.ts +11 -0
- package/lib/types/views/sheet-container/SheetContainer.d.ts.map +1 -0
- package/lib/types/views/status-bar/CopyableStatisticItem.d.ts +15 -0
- package/lib/types/views/status-bar/CopyableStatisticItem.d.ts.map +1 -0
- package/lib/types/views/status-bar/StatusBar.d.ts +3 -0
- package/lib/types/views/status-bar/StatusBar.d.ts.map +1 -0
- package/package.json +72 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin-name.d.ts","sourceRoot":"","sources":["../../../../src/basics/const/plugin-name.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,oBAAoB,YAAY,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Nullable } from '@univerjs/core';
|
|
2
|
+
import type { Documents, Engine, IRenderManagerService, Scene } from '@univerjs/engine-render';
|
|
3
|
+
export interface IDocObjectParam {
|
|
4
|
+
document: Documents;
|
|
5
|
+
scene: Scene;
|
|
6
|
+
engine: Engine;
|
|
7
|
+
}
|
|
8
|
+
export declare function getEditorObject(unitId: Nullable<string>, renderManagerService: IRenderManagerService): Nullable<IDocObjectParam>;
|
|
9
|
+
//# sourceMappingURL=get-editor-object.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-editor-object.d.ts","sourceRoot":"","sources":["../../../../src/basics/editor/get-editor-object.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAE/F,MAAM,WAAW,eAAe;IAC5B,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,EAAE,KAAK,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAClB;AAED,wBAAgB,eAAe,CAC3B,MAAM,EAAE,QAAQ,CAAC,MAAM,CAAC,EACxB,oBAAoB,EAAE,qBAAqB,GAC5C,QAAQ,CAAC,eAAe,CAAC,CAoB3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/basics/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cell.d.ts","sourceRoot":"","sources":["../../../../src/basics/interfaces/cell.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { LocaleType } from '@univerjs/core';
|
|
2
|
+
import type { SheetContainerConfig } from './sheet-container-config';
|
|
3
|
+
import type { SheetToolbarConfig } from './toolbar-config';
|
|
4
|
+
export interface ILayout {
|
|
5
|
+
sheetContainerConfig?: SheetContainerConfig;
|
|
6
|
+
toolbarConfig?: SheetToolbarConfig;
|
|
7
|
+
}
|
|
8
|
+
export interface ISheetsUIPluginConfig {
|
|
9
|
+
container?: HTMLElement | string;
|
|
10
|
+
layout?: ILayout;
|
|
11
|
+
locale?: LocaleType;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=i-sheet-ui-plugin-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"i-sheet-ui-plugin-config.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/i-sheet-ui-plugin-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,MAAM,WAAW,OAAO;IACpB,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,aAAa,CAAC,EAAE,kBAAkB,CAAC;CACtC;AAED,MAAM,WAAW,qBAAqB;IAClC,SAAS,CAAC,EAAE,WAAW,GAAG,MAAM,CAAC;IACjC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,UAAU,CAAC;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface SheetContainerConfig {
|
|
2
|
+
outerLeft?: boolean;
|
|
3
|
+
outerRight?: boolean;
|
|
4
|
+
header?: boolean;
|
|
5
|
+
footer?: boolean;
|
|
6
|
+
innerLeft?: boolean;
|
|
7
|
+
innerRight?: boolean;
|
|
8
|
+
frozenHeaderLT?: boolean;
|
|
9
|
+
frozenHeaderRT?: boolean;
|
|
10
|
+
frozenHeaderLM?: boolean;
|
|
11
|
+
frozenContent?: boolean;
|
|
12
|
+
infoBar?: boolean;
|
|
13
|
+
formulaBar?: boolean;
|
|
14
|
+
countBar?: boolean;
|
|
15
|
+
sheetBar?: boolean;
|
|
16
|
+
toolbar?: boolean;
|
|
17
|
+
rightMenu?: boolean;
|
|
18
|
+
contentSplit?: boolean | string;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=sheet-container-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sheet-container-config.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/sheet-container-config.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACjC,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAGnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,YAAY,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CACnC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface SheetToolbarConfig {
|
|
2
|
+
undo?: boolean;
|
|
3
|
+
redo?: boolean;
|
|
4
|
+
paintFormat?: boolean;
|
|
5
|
+
currencyFormat?: boolean;
|
|
6
|
+
percentageFormat?: boolean;
|
|
7
|
+
numberDecrease?: boolean;
|
|
8
|
+
numberIncrease?: boolean;
|
|
9
|
+
font?: boolean;
|
|
10
|
+
moreFormats?: boolean;
|
|
11
|
+
fontSize?: boolean;
|
|
12
|
+
bold?: boolean;
|
|
13
|
+
italic?: boolean;
|
|
14
|
+
strikethrough?: boolean;
|
|
15
|
+
underline?: boolean;
|
|
16
|
+
textColor?: boolean;
|
|
17
|
+
fillColor?: boolean;
|
|
18
|
+
border?: boolean;
|
|
19
|
+
horizontalAlignMode?: boolean;
|
|
20
|
+
verticalAlignMode?: boolean;
|
|
21
|
+
textWrapMode?: boolean;
|
|
22
|
+
textRotateMode?: boolean;
|
|
23
|
+
mergeCell?: boolean;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=toolbar-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar-config.d.ts","sourceRoot":"","sources":["../../../../../src/basics/interfaces/component-config/toolbar-config.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,kBAAkB;IAC/B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/basics/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auto-fill.controller.spec.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/auto-fill.controller.spec.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { IWorkbookData } from '@univerjs/core';
|
|
2
|
+
export declare function createSelectionCommandTestBed(workbookConfig?: IWorkbookData): {
|
|
3
|
+
univer: import("@univerjs/core").Univer;
|
|
4
|
+
get: {
|
|
5
|
+
<T>(id: import("@wendellhu/redi").DependencyIdentifier<T>, lookUp?: import("@wendellhu/redi").LookUp | undefined): T;
|
|
6
|
+
<T_1>(id: import("@wendellhu/redi").DependencyIdentifier<T_1>, quantity: import("@wendellhu/redi").Quantity.MANY, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_1[];
|
|
7
|
+
<T_2>(id: import("@wendellhu/redi").DependencyIdentifier<T_2>, quantity: import("@wendellhu/redi").Quantity.OPTIONAL, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_2 | null;
|
|
8
|
+
<T_3>(id: import("@wendellhu/redi").DependencyIdentifier<T_3>, quantity: import("@wendellhu/redi").Quantity.REQUIRED, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_3;
|
|
9
|
+
<T_4>(id: import("@wendellhu/redi").DependencyIdentifier<T_4>, quantity?: import("@wendellhu/redi").Quantity | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_4 | T_4[] | null;
|
|
10
|
+
<T_5>(id: import("@wendellhu/redi").DependencyIdentifier<T_5>, quantityOrLookup?: import("@wendellhu/redi").Quantity | import("@wendellhu/redi").LookUp | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_5 | T_5[] | null;
|
|
11
|
+
};
|
|
12
|
+
sheet: import("@univerjs/core").Workbook;
|
|
13
|
+
};
|
|
14
|
+
export declare function createFrozenCommandTestBed(workbookConfig?: IWorkbookData): {
|
|
15
|
+
univer: import("@univerjs/core").Univer;
|
|
16
|
+
get: {
|
|
17
|
+
<T>(id: import("@wendellhu/redi").DependencyIdentifier<T>, lookUp?: import("@wendellhu/redi").LookUp | undefined): T;
|
|
18
|
+
<T_1>(id: import("@wendellhu/redi").DependencyIdentifier<T_1>, quantity: import("@wendellhu/redi").Quantity.MANY, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_1[];
|
|
19
|
+
<T_2>(id: import("@wendellhu/redi").DependencyIdentifier<T_2>, quantity: import("@wendellhu/redi").Quantity.OPTIONAL, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_2 | null;
|
|
20
|
+
<T_3>(id: import("@wendellhu/redi").DependencyIdentifier<T_3>, quantity: import("@wendellhu/redi").Quantity.REQUIRED, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_3;
|
|
21
|
+
<T_4>(id: import("@wendellhu/redi").DependencyIdentifier<T_4>, quantity?: import("@wendellhu/redi").Quantity | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_4 | T_4[] | null;
|
|
22
|
+
<T_5>(id: import("@wendellhu/redi").DependencyIdentifier<T_5>, quantityOrLookup?: import("@wendellhu/redi").Quantity | import("@wendellhu/redi").LookUp | undefined, lookUp?: import("@wendellhu/redi").LookUp | undefined): T_5 | T_5[] | null;
|
|
23
|
+
};
|
|
24
|
+
sheet: import("@univerjs/core").Workbook;
|
|
25
|
+
};
|
|
26
|
+
export declare const SELECTION_WITH_EMPTY_CELLS_DATA: IWorkbookData;
|
|
27
|
+
export declare const SELECTION_WITH_MERGED_CELLS_DATA: IWorkbookData;
|
|
28
|
+
export declare const SIMPLE_SELECTION_WORKBOOK_DATA: IWorkbookData;
|
|
29
|
+
//# sourceMappingURL=create-selection-command-test-bed.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-selection-command-test-bed.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/create-selection-command-test-bed.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAepD,wBAAgB,6BAA6B,CAAC,cAAc,CAAC,EAAE,aAAa;;;;;;;;;;;EAe3E;AAED,wBAAgB,0BAA0B,CAAC,cAAc,CAAC,EAAE,aAAa;;;;;;;;;;;EAuBxE;AAED,eAAO,MAAM,+BAA+B,EAAE,aA4C7C,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,aAqC9C,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,aAiC5C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-frozen.command.spec.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/set-frozen.command.spec.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-selections.command.spec.d.ts","sourceRoot":"","sources":["../../../../../src/commands/commands/__tests__/set-selections.command.spec.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { ICellData, ICommand, IMutationInfo, IRange } from '@univerjs/core';
|
|
2
|
+
export interface IAutoFillCommandParams {
|
|
3
|
+
worksheetId?: string;
|
|
4
|
+
workbookId?: string;
|
|
5
|
+
applyRange: IRange;
|
|
6
|
+
selectionRange: IRange;
|
|
7
|
+
applyDatas: ICellData[][];
|
|
8
|
+
extendMutations: {
|
|
9
|
+
undo: IMutationInfo[];
|
|
10
|
+
redo: IMutationInfo[];
|
|
11
|
+
};
|
|
12
|
+
applyMergeRanges?: IRange[];
|
|
13
|
+
}
|
|
14
|
+
export declare const AutoFillCommand: ICommand;
|
|
15
|
+
export interface IAutoClearContentCommand {
|
|
16
|
+
clearRange: IRange;
|
|
17
|
+
selectionRange: IRange;
|
|
18
|
+
}
|
|
19
|
+
export declare const AutoClearContentCommand: ICommand;
|
|
20
|
+
//# sourceMappingURL=auto-fill.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auto-fill.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/auto-fill.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,EAA6B,MAAM,gBAAgB,CAAC;AA0B5G,MAAM,WAAW,sBAAsB;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,SAAS,EAAE,EAAE,CAAC;IAC1B,eAAe,EAAE;QAAE,IAAI,EAAE,aAAa,EAAE,CAAC;QAAC,IAAI,EAAE,aAAa,EAAE,CAAA;KAAE,CAAC;IAClE,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC/B;AAED,eAAO,MAAM,eAAe,EAAE,QAgI7B,CAAC;AAEF,MAAM,WAAW,wBAAwB;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,eAAO,MAAM,uBAAuB,EAAE,QA2DrC,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ICommand, IMultiCommand } from '@univerjs/core';
|
|
2
|
+
export declare const SheetCopyCommand: IMultiCommand;
|
|
3
|
+
export declare const SheetCutCommand: IMultiCommand;
|
|
4
|
+
export interface ISheetPasteParams {
|
|
5
|
+
value: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const SheetPasteCommand: IMultiCommand;
|
|
8
|
+
export declare const SheetPasteValueCommand: ICommand;
|
|
9
|
+
export declare const SheetPasteFormatCommand: ICommand;
|
|
10
|
+
export declare const SheetPasteColWidthCommand: ICommand;
|
|
11
|
+
export declare const SheetPasteBesidesBorderCommand: ICommand;
|
|
12
|
+
//# sourceMappingURL=clipboard.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clipboard.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/clipboard.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAQ9D,eAAO,MAAM,gBAAgB,EAAE,aAW9B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,aAW7B,CAAC;AAEF,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,iBAAiB,EAAE,aAqC/B,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,QAOpC,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,QASrC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,QASvC,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,QAS5C,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { ICommand } from '@univerjs/core';
|
|
2
|
+
/**
|
|
3
|
+
* It is used to set the bold style of selections or one cell, need to distinguish between
|
|
4
|
+
* **selection state** and **edit state**. If you are in the selective state,
|
|
5
|
+
* you need to set the style on the cell and the style on the rich text(p textRuns) at the same time,
|
|
6
|
+
* and if it is only in edit state, then you only need to set the style of the rich text(p textRuns)
|
|
7
|
+
*/
|
|
8
|
+
export declare const SetRangeBoldCommand: ICommand;
|
|
9
|
+
export declare const SetRangeItalicCommand: ICommand;
|
|
10
|
+
export declare const SetRangeUnderlineCommand: ICommand;
|
|
11
|
+
export declare const SetRangeStrickThroughCommand: ICommand;
|
|
12
|
+
export declare const SetRangeFontSizeCommand: ICommand;
|
|
13
|
+
export declare const SetRangeFontFamilyCommand: ICommand;
|
|
14
|
+
export declare const SetRangeTextColorCommand: ICommand;
|
|
15
|
+
//# sourceMappingURL=inline-format.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inline-format.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/inline-format.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAqB/C;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,EAAE,QAcjC,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,QAcnC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,QActC,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,QAc1C,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,QAcrC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,QAcvC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,QActC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"refill.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/refill.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAW/C,eAAO,MAAM,aAAa,EAAE,QAQ3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rename.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/rename.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAU/C,eAAO,MAAM,oBAAoB,EAAE,QAUlC,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ICommand } from '@univerjs/core';
|
|
2
|
+
import { FormatPainterStatus } from '../../services/format-painter/format-painter.service';
|
|
3
|
+
export interface ISetFormatPainterCommandParams {
|
|
4
|
+
status: FormatPainterStatus;
|
|
5
|
+
}
|
|
6
|
+
export declare const SetInfiniteFormatPainterCommand: ICommand;
|
|
7
|
+
export declare const SetOnceFormatPainterCommand: ICommand;
|
|
8
|
+
export interface ISetCopySelectionCommandParams {
|
|
9
|
+
show?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const SetCopySelectionCommand: ICommand;
|
|
12
|
+
//# sourceMappingURL=set-format-painter.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-format-painter.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-format-painter.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAK/C,OAAO,EAAE,mBAAmB,EAAyB,MAAM,sDAAsD,CAAC;AAIlH,MAAM,WAAW,8BAA8B;IAC3C,MAAM,EAAE,mBAAmB,CAAC;CAC/B;AAED,eAAO,MAAM,+BAA+B,EAAE,QAmB7C,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,QAkBzC,CAAC;AAEF,MAAM,WAAW,8BAA8B;IAC3C,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,eAAO,MAAM,uBAAuB,EAAE,QAqCrC,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ICommand } from '@univerjs/core';
|
|
2
|
+
export declare enum SetSelectionFrozenType {
|
|
3
|
+
RowColumn = 0,
|
|
4
|
+
Row = 1,
|
|
5
|
+
Column = 2
|
|
6
|
+
}
|
|
7
|
+
export interface ISetSelectionFrozenCommandParams {
|
|
8
|
+
type?: SetSelectionFrozenType;
|
|
9
|
+
}
|
|
10
|
+
export declare const SetSelectionFrozenCommand: ICommand<ISetSelectionFrozenCommandParams>;
|
|
11
|
+
export declare const SetRowFrozenCommand: ICommand;
|
|
12
|
+
export declare const SetColumnFrozenCommand: ICommand;
|
|
13
|
+
export declare const CancelFrozenCommand: ICommand;
|
|
14
|
+
//# sourceMappingURL=set-frozen.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-frozen.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-frozen.command.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAO/C,oBAAY,sBAAsB;IAC9B,SAAS,IAAI;IACb,GAAG,IAAI;IACP,MAAM,IAAI;CACb;AAED,MAAM,WAAW,gCAAgC;IAC7C,IAAI,CAAC,EAAE,sBAAsB,CAAC;CACjC;AAED,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,gCAAgC,CAmEhF,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,QAWjC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,QAWpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,QA+BjC,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ICommand } from '@univerjs/core';
|
|
2
|
+
export interface IScrollCommandParams {
|
|
3
|
+
offsetX?: number;
|
|
4
|
+
offsetY?: number;
|
|
5
|
+
sheetViewStartRow?: number;
|
|
6
|
+
sheetViewStartColumn?: number;
|
|
7
|
+
}
|
|
8
|
+
export interface ISetScrollRelativeCommandParams {
|
|
9
|
+
offsetX?: number;
|
|
10
|
+
offsetY?: number;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* This command is used to manage the scroll by relative offset
|
|
14
|
+
*/
|
|
15
|
+
export declare const SetScrollRelativeCommand: ICommand<ISetScrollRelativeCommandParams>;
|
|
16
|
+
/**
|
|
17
|
+
* This command is used to manage the scroll position of the current view by specifying the cell index of the top left cell
|
|
18
|
+
*/
|
|
19
|
+
export declare const ScrollCommand: ICommand<IScrollCommandParams>;
|
|
20
|
+
/**
|
|
21
|
+
* This command is reset the scroll position of the current view to 0 ,0
|
|
22
|
+
*/
|
|
23
|
+
export declare const RestScrollCommand: ICommand<{}>;
|
|
24
|
+
//# sourceMappingURL=set-scroll.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-scroll.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-scroll.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAM/C,MAAM,WAAW,oBAAoB;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,oBAAoB,CAAC,EAAE,MAAM,CAAC;CACjC;AAED,MAAM,WAAW,+BAA+B;IAC5C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,QAAQ,CAAC,+BAA+B,CA4B9E,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,QAAQ,CAAC,oBAAoB,CAqCxD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,QAAQ,CAAC,EAAE,CAsB1C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-selection-frozen.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-selection-frozen.command.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAS/C,eAAO,MAAM,yBAAyB,EAAE,QAkEvC,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { Direction, ICommand } from '@univerjs/core';
|
|
2
|
+
import { KeyCode } from '@univerjs/ui';
|
|
3
|
+
export declare enum JumpOver {
|
|
4
|
+
moveStopeOne = 0,
|
|
5
|
+
moveGap = 1,
|
|
6
|
+
moveStepPage = 2,
|
|
7
|
+
moveStepEnd = 3
|
|
8
|
+
}
|
|
9
|
+
export interface IMoveSelectionCommandParams {
|
|
10
|
+
direction: Direction;
|
|
11
|
+
jumpOver?: JumpOver;
|
|
12
|
+
nextStep?: number;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Move selection
|
|
16
|
+
*/
|
|
17
|
+
export declare const MoveSelectionCommand: ICommand<IMoveSelectionCommandParams>;
|
|
18
|
+
export interface IMoveSelectionEnterAndTabCommandParams {
|
|
19
|
+
direction: Direction;
|
|
20
|
+
keycode: KeyCode;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Move selection for enter and tab.
|
|
24
|
+
*/
|
|
25
|
+
export declare const MoveSelectionEnterAndTabCommand: ICommand<IMoveSelectionEnterAndTabCommandParams>;
|
|
26
|
+
export interface IExpandSelectionCommandParams {
|
|
27
|
+
direction: Direction;
|
|
28
|
+
jumpOver?: JumpOver;
|
|
29
|
+
nextStep?: number;
|
|
30
|
+
}
|
|
31
|
+
export declare const ExpandSelectionCommand: ICommand<IExpandSelectionCommandParams>;
|
|
32
|
+
export interface ISelectAllCommandParams {
|
|
33
|
+
expandToGapFirst?: boolean;
|
|
34
|
+
loop?: boolean;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* This command expand selection to all neighbor ranges. If there are no neighbor ranges. Select the whole sheet.
|
|
38
|
+
*/
|
|
39
|
+
export declare const SelectAllCommand: ICommand<ISelectAllCommandParams>;
|
|
40
|
+
//# sourceMappingURL=set-selection.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-selection.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-selection.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAU,MAAM,gBAAgB,CAAC;AAkBlE,OAAO,EAAE,OAAO,EAA6B,MAAM,cAAc,CAAC;AAKlE,oBAAY,QAAQ;IAChB,YAAY,IAAA;IACZ,OAAO,IAAA;IACP,YAAY,IAAA;IACZ,WAAW,IAAA;CACd;AAED,MAAM,WAAW,2BAA2B;IACxC,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,QAAQ,CAAC,2BAA2B,CA6DtE,CAAC;AAEF,MAAM,WAAW,sCAAsC;IACnD,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;CACpB;AAED;;GAEG;AACH,eAAO,MAAM,+BAA+B,EAAE,QAAQ,CAAC,sCAAsC,CAkI5F,CAAC;AAEF,MAAM,WAAW,6BAA6B;IAC1C,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAID,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,6BAA6B,CAmD1E,CAAC;AAEF,MAAM,WAAW,uBAAuB;IACpC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAMD;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,QAAQ,CAAC,uBAAuB,CA6E9D,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ICommand } from '@univerjs/core';
|
|
2
|
+
export interface ISetZoomRatioCommandParams {
|
|
3
|
+
zoomRatio: number;
|
|
4
|
+
workbookId: string;
|
|
5
|
+
worksheetId: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IChangeZoomRatioCommandParams {
|
|
8
|
+
reset?: boolean;
|
|
9
|
+
delta: number;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Zoom
|
|
13
|
+
*/
|
|
14
|
+
export declare const ChangeZoomRatioCommand: ICommand<IChangeZoomRatioCommandParams>;
|
|
15
|
+
export declare const SetZoomRatioCommand: ICommand<ISetZoomRatioCommandParams>;
|
|
16
|
+
//# sourceMappingURL=set-zoom-ratio.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-zoom-ratio.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/set-zoom-ratio.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAM/C,MAAM,WAAW,0BAA0B;IACvC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACvB;AACD,MAAM,WAAW,6BAA6B;IAC1C,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AAEH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,6BAA6B,CAwB1E,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,QAAQ,CAAC,0BAA0B,CAepE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unhide.command.d.ts","sourceRoot":"","sources":["../../../../src/commands/commands/unhide.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAM/C,eAAO,MAAM,mBAAmB,EAAE,QASjC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IOperation } from '@univerjs/core';
|
|
2
|
+
import type { IEditorBridgeServiceParam } from '../../services/editor-bridge.service';
|
|
3
|
+
export declare const SetActivateCellEditOperation: IOperation<IEditorBridgeServiceParam>;
|
|
4
|
+
//# sourceMappingURL=activate-cell-edit.operation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activate-cell-edit.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/activate-cell-edit.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AAGtF,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,yBAAyB,CAU9E,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { IOperation } from '@univerjs/core';
|
|
2
|
+
import type { IEditorBridgeServiceVisibleParam } from '../../services/editor-bridge.service';
|
|
3
|
+
export declare const SetCellEditVisibleOperation: IOperation<IEditorBridgeServiceVisibleParam>;
|
|
4
|
+
/**
|
|
5
|
+
* When the editor is not clicked to change the cursor,
|
|
6
|
+
* the arrow keys will exit editing and move the cell.
|
|
7
|
+
*/
|
|
8
|
+
export declare const SetCellEditVisibleArrowOperation: IOperation<IEditorBridgeServiceVisibleParam>;
|
|
9
|
+
//# sourceMappingURL=cell-edit.operation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cell-edit.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/cell-edit.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,sCAAsC,CAAC;AAG7F,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,gCAAgC,CAcpF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,gCAAgC,CAIzF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scroll.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/scroll.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,uCAAuC,CAAC;AAGvF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,yBAAyB,CAmBpE,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { IOperation } from '@univerjs/core';
|
|
2
|
+
import type { ISelectionWithStyle } from '@univerjs/sheets';
|
|
3
|
+
export interface ISetCopySelectionsOperationParams {
|
|
4
|
+
workbookId: string;
|
|
5
|
+
worksheetId: string;
|
|
6
|
+
pluginName: string;
|
|
7
|
+
selections: ISelectionWithStyle[];
|
|
8
|
+
show: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare const FORMAT_PAINTER_SELECTION_PLUGIN_NAME = "formatPainterSelectionPluginName";
|
|
11
|
+
export declare const SetCopySelectionsOperation: IOperation<ISetCopySelectionsOperationParams>;
|
|
12
|
+
//# sourceMappingURL=selection.operation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selection.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/selection.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAK5D,MAAM,WAAW,iCAAiC;IAC9C,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,mBAAmB,EAAE,CAAC;IAClC,IAAI,EAAE,OAAO,CAAC;CACjB;AAED,eAAO,MAAM,oCAAoC,qCAAqC,CAAC;AAEvF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,iCAAiC,CAiCpF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-editor-resize.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/set-editor-resize.operation.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,eAAO,MAAM,wBAAwB,EAAE,UAItC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IOperation } from '@univerjs/core';
|
|
2
|
+
import type { FormatPainterStatus } from '../../services/format-painter/format-painter.service';
|
|
3
|
+
export interface ISetFormatPainterOperationParams {
|
|
4
|
+
status: FormatPainterStatus;
|
|
5
|
+
}
|
|
6
|
+
export declare const SetFormatPainterOperation: IOperation<ISetFormatPainterOperationParams>;
|
|
7
|
+
//# sourceMappingURL=set-format-painter.operation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-format-painter.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/set-format-painter.operation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sDAAsD,CAAC;AAGhG,MAAM,WAAW,gCAAgC;IAC7C,MAAM,EAAE,mBAAmB,CAAC;CAC/B;AACD,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,gCAAgC,CAYlF,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { IOperation } from '@univerjs/core';
|
|
2
|
+
import type { IAccessor } from '@wendellhu/redi';
|
|
3
|
+
export interface ISetZoomRatioOperationParams {
|
|
4
|
+
zoomRatio: number;
|
|
5
|
+
workbookId: string;
|
|
6
|
+
worksheetId: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const SetZoomRatioUndoMutationFactory: (accessor: IAccessor, params: ISetZoomRatioOperationParams) => ISetZoomRatioOperationParams;
|
|
9
|
+
export declare const SetZoomRatioOperation: IOperation<ISetZoomRatioOperationParams>;
|
|
10
|
+
//# sourceMappingURL=set-zoom-ratio.operation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"set-zoom-ratio.operation.d.ts","sourceRoot":"","sources":["../../../../src/commands/operations/set-zoom-ratio.operation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAEjD,MAAM,WAAW,4BAA4B;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACvB;AAED,eAAO,MAAM,+BAA+B,aAC9B,SAAS,UACX,4BAA4B,KACrC,4BAQF,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,4BAA4B,CAkB1E,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare enum SHEET_VIEW_KEY {
|
|
2
|
+
MAIN = "__SpreadsheetRender__",
|
|
3
|
+
ROW = "__SpreadsheetRowHeader__",
|
|
4
|
+
COLUMN = "__SpreadsheetColumnHeader__",
|
|
5
|
+
LEFT_TOP = "__SpreadsheetLeftTopPlaceholder__"
|
|
6
|
+
}
|
|
7
|
+
export declare enum VIEWPORT_KEY {
|
|
8
|
+
VIEW_MAIN = "viewMain",
|
|
9
|
+
VIEW_MAIN_LEFT_TOP = "viewMainLeftTop",
|
|
10
|
+
VIEW_MAIN_TOP = "viewMainTop",
|
|
11
|
+
VIEW_MAIN_LEFT = "viewMainLeft",
|
|
12
|
+
VIEW_ROW_TOP = "viewRowTop",
|
|
13
|
+
VIEW_ROW_BOTTOM = "viewRowBottom",
|
|
14
|
+
VIEW_COLUMN_LEFT = "viewColumnLeft",
|
|
15
|
+
VIEW_COLUMN_RIGHT = "viewColumnRight",
|
|
16
|
+
VIEW_LEFT_TOP = "viewLeftTop"
|
|
17
|
+
}
|
|
18
|
+
export declare const SHEET_COMPONENT_MAIN_LAYER_INDEX = 0;
|
|
19
|
+
export declare const SHEET_COMPONENT_HEADER_LAYER_INDEX = 2;
|
|
20
|
+
export declare const SHEET_ZOOM_RANGE: number[];
|
|
21
|
+
export declare const SHEET_COMPONENT_UNHIDE_LAYER_INDEX = 1001;
|
|
22
|
+
//# sourceMappingURL=keys.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["../../../src/common/keys.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACtB,IAAI,0BAA0B;IAC9B,GAAG,6BAA6B;IAChC,MAAM,gCAAgC;IACtC,QAAQ,sCAAsC;CACjD;AAED,oBAAY,YAAY;IACpB,SAAS,aAAa;IACtB,kBAAkB,oBAAoB;IACtC,aAAa,gBAAgB;IAC7B,cAAc,iBAAiB;IAE/B,YAAY,eAAe;IAC3B,eAAe,kBAAkB;IACjC,gBAAgB,mBAAmB;IACnC,iBAAiB,oBAAoB;IACrC,aAAa,gBAAgB;CAChC;AAED,eAAO,MAAM,gCAAgC,IAAI,CAAC;AAElD,eAAO,MAAM,kCAAkC,IAAI,CAAC;AAGpD,eAAO,MAAM,gBAAgB,UAAY,CAAC;AAE1C,eAAO,MAAM,kCAAkC,OAAO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BorderPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/border-panel/BorderPanel.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAwB,KAAK,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAiD3E,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,qBAwFnD"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BorderStyleTypes } from '@univerjs/core';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
interface IBorderLineProps {
|
|
4
|
+
type: BorderStyleTypes;
|
|
5
|
+
}
|
|
6
|
+
export declare function BorderLine(props: IBorderLineProps): React.JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=BorderLine.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BorderLine.d.ts","sourceRoot":"","sources":["../../../../../src/components/border-panel/border-line/BorderLine.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,UAAU,gBAAgB;IACtB,IAAI,EAAE,gBAAgB,CAAC;CAC1B;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,gBAAgB,qBA2BjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BorderDashDot.d.ts","sourceRoot":"","sources":["../../../../../../src/components/border-panel/border-line/icons/BorderDashDot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,aAAa,yBA8BzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BorderDashDotDot.d.ts","sourceRoot":"","sources":["../../../../../../src/components/border-panel/border-line/icons/BorderDashDotDot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,gBAAgB,yBA+B5B,CAAC"}
|