@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,471 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
spreadsheetLabel: string;
|
|
3
|
+
spreadsheetRightLabel: string;
|
|
4
|
+
toolbar: {
|
|
5
|
+
undo: string;
|
|
6
|
+
redo: string;
|
|
7
|
+
formatPainter: string;
|
|
8
|
+
currencyFormat: string;
|
|
9
|
+
percentageFormat: string;
|
|
10
|
+
numberDecrease: string;
|
|
11
|
+
numberIncrease: string;
|
|
12
|
+
moreFormats: string;
|
|
13
|
+
font: string;
|
|
14
|
+
fontSize: string;
|
|
15
|
+
bold: string;
|
|
16
|
+
italic: string;
|
|
17
|
+
strikethrough: string;
|
|
18
|
+
underline: string;
|
|
19
|
+
textColor: {
|
|
20
|
+
main: string;
|
|
21
|
+
right: string;
|
|
22
|
+
};
|
|
23
|
+
resetColor: string;
|
|
24
|
+
customColor: string;
|
|
25
|
+
alternatingColors: string;
|
|
26
|
+
confirmColor: string;
|
|
27
|
+
cancelColor: string;
|
|
28
|
+
collapse: string;
|
|
29
|
+
fillColor: {
|
|
30
|
+
main: string;
|
|
31
|
+
right: string;
|
|
32
|
+
};
|
|
33
|
+
border: {
|
|
34
|
+
main: string;
|
|
35
|
+
right: string;
|
|
36
|
+
};
|
|
37
|
+
mergeCell: {
|
|
38
|
+
main: string;
|
|
39
|
+
right: string;
|
|
40
|
+
};
|
|
41
|
+
horizontalAlignMode: {
|
|
42
|
+
main: string;
|
|
43
|
+
right: string;
|
|
44
|
+
};
|
|
45
|
+
verticalAlignMode: {
|
|
46
|
+
main: string;
|
|
47
|
+
right: string;
|
|
48
|
+
};
|
|
49
|
+
textWrapMode: {
|
|
50
|
+
main: string;
|
|
51
|
+
right: string;
|
|
52
|
+
};
|
|
53
|
+
textRotateMode: {
|
|
54
|
+
main: string;
|
|
55
|
+
right: string;
|
|
56
|
+
};
|
|
57
|
+
freezeTopRow: string;
|
|
58
|
+
sortAndFilter: string;
|
|
59
|
+
findAndReplace: string;
|
|
60
|
+
sum: string;
|
|
61
|
+
autoSum: string;
|
|
62
|
+
moreFunction: string;
|
|
63
|
+
conditionalFormat: string;
|
|
64
|
+
comment: string;
|
|
65
|
+
pivotTable: string;
|
|
66
|
+
chart: string;
|
|
67
|
+
screenshot: string;
|
|
68
|
+
splitColumn: string;
|
|
69
|
+
insertImage: string;
|
|
70
|
+
insertLink: string;
|
|
71
|
+
dataValidation: string;
|
|
72
|
+
protection: string;
|
|
73
|
+
clearText: string;
|
|
74
|
+
noColorSelectedText: string;
|
|
75
|
+
toolMore: string;
|
|
76
|
+
toolLess: string;
|
|
77
|
+
toolClose: string;
|
|
78
|
+
toolMoreTip: string;
|
|
79
|
+
moreOptions: string;
|
|
80
|
+
cellFormat: string;
|
|
81
|
+
print: string;
|
|
82
|
+
borderMethod: {
|
|
83
|
+
top: string;
|
|
84
|
+
bottom: string;
|
|
85
|
+
left: string;
|
|
86
|
+
right: string;
|
|
87
|
+
};
|
|
88
|
+
more: string;
|
|
89
|
+
};
|
|
90
|
+
defaultFmt: {
|
|
91
|
+
Automatic: {
|
|
92
|
+
text: string;
|
|
93
|
+
value: string;
|
|
94
|
+
example: string;
|
|
95
|
+
};
|
|
96
|
+
Number: {
|
|
97
|
+
text: string;
|
|
98
|
+
value: string;
|
|
99
|
+
example: string;
|
|
100
|
+
};
|
|
101
|
+
Percent: {
|
|
102
|
+
text: string;
|
|
103
|
+
value: string;
|
|
104
|
+
example: string;
|
|
105
|
+
};
|
|
106
|
+
PlainText: {
|
|
107
|
+
text: string;
|
|
108
|
+
value: string;
|
|
109
|
+
example: string;
|
|
110
|
+
};
|
|
111
|
+
Scientific: {
|
|
112
|
+
text: string;
|
|
113
|
+
value: string;
|
|
114
|
+
example: string;
|
|
115
|
+
};
|
|
116
|
+
Accounting: {
|
|
117
|
+
text: string;
|
|
118
|
+
value: string;
|
|
119
|
+
example: string;
|
|
120
|
+
};
|
|
121
|
+
Thousand: {
|
|
122
|
+
text: string;
|
|
123
|
+
value: string;
|
|
124
|
+
example: string;
|
|
125
|
+
};
|
|
126
|
+
Currency: {
|
|
127
|
+
text: string;
|
|
128
|
+
value: string;
|
|
129
|
+
example: string;
|
|
130
|
+
};
|
|
131
|
+
Digit: {
|
|
132
|
+
text: string;
|
|
133
|
+
value: string;
|
|
134
|
+
example: string;
|
|
135
|
+
};
|
|
136
|
+
Date: {
|
|
137
|
+
text: string;
|
|
138
|
+
value: string;
|
|
139
|
+
example: string;
|
|
140
|
+
};
|
|
141
|
+
Time: {
|
|
142
|
+
text: string;
|
|
143
|
+
value: string;
|
|
144
|
+
example: string;
|
|
145
|
+
};
|
|
146
|
+
Time24H: {
|
|
147
|
+
text: string;
|
|
148
|
+
value: string;
|
|
149
|
+
example: string;
|
|
150
|
+
};
|
|
151
|
+
DateTime: {
|
|
152
|
+
text: string;
|
|
153
|
+
value: string;
|
|
154
|
+
example: string;
|
|
155
|
+
};
|
|
156
|
+
DateTime24H: {
|
|
157
|
+
text: string;
|
|
158
|
+
value: string;
|
|
159
|
+
example: string;
|
|
160
|
+
};
|
|
161
|
+
CustomFormats: {
|
|
162
|
+
text: string;
|
|
163
|
+
value: string;
|
|
164
|
+
example: string;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
format: {
|
|
168
|
+
moreCurrency: string;
|
|
169
|
+
moreDateTime: string;
|
|
170
|
+
moreNumber: string;
|
|
171
|
+
titleCurrency: string;
|
|
172
|
+
decimalPlaces: string;
|
|
173
|
+
titleDateTime: string;
|
|
174
|
+
titleNumber: string;
|
|
175
|
+
};
|
|
176
|
+
fontFamily: {
|
|
177
|
+
TimesNewRoman: string;
|
|
178
|
+
Arial: string;
|
|
179
|
+
Tahoma: string;
|
|
180
|
+
Verdana: string;
|
|
181
|
+
MicrosoftYaHei: string;
|
|
182
|
+
SimSun: string;
|
|
183
|
+
SimHei: string;
|
|
184
|
+
Kaiti: string;
|
|
185
|
+
FangSong: string;
|
|
186
|
+
NSimSun: string;
|
|
187
|
+
STXinwei: string;
|
|
188
|
+
STXingkai: string;
|
|
189
|
+
STLiti: string;
|
|
190
|
+
HanaleiFill: string;
|
|
191
|
+
Anton: string;
|
|
192
|
+
Pacifico: string;
|
|
193
|
+
};
|
|
194
|
+
print: {
|
|
195
|
+
normalBtn: string;
|
|
196
|
+
layoutBtn: string;
|
|
197
|
+
pageBtn: string;
|
|
198
|
+
menuItemPrint: string;
|
|
199
|
+
menuItemAreas: string;
|
|
200
|
+
menuItemRows: string;
|
|
201
|
+
menuItemColumns: string;
|
|
202
|
+
};
|
|
203
|
+
align: {
|
|
204
|
+
left: string;
|
|
205
|
+
center: string;
|
|
206
|
+
right: string;
|
|
207
|
+
top: string;
|
|
208
|
+
middle: string;
|
|
209
|
+
bottom: string;
|
|
210
|
+
};
|
|
211
|
+
dateFmtList: {
|
|
212
|
+
name: string;
|
|
213
|
+
value: string;
|
|
214
|
+
}[];
|
|
215
|
+
numFmtList: {
|
|
216
|
+
name: string;
|
|
217
|
+
value: string;
|
|
218
|
+
}[];
|
|
219
|
+
button: {
|
|
220
|
+
confirm: string;
|
|
221
|
+
cancel: string;
|
|
222
|
+
close: string;
|
|
223
|
+
update: string;
|
|
224
|
+
delete: string;
|
|
225
|
+
insert: string;
|
|
226
|
+
prevPage: string;
|
|
227
|
+
nextPage: string;
|
|
228
|
+
total: string;
|
|
229
|
+
};
|
|
230
|
+
punctuation: {
|
|
231
|
+
tab: string;
|
|
232
|
+
semicolon: string;
|
|
233
|
+
comma: string;
|
|
234
|
+
space: string;
|
|
235
|
+
};
|
|
236
|
+
colorPicker: {
|
|
237
|
+
collapse: string;
|
|
238
|
+
customColor: string;
|
|
239
|
+
change: string;
|
|
240
|
+
confirmColor: string;
|
|
241
|
+
cancelColor: string;
|
|
242
|
+
};
|
|
243
|
+
borderLine: {
|
|
244
|
+
borderTop: string;
|
|
245
|
+
borderBottom: string;
|
|
246
|
+
borderLeft: string;
|
|
247
|
+
borderRight: string;
|
|
248
|
+
borderNone: string;
|
|
249
|
+
borderAll: string;
|
|
250
|
+
borderOutside: string;
|
|
251
|
+
borderInside: string;
|
|
252
|
+
borderHorizontal: string;
|
|
253
|
+
borderVertical: string;
|
|
254
|
+
borderColor: string;
|
|
255
|
+
borderSize: string;
|
|
256
|
+
borderType: string;
|
|
257
|
+
};
|
|
258
|
+
merge: {
|
|
259
|
+
all: string;
|
|
260
|
+
vertical: string;
|
|
261
|
+
horizontal: string;
|
|
262
|
+
cancel: string;
|
|
263
|
+
overlappingError: string;
|
|
264
|
+
partiallyError: string;
|
|
265
|
+
};
|
|
266
|
+
textWrap: {
|
|
267
|
+
overflow: string;
|
|
268
|
+
wrap: string;
|
|
269
|
+
clip: string;
|
|
270
|
+
};
|
|
271
|
+
textRotate: {
|
|
272
|
+
none: string;
|
|
273
|
+
angleUp: string;
|
|
274
|
+
angleDown: string;
|
|
275
|
+
vertical: string;
|
|
276
|
+
rotationUp: string;
|
|
277
|
+
rotationDown: string;
|
|
278
|
+
};
|
|
279
|
+
sheetConfig: {
|
|
280
|
+
delete: string;
|
|
281
|
+
copy: string;
|
|
282
|
+
rename: string;
|
|
283
|
+
changeColor: string;
|
|
284
|
+
hide: string;
|
|
285
|
+
unhide: string;
|
|
286
|
+
moveLeft: string;
|
|
287
|
+
moveRight: string;
|
|
288
|
+
resetColor: string;
|
|
289
|
+
cancelText: string;
|
|
290
|
+
chooseText: string;
|
|
291
|
+
tipNameRepeat: string;
|
|
292
|
+
noMoreSheet: string;
|
|
293
|
+
confirmDelete: string;
|
|
294
|
+
redoDelete: string;
|
|
295
|
+
noHide: string;
|
|
296
|
+
chartEditNoOpt: string;
|
|
297
|
+
sheetNameSpecCharError: string;
|
|
298
|
+
sheetNameCannotIsEmptyError: string;
|
|
299
|
+
};
|
|
300
|
+
rightClick: {
|
|
301
|
+
copy: string;
|
|
302
|
+
copyAs: string;
|
|
303
|
+
cut: string;
|
|
304
|
+
paste: string;
|
|
305
|
+
pasteSpecial: string;
|
|
306
|
+
pasteValue: string;
|
|
307
|
+
pasteFormat: string;
|
|
308
|
+
pasteColWidth: string;
|
|
309
|
+
pasteBesidesBorder: string;
|
|
310
|
+
insert: string;
|
|
311
|
+
insertRow: string;
|
|
312
|
+
insertColumn: string;
|
|
313
|
+
delete: string;
|
|
314
|
+
deleteCell: string;
|
|
315
|
+
insertCell: string;
|
|
316
|
+
deleteSelected: string;
|
|
317
|
+
hide: string;
|
|
318
|
+
hideSelected: string;
|
|
319
|
+
showHide: string;
|
|
320
|
+
toTopAdd: string;
|
|
321
|
+
toBottomAdd: string;
|
|
322
|
+
toLeftAdd: string;
|
|
323
|
+
toRightAdd: string;
|
|
324
|
+
deleteSelectedRow: string;
|
|
325
|
+
deleteSelectedColumn: string;
|
|
326
|
+
hideSelectedRow: string;
|
|
327
|
+
showHideRow: string;
|
|
328
|
+
rowHeight: string;
|
|
329
|
+
hideSelectedColumn: string;
|
|
330
|
+
showHideColumn: string;
|
|
331
|
+
columnWidth: string;
|
|
332
|
+
to: string;
|
|
333
|
+
left: string;
|
|
334
|
+
right: string;
|
|
335
|
+
top: string;
|
|
336
|
+
bottom: string;
|
|
337
|
+
moveLeft: string;
|
|
338
|
+
moveUp: string;
|
|
339
|
+
moveRight: string;
|
|
340
|
+
moveDown: string;
|
|
341
|
+
add: string;
|
|
342
|
+
row: string;
|
|
343
|
+
column: string;
|
|
344
|
+
width: string;
|
|
345
|
+
height: string;
|
|
346
|
+
number: string;
|
|
347
|
+
confirm: string;
|
|
348
|
+
orderAZ: string;
|
|
349
|
+
orderZA: string;
|
|
350
|
+
clearSelection: string;
|
|
351
|
+
clearContent: string;
|
|
352
|
+
clearFormat: string;
|
|
353
|
+
clearAll: string;
|
|
354
|
+
matrix: string;
|
|
355
|
+
sortSelection: string;
|
|
356
|
+
filterSelection: string;
|
|
357
|
+
chartGeneration: string;
|
|
358
|
+
firstLineTitle: string;
|
|
359
|
+
untitled: string;
|
|
360
|
+
array1: string;
|
|
361
|
+
array2: string;
|
|
362
|
+
array3: string;
|
|
363
|
+
diagonal: string;
|
|
364
|
+
antiDiagonal: string;
|
|
365
|
+
diagonalOffset: string;
|
|
366
|
+
offset: string;
|
|
367
|
+
boolean: string;
|
|
368
|
+
flip: string;
|
|
369
|
+
upAndDown: string;
|
|
370
|
+
leftAndRight: string;
|
|
371
|
+
clockwise: string;
|
|
372
|
+
counterclockwise: string;
|
|
373
|
+
transpose: string;
|
|
374
|
+
matrixCalculation: string;
|
|
375
|
+
plus: string;
|
|
376
|
+
minus: string;
|
|
377
|
+
multiply: string;
|
|
378
|
+
divided: string;
|
|
379
|
+
power: string;
|
|
380
|
+
root: string;
|
|
381
|
+
log: string;
|
|
382
|
+
delete0: string;
|
|
383
|
+
removeDuplicate: string;
|
|
384
|
+
byRow: string;
|
|
385
|
+
byCol: string;
|
|
386
|
+
generateNewMatrix: string;
|
|
387
|
+
fitContent: string;
|
|
388
|
+
freeze: string;
|
|
389
|
+
freezeCol: string;
|
|
390
|
+
freezeRow: string;
|
|
391
|
+
cancelFreeze: string;
|
|
392
|
+
};
|
|
393
|
+
info: {
|
|
394
|
+
tooltip: string;
|
|
395
|
+
notChangeMerge: string;
|
|
396
|
+
detailUpdate: string;
|
|
397
|
+
detailSave: string;
|
|
398
|
+
row: string;
|
|
399
|
+
column: string;
|
|
400
|
+
loading: string;
|
|
401
|
+
copy: string;
|
|
402
|
+
return: string;
|
|
403
|
+
rename: string;
|
|
404
|
+
tips: string;
|
|
405
|
+
noName: string;
|
|
406
|
+
wait: string;
|
|
407
|
+
add: string;
|
|
408
|
+
addLast: string;
|
|
409
|
+
backTop: string;
|
|
410
|
+
pageInfo: string;
|
|
411
|
+
nextPage: string;
|
|
412
|
+
tipInputNumber: string;
|
|
413
|
+
tipInputNumberLimit: string;
|
|
414
|
+
tipRowHeightLimit: string;
|
|
415
|
+
tipColumnWidthLimit: string;
|
|
416
|
+
pageInfoFull: string;
|
|
417
|
+
};
|
|
418
|
+
clipboard: {
|
|
419
|
+
paste: {
|
|
420
|
+
exceedMaxCells: string;
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
statusbar: {
|
|
424
|
+
sum: string;
|
|
425
|
+
average: string;
|
|
426
|
+
min: string;
|
|
427
|
+
max: string;
|
|
428
|
+
count: string;
|
|
429
|
+
clickToCopy: string;
|
|
430
|
+
copied: string;
|
|
431
|
+
};
|
|
432
|
+
autoFill: {
|
|
433
|
+
copy: string;
|
|
434
|
+
series: string;
|
|
435
|
+
formatOnly: string;
|
|
436
|
+
noFormat: string;
|
|
437
|
+
};
|
|
438
|
+
rangeSelector: {
|
|
439
|
+
placeholder: string;
|
|
440
|
+
tooltip: string;
|
|
441
|
+
};
|
|
442
|
+
shortcut: {
|
|
443
|
+
sheet: {
|
|
444
|
+
'zoom-in': string;
|
|
445
|
+
'zoom-out': string;
|
|
446
|
+
'reset-zoom': string;
|
|
447
|
+
'select-below-cell': string;
|
|
448
|
+
'select-up-cell': string;
|
|
449
|
+
'select-left-cell': string;
|
|
450
|
+
'select-right-cell': string;
|
|
451
|
+
'select-next-cell': string;
|
|
452
|
+
'select-previous-cell': string;
|
|
453
|
+
'select-up-value-cell': string;
|
|
454
|
+
'select-below-value-cell': string;
|
|
455
|
+
'select-left-value-cell': string;
|
|
456
|
+
'select-right-value-cell': string;
|
|
457
|
+
'expand-selection-down': string;
|
|
458
|
+
'expand-selection-up': string;
|
|
459
|
+
'expand-selection-left': string;
|
|
460
|
+
'expand-selection-right': string;
|
|
461
|
+
'expand-selection-to-left-gap': string;
|
|
462
|
+
'expand-selection-to-below-gap': string;
|
|
463
|
+
'expand-selection-to-right-gap': string;
|
|
464
|
+
'expand-selection-to-up-gap': string;
|
|
465
|
+
'select-all': string;
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
'sheet-view': string;
|
|
469
|
+
};
|
|
470
|
+
export default _default;
|
|
471
|
+
//# sourceMappingURL=en-US.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en-US.d.ts","sourceRoot":"","sources":["../../../src/locale/en-US.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAolBE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/locale/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,SAAS,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,SAAS,CAAC"}
|