@univerjs/sheets-ui 0.1.0-alpha.1 → 0.1.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +178 -0
- package/README.md +1 -1
- package/lib/cjs/index.js +15 -21729
- package/lib/es/index.js +15140 -0
- package/lib/index.css +1 -587
- package/lib/types/basics/const/default-univer-sheet-config.d.ts +15 -1
- package/lib/types/basics/const/index.d.ts +15 -1
- package/lib/types/basics/const/plugin-name.d.ts +15 -1
- package/lib/types/basics/editor/get-editor-object.d.ts +15 -1
- package/lib/types/basics/index.d.ts +15 -1
- package/lib/types/basics/interfaces/cell.d.ts +15 -1
- package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts +16 -2
- package/lib/types/basics/interfaces/component-config/index.d.ts +15 -1
- package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts +15 -1
- package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts +15 -1
- package/lib/types/basics/interfaces/index.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/add-worksheet-merge.command.spec.d.ts +16 -0
- package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-format-painter.command.spec.d.ts +16 -0
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts +15 -1
- package/lib/types/commands/commands/add-worksheet-merge.command.d.ts +27 -0
- package/lib/types/commands/commands/auto-fill.command.d.ts +17 -3
- package/lib/types/commands/commands/clipboard.command.d.ts +15 -1
- package/lib/types/commands/commands/inline-format.command.d.ts +17 -1
- package/lib/types/commands/commands/refill.command.d.ts +15 -1
- package/lib/types/commands/commands/rename.command.d.ts +15 -1
- package/lib/types/commands/commands/set-format-painter.command.d.ts +23 -5
- package/lib/types/commands/commands/set-frozen.command.d.ts +15 -1
- package/lib/types/commands/commands/set-scroll.command.d.ts +15 -1
- package/lib/types/commands/commands/set-selection-frozen.command.d.ts +15 -1
- package/lib/types/commands/commands/set-selection.command.d.ts +15 -1
- package/lib/types/commands/commands/set-zoom-ratio.command.d.ts +17 -3
- package/lib/types/commands/commands/unhide.command.d.ts +15 -1
- package/lib/types/commands/commands/utils/selection-utils.d.ts +46 -0
- package/lib/types/commands/operations/activate-cell-edit.operation.d.ts +15 -1
- package/lib/types/commands/operations/cell-edit.operation.d.ts +15 -1
- package/lib/types/commands/operations/scroll.operation.d.ts +15 -1
- package/lib/types/commands/operations/set-editor-resize.operation.d.ts +15 -1
- package/lib/types/commands/operations/set-format-painter.operation.d.ts +15 -1
- package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts +17 -3
- package/lib/types/common/keys.d.ts +15 -1
- package/lib/types/common/utils.d.ts +25 -0
- package/lib/types/components/border-panel/BorderPanel.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/BorderLine.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts +15 -1
- package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts +15 -1
- package/lib/types/components/border-panel/interface.d.ts +15 -1
- package/lib/types/components/color-picker/index.d.ts +15 -1
- package/lib/types/components/color-picker/interface.d.ts +15 -1
- package/lib/types/components/const.d.ts +15 -1
- package/lib/types/components/font-family/FontFamily.d.ts +15 -1
- package/lib/types/components/font-family/FontFamilyItem.d.ts +15 -1
- package/lib/types/components/font-family/index.d.ts +15 -1
- package/lib/types/components/font-family/interface.d.ts +15 -1
- package/lib/types/components/font-size/FontSize.d.ts +15 -1
- package/lib/types/components/font-size/index.d.ts +15 -1
- package/lib/types/components/font-size/interface.d.ts +15 -1
- package/lib/types/components/menu-item-input/MenuItemInput.d.ts +15 -1
- package/lib/types/components/menu-item-input/index.d.ts +15 -1
- package/lib/types/components/menu-item-input/interface.d.ts +15 -1
- package/lib/types/components/range-selector/RangeSelector.d.ts +15 -1
- package/lib/types/controllers/active-worksheet/active-worksheet.controller.d.ts +33 -0
- package/lib/types/controllers/auto-fill.controller.d.ts +15 -1
- package/lib/types/controllers/auto-height.controller.d.ts +15 -1
- package/lib/types/controllers/clipboard/clipboard.controller.d.ts +15 -1
- package/lib/types/controllers/clipboard/utils.d.ts +21 -7
- package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts +15 -1
- package/lib/types/controllers/editor/editing.controller.d.ts +20 -8
- package/lib/types/controllers/editor/end-edit.controller.d.ts +18 -4
- package/lib/types/controllers/editor/formula-editor.controller.d.ts +16 -1
- package/lib/types/controllers/editor/initialize-editor.controller.d.ts +16 -8
- package/lib/types/controllers/editor/start-edit.controller.d.ts +16 -1
- package/lib/types/controllers/editor-bridge.controller.d.ts +19 -3
- package/lib/types/controllers/format-painter/format-painter.controller.d.ts +18 -3
- package/lib/types/controllers/freeze.controller.d.ts +15 -1
- package/lib/types/controllers/header-menu.controller.d.ts +15 -1
- package/lib/types/controllers/header-move.controller.d.ts +15 -1
- package/lib/types/controllers/header-resize.controller.d.ts +19 -3
- package/lib/types/controllers/header-unhide.controller.d.ts +15 -1
- package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts +15 -1
- package/lib/types/controllers/menu/__tests__/menu.spec.d.ts +15 -1
- package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts +15 -1
- package/lib/types/controllers/menu/border.menu.d.ts +15 -1
- package/lib/types/controllers/menu/clear.menu.d.ts +15 -1
- package/lib/types/controllers/menu/delete.menu.d.ts +15 -1
- package/lib/types/controllers/menu/insert.menu.d.ts +15 -1
- package/lib/types/controllers/menu/menu.d.ts +18 -1
- package/lib/types/controllers/menu/merge.menu.d.ts +15 -1
- package/lib/types/controllers/menu/sheet.menu.d.ts +15 -1
- package/lib/types/controllers/move-range.controller.d.ts +15 -1
- package/lib/types/controllers/navigation/navigation.controller.d.ts +15 -1
- package/lib/types/controllers/scroll.controller.d.ts +15 -1
- package/lib/types/controllers/selection.controller.d.ts +18 -1
- package/lib/types/controllers/sheet-render.controller.d.ts +15 -1
- package/lib/types/controllers/sheet-ui.controller.d.ts +20 -1
- package/lib/types/controllers/shortcuts/editor.shortcut.d.ts +15 -1
- package/lib/types/controllers/shortcuts/operation.shortcut.d.ts +15 -1
- package/lib/types/controllers/shortcuts/selection.shortcut.d.ts +15 -1
- package/lib/types/controllers/shortcuts/style.shortcut.d.ts +15 -1
- package/lib/types/controllers/shortcuts/utils.d.ts +15 -1
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts +15 -1
- package/lib/types/controllers/shortcuts/view.shortcut.d.ts +15 -1
- package/lib/types/controllers/status-bar.controller.d.ts +19 -4
- package/lib/types/controllers/utils/component-tools.d.ts +15 -1
- package/lib/types/controllers/zoom.controller.d.ts +15 -1
- package/lib/types/index.d.ts +32 -3
- package/lib/types/locale/en-US.d.ts +34 -1
- package/lib/types/locale/index.d.ts +15 -1
- package/lib/types/locale/zh-CN.d.ts +61 -1
- package/lib/types/services/auto-fill/auto-fill.service.d.ts +15 -1
- package/lib/types/services/auto-fill/rules.d.ts +15 -1
- package/lib/types/services/auto-fill/tools.d.ts +16 -2
- package/lib/types/services/auto-fill/type.d.ts +15 -1
- package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts +15 -1
- package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts +15 -1
- package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts +15 -1
- package/lib/types/services/clipboard/__tests__/utils.spec.d.ts +16 -0
- package/lib/types/services/clipboard/clipboard.service.d.ts +18 -2
- package/lib/types/services/clipboard/copy-content-cache.d.ts +17 -3
- package/lib/types/services/clipboard/html-to-usm/converter.d.ts +24 -2
- package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts +15 -1
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts +15 -1
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts +15 -1
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts +15 -1
- package/lib/types/services/clipboard/html-to-usm/utils.d.ts +15 -1
- package/lib/types/services/clipboard/type.d.ts +23 -7
- package/lib/types/services/clipboard/usm-to-html/convertor.d.ts +15 -1
- package/lib/types/services/clipboard/utils.d.ts +28 -0
- package/lib/types/services/editor/cell-editor-manager.service.d.ts +15 -1
- package/lib/types/services/editor/formula-editor-manager.service.d.ts +15 -1
- package/lib/types/services/editor-bridge.service.d.ts +21 -6
- package/lib/types/services/format-painter/format-painter.service.d.ts +30 -8
- package/lib/types/services/mark-selection/mark-selection.service.d.ts +18 -2
- package/lib/types/services/scroll-manager.service.d.ts +15 -1
- package/lib/types/services/selection/selection-render-model.d.ts +15 -1
- package/lib/types/services/selection/selection-render.service.d.ts +28 -12
- package/lib/types/services/selection/selection-shape-extension.d.ts +16 -2
- package/lib/types/services/selection/selection-shape.d.ts +15 -1
- package/lib/types/services/sheet-bar/sheet-bar.service.d.ts +15 -1
- package/lib/types/services/sheet-skeleton-manager.service.d.ts +15 -1
- package/lib/types/services/status-bar.service.d.ts +24 -5
- package/lib/types/sheets-ui-plugin.d.ts +16 -2
- package/lib/types/views/count-bar/CountBar.d.ts +15 -1
- package/lib/types/views/count-bar/index.d.ts +15 -1
- package/lib/types/views/count-bar/zoom-slider.d.ts +15 -1
- package/lib/types/views/editor-container/EditorContainer.d.ts +15 -1
- package/lib/types/views/editor-container/index.d.ts +15 -1
- package/lib/types/views/formula-bar/FormulaBar.d.ts +15 -1
- package/lib/types/views/formula-bar/index.d.ts +15 -1
- package/lib/types/views/header-menu-shape.d.ts +15 -1
- package/lib/types/views/header-resize-shape.d.ts +15 -1
- package/lib/types/views/header-unhide-shape.d.ts +15 -1
- package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts +15 -1
- package/lib/types/views/operate-container/OperateContainer.d.ts +15 -1
- package/lib/types/views/operate-container/index.d.ts +15 -1
- package/lib/types/views/sheet-bar/SheetBar.d.ts +15 -1
- package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts +15 -1
- package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts +15 -1
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts +15 -1
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts +15 -1
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts +17 -2
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts +19 -4
- package/lib/types/views/sheet-canvas-view.d.ts +20 -3
- package/lib/types/views/sheet-container/SheetContainer.d.ts +17 -3
- package/lib/types/views/status-bar/CopyableStatisticItem.d.ts +18 -3
- package/lib/types/views/status-bar/StatusBar.d.ts +15 -1
- package/lib/umd/index.js +15 -0
- package/package.json +40 -30
- package/LICENSE +0 -21
- package/lib/cjs/locale/en-US.js +0 -605
- package/lib/cjs/locale/zh-CN.js +0 -442
- package/lib/esm/index.js +0 -21640
- package/lib/esm/locale/en-US.js +0 -584
- package/lib/esm/locale/zh-CN.js +0 -421
- package/lib/types/basics/const/default-univer-sheet-config.d.ts.map +0 -1
- package/lib/types/basics/const/index.d.ts.map +0 -1
- package/lib/types/basics/const/plugin-name.d.ts.map +0 -1
- package/lib/types/basics/editor/get-editor-object.d.ts.map +0 -1
- package/lib/types/basics/index.d.ts.map +0 -1
- package/lib/types/basics/interfaces/cell.d.ts.map +0 -1
- package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts.map +0 -1
- package/lib/types/basics/interfaces/component-config/index.d.ts.map +0 -1
- package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts.map +0 -1
- package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts.map +0 -1
- package/lib/types/basics/interfaces/index.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts.map +0 -1
- package/lib/types/commands/commands/auto-fill.command.d.ts.map +0 -1
- package/lib/types/commands/commands/clipboard.command.d.ts.map +0 -1
- package/lib/types/commands/commands/inline-format.command.d.ts.map +0 -1
- package/lib/types/commands/commands/refill.command.d.ts.map +0 -1
- package/lib/types/commands/commands/rename.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-format-painter.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-frozen.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-scroll.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-selection-frozen.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-selection.command.d.ts.map +0 -1
- package/lib/types/commands/commands/set-zoom-ratio.command.d.ts.map +0 -1
- package/lib/types/commands/commands/unhide.command.d.ts.map +0 -1
- package/lib/types/commands/operations/activate-cell-edit.operation.d.ts.map +0 -1
- package/lib/types/commands/operations/cell-edit.operation.d.ts.map +0 -1
- package/lib/types/commands/operations/scroll.operation.d.ts.map +0 -1
- package/lib/types/commands/operations/selection.operation.d.ts +0 -12
- package/lib/types/commands/operations/selection.operation.d.ts.map +0 -1
- package/lib/types/commands/operations/set-editor-resize.operation.d.ts.map +0 -1
- package/lib/types/commands/operations/set-format-painter.operation.d.ts.map +0 -1
- package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts.map +0 -1
- package/lib/types/common/keys.d.ts.map +0 -1
- package/lib/types/components/border-panel/BorderPanel.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/BorderLine.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts.map +0 -1
- package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts.map +0 -1
- package/lib/types/components/border-panel/index.d.ts +0 -1
- package/lib/types/components/border-panel/index.d.ts.map +0 -1
- package/lib/types/components/border-panel/interface.d.ts.map +0 -1
- package/lib/types/components/color-picker/index.d.ts.map +0 -1
- package/lib/types/components/color-picker/interface.d.ts.map +0 -1
- package/lib/types/components/const.d.ts.map +0 -1
- package/lib/types/components/font-family/FontFamily.d.ts.map +0 -1
- package/lib/types/components/font-family/FontFamilyItem.d.ts.map +0 -1
- package/lib/types/components/font-family/index.d.ts.map +0 -1
- package/lib/types/components/font-family/interface.d.ts.map +0 -1
- package/lib/types/components/font-size/FontSize.d.ts.map +0 -1
- package/lib/types/components/font-size/index.d.ts.map +0 -1
- package/lib/types/components/font-size/interface.d.ts.map +0 -1
- package/lib/types/components/menu-item-input/MenuItemInput.d.ts.map +0 -1
- package/lib/types/components/menu-item-input/index.d.ts.map +0 -1
- package/lib/types/components/menu-item-input/interface.d.ts.map +0 -1
- package/lib/types/components/range-selector/RangeSelector.d.ts.map +0 -1
- package/lib/types/controllers/auto-fill.controller.d.ts.map +0 -1
- package/lib/types/controllers/auto-height.controller.d.ts.map +0 -1
- package/lib/types/controllers/clipboard/clipboard.controller.d.ts.map +0 -1
- package/lib/types/controllers/clipboard/utils.d.ts.map +0 -1
- package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts.map +0 -1
- package/lib/types/controllers/editor/editing.controller.d.ts.map +0 -1
- package/lib/types/controllers/editor/end-edit.controller.d.ts.map +0 -1
- package/lib/types/controllers/editor/formula-editor.controller.d.ts.map +0 -1
- package/lib/types/controllers/editor/initialize-editor.controller.d.ts.map +0 -1
- package/lib/types/controllers/editor/start-edit.controller.d.ts.map +0 -1
- package/lib/types/controllers/editor-bridge.controller.d.ts.map +0 -1
- package/lib/types/controllers/format-painter/format-painter.controller.d.ts.map +0 -1
- package/lib/types/controllers/freeze.controller.d.ts.map +0 -1
- package/lib/types/controllers/header-menu.controller.d.ts.map +0 -1
- package/lib/types/controllers/header-move.controller.d.ts.map +0 -1
- package/lib/types/controllers/header-resize.controller.d.ts.map +0 -1
- package/lib/types/controllers/header-unhide.controller.d.ts.map +0 -1
- package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts.map +0 -1
- package/lib/types/controllers/menu/__tests__/menu.spec.d.ts.map +0 -1
- package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts.map +0 -1
- package/lib/types/controllers/menu/border.menu.d.ts.map +0 -1
- package/lib/types/controllers/menu/clear.menu.d.ts.map +0 -1
- package/lib/types/controllers/menu/delete.menu.d.ts.map +0 -1
- package/lib/types/controllers/menu/insert.menu.d.ts.map +0 -1
- package/lib/types/controllers/menu/menu.d.ts.map +0 -1
- package/lib/types/controllers/menu/merge.menu.d.ts.map +0 -1
- package/lib/types/controllers/menu/sheet.menu.d.ts.map +0 -1
- package/lib/types/controllers/move-range.controller.d.ts.map +0 -1
- package/lib/types/controllers/navigation/navigation.controller.d.ts.map +0 -1
- package/lib/types/controllers/scroll.controller.d.ts.map +0 -1
- package/lib/types/controllers/selection.controller.d.ts.map +0 -1
- package/lib/types/controllers/sheet-render.controller.d.ts.map +0 -1
- package/lib/types/controllers/sheet-ui.controller.d.ts.map +0 -1
- package/lib/types/controllers/shortcuts/editor.shortcut.d.ts.map +0 -1
- package/lib/types/controllers/shortcuts/operation.shortcut.d.ts.map +0 -1
- package/lib/types/controllers/shortcuts/selection.shortcut.d.ts.map +0 -1
- package/lib/types/controllers/shortcuts/style.shortcut.d.ts.map +0 -1
- package/lib/types/controllers/shortcuts/utils.d.ts.map +0 -1
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts.map +0 -1
- package/lib/types/controllers/shortcuts/view.shortcut.d.ts.map +0 -1
- package/lib/types/controllers/status-bar.controller.d.ts.map +0 -1
- package/lib/types/controllers/utils/component-tools.d.ts.map +0 -1
- package/lib/types/controllers/zoom.controller.d.ts.map +0 -1
- package/lib/types/index.d.ts.map +0 -1
- package/lib/types/locale/en-US.d.ts.map +0 -1
- package/lib/types/locale/index.d.ts.map +0 -1
- package/lib/types/locale/zh-CN.d.ts.map +0 -1
- package/lib/types/services/auto-fill/auto-fill.service.d.ts.map +0 -1
- package/lib/types/services/auto-fill/rules.d.ts.map +0 -1
- package/lib/types/services/auto-fill/tools.d.ts.map +0 -1
- package/lib/types/services/auto-fill/type.d.ts.map +0 -1
- package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts.map +0 -1
- package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts.map +0 -1
- package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts.map +0 -1
- package/lib/types/services/clipboard/clipboard.service.d.ts.map +0 -1
- package/lib/types/services/clipboard/copy-content-cache.d.ts.map +0 -1
- package/lib/types/services/clipboard/html-to-usm/converter.d.ts.map +0 -1
- package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts.map +0 -1
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts.map +0 -1
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts.map +0 -1
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts.map +0 -1
- package/lib/types/services/clipboard/html-to-usm/utils.d.ts.map +0 -1
- package/lib/types/services/clipboard/type.d.ts.map +0 -1
- package/lib/types/services/clipboard/usm-to-html/convertor.d.ts.map +0 -1
- package/lib/types/services/editor/cell-editor-manager.service.d.ts.map +0 -1
- package/lib/types/services/editor/formula-editor-manager.service.d.ts.map +0 -1
- package/lib/types/services/editor-bridge.service.d.ts.map +0 -1
- package/lib/types/services/format-painter/format-painter.service.d.ts.map +0 -1
- package/lib/types/services/mark-selection/mark-selection.service.d.ts.map +0 -1
- package/lib/types/services/scroll-manager.service.d.ts.map +0 -1
- package/lib/types/services/selection/selection-render-model.d.ts.map +0 -1
- package/lib/types/services/selection/selection-render.service.d.ts.map +0 -1
- package/lib/types/services/selection/selection-shape-extension.d.ts.map +0 -1
- package/lib/types/services/selection/selection-shape.d.ts.map +0 -1
- package/lib/types/services/sheet-bar/sheet-bar.service.d.ts.map +0 -1
- package/lib/types/services/sheet-skeleton-manager.service.d.ts.map +0 -1
- package/lib/types/services/status-bar.service.d.ts.map +0 -1
- package/lib/types/sheets-ui-plugin.d.ts.map +0 -1
- package/lib/types/views/count-bar/CountBar.d.ts.map +0 -1
- package/lib/types/views/count-bar/index.d.ts.map +0 -1
- package/lib/types/views/count-bar/zoom-slider.d.ts.map +0 -1
- package/lib/types/views/editor-container/EditorContainer.d.ts.map +0 -1
- package/lib/types/views/editor-container/index.d.ts.map +0 -1
- package/lib/types/views/formula-bar/FormulaBar.d.ts.map +0 -1
- package/lib/types/views/formula-bar/index.d.ts.map +0 -1
- package/lib/types/views/header-menu-shape.d.ts.map +0 -1
- package/lib/types/views/header-resize-shape.d.ts.map +0 -1
- package/lib/types/views/header-unhide-shape.d.ts.map +0 -1
- package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts.map +0 -1
- package/lib/types/views/operate-container/OperateContainer.d.ts.map +0 -1
- package/lib/types/views/operate-container/index.d.ts.map +0 -1
- package/lib/types/views/sheet-bar/SheetBar.d.ts.map +0 -1
- package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts.map +0 -1
- package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts.map +0 -1
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts.map +0 -1
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts.map +0 -1
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts.map +0 -1
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts.map +0 -1
- package/lib/types/views/sheet-canvas-view.d.ts.map +0 -1
- package/lib/types/views/sheet-container/SheetContainer.d.ts.map +0 -1
- package/lib/types/views/status-bar/CopyableStatisticItem.d.ts.map +0 -1
- package/lib/types/views/status-bar/StatusBar.d.ts.map +0 -1
package/lib/index.css
CHANGED
|
@@ -1,587 +1 @@
|
|
|
1
|
-
/* temp_stylePlugin:src/components/range-selector/index.module.less */
|
|
2
|
-
.univer-range-selector {
|
|
3
|
-
overflow: hidden;
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: center;
|
|
6
|
-
justify-content: space-between;
|
|
7
|
-
padding: 0 var(--padding-sm) 0 var(--padding-base);
|
|
8
|
-
border: 1px solid rgb(var(--border-color));
|
|
9
|
-
border-radius: var(--border-radius-base);
|
|
10
|
-
}
|
|
11
|
-
.univer-range-selector-editor {
|
|
12
|
-
cursor: text;
|
|
13
|
-
overflow: hidden;
|
|
14
|
-
display: inline-block;
|
|
15
|
-
width: 218px;
|
|
16
|
-
height: 20px;
|
|
17
|
-
padding: 6px 0;
|
|
18
|
-
font-size: var(--font-size-xs);
|
|
19
|
-
line-height: 20px;
|
|
20
|
-
text-wrap: nowrap;
|
|
21
|
-
border: 0;
|
|
22
|
-
outline: 0;
|
|
23
|
-
}
|
|
24
|
-
.univer-range-selector-editor::selection {
|
|
25
|
-
color: rgb(var(--color-white));
|
|
26
|
-
background-color: rgb(var(--primary-color));
|
|
27
|
-
}
|
|
28
|
-
.univer-range-selector-editor:empty::before {
|
|
29
|
-
content: attr(data-placeholder);
|
|
30
|
-
color: rgb(var(--grey-400));
|
|
31
|
-
}
|
|
32
|
-
.univer-range-selector-icon {
|
|
33
|
-
cursor: pointer;
|
|
34
|
-
display: flex;
|
|
35
|
-
align-items: center;
|
|
36
|
-
justify-content: center;
|
|
37
|
-
width: 24px;
|
|
38
|
-
height: 24px;
|
|
39
|
-
padding: 0;
|
|
40
|
-
font-size: var(--font-size-lg);
|
|
41
|
-
color: rgb(var(--text-color));
|
|
42
|
-
background-color: transparent;
|
|
43
|
-
border: none;
|
|
44
|
-
border-radius: var(--border-radius-base);
|
|
45
|
-
outline: none;
|
|
46
|
-
}
|
|
47
|
-
.univer-range-selector-icon:not([disabled]):hover {
|
|
48
|
-
background-color: rgb(var(--grey-100));
|
|
49
|
-
}
|
|
50
|
-
.univer-range-selector-icon[disabled] {
|
|
51
|
-
cursor: not-allowed;
|
|
52
|
-
color: rgb(var(--grey-200));
|
|
53
|
-
}
|
|
54
|
-
.univer-range-selector-active {
|
|
55
|
-
border-color: rgb(var(--primary-color));
|
|
56
|
-
}
|
|
57
|
-
.univer-range-selector-active .univer-range-selector-icon {
|
|
58
|
-
color: rgb(var(--primary-color));
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/* temp_stylePlugin:src/components/font-family/index.module.less */
|
|
62
|
-
.univer-ui-plugin-sheets-font-family {
|
|
63
|
-
overflow: hidden;
|
|
64
|
-
width: 120px;
|
|
65
|
-
font-size: var(--font-size-xs);
|
|
66
|
-
text-overflow: ellipsis;
|
|
67
|
-
white-space: nowrap;
|
|
68
|
-
}
|
|
69
|
-
.univer-ui-plugin-sheets-font-family-item {
|
|
70
|
-
font-size: var(--font-size-xs);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
/* temp_stylePlugin:src/components/font-size/index.module.less */
|
|
74
|
-
.univer-ui-plugin-sheets-font-size {
|
|
75
|
-
width: 28px;
|
|
76
|
-
height: 24px;
|
|
77
|
-
font-size: var(--font-size-xs);
|
|
78
|
-
}
|
|
79
|
-
.univer-ui-plugin-sheets-font-size-input {
|
|
80
|
-
height: 24px;
|
|
81
|
-
line-height: 24px;
|
|
82
|
-
background-color: transparent;
|
|
83
|
-
border: none;
|
|
84
|
-
}
|
|
85
|
-
.univer-ui-plugin-sheets-font-size-input input {
|
|
86
|
-
font-size: var(--font-size-xs);
|
|
87
|
-
background-color: transparent;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/* temp_stylePlugin:src/components/menu-item-input/index.module.less */
|
|
91
|
-
.univer-ui-plugin-sheets-context-menu-input {
|
|
92
|
-
display: flex;
|
|
93
|
-
gap: var(--margin-sm);
|
|
94
|
-
align-items: center;
|
|
95
|
-
}
|
|
96
|
-
.univer-ui-plugin-sheets-context-menu-input-container {
|
|
97
|
-
width: 72px;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
/* temp_stylePlugin:src/views/sheet-container/index.module.less */
|
|
101
|
-
.univer-sheet-container {
|
|
102
|
-
display: flex;
|
|
103
|
-
align-items: center;
|
|
104
|
-
justify-content: space-between;
|
|
105
|
-
box-sizing: border-box;
|
|
106
|
-
height: 36px;
|
|
107
|
-
padding: 0 var(--padding-xl);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
/* temp_stylePlugin:src/components/border-panel/index.module.less */
|
|
111
|
-
.univer-ui-plugin-sheets-border-panel {
|
|
112
|
-
display: grid;
|
|
113
|
-
gap: var(--margin-sm);
|
|
114
|
-
}
|
|
115
|
-
.univer-ui-plugin-sheets-border-panel-position {
|
|
116
|
-
display: grid;
|
|
117
|
-
grid-template-columns: repeat(5, 1fr);
|
|
118
|
-
gap: var(--margin-xxs);
|
|
119
|
-
box-sizing: border-box;
|
|
120
|
-
padding-bottom: var(--padding-base);
|
|
121
|
-
border-bottom: 1px solid rgb(var(--border-color));
|
|
122
|
-
}
|
|
123
|
-
.univer-ui-plugin-sheets-border-panel-position-item {
|
|
124
|
-
display: flex;
|
|
125
|
-
align-items: center;
|
|
126
|
-
justify-content: center;
|
|
127
|
-
width: 24px;
|
|
128
|
-
height: 24px;
|
|
129
|
-
font-size: var(--font-size-lg);
|
|
130
|
-
border-radius: var(--border-radius-base);
|
|
131
|
-
}
|
|
132
|
-
.univer-ui-plugin-sheets-border-panel-position-item:hover {
|
|
133
|
-
background-color: rgb(var(--bg-color-hover));
|
|
134
|
-
}
|
|
135
|
-
.univer-ui-plugin-sheets-border-panel-styles {
|
|
136
|
-
display: flex;
|
|
137
|
-
gap: var(--margin-xs);
|
|
138
|
-
align-items: center;
|
|
139
|
-
justify-content: space-around;
|
|
140
|
-
}
|
|
141
|
-
.univer-ui-plugin-sheets-border-panel-board {
|
|
142
|
-
box-sizing: border-box;
|
|
143
|
-
padding: var(--padding-base);
|
|
144
|
-
background-color: rgb(var(--bg-color-secondary));
|
|
145
|
-
border: 1px solid rgb(var(--border-color));
|
|
146
|
-
border-radius: var(--border-radius-lg);
|
|
147
|
-
box-shadow: var(--box-shadow-base);
|
|
148
|
-
}
|
|
149
|
-
.univer-ui-plugin-sheets-border-panel-button {
|
|
150
|
-
cursor: pointer;
|
|
151
|
-
position: relative;
|
|
152
|
-
display: flex;
|
|
153
|
-
gap: var(--margin-xs);
|
|
154
|
-
align-items: center;
|
|
155
|
-
height: 24px;
|
|
156
|
-
padding: 0 var(--padding-xs);
|
|
157
|
-
font-size: var(--font-size-lg);
|
|
158
|
-
border-radius: var(--border-radius-base);
|
|
159
|
-
transition: all 0.15s;
|
|
160
|
-
}
|
|
161
|
-
.univer-ui-plugin-sheets-border-panel-button:hover {
|
|
162
|
-
background-color: rgb(var(--bg-color-hover));
|
|
163
|
-
}
|
|
164
|
-
.univer-ui-plugin-sheets-border-panel-more-icon {
|
|
165
|
-
font-size: 10px;
|
|
166
|
-
color: rgb(var(--grey-400));
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
/* temp_stylePlugin:src/views/count-bar/index.module.less */
|
|
170
|
-
.univer-count-bar {
|
|
171
|
-
display: flex;
|
|
172
|
-
flex: 0 0 260px;
|
|
173
|
-
justify-content: flex-end;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
/* temp_stylePlugin:src/views/editor-container/index.module.less */
|
|
177
|
-
.univer-editor-container {
|
|
178
|
-
position: absolute;
|
|
179
|
-
z-index: 10;
|
|
180
|
-
top: 200px;
|
|
181
|
-
left: 100px;
|
|
182
|
-
display: flex;
|
|
183
|
-
width: 100px;
|
|
184
|
-
height: 50px;
|
|
185
|
-
border: 1.5px solid rgb(var(--primary-color));
|
|
186
|
-
outline: 1.5px solid rgb(var(--primary-color-hover) 0.5);
|
|
187
|
-
box-shadow: none;
|
|
188
|
-
}
|
|
189
|
-
.univer-editor-container .univer-editor-input {
|
|
190
|
-
position: relative;
|
|
191
|
-
display: flex;
|
|
192
|
-
width: 100%;
|
|
193
|
-
height: 100%;
|
|
194
|
-
background: white;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
/* temp_stylePlugin:src/views/formula-bar/index.module.less */
|
|
198
|
-
.univer-formula-box {
|
|
199
|
-
display: flex;
|
|
200
|
-
box-sizing: border-box;
|
|
201
|
-
height: 28px;
|
|
202
|
-
background: rgb(var(--bg-color-secondary));
|
|
203
|
-
border-bottom: 1px solid rgb(var(--border-color));
|
|
204
|
-
transition: height 0.15s;
|
|
205
|
-
}
|
|
206
|
-
.univer-formula-box .univer-name-ranges {
|
|
207
|
-
box-sizing: border-box;
|
|
208
|
-
width: 80px;
|
|
209
|
-
height: 100%;
|
|
210
|
-
padding: 6px 0;
|
|
211
|
-
}
|
|
212
|
-
.univer-formula-box .univer-name-ranges-input {
|
|
213
|
-
height: 100%;
|
|
214
|
-
border-right: 1px solid rgb(var(--border-color));
|
|
215
|
-
}
|
|
216
|
-
.univer-formula-box .univer-formula-bar {
|
|
217
|
-
display: flex;
|
|
218
|
-
width: 100%;
|
|
219
|
-
height: 100%;
|
|
220
|
-
}
|
|
221
|
-
.univer-formula-box .univer-formula-bar .univer-formula-icon {
|
|
222
|
-
padding: 6px 0;
|
|
223
|
-
}
|
|
224
|
-
.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper {
|
|
225
|
-
position: relative;
|
|
226
|
-
display: flex;
|
|
227
|
-
gap: var(--margin-xs);
|
|
228
|
-
align-items: center;
|
|
229
|
-
justify-content: center;
|
|
230
|
-
box-sizing: border-box;
|
|
231
|
-
width: 80px;
|
|
232
|
-
height: 100%;
|
|
233
|
-
font-size: var(--font-size-xs);
|
|
234
|
-
border-right: 1px solid rgb(var(--border-color));
|
|
235
|
-
}
|
|
236
|
-
.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper .univer-icon-container {
|
|
237
|
-
cursor: pointer;
|
|
238
|
-
display: flex;
|
|
239
|
-
align-items: center;
|
|
240
|
-
justify-content: center;
|
|
241
|
-
font-size: var(--font-size-lg);
|
|
242
|
-
}
|
|
243
|
-
.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper .univer-icon-container-success.univer-formula-active {
|
|
244
|
-
color: rgb(var(--success-color));
|
|
245
|
-
}
|
|
246
|
-
.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper .univer-icon-container-error.univer-formula-active {
|
|
247
|
-
color: rgb(var(--error-color));
|
|
248
|
-
}
|
|
249
|
-
.univer-formula-box .univer-formula-bar .univer-formula-input {
|
|
250
|
-
overflow: hidden;
|
|
251
|
-
display: flex;
|
|
252
|
-
flex: 1;
|
|
253
|
-
width: 100%;
|
|
254
|
-
padding: 0 0 0 10px;
|
|
255
|
-
}
|
|
256
|
-
.univer-formula-box .univer-formula-bar .univer-formula-input .univer-formula-content {
|
|
257
|
-
position: relative;
|
|
258
|
-
width: 100%;
|
|
259
|
-
height: 100%;
|
|
260
|
-
word-wrap: break-word;
|
|
261
|
-
outline: none;
|
|
262
|
-
}
|
|
263
|
-
.univer-formula-box .univer-formula-bar .univer-formula-input .univer-arrow-container {
|
|
264
|
-
cursor: pointer;
|
|
265
|
-
display: flex;
|
|
266
|
-
align-items: center;
|
|
267
|
-
justify-content: center;
|
|
268
|
-
width: 20px;
|
|
269
|
-
height: 100%;
|
|
270
|
-
font-size: var(--font-size-xs);
|
|
271
|
-
color: rgb(var(--text-color-secondary));
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
/* temp_stylePlugin:src/views/operate-container/index.module.less */
|
|
275
|
-
.univer-operate-container {
|
|
276
|
-
position: absolute;
|
|
277
|
-
z-index: 1;
|
|
278
|
-
right: 0;
|
|
279
|
-
left: 0;
|
|
280
|
-
width: 0;
|
|
281
|
-
height: 0;
|
|
282
|
-
}
|
|
283
|
-
.univer-auto-fill-popup-menu {
|
|
284
|
-
display: grid;
|
|
285
|
-
gap: var(--margin-xxs);
|
|
286
|
-
align-items: center;
|
|
287
|
-
box-sizing: border-box;
|
|
288
|
-
min-width: 128px;
|
|
289
|
-
margin-top: 0;
|
|
290
|
-
margin-bottom: 0;
|
|
291
|
-
padding: var(--padding-sm);
|
|
292
|
-
font-size: var(--font-size-base);
|
|
293
|
-
background-color: rgb(var(--bg-color-secondary));
|
|
294
|
-
border: 1px solid rgb(var(--border-color));
|
|
295
|
-
border-radius: var(--border-radius-lg);
|
|
296
|
-
box-shadow: var(--box-shadow-lg);
|
|
297
|
-
}
|
|
298
|
-
.univer-auto-fill-popup-menu li {
|
|
299
|
-
list-style: none;
|
|
300
|
-
}
|
|
301
|
-
.univer-auto-fill-popup-menu-item {
|
|
302
|
-
cursor: pointer;
|
|
303
|
-
position: relative;
|
|
304
|
-
display: flex;
|
|
305
|
-
align-items: center;
|
|
306
|
-
box-sizing: border-box;
|
|
307
|
-
width: 134px;
|
|
308
|
-
height: 28px;
|
|
309
|
-
padding: var(--padding-xs) 0 var(--padding-xs) 36px;
|
|
310
|
-
font-size: 13px;
|
|
311
|
-
font-weight: 400;
|
|
312
|
-
font-style: normal;
|
|
313
|
-
line-height: 20px;
|
|
314
|
-
color: rgb(var(--black, #35322B));
|
|
315
|
-
text-align: left;
|
|
316
|
-
border-radius: 4px;
|
|
317
|
-
border-radius: var(--border-radius-base);
|
|
318
|
-
transition: background 0.2s;
|
|
319
|
-
}
|
|
320
|
-
.univer-auto-fill-popup-menu-item:hover {
|
|
321
|
-
background-color: rgb(var(--bg-color-hover));
|
|
322
|
-
}
|
|
323
|
-
.univer-auto-fill-popup-menu-item-icon {
|
|
324
|
-
position: absolute;
|
|
325
|
-
top: 50%;
|
|
326
|
-
left: var(--padding-xs);
|
|
327
|
-
transform: translateY(-50%);
|
|
328
|
-
display: flex;
|
|
329
|
-
align-items: center;
|
|
330
|
-
justify-content: center;
|
|
331
|
-
}
|
|
332
|
-
.univer-auto-fill-popup-menu-item-title {
|
|
333
|
-
padding: var(--padding-xs) var(--padding-xs) var(--padding-xs) 0;
|
|
334
|
-
vertical-align: middle;
|
|
335
|
-
}
|
|
336
|
-
.univer-auto-fill-popup-menu-item-hide {
|
|
337
|
-
color: rgb(var(--text-color-secondary));
|
|
338
|
-
}
|
|
339
|
-
.univer-auto-fill-popup-menu-item:hover {
|
|
340
|
-
background: rgb(var(--grey-100));
|
|
341
|
-
}
|
|
342
|
-
.univer-btn-container {
|
|
343
|
-
display: flex;
|
|
344
|
-
align-items: center;
|
|
345
|
-
justify-content: center;
|
|
346
|
-
padding: 3px;
|
|
347
|
-
background: white;
|
|
348
|
-
border: 1px solid rgb(var(--grey-200, #E5E5E5));
|
|
349
|
-
border-radius: 4px;
|
|
350
|
-
}
|
|
351
|
-
.univer-btn-container:hover {
|
|
352
|
-
background: rgb(var(--grey-100, #f5f5f5));
|
|
353
|
-
}
|
|
354
|
-
.univer-btn-container.univer-btn-container-expand {
|
|
355
|
-
background: rgb(var(--grey-100, #f5f5f5));
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
/* temp_stylePlugin:src/views/sheet-bar/index.module.less */
|
|
359
|
-
.univer-sheet-bar {
|
|
360
|
-
position: relative;
|
|
361
|
-
display: flex;
|
|
362
|
-
flex: 1 1 0px;
|
|
363
|
-
flex-direction: row;
|
|
364
|
-
min-width: calc(100% - 260px - 332px);
|
|
365
|
-
max-width: calc(100% - 260px);
|
|
366
|
-
height: 100%;
|
|
367
|
-
margin-right: -4px;
|
|
368
|
-
background-color: rgb(var(--bg-color));
|
|
369
|
-
}
|
|
370
|
-
.univer-sheet-bar-options {
|
|
371
|
-
display: flex;
|
|
372
|
-
flex-direction: row;
|
|
373
|
-
align-items: center;
|
|
374
|
-
margin: var(--margin-xxs);
|
|
375
|
-
transition: display 0.2s;
|
|
376
|
-
}
|
|
377
|
-
.univer-sheet-bar-options-divider::after {
|
|
378
|
-
content: "";
|
|
379
|
-
display: block;
|
|
380
|
-
width: 1px;
|
|
381
|
-
height: 16px;
|
|
382
|
-
margin: 0 var(--margin-xs);
|
|
383
|
-
background-color: rgb(var(--grey-400));
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
/* temp_stylePlugin:src/views/sheet-bar/sheet-bar-button/index.module.less */
|
|
387
|
-
.univer-sheet-bar-btn {
|
|
388
|
-
cursor: pointer;
|
|
389
|
-
display: flex;
|
|
390
|
-
align-items: center;
|
|
391
|
-
justify-content: center;
|
|
392
|
-
width: 24px;
|
|
393
|
-
height: 24px;
|
|
394
|
-
padding: 0;
|
|
395
|
-
font-size: var(--font-size-lg);
|
|
396
|
-
color: rgb(var(--text-color-secondary));
|
|
397
|
-
background-color: transparent;
|
|
398
|
-
border: none;
|
|
399
|
-
border-radius: var(--border-radius-base);
|
|
400
|
-
outline: none;
|
|
401
|
-
}
|
|
402
|
-
.univer-sheet-bar-btn:not([disabled]):hover {
|
|
403
|
-
background-color: rgb(var(--bg-color-hover));
|
|
404
|
-
}
|
|
405
|
-
.univer-sheet-bar-btn[disabled] {
|
|
406
|
-
cursor: not-allowed;
|
|
407
|
-
color: rgb(var(--grey-200));
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
/* temp_stylePlugin:src/views/sheet-bar/sheet-bar-menu/index.module.less */
|
|
411
|
-
.univer-sheet-bar-menu {
|
|
412
|
-
display: grid;
|
|
413
|
-
gap: var(--margin-xxs);
|
|
414
|
-
align-items: center;
|
|
415
|
-
box-sizing: border-box;
|
|
416
|
-
padding: var(--padding-sm);
|
|
417
|
-
background-color: rgb(var(--bg-color-secondary));
|
|
418
|
-
border: 1px solid rgb(var(--border-color));
|
|
419
|
-
border-radius: var(--border-radius-lg);
|
|
420
|
-
box-shadow: var(--box-shadow-lg);
|
|
421
|
-
}
|
|
422
|
-
.univer-sheet-bar-menu li {
|
|
423
|
-
list-style: none;
|
|
424
|
-
}
|
|
425
|
-
.univer-sheet-bar-menu-item {
|
|
426
|
-
cursor: pointer;
|
|
427
|
-
position: relative;
|
|
428
|
-
display: flex;
|
|
429
|
-
box-sizing: border-box;
|
|
430
|
-
padding: var(--padding-xs) 24px;
|
|
431
|
-
color: rgb(var(--text-color));
|
|
432
|
-
border-radius: var(--border-radius-base);
|
|
433
|
-
transition: background 0.2s;
|
|
434
|
-
}
|
|
435
|
-
.univer-sheet-bar-menu-item:hover {
|
|
436
|
-
background-color: rgb(var(--bg-color-hover));
|
|
437
|
-
}
|
|
438
|
-
.univer-sheet-bar-menu-item-icon {
|
|
439
|
-
position: absolute;
|
|
440
|
-
top: 50%;
|
|
441
|
-
left: var(--margin-xxs);
|
|
442
|
-
transform: translateY(-50%);
|
|
443
|
-
color: transparent;
|
|
444
|
-
}
|
|
445
|
-
.univer-sheet-bar-menu-item-hide .univer-sheet-bar-menu-item-icon {
|
|
446
|
-
color: rgb(var(--grey-400));
|
|
447
|
-
}
|
|
448
|
-
.univer-sheet-bar-menu-item-select {
|
|
449
|
-
font-weight: 500;
|
|
450
|
-
color: rgb(var(--primary-color));
|
|
451
|
-
}
|
|
452
|
-
.univer-sheet-bar-menu-item-select .univer-sheet-bar-menu-item-icon {
|
|
453
|
-
color: rgb(var(--primary-color));
|
|
454
|
-
}
|
|
455
|
-
.univer-sheet-bar-menu-item-label {
|
|
456
|
-
font-size: var(--font-size-xs);
|
|
457
|
-
font-weight: 400;
|
|
458
|
-
line-height: 20px;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
/* temp_stylePlugin:src/views/sheet-bar/sheet-bar-tabs/index.module.less */
|
|
462
|
-
.univer-slide-tab-bar-container {
|
|
463
|
-
overflow: hidden;
|
|
464
|
-
max-width: calc(100% - 112px);
|
|
465
|
-
}
|
|
466
|
-
.univer-slide-tab-bar-container .univer-slide-tab-bar {
|
|
467
|
-
user-select: none;
|
|
468
|
-
overflow: hidden;
|
|
469
|
-
display: flex;
|
|
470
|
-
flex-direction: row;
|
|
471
|
-
align-items: center;
|
|
472
|
-
padding: var(--padding-xs) 6px;
|
|
473
|
-
transition: box-shadow 0.2s;
|
|
474
|
-
}
|
|
475
|
-
.univer-slide-tab-item {
|
|
476
|
-
cursor: pointer;
|
|
477
|
-
user-select: none;
|
|
478
|
-
display: flex;
|
|
479
|
-
flex-direction: row;
|
|
480
|
-
flex-grow: 1;
|
|
481
|
-
align-items: center;
|
|
482
|
-
box-sizing: border-box;
|
|
483
|
-
margin: 0 var(--margin-xxs);
|
|
484
|
-
font-size: var(--font-size-xs);
|
|
485
|
-
color: rgb(var(--grey-1000));
|
|
486
|
-
border-radius: var(--border-radius-base);
|
|
487
|
-
}
|
|
488
|
-
.univer-slide-tab-item:not(.univer-slide-tab-active):hover {
|
|
489
|
-
background-color: rgb(var(--bg-color-hover));
|
|
490
|
-
}
|
|
491
|
-
.univer-slide-tab-item .univer-slide-tab-span {
|
|
492
|
-
box-sizing: border-box;
|
|
493
|
-
padding: var(--padding-xs) var(--padding-sm);
|
|
494
|
-
white-space: nowrap;
|
|
495
|
-
border: 2px solid transparent;
|
|
496
|
-
border-radius: var(--border-radius-base);
|
|
497
|
-
}
|
|
498
|
-
.univer-slide-tab-item .univer-slide-tab-span-edit {
|
|
499
|
-
cursor: text;
|
|
500
|
-
outline: none;
|
|
501
|
-
}
|
|
502
|
-
.univer-slide-tab-item .univer-slide-tab-span-edit::selection {
|
|
503
|
-
color: rgb(var(--color-white));
|
|
504
|
-
background-color: rgb(var(--primary-color));
|
|
505
|
-
}
|
|
506
|
-
.univer-slide-tab-active {
|
|
507
|
-
font-weight: 700;
|
|
508
|
-
color: rgb(var(--primary-color));
|
|
509
|
-
background-color: rgb(var(--bg-color-secondary));
|
|
510
|
-
box-shadow: 0px 0 8px rgba(0, 0, 0, 0.08);
|
|
511
|
-
transition: box-shadow 0.2s;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
/* temp_stylePlugin:src/views/status-bar/index.module.less */
|
|
515
|
-
.univer-status-bar {
|
|
516
|
-
display: flex;
|
|
517
|
-
align-items: center;
|
|
518
|
-
max-width: 332px;
|
|
519
|
-
}
|
|
520
|
-
.univer-status-bar.univer-single-mode {
|
|
521
|
-
max-width: 136px;
|
|
522
|
-
}
|
|
523
|
-
.univer-status-bar-div {
|
|
524
|
-
width: 1px;
|
|
525
|
-
height: 16px;
|
|
526
|
-
margin-left: 10px;
|
|
527
|
-
background: rgb(var(--grey-400, #CCC));
|
|
528
|
-
}
|
|
529
|
-
.univer-statistic-list {
|
|
530
|
-
display: flex;
|
|
531
|
-
}
|
|
532
|
-
.univer-statistic-list-two-row {
|
|
533
|
-
flex-direction: column;
|
|
534
|
-
}
|
|
535
|
-
.univer-statistic-list-two-row .univer-statistic-list-row {
|
|
536
|
-
display: flex;
|
|
537
|
-
flex-direction: row;
|
|
538
|
-
}
|
|
539
|
-
.univer-statistic-list-two-row .univer-statistic-item {
|
|
540
|
-
font-size: 11px;
|
|
541
|
-
line-height: 140%;
|
|
542
|
-
}
|
|
543
|
-
.univer-statistic-item {
|
|
544
|
-
cursor: default;
|
|
545
|
-
display: flex;
|
|
546
|
-
justify-content: start;
|
|
547
|
-
max-width: 96px;
|
|
548
|
-
margin-right: 8px;
|
|
549
|
-
font-size: 12px;
|
|
550
|
-
font-weight: 400;
|
|
551
|
-
font-style: normal;
|
|
552
|
-
line-height: 20px;
|
|
553
|
-
color: rgb(var(--grey-1000));
|
|
554
|
-
text-align: center;
|
|
555
|
-
}
|
|
556
|
-
.univer-statistic-picker {
|
|
557
|
-
display: grid;
|
|
558
|
-
gap: var(--margin-sm);
|
|
559
|
-
align-items: center;
|
|
560
|
-
box-sizing: border-box;
|
|
561
|
-
width: 196px;
|
|
562
|
-
padding: var(--padding-base);
|
|
563
|
-
font-size: var(--font-size-xs);
|
|
564
|
-
background-color: rgb(var(--color-white));
|
|
565
|
-
border: 1px solid rgb(var(--border-color));
|
|
566
|
-
border-radius: var(--border-radius-lg);
|
|
567
|
-
box-shadow: var(--box-shadow-lg);
|
|
568
|
-
}
|
|
569
|
-
.univer-statistic-picker-item {
|
|
570
|
-
display: flex;
|
|
571
|
-
align-items: center;
|
|
572
|
-
justify-content: start;
|
|
573
|
-
}
|
|
574
|
-
.univer-statistic-more {
|
|
575
|
-
transform: rotate(90deg);
|
|
576
|
-
display: flex;
|
|
577
|
-
align-items: center;
|
|
578
|
-
justify-content: center;
|
|
579
|
-
width: 24px;
|
|
580
|
-
height: 24px;
|
|
581
|
-
font-size: 12px;
|
|
582
|
-
color: rgb(var(--grey-600, #E8E8E8));
|
|
583
|
-
border-radius: 4px;
|
|
584
|
-
}
|
|
585
|
-
.univer-statistic-more:hover {
|
|
586
|
-
background: rgb(var(--grey-300, #E8E8E8));
|
|
587
|
-
}
|
|
1
|
+
.univer-range-selector{overflow:hidden;display:flex;align-items:center;justify-content:space-between;padding:0 var(--padding-sm) 0 var(--padding-base);border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-base)}.univer-range-selector-editor{cursor:text;overflow:hidden;display:inline-block;width:218px;height:20px;padding:6px 0;font-size:var(--font-size-xs);line-height:20px;text-wrap:nowrap;border:0;outline:0}.univer-range-selector-editor::selection{color:rgb(var(--color-white));background-color:rgb(var(--primary-color))}.univer-range-selector-editor:empty:before{content:attr(data-placeholder);color:rgb(var(--grey-400))}.univer-range-selector-icon{cursor:pointer;display:flex;align-items:center;justify-content:center;width:24px;height:24px;padding:0;font-size:var(--font-size-lg);color:rgb(var(--text-color));background-color:transparent;border:none;border-radius:var(--border-radius-base);outline:none}.univer-range-selector-icon:not([disabled]):hover{background-color:rgb(var(--grey-100))}.univer-range-selector-icon[disabled]{cursor:not-allowed;color:rgb(var(--grey-200))}.univer-range-selector-active{border-color:rgb(var(--primary-color))}.univer-range-selector-active .univer-range-selector-icon{color:rgb(var(--primary-color))}.univer-ui-plugin-sheets-font-family{overflow:hidden;width:120px;font-size:var(--font-size-xs);text-overflow:ellipsis;white-space:nowrap}.univer-ui-plugin-sheets-font-family-item{font-size:var(--font-size-xs)}.univer-ui-plugin-sheets-font-size{width:28px;height:24px;font-size:var(--font-size-xs)}.univer-ui-plugin-sheets-font-size-input{height:24px;line-height:24px;background-color:transparent;border:none}.univer-ui-plugin-sheets-font-size-input input{font-size:var(--font-size-xs);background-color:transparent}.univer-sheets-ui-context-menu-input{display:flex;gap:var(--margin-sm);align-items:center}.univer-sheets-ui-context-menu-input-container{width:72px}.univer-sheets-ui-context-menu-input-number{height:24px}.univer-sheet-container{display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;height:36px;padding:0 var(--padding-xl)}.univer-ui-plugin-sheets-border-panel{display:grid;gap:var(--margin-sm)}.univer-ui-plugin-sheets-border-panel-position{display:grid;grid-template-columns:repeat(5,1fr);gap:var(--margin-xxs);box-sizing:border-box;padding-bottom:var(--padding-base);border-bottom:1px solid rgb(var(--border-color))}.univer-ui-plugin-sheets-border-panel-position-item{display:flex;align-items:center;justify-content:center;width:24px;height:24px;font-size:var(--font-size-lg);border-radius:var(--border-radius-base)}.univer-ui-plugin-sheets-border-panel-position-item:hover{background-color:rgb(var(--bg-color-hover))}.univer-ui-plugin-sheets-border-panel-styles{display:flex;gap:var(--margin-xs);align-items:center;justify-content:space-around}.univer-ui-plugin-sheets-border-panel-board{box-sizing:border-box;padding:var(--padding-base);background-color:rgb(var(--bg-color-secondary));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);box-shadow:var(--box-shadow-base)}.univer-ui-plugin-sheets-border-panel-button{cursor:pointer;position:relative;display:flex;gap:var(--margin-xs);align-items:center;height:24px;padding:0 var(--padding-xs);font-size:var(--font-size-lg);border-radius:var(--border-radius-base);transition:all .15s}.univer-ui-plugin-sheets-border-panel-button:hover{background-color:rgb(var(--bg-color-hover))}.univer-ui-plugin-sheets-border-panel-more-icon{font-size:10px;color:rgb(var(--grey-400))}.univer-count-bar{display:flex;flex:0 0 260px;justify-content:flex-end}.univer-editor-container{position:absolute;z-index:10;top:200px;left:100px;display:flex;width:100px;height:50px;border:1.5px solid rgb(var(--primary-color));outline:1.5px solid rgb(var(--primary-color-hover) .5);box-shadow:none}.univer-editor-container .univer-editor-input{position:relative;display:flex;width:100%;height:100%;background:#fff}.univer-formula-box{display:flex;box-sizing:border-box;height:28px;background:rgb(var(--bg-color-secondary));border-bottom:1px solid rgb(var(--border-color));transition:height .15s}.univer-formula-box .univer-name-ranges{box-sizing:border-box;width:80px;height:100%;padding:6px 0}.univer-formula-box .univer-name-ranges-input{height:100%;border-right:1px solid rgb(var(--border-color))}.univer-formula-box .univer-formula-bar{display:flex;width:100%;height:100%}.univer-formula-box .univer-formula-bar .univer-formula-icon{padding:6px 0}.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper{position:relative;display:flex;gap:var(--margin-xs);align-items:center;justify-content:center;box-sizing:border-box;width:80px;height:100%;font-size:var(--font-size-xs);border-right:1px solid rgb(var(--border-color))}.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper .univer-icon-container{cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:var(--font-size-lg)}.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper .univer-icon-container-success.univer-formula-active{color:rgb(var(--success-color))}.univer-formula-box .univer-formula-bar .univer-formula-icon-wrapper .univer-icon-container-error.univer-formula-active{color:rgb(var(--error-color))}.univer-formula-box .univer-formula-bar .univer-formula-input{overflow:hidden;display:flex;flex:1;width:100%;padding:0 0 0 10px}.univer-formula-box .univer-formula-bar .univer-formula-input .univer-formula-content{position:relative;width:100%;height:100%;word-wrap:break-word;outline:none}.univer-formula-box .univer-formula-bar .univer-formula-input .univer-arrow-container{cursor:pointer;display:flex;align-items:center;justify-content:center;width:20px;height:100%;font-size:var(--font-size-xs);color:rgb(var(--text-color-secondary))}.univer-operate-container{position:absolute;z-index:1;right:0;left:0;width:0;height:0}.univer-auto-fill-popup-menu{display:grid;gap:var(--margin-xxs);align-items:center;box-sizing:border-box;min-width:128px;margin-top:0;margin-bottom:0;padding:var(--padding-sm);font-size:var(--font-size-base);background-color:rgb(var(--bg-color-secondary));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);box-shadow:var(--box-shadow-lg)}.univer-auto-fill-popup-menu li{list-style:none}.univer-auto-fill-popup-menu-item{cursor:pointer;position:relative;display:flex;align-items:center;box-sizing:border-box;width:134px;height:28px;padding:var(--padding-xs) 0 var(--padding-xs) 36px;font-size:13px;font-weight:400;font-style:normal;line-height:20px;color:rgb(var(--black, #35322B));text-align:left;border-radius:4px;border-radius:var(--border-radius-base);transition:background .2s}.univer-auto-fill-popup-menu-item:hover{background-color:rgb(var(--bg-color-hover))}.univer-auto-fill-popup-menu-item-icon{position:absolute;top:50%;left:var(--padding-xs);transform:translateY(-50%);display:flex;align-items:center;justify-content:center}.univer-auto-fill-popup-menu-item-title{padding:var(--padding-xs) var(--padding-xs) var(--padding-xs) 0;vertical-align:middle}.univer-auto-fill-popup-menu-item-hide{color:rgb(var(--text-color-secondary))}.univer-auto-fill-popup-menu-item:hover{background:rgb(var(--grey-100))}.univer-btn-container{display:flex;align-items:center;justify-content:center;padding:3px;background:#fff;border:1px solid rgb(var(--grey-200, #E5E5E5));border-radius:4px}.univer-btn-container:hover,.univer-btn-container.univer-btn-container-expand{background:rgb(var(--grey-100, #f5f5f5))}.univer-sheet-bar{position:relative;display:flex;flex:1 1 0px;flex-direction:row;min-width:calc(100% - 592px);max-width:calc(100% - 260px);height:100%;background-color:rgb(var(--bg-color))}.univer-sheet-bar-options{display:flex;flex-direction:row;align-items:center;margin:var(--margin-xxs);transition:display .2s}.univer-sheet-bar-options-divider:after{content:"";display:block;width:1px;height:16px;margin:0 var(--margin-xs);background-color:rgb(var(--grey-400))}.univer-sheet-bar-btn{cursor:pointer;display:flex;align-items:center;justify-content:center;width:24px;height:24px;padding:0;font-size:var(--font-size-lg);color:rgb(var(--text-color-secondary-darker));background-color:transparent;border:none;border-radius:var(--border-radius-base);outline:none}.univer-sheet-bar-btn:not([disabled]):hover{background-color:rgb(var(--bg-color-hover))}.univer-sheet-bar-btn[disabled]{cursor:not-allowed;color:rgb(var(--grey-200))}.univer-sheet-bar-menu{display:grid;gap:var(--margin-xxs);align-items:center;box-sizing:border-box;padding:var(--padding-sm);background-color:rgb(var(--bg-color-secondary));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);box-shadow:var(--box-shadow-lg)}.univer-sheet-bar-menu li{list-style:none}.univer-sheet-bar-menu-item{cursor:pointer;position:relative;display:flex;box-sizing:border-box;padding:var(--padding-xs) 24px;color:rgb(var(--text-color));border-radius:var(--border-radius-base);transition:background .2s}.univer-sheet-bar-menu-item:hover{background-color:rgb(var(--bg-color-hover))}.univer-sheet-bar-menu-item-icon{position:absolute;top:50%;left:var(--margin-xxs);transform:translateY(-50%);color:transparent}.univer-sheet-bar-menu-item-hide .univer-sheet-bar-menu-item-icon{color:rgb(var(--grey-400))}.univer-sheet-bar-menu-item-select{font-weight:500;color:rgb(var(--primary-color))}.univer-sheet-bar-menu-item-select .univer-sheet-bar-menu-item-icon{color:rgb(var(--primary-color))}.univer-sheet-bar-menu-item-label{font-size:var(--font-size-xs);font-weight:400;line-height:20px}.univer-slide-tab-bar-container{overflow:hidden;max-width:calc(100% - 112px)}.univer-slide-tab-bar-container .univer-slide-tab-bar{-webkit-user-select:none;user-select:none;overflow:hidden;display:flex;flex-direction:row;align-items:center;padding:var(--padding-xs) 6px;transition:box-shadow .2s}.univer-slide-tab-item{cursor:pointer;-webkit-user-select:none;user-select:none;display:flex;flex-direction:row;flex-grow:1;align-items:center;box-sizing:border-box;margin:0 var(--margin-xxs);font-size:var(--font-size-xs);color:rgb(var(--grey-1000));border-radius:var(--border-radius-base)}.univer-slide-tab-item:not(.univer-slide-tab-active):hover{background-color:rgb(var(--bg-color-hover))}.univer-slide-tab-item .univer-slide-tab-span{box-sizing:border-box;padding:var(--padding-xs) var(--padding-sm);white-space:nowrap;border:2px solid transparent;border-radius:var(--border-radius-base)}.univer-slide-tab-item .univer-slide-tab-span-edit{cursor:text;outline:none}.univer-slide-tab-item .univer-slide-tab-span-edit::selection{color:rgb(var(--color-white));background-color:rgb(var(--primary-color))}.univer-slide-tab-active{font-weight:700;color:rgb(var(--primary-color));background-color:rgb(var(--bg-color-secondary));box-shadow:0 0 8px #00000014;transition:box-shadow .2s}.univer-status-bar{display:flex;align-items:center;max-width:332px}.univer-status-bar.univer-single-mode{max-width:136px}.univer-status-bar-div{width:1px;height:16px;margin-left:10px;background:rgb(var(--grey-400, #CCC))}.univer-statistic-list{display:flex}.univer-statistic-list-two-row{flex-direction:column}.univer-statistic-list-two-row .univer-statistic-list-row{display:flex;flex-direction:row}.univer-statistic-list-two-row .univer-statistic-item{font-size:11px;line-height:140%}.univer-statistic-item{cursor:default;display:flex;justify-content:start;max-width:96px;margin-right:8px;font-size:12px;font-weight:400;font-style:normal;line-height:20px;color:rgb(var(--grey-1000));text-align:center}.univer-statistic-picker{display:grid;gap:var(--margin-sm);align-items:center;box-sizing:border-box;width:196px;padding:var(--padding-base);font-size:var(--font-size-xs);background-color:rgb(var(--color-white));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);box-shadow:var(--box-shadow-lg)}.univer-statistic-picker-item{display:flex;align-items:center;justify-content:start}.univer-statistic-more{transform:rotate(90deg);display:flex;align-items:center;justify-content:center;width:24px;height:24px;font-size:12px;color:rgb(var(--grey-600, #E8E8E8));border-radius:4px}.univer-statistic-more:hover{background:rgb(var(--grey-300, #E8E8E8))}
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export declare const DefaultRightMenuConfig: {
|
|
2
17
|
InsertRow: boolean;
|
|
3
18
|
InsertColumn: boolean;
|
|
@@ -124,4 +139,3 @@ export declare const DefaultSheetUIConfig: {
|
|
|
124
139
|
};
|
|
125
140
|
};
|
|
126
141
|
};
|
|
127
|
-
//# sourceMappingURL=default-univer-sheet-config.d.ts.map
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export * from './default-univer-sheet-config';
|
|
2
17
|
export * from './plugin-name';
|
|
3
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
export declare const SHEET_UI_PLUGIN_NAME = "SheetUI";
|
|
2
|
-
//# sourceMappingURL=plugin-name.d.ts.map
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import type { Nullable } from '@univerjs/core';
|
|
2
17
|
import type { Documents, Engine, IRenderManagerService, Scene } from '@univerjs/engine-render';
|
|
3
18
|
export interface IDocObjectParam {
|
|
@@ -6,4 +21,3 @@ export interface IDocObjectParam {
|
|
|
6
21
|
engine: Engine;
|
|
7
22
|
}
|
|
8
23
|
export declare function getEditorObject(unitId: Nullable<string>, renderManagerService: IRenderManagerService): Nullable<IDocObjectParam>;
|
|
9
|
-
//# sourceMappingURL=get-editor-object.d.ts.map
|