@difizen/libro-core 0.0.0-snapshot-20241017072317
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 +280 -0
- package/es/add-cell/index.d.ts +4 -0
- package/es/add-cell/index.d.ts.map +1 -0
- package/es/add-cell/index.js +3 -0
- package/es/add-cell/index.less +38 -0
- package/es/add-cell/libro-add-cell-module.d.ts +3 -0
- package/es/add-cell/libro-add-cell-module.d.ts.map +1 -0
- package/es/add-cell/libro-add-cell-module.js +4 -0
- package/es/add-cell/libro-add-cell-slot-contribution.d.ts +11 -0
- package/es/add-cell/libro-add-cell-slot-contribution.d.ts.map +1 -0
- package/es/add-cell/libro-add-cell-slot-contribution.js +59 -0
- package/es/add-cell/libro-add-cell-view.d.ts +21 -0
- package/es/add-cell/libro-add-cell-view.d.ts.map +1 -0
- package/es/add-cell/libro-add-cell-view.js +121 -0
- package/es/cell/index.d.ts +10 -0
- package/es/cell/index.d.ts.map +1 -0
- package/es/cell/index.js +9 -0
- package/es/cell/libro-cell-contribution.d.ts +12 -0
- package/es/cell/libro-cell-contribution.d.ts.map +1 -0
- package/es/cell/libro-cell-contribution.js +47 -0
- package/es/cell/libro-cell-model.d.ts +29 -0
- package/es/cell/libro-cell-model.d.ts.map +1 -0
- package/es/cell/libro-cell-model.js +130 -0
- package/es/cell/libro-cell-module.d.ts +10 -0
- package/es/cell/libro-cell-module.d.ts.map +1 -0
- package/es/cell/libro-cell-module.js +30 -0
- package/es/cell/libro-cell-protocol.d.ts +44 -0
- package/es/cell/libro-cell-protocol.d.ts.map +1 -0
- package/es/cell/libro-cell-protocol.js +11 -0
- package/es/cell/libro-cell-service.d.ts +28 -0
- package/es/cell/libro-cell-service.d.ts.map +1 -0
- package/es/cell/libro-cell-service.js +245 -0
- package/es/cell/libro-cell-view.d.ts +74 -0
- package/es/cell/libro-cell-view.d.ts.map +1 -0
- package/es/cell/libro-cell-view.js +239 -0
- package/es/cell/libro-edit-cell-view.d.ts +44 -0
- package/es/cell/libro-edit-cell-view.d.ts.map +1 -0
- package/es/cell/libro-edit-cell-view.js +256 -0
- package/es/cell/libro-executable-cell-model.d.ts +14 -0
- package/es/cell/libro-executable-cell-model.d.ts.map +1 -0
- package/es/cell/libro-executable-cell-model.js +7 -0
- package/es/cell/libro-executable-cell-view.d.ts +34 -0
- package/es/cell/libro-executable-cell-view.d.ts.map +1 -0
- package/es/cell/libro-executable-cell-view.js +74 -0
- package/es/cell/libro-markdown-cell-model.d.ts +9 -0
- package/es/cell/libro-markdown-cell-model.d.ts.map +1 -0
- package/es/cell/libro-markdown-cell-model.js +7 -0
- package/es/collapse-service.d.ts +36 -0
- package/es/collapse-service.d.ts.map +1 -0
- package/es/collapse-service.js +55 -0
- package/es/command/document-commands.d.ts +5 -0
- package/es/command/document-commands.d.ts.map +1 -0
- package/es/command/document-commands.js +21 -0
- package/es/command/index.d.ts +7 -0
- package/es/command/index.d.ts.map +1 -0
- package/es/command/index.js +6 -0
- package/es/command/kernel-command.d.ts +5 -0
- package/es/command/kernel-command.d.ts.map +1 -0
- package/es/command/kernel-command.js +40 -0
- package/es/command/libro-command-contribution.d.ts +13 -0
- package/es/command/libro-command-contribution.d.ts.map +1 -0
- package/es/command/libro-command-contribution.js +1842 -0
- package/es/command/libro-command-register.d.ts +21 -0
- package/es/command/libro-command-register.d.ts.map +1 -0
- package/es/command/libro-command-register.js +111 -0
- package/es/command/module.d.ts +3 -0
- package/es/command/module.d.ts.map +1 -0
- package/es/command/module.js +4 -0
- package/es/command/notebook-commands.d.ts +6 -0
- package/es/command/notebook-commands.d.ts.map +1 -0
- package/es/command/notebook-commands.js +472 -0
- package/es/components/cell-protocol.d.ts +20 -0
- package/es/components/cell-protocol.d.ts.map +1 -0
- package/es/components/cell-protocol.js +4 -0
- package/es/components/dnd-cell-item-render.d.ts +16 -0
- package/es/components/dnd-cell-item-render.d.ts.map +1 -0
- package/es/components/dnd-cell-item-render.js +364 -0
- package/es/components/dnd-component/custom-drag-layer.d.ts +9 -0
- package/es/components/dnd-component/custom-drag-layer.d.ts.map +1 -0
- package/es/components/dnd-component/custom-drag-layer.js +140 -0
- package/es/components/dnd-component/default-dnd-content.d.ts +11 -0
- package/es/components/dnd-component/default-dnd-content.d.ts.map +1 -0
- package/es/components/dnd-component/default-dnd-content.js +292 -0
- package/es/components/dnd-component/dnd-context.d.ts +3 -0
- package/es/components/dnd-component/dnd-context.d.ts.map +1 -0
- package/es/components/dnd-component/dnd-context.js +20 -0
- package/es/components/dnd-component/dnd-list.d.ts +14 -0
- package/es/components/dnd-component/dnd-list.d.ts.map +1 -0
- package/es/components/dnd-component/dnd-list.js +182 -0
- package/es/components/dnd-component/index.d.ts +5 -0
- package/es/components/dnd-component/index.d.ts.map +1 -0
- package/es/components/dnd-component/index.js +4 -0
- package/es/components/dnd-component/index.less +8 -0
- package/es/components/dnd-component/overscanIndices-getter.d.ts +22 -0
- package/es/components/dnd-component/overscanIndices-getter.d.ts.map +1 -0
- package/es/components/dnd-component/overscanIndices-getter.js +58 -0
- package/es/components/dnd-component/virtualized-manager.d.ts +19 -0
- package/es/components/dnd-component/virtualized-manager.d.ts.map +1 -0
- package/es/components/dnd-component/virtualized-manager.js +60 -0
- package/es/components/index.d.ts +6 -0
- package/es/components/index.d.ts.map +1 -0
- package/es/components/index.js +5 -0
- package/es/components/libro-component.d.ts +5 -0
- package/es/components/libro-component.d.ts.map +1 -0
- package/es/components/libro-component.js +35 -0
- package/es/components/libro-side-toolbar-menu.d.ts +21 -0
- package/es/components/libro-side-toolbar-menu.d.ts.map +1 -0
- package/es/components/libro-side-toolbar-menu.js +58 -0
- package/es/components/libro-view-header.d.ts +3 -0
- package/es/components/libro-view-header.d.ts.map +1 -0
- package/es/components/libro-view-header.js +37 -0
- package/es/components/libro-virtualized-render.d.ts +15 -0
- package/es/components/libro-virtualized-render.d.ts.map +1 -0
- package/es/components/libro-virtualized-render.js +174 -0
- package/es/content/index.d.ts +6 -0
- package/es/content/index.d.ts.map +1 -0
- package/es/content/index.js +5 -0
- package/es/content/libro-content-contribution.d.ts +11 -0
- package/es/content/libro-content-contribution.d.ts.map +1 -0
- package/es/content/libro-content-contribution.js +31 -0
- package/es/content/libro-content-module.d.ts +3 -0
- package/es/content/libro-content-module.d.ts.map +1 -0
- package/es/content/libro-content-module.js +6 -0
- package/es/content/libro-content-protocol.d.ts +13 -0
- package/es/content/libro-content-protocol.d.ts.map +1 -0
- package/es/content/libro-content-protocol.js +3 -0
- package/es/content/libro-content-service.d.ts +11 -0
- package/es/content/libro-content-service.d.ts.map +1 -0
- package/es/content/libro-content-service.js +63 -0
- package/es/content/libro-save-content-contribution.d.ts +6 -0
- package/es/content/libro-save-content-contribution.d.ts.map +1 -0
- package/es/content/libro-save-content-contribution.js +27 -0
- package/es/formatter/index.d.ts +6 -0
- package/es/formatter/index.d.ts.map +1 -0
- package/es/formatter/index.js +5 -0
- package/es/formatter/libro-formatter-json-contribution.d.ts +18 -0
- package/es/formatter/libro-formatter-json-contribution.d.ts.map +1 -0
- package/es/formatter/libro-formatter-json-contribution.js +41 -0
- package/es/formatter/libro-formatter-manager.d.ts +16 -0
- package/es/formatter/libro-formatter-manager.d.ts.map +1 -0
- package/es/formatter/libro-formatter-manager.js +86 -0
- package/es/formatter/libro-formatter-module.d.ts +3 -0
- package/es/formatter/libro-formatter-module.d.ts.map +1 -0
- package/es/formatter/libro-formatter-module.js +7 -0
- package/es/formatter/libro-formatter-protocol.d.ts +37 -0
- package/es/formatter/libro-formatter-protocol.d.ts.map +1 -0
- package/es/formatter/libro-formatter-protocol.js +18 -0
- package/es/formatter/libro-formatter-string-contribution.d.ts +18 -0
- package/es/formatter/libro-formatter-string-contribution.d.ts.map +1 -0
- package/es/formatter/libro-formatter-string-contribution.js +41 -0
- package/es/formatter/libro-formatter-trans-default-contribution.d.ts +7 -0
- package/es/formatter/libro-formatter-trans-default-contribution.d.ts.map +1 -0
- package/es/formatter/libro-formatter-trans-default-contribution.js +19 -0
- package/es/index.d.ts +26 -0
- package/es/index.d.ts.map +1 -0
- package/es/index.js +25 -0
- package/es/index.less +781 -0
- package/es/libro-context-key.d.ts +26 -0
- package/es/libro-context-key.d.ts.map +1 -0
- package/es/libro-context-key.js +84 -0
- package/es/libro-keybind-registry.d.ts +5 -0
- package/es/libro-keybind-registry.d.ts.map +1 -0
- package/es/libro-keybind-registry.js +68 -0
- package/es/libro-model.d.ts +145 -0
- package/es/libro-model.d.ts.map +1 -0
- package/es/libro-model.js +921 -0
- package/es/libro-protocol.d.ts +315 -0
- package/es/libro-protocol.d.ts.map +1 -0
- package/es/libro-protocol.js +47 -0
- package/es/libro-service.d.ts +69 -0
- package/es/libro-service.d.ts.map +1 -0
- package/es/libro-service.js +303 -0
- package/es/libro-setting-contribution.d.ts +5 -0
- package/es/libro-setting-contribution.d.ts.map +1 -0
- package/es/libro-setting-contribution.js +23 -0
- package/es/libro-setting.d.ts +12 -0
- package/es/libro-setting.d.ts.map +1 -0
- package/es/libro-setting.js +101 -0
- package/es/libro-view-tracker.d.ts +6 -0
- package/es/libro-view-tracker.d.ts.map +1 -0
- package/es/libro-view-tracker.js +13 -0
- package/es/libro-view.d.ts +170 -0
- package/es/libro-view.d.ts.map +1 -0
- package/es/libro-view.js +2077 -0
- package/es/libro-workspace-service.d.ts +17 -0
- package/es/libro-workspace-service.d.ts.map +1 -0
- package/es/libro-workspace-service.js +36 -0
- package/es/material-from-designer.d.ts +31 -0
- package/es/material-from-designer.d.ts.map +1 -0
- package/es/material-from-designer.js +697 -0
- package/es/module.d.ts +3 -0
- package/es/module.d.ts.map +1 -0
- package/es/module.js +71 -0
- package/es/output/index.d.ts +6 -0
- package/es/output/index.d.ts.map +1 -0
- package/es/output/index.js +5 -0
- package/es/output/output-area.d.ts +51 -0
- package/es/output/output-area.d.ts.map +1 -0
- package/es/output/output-area.js +399 -0
- package/es/output/output-contribution.d.ts +10 -0
- package/es/output/output-contribution.d.ts.map +1 -0
- package/es/output/output-contribution.js +36 -0
- package/es/output/output-model.d.ts +28 -0
- package/es/output/output-model.d.ts.map +1 -0
- package/es/output/output-model.js +105 -0
- package/es/output/output-module.d.ts +3 -0
- package/es/output/output-module.d.ts.map +1 -0
- package/es/output/output-module.js +6 -0
- package/es/output/output-protocol.d.ts +134 -0
- package/es/output/output-protocol.d.ts.map +1 -0
- package/es/output/output-protocol.js +16 -0
- package/es/settings/index.d.ts +5 -0
- package/es/settings/index.d.ts.map +1 -0
- package/es/settings/index.js +4 -0
- package/es/settings/index.less +3 -0
- package/es/settings/module.d.ts +3 -0
- package/es/settings/module.d.ts.map +1 -0
- package/es/settings/module.js +4 -0
- package/es/settings/setting-editor/configuration-panel-view.d.ts +13 -0
- package/es/settings/setting-editor/configuration-panel-view.d.ts.map +1 -0
- package/es/settings/setting-editor/configuration-panel-view.js +115 -0
- package/es/settings/setting-editor/configuration-render-contribution.d.ts +6 -0
- package/es/settings/setting-editor/configuration-render-contribution.d.ts.map +1 -0
- package/es/settings/setting-editor/configuration-render-contribution.js +77 -0
- package/es/settings/setting-editor/default-node-render.d.ts +9 -0
- package/es/settings/setting-editor/default-node-render.d.ts.map +1 -0
- package/es/settings/setting-editor/default-node-render.js +79 -0
- package/es/settings/setting-editor/index.d.ts +7 -0
- package/es/settings/setting-editor/index.d.ts.map +1 -0
- package/es/settings/setting-editor/index.js +6 -0
- package/es/settings/setting-editor/index.less +12 -0
- package/es/settings/setting-editor/module.d.ts +3 -0
- package/es/settings/setting-editor/module.d.ts.map +1 -0
- package/es/settings/setting-editor/module.js +11 -0
- package/es/settings/setting-editor/setting-editor-view.d.ts +15 -0
- package/es/settings/setting-editor/setting-editor-view.d.ts.map +1 -0
- package/es/settings/setting-editor/setting-editor-view.js +169 -0
- package/es/settings/setting-editor/setting-tree-service.d.ts +9 -0
- package/es/settings/setting-editor/setting-tree-service.d.ts.map +1 -0
- package/es/settings/setting-editor/setting-tree-service.js +118 -0
- package/es/settings/setting-editor/setting-tree-view.d.ts +19 -0
- package/es/settings/setting-editor/setting-tree-view.d.ts.map +1 -0
- package/es/settings/setting-editor/setting-tree-view.js +87 -0
- package/es/settings/settings-contribution.d.ts +7 -0
- package/es/settings/settings-contribution.d.ts.map +1 -0
- package/es/settings/settings-contribution.js +36 -0
- package/es/settings/settings-modal.d.ts +5 -0
- package/es/settings/settings-modal.d.ts.map +1 -0
- package/es/settings/settings-modal.js +53 -0
- package/es/settings/settings-modal.less +3 -0
- package/es/settings/settings-protocol.d.ts +4 -0
- package/es/settings/settings-protocol.d.ts.map +1 -0
- package/es/settings/settings-protocol.js +5 -0
- package/es/slot/index.d.ts +5 -0
- package/es/slot/index.d.ts.map +1 -0
- package/es/slot/index.js +4 -0
- package/es/slot/libro-slot-manager.d.ts +13 -0
- package/es/slot/libro-slot-manager.d.ts.map +1 -0
- package/es/slot/libro-slot-manager.js +66 -0
- package/es/slot/libro-slot-protocol.d.ts +19 -0
- package/es/slot/libro-slot-protocol.d.ts.map +1 -0
- package/es/slot/libro-slot-protocol.js +5 -0
- package/es/slot/libro-slot-view.d.ts +9 -0
- package/es/slot/libro-slot-view.d.ts.map +1 -0
- package/es/slot/libro-slot-view.js +81 -0
- package/es/slot/module.d.ts +3 -0
- package/es/slot/module.d.ts.map +1 -0
- package/es/slot/module.js +5 -0
- package/es/theme/libro-color-registry.d.ts +6 -0
- package/es/theme/libro-color-registry.d.ts.map +1 -0
- package/es/theme/libro-color-registry.js +515 -0
- package/es/toolbar/all-outputs-scroll-icon.d.ts +3 -0
- package/es/toolbar/all-outputs-scroll-icon.d.ts.map +1 -0
- package/es/toolbar/all-outputs-scroll-icon.js +10 -0
- package/es/toolbar/change-cell-to-selector.d.ts +5 -0
- package/es/toolbar/change-cell-to-selector.d.ts.map +1 -0
- package/es/toolbar/change-cell-to-selector.js +51 -0
- package/es/toolbar/hide-all-selector.d.ts +5 -0
- package/es/toolbar/hide-all-selector.d.ts.map +1 -0
- package/es/toolbar/hide-all-selector.js +99 -0
- package/es/toolbar/index.d.ts +4 -0
- package/es/toolbar/index.d.ts.map +1 -0
- package/es/toolbar/index.js +3 -0
- package/es/toolbar/index.less +59 -0
- package/es/toolbar/libro-toolbar-protocol.d.ts +4 -0
- package/es/toolbar/libro-toolbar-protocol.d.ts.map +1 -0
- package/es/toolbar/libro-toolbar-protocol.js +1 -0
- package/es/toolbar/libro-toolbar.d.ts +9 -0
- package/es/toolbar/libro-toolbar.d.ts.map +1 -0
- package/es/toolbar/libro-toolbar.js +275 -0
- package/es/toolbar/module.d.ts +3 -0
- package/es/toolbar/module.d.ts.map +1 -0
- package/es/toolbar/module.js +5 -0
- package/es/toolbar/restart-clear-outputs-contribution.d.ts +5 -0
- package/es/toolbar/restart-clear-outputs-contribution.d.ts.map +1 -0
- package/es/toolbar/restart-clear-outputs-contribution.js +23 -0
- package/es/toolbar/restart-clear-outputs-modal.d.ts +5 -0
- package/es/toolbar/restart-clear-outputs-modal.d.ts.map +1 -0
- package/es/toolbar/restart-clear-outputs-modal.js +30 -0
- package/es/toolbar/save-icon.d.ts +3 -0
- package/es/toolbar/save-icon.d.ts.map +1 -0
- package/es/toolbar/save-icon.js +54 -0
- package/es/toolbar/shutdown-contribution.d.ts +5 -0
- package/es/toolbar/shutdown-contribution.d.ts.map +1 -0
- package/es/toolbar/shutdown-contribution.js +23 -0
- package/es/toolbar/shutdown-modal.d.ts +5 -0
- package/es/toolbar/shutdown-modal.d.ts.map +1 -0
- package/es/toolbar/shutdown-modal.js +30 -0
- package/es/toolbar/side-toolar-more-select.d.ts +4 -0
- package/es/toolbar/side-toolar-more-select.d.ts.map +1 -0
- package/es/toolbar/side-toolar-more-select.js +161 -0
- package/es/typings/index.d.ts +1 -0
- package/es/virtualized-manager-helper.d.ts +11 -0
- package/es/virtualized-manager-helper.d.ts.map +1 -0
- package/es/virtualized-manager-helper.js +51 -0
- package/es/virtualized-manager.d.ts +23 -0
- package/es/virtualized-manager.d.ts.map +1 -0
- package/es/virtualized-manager.js +65 -0
- package/package.json +73 -0
- package/src/add-cell/index.less +38 -0
- package/src/add-cell/index.ts +3 -0
- package/src/add-cell/libro-add-cell-module.ts +9 -0
- package/src/add-cell/libro-add-cell-slot-contribution.ts +28 -0
- package/src/add-cell/libro-add-cell-view.tsx +99 -0
- package/src/cell/README.md +14 -0
- package/src/cell/index.ts +9 -0
- package/src/cell/libro-cell-contribution.ts +34 -0
- package/src/cell/libro-cell-model.ts +119 -0
- package/src/cell/libro-cell-module.ts +40 -0
- package/src/cell/libro-cell-protocol.ts +55 -0
- package/src/cell/libro-cell-service.ts +158 -0
- package/src/cell/libro-cell-view.tsx +156 -0
- package/src/cell/libro-edit-cell-view.tsx +205 -0
- package/src/cell/libro-executable-cell-model.ts +32 -0
- package/src/cell/libro-executable-cell-view.ts +86 -0
- package/src/cell/libro-markdown-cell-model.ts +20 -0
- package/src/collapse-service.ts +69 -0
- package/src/command/document-commands.ts +24 -0
- package/src/command/index.ts +6 -0
- package/src/command/kernel-command.ts +42 -0
- package/src/command/libro-command-contribution.ts +1346 -0
- package/src/command/libro-command-register.ts +168 -0
- package/src/command/module.ts +9 -0
- package/src/command/notebook-commands.ts +502 -0
- package/src/components/cell-protocol.ts +26 -0
- package/src/components/dnd-cell-item-render.tsx +465 -0
- package/src/components/dnd-component/custom-drag-layer.tsx +144 -0
- package/src/components/dnd-component/default-dnd-content.tsx +330 -0
- package/src/components/dnd-component/dnd-context.tsx +28 -0
- package/src/components/dnd-component/dnd-list.tsx +211 -0
- package/src/components/dnd-component/index.less +12 -0
- package/src/components/dnd-component/index.tsx +4 -0
- package/src/components/dnd-component/overscanIndices-getter.ts +92 -0
- package/src/components/dnd-component/virtualized-manager.ts +34 -0
- package/src/components/index.ts +5 -0
- package/src/components/libro-component.tsx +30 -0
- package/src/components/libro-side-toolbar-menu.tsx +82 -0
- package/src/components/libro-view-header.tsx +33 -0
- package/src/components/libro-virtualized-render.tsx +178 -0
- package/src/content/index.ts +5 -0
- package/src/content/libro-content-contribution.ts +16 -0
- package/src/content/libro-content-module.ts +17 -0
- package/src/content/libro-content-protocol.ts +14 -0
- package/src/content/libro-content-service.ts +48 -0
- package/src/content/libro-save-content-contribution.ts +12 -0
- package/src/formatter/index.ts +5 -0
- package/src/formatter/libro-formatter-json-contribution.ts +42 -0
- package/src/formatter/libro-formatter-manager.ts +85 -0
- package/src/formatter/libro-formatter-module.ts +19 -0
- package/src/formatter/libro-formatter-protocol.ts +63 -0
- package/src/formatter/libro-formatter-string-contribution.ts +41 -0
- package/src/formatter/libro-formatter-trans-default-contribution.ts +15 -0
- package/src/index.less +789 -0
- package/src/index.spec.ts +12 -0
- package/src/index.tsx +25 -0
- package/src/libro-context-key.ts +84 -0
- package/src/libro-keybind-registry.ts +43 -0
- package/src/libro-model.ts +710 -0
- package/src/libro-protocol.ts +435 -0
- package/src/libro-service.ts +234 -0
- package/src/libro-setting-contribution.ts +28 -0
- package/src/libro-setting.ts +110 -0
- package/src/libro-view-tracker.ts +9 -0
- package/src/libro-view.tsx +1532 -0
- package/src/libro-workspace-service.ts +28 -0
- package/src/material-from-designer.tsx +579 -0
- package/src/module.ts +121 -0
- package/src/output/index.ts +5 -0
- package/src/output/output-area.tsx +286 -0
- package/src/output/output-contribution.ts +14 -0
- package/src/output/output-model.tsx +70 -0
- package/src/output/output-module.ts +10 -0
- package/src/output/output-protocol.ts +168 -0
- package/src/settings/index.less +3 -0
- package/src/settings/index.ts +4 -0
- package/src/settings/module.ts +8 -0
- package/src/settings/setting-editor/configuration-panel-view.tsx +89 -0
- package/src/settings/setting-editor/configuration-render-contribution.ts +81 -0
- package/src/settings/setting-editor/default-node-render.tsx +65 -0
- package/src/settings/setting-editor/index.less +12 -0
- package/src/settings/setting-editor/index.ts +6 -0
- package/src/settings/setting-editor/module.ts +17 -0
- package/src/settings/setting-editor/setting-editor-view.tsx +93 -0
- package/src/settings/setting-editor/setting-tree-service.ts +82 -0
- package/src/settings/setting-editor/setting-tree-view.tsx +95 -0
- package/src/settings/settings-contribution.tsx +24 -0
- package/src/settings/settings-modal.less +3 -0
- package/src/settings/settings-modal.tsx +51 -0
- package/src/settings/settings-protocol.ts +7 -0
- package/src/slot/index.ts +4 -0
- package/src/slot/libro-slot-manager.ts +38 -0
- package/src/slot/libro-slot-protocol.ts +28 -0
- package/src/slot/libro-slot-view.tsx +48 -0
- package/src/slot/module.ts +9 -0
- package/src/theme/libro-color-registry.ts +386 -0
- package/src/toolbar/all-outputs-scroll-icon.tsx +19 -0
- package/src/toolbar/change-cell-to-selector.tsx +67 -0
- package/src/toolbar/hide-all-selector.tsx +126 -0
- package/src/toolbar/index.less +59 -0
- package/src/toolbar/index.ts +3 -0
- package/src/toolbar/libro-toolbar-protocol.ts +4 -0
- package/src/toolbar/libro-toolbar.tsx +231 -0
- package/src/toolbar/module.ts +11 -0
- package/src/toolbar/restart-clear-outputs-contribution.tsx +10 -0
- package/src/toolbar/restart-clear-outputs-modal.tsx +37 -0
- package/src/toolbar/save-icon.tsx +47 -0
- package/src/toolbar/shutdown-contribution.tsx +10 -0
- package/src/toolbar/shutdown-modal.tsx +37 -0
- package/src/toolbar/side-toolar-more-select.tsx +177 -0
- package/src/typings/index.d.ts +1 -0
- package/src/virtualized-manager-helper.ts +29 -0
- package/src/virtualized-manager.ts +47 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
2
|
+
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
3
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
4
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
5
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
6
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
7
|
+
import { EyeInvisibleOutlined } from '@ant-design/icons';
|
|
8
|
+
import { useInject, ToolbarInstance, getOrigin, CommandRegistry } from '@difizen/mana-app';
|
|
9
|
+
import { l10n } from '@difizen/mana-l10n';
|
|
10
|
+
import { Menu, Dropdown } from 'antd';
|
|
11
|
+
import { memo } from 'react';
|
|
12
|
+
import { ExecutableCellModel } from "../cell/index.js";
|
|
13
|
+
import { NotebookCommands } from "../command/index.js";
|
|
14
|
+
import "./index.less";
|
|
15
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
16
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
17
|
+
export var HideAllSelectInner = function HideAllSelectInner() {
|
|
18
|
+
var toolbar = useInject(ToolbarInstance);
|
|
19
|
+
var data = toolbar.currentArgs;
|
|
20
|
+
// const data = useInject(ToolbarArgs) as LibroToolbarArags;
|
|
21
|
+
var command = useInject(CommandRegistry);
|
|
22
|
+
var libroView = data === null || data === void 0 ? void 0 : data[1];
|
|
23
|
+
if (!libroView) {
|
|
24
|
+
return null;
|
|
25
|
+
}
|
|
26
|
+
var handleChange = function handleChange(e) {
|
|
27
|
+
var args = getOrigin(data) || [];
|
|
28
|
+
if (e.key === 'hideAllInputs') {
|
|
29
|
+
command.executeCommand.apply(command, [NotebookCommands['HideAllCellCode'].id].concat(_toConsumableArray(args)));
|
|
30
|
+
} else if (e.key === 'hideAllOutputs') {
|
|
31
|
+
command.executeCommand.apply(command, [NotebookCommands['HideAllCellOutput'].id].concat(_toConsumableArray(args)));
|
|
32
|
+
} else if (e.key === 'hideAll') {
|
|
33
|
+
command.executeCommand.apply(command, [NotebookCommands['HideAllCellCode'].id].concat(_toConsumableArray(args)));
|
|
34
|
+
command.executeCommand.apply(command, [NotebookCommands['HideAllCellOutput'].id].concat(_toConsumableArray(args)));
|
|
35
|
+
} else if (e.key === 'showAllInputs') {
|
|
36
|
+
command.executeCommand.apply(command, [NotebookCommands['ShowAllCellCode'].id].concat(_toConsumableArray(args)));
|
|
37
|
+
} else if (e.key === 'showAllOutputs') {
|
|
38
|
+
command.executeCommand.apply(command, [NotebookCommands['ShowAllCellOutputs'].id].concat(_toConsumableArray(args)));
|
|
39
|
+
} else if (e.key === 'showAll') {
|
|
40
|
+
command.executeCommand.apply(command, [NotebookCommands['ShowAllCellCode'].id].concat(_toConsumableArray(args)));
|
|
41
|
+
command.executeCommand.apply(command, [NotebookCommands['ShowAllCellOutputs'].id].concat(_toConsumableArray(args)));
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
//只要有一个cell input是显示的,隐藏cell input的选项都生效
|
|
45
|
+
var isCodeVisiable = libroView.model.getCells().findIndex(function (item) {
|
|
46
|
+
return item.hasInputHidden === false;
|
|
47
|
+
}) > -1 ? true : false;
|
|
48
|
+
//只要有一个cell input是隐藏的,显示cell input的选项都生效
|
|
49
|
+
var isCodeHidden = libroView.model.getCells().findIndex(function (item) {
|
|
50
|
+
return item.hasInputHidden === true;
|
|
51
|
+
}) > -1 ? true : false;
|
|
52
|
+
var isOutputVisible = libroView.model.getCells().findIndex(function (item) {
|
|
53
|
+
return ExecutableCellModel.is(item.model) && item.model.hasOutputHidden === false;
|
|
54
|
+
}) > -1 ? true : false;
|
|
55
|
+
var isOutputHidden = libroView.model.getCells().findIndex(function (item) {
|
|
56
|
+
return ExecutableCellModel.is(item.model) && item.model.hasOutputHidden === true;
|
|
57
|
+
}) > -1 ? true : false;
|
|
58
|
+
var menu = /*#__PURE__*/_jsx(Menu, {
|
|
59
|
+
onClick: handleChange,
|
|
60
|
+
items: [{
|
|
61
|
+
key: 'hideAllInputs',
|
|
62
|
+
label: l10n.t('隐藏全部Code'),
|
|
63
|
+
disabled: !isCodeVisiable
|
|
64
|
+
}, {
|
|
65
|
+
key: 'hideAllOutputs',
|
|
66
|
+
label: l10n.t('隐藏全部Output'),
|
|
67
|
+
disabled: !isOutputVisible
|
|
68
|
+
}, {
|
|
69
|
+
key: 'hideAll',
|
|
70
|
+
label: l10n.t('全部隐藏'),
|
|
71
|
+
disabled: !isCodeVisiable || !isOutputVisible
|
|
72
|
+
}, {
|
|
73
|
+
key: 'showAllInputs',
|
|
74
|
+
label: l10n.t('显示全部Code'),
|
|
75
|
+
disabled: !isCodeHidden
|
|
76
|
+
}, {
|
|
77
|
+
key: 'showAllOutputs',
|
|
78
|
+
label: l10n.t('显示全部Output'),
|
|
79
|
+
disabled: !isOutputHidden
|
|
80
|
+
}, {
|
|
81
|
+
key: 'showAll',
|
|
82
|
+
label: l10n.t('全部显示'),
|
|
83
|
+
disabled: !isCodeHidden || !isOutputHidden
|
|
84
|
+
}]
|
|
85
|
+
});
|
|
86
|
+
return /*#__PURE__*/_jsx(_Fragment, {
|
|
87
|
+
children: /*#__PURE__*/_jsx(Dropdown, {
|
|
88
|
+
overlay: menu,
|
|
89
|
+
placement: "bottomLeft",
|
|
90
|
+
overlayClassName: "libro-hide-selector-menu",
|
|
91
|
+
children: /*#__PURE__*/_jsx(EyeInvisibleOutlined, {
|
|
92
|
+
style: {
|
|
93
|
+
fontSize: 20
|
|
94
|
+
}
|
|
95
|
+
})
|
|
96
|
+
})
|
|
97
|
+
});
|
|
98
|
+
};
|
|
99
|
+
export var HideAllSelect = /*#__PURE__*/memo(HideAllSelectInner);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/toolbar/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,aAAa,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
// The prefix to use on all css classes from ant.
|
|
2
|
+
@ant-prefix: ant;
|
|
3
|
+
|
|
4
|
+
.libro-hide-selector-menu {
|
|
5
|
+
.@{ant-prefix}-dropdown-menu {
|
|
6
|
+
background-color: var(--mana-libro-popover-background-color);
|
|
7
|
+
}
|
|
8
|
+
.@{ant-prefix}-dropdown-menu-item {
|
|
9
|
+
color: var(--mana-libro-toolbar-menu-label-color);
|
|
10
|
+
}
|
|
11
|
+
.@{ant-prefix}-dropdown-menu-item-disabled {
|
|
12
|
+
color: var(--mana-libro-toolbar-menu-disabled-label-color) !important;
|
|
13
|
+
}
|
|
14
|
+
.@{ant-prefix}-dropdown-menu-item.@{ant-prefix}-dropdown-menu-item-disabled:hover,
|
|
15
|
+
.@{ant-prefix}-dropdown-menu-item:hover {
|
|
16
|
+
background-color: var(--mana-libro-menu-hover-color);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.libro-cell-selector {
|
|
21
|
+
background-color: var(--mana-libro-popover-background-color) !important;
|
|
22
|
+
.@{ant-prefix}-select-item-option-selected:not(
|
|
23
|
+
.@{ant-prefix}-select-item-option-disabled
|
|
24
|
+
),
|
|
25
|
+
.@{ant-prefix}-select-item-option-active:not(
|
|
26
|
+
.@{ant-prefix}-select-item-option-disabled
|
|
27
|
+
) {
|
|
28
|
+
background-color: var(--mana-libro-menu-hover-color) !important;
|
|
29
|
+
}
|
|
30
|
+
.@{ant-prefix}-select-item-option-content {
|
|
31
|
+
color: var(--mana-libro-toolbar-menu-label-color);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.libro-restart-kernel-modal,
|
|
36
|
+
.libro-shut-down-kernel-modal {
|
|
37
|
+
.@{ant-prefix}-modal-content {
|
|
38
|
+
background-color: var(--mana-libro-popover-background-color) !important;
|
|
39
|
+
}
|
|
40
|
+
.@{ant-prefix}-modal-header {
|
|
41
|
+
background: var(--mana-libro-popover-background-color);
|
|
42
|
+
border-color: var(--mana-libro-table-bottom-border-color);
|
|
43
|
+
}
|
|
44
|
+
.@{ant-prefix}-modal-title {
|
|
45
|
+
color: var(--mana-libro-modal-title-color);
|
|
46
|
+
}
|
|
47
|
+
.@{ant-prefix}-modal-body {
|
|
48
|
+
color: var(--mana-libro-modal-content-color);
|
|
49
|
+
}
|
|
50
|
+
.@{ant-prefix}-modal-footer {
|
|
51
|
+
border-color: var(--mana-libro-table-bottom-border-color);
|
|
52
|
+
}
|
|
53
|
+
.@{ant-prefix}-btn-primary {
|
|
54
|
+
background: var(--mana-libro-btn-primary-background-color);
|
|
55
|
+
}
|
|
56
|
+
.@{ant-prefix}-modal-close {
|
|
57
|
+
color: var(--mana-libro-close-color);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"libro-toolbar-protocol.d.ts","sourceRoot":"","sources":["../../src/toolbar/libro-toolbar-protocol.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,MAAM,iBAAiB,GAAG,CAAC,QAAQ,EAAE,SAAS,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { ToolbarRegistry } from '@difizen/mana-app';
|
|
2
|
+
import { ModalService, ToolbarContribution } from '@difizen/mana-app';
|
|
3
|
+
import { LibroService } from '../libro-service.js';
|
|
4
|
+
export declare class LibroToolbarContribution implements ToolbarContribution {
|
|
5
|
+
protected readonly modalService: ModalService;
|
|
6
|
+
protected readonly libroService: LibroService;
|
|
7
|
+
registerToolbarItems(registry: ToolbarRegistry): void;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=libro-toolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"libro-toolbar.d.ts","sourceRoot":"","sources":["../../src/toolbar/libro-toolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAEL,YAAY,EAEZ,mBAAmB,EAEpB,MAAM,mBAAmB,CAAC;AAI3B,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AA0BnD,qBACa,wBAAyB,YAAW,mBAAmB;IAC5C,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC;IAC9C,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC;IAEpE,oBAAoB,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI;CA2LtD"}
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _dec, _dec2, _dec3, _class, _class2, _descriptor, _descriptor2;
|
|
3
|
+
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
|
|
4
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
5
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
6
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
|
|
10
|
+
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
|
|
11
|
+
import { inject, ModalService, singleton, ToolbarContribution, useObserve } from '@difizen/mana-app';
|
|
12
|
+
import { l10n } from '@difizen/mana-l10n';
|
|
13
|
+
import { DocumentCommands, NotebookCommands } from "../command/index.js";
|
|
14
|
+
import { LibroService } from "../libro-service.js";
|
|
15
|
+
import { AllOutputsScrollIcon } from "./all-outputs-scroll-icon.js";
|
|
16
|
+
import { ToolItemSelect } from "./change-cell-to-selector.js";
|
|
17
|
+
import { HideAllSelect } from "./hide-all-selector.js";
|
|
18
|
+
// import { RunSelect } from './run-selector';
|
|
19
|
+
import { SaveIcon } from "./save-icon.js";
|
|
20
|
+
import { SideToolbarMoreSelect } from "./side-toolar-more-select.js";
|
|
21
|
+
// import { SideToolbarRunSelect } from './side-toolbar-run-select';
|
|
22
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
23
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
24
|
+
function OutputsScorllTooltip(_ref) {
|
|
25
|
+
var _service$active;
|
|
26
|
+
var libroService = _ref.libroService;
|
|
27
|
+
var service = useObserve(libroService);
|
|
28
|
+
return /*#__PURE__*/_jsx("div", {
|
|
29
|
+
className: "libro-tooltip",
|
|
30
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
31
|
+
className: "libro-tooltip-text",
|
|
32
|
+
children: l10n.t((_service$active = service.active) !== null && _service$active !== void 0 && _service$active.outputsScroll ? '取消固定 Output 展示高度' : '固定 Output 展示高度')
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
export var LibroToolbarContribution = (_dec = singleton({
|
|
37
|
+
contrib: [ToolbarContribution]
|
|
38
|
+
}), _dec2 = inject(ModalService), _dec3 = inject(LibroService), _dec(_class = (_class2 = /*#__PURE__*/function () {
|
|
39
|
+
function LibroToolbarContribution() {
|
|
40
|
+
_classCallCheck(this, LibroToolbarContribution);
|
|
41
|
+
_initializerDefineProperty(this, "modalService", _descriptor, this);
|
|
42
|
+
_initializerDefineProperty(this, "libroService", _descriptor2, this);
|
|
43
|
+
}
|
|
44
|
+
_createClass(LibroToolbarContribution, [{
|
|
45
|
+
key: "registerToolbarItems",
|
|
46
|
+
value: function registerToolbarItems(registry) {
|
|
47
|
+
registry.registerItem({
|
|
48
|
+
id: DocumentCommands['Save'].id,
|
|
49
|
+
command: DocumentCommands['Save'].id,
|
|
50
|
+
icon: SaveIcon,
|
|
51
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
52
|
+
className: "libro-tooltip",
|
|
53
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
54
|
+
className: "libro-tooltip-text",
|
|
55
|
+
children: l10n.t('保存')
|
|
56
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
57
|
+
className: "libro-tooltip-keybind",
|
|
58
|
+
children: "Cmd + S"
|
|
59
|
+
})]
|
|
60
|
+
}),
|
|
61
|
+
group: ['group1'],
|
|
62
|
+
order: '1'
|
|
63
|
+
});
|
|
64
|
+
registry.registerItem({
|
|
65
|
+
id: NotebookCommands['Interrupt'].id,
|
|
66
|
+
command: NotebookCommands['Interrupt'].id,
|
|
67
|
+
tooltip: /*#__PURE__*/_jsx("div", {
|
|
68
|
+
className: "libro-tooltip",
|
|
69
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
70
|
+
className: "libro-tooltip-text",
|
|
71
|
+
children: l10n.t('中断')
|
|
72
|
+
})
|
|
73
|
+
}),
|
|
74
|
+
showLabelInline: true,
|
|
75
|
+
group: ['group2'],
|
|
76
|
+
order: 'b-all'
|
|
77
|
+
});
|
|
78
|
+
registry.registerItem({
|
|
79
|
+
id: NotebookCommands['CloseAndShutdown'].id,
|
|
80
|
+
command: NotebookCommands['CloseAndShutdown'].id,
|
|
81
|
+
tooltip: /*#__PURE__*/_jsx("div", {
|
|
82
|
+
className: "libro-tooltip",
|
|
83
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
84
|
+
className: "libro-tooltip-text",
|
|
85
|
+
children: l10n.t('关闭内核')
|
|
86
|
+
})
|
|
87
|
+
}),
|
|
88
|
+
showLabelInline: true,
|
|
89
|
+
group: ['group2'],
|
|
90
|
+
order: 'b-all'
|
|
91
|
+
});
|
|
92
|
+
registry.registerItem({
|
|
93
|
+
id: NotebookCommands['RestartClearOutput'].id,
|
|
94
|
+
command: NotebookCommands['RestartClearOutput'].id,
|
|
95
|
+
tooltip: /*#__PURE__*/_jsx("div", {
|
|
96
|
+
className: "libro-tooltip",
|
|
97
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
98
|
+
className: "libro-tooltip-text",
|
|
99
|
+
children: l10n.t('重启并清空输出')
|
|
100
|
+
})
|
|
101
|
+
}),
|
|
102
|
+
showLabelInline: true,
|
|
103
|
+
group: ['group2'],
|
|
104
|
+
order: 'c-all'
|
|
105
|
+
});
|
|
106
|
+
registry.registerItem({
|
|
107
|
+
id: DocumentCommands['FormatCell'].id,
|
|
108
|
+
command: DocumentCommands['FormatCell'].id,
|
|
109
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
110
|
+
className: "libro-side-tooltip",
|
|
111
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
112
|
+
className: "libro-tooltip-text",
|
|
113
|
+
children: l10n.t('格式化代码')
|
|
114
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
115
|
+
className: "libro-tooltip-keybind",
|
|
116
|
+
children: "Shift+Option+F"
|
|
117
|
+
})]
|
|
118
|
+
}),
|
|
119
|
+
group: ['sidetoolbar1'],
|
|
120
|
+
order: 'd'
|
|
121
|
+
});
|
|
122
|
+
registry.registerItem({
|
|
123
|
+
id: NotebookCommands['MoveCellUp'].id,
|
|
124
|
+
command: NotebookCommands['MoveCellUp'].id,
|
|
125
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
126
|
+
className: "libro-side-tooltip",
|
|
127
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
128
|
+
className: "libro-tooltip-text",
|
|
129
|
+
children: l10n.t('上移')
|
|
130
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
131
|
+
className: "libro-tooltip-keybind",
|
|
132
|
+
children: "Up"
|
|
133
|
+
})]
|
|
134
|
+
}),
|
|
135
|
+
group: ['sidetoolbar1'],
|
|
136
|
+
order: 'e'
|
|
137
|
+
});
|
|
138
|
+
registry.registerItem({
|
|
139
|
+
id: NotebookCommands['MoveCellDown'].id,
|
|
140
|
+
command: NotebookCommands['MoveCellDown'].id,
|
|
141
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
142
|
+
className: "libro-side-tooltip",
|
|
143
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
144
|
+
className: "libro-tooltip-text",
|
|
145
|
+
children: l10n.t('下移')
|
|
146
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
147
|
+
className: "libro-tooltip-keybind",
|
|
148
|
+
children: "Down"
|
|
149
|
+
})]
|
|
150
|
+
}),
|
|
151
|
+
group: ['sidetoolbar1'],
|
|
152
|
+
order: 'f'
|
|
153
|
+
});
|
|
154
|
+
registry.registerItem({
|
|
155
|
+
id: NotebookCommands['InsertCellBelow'].id,
|
|
156
|
+
command: NotebookCommands['InsertCellBelow'].id,
|
|
157
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
158
|
+
className: "libro-side-tooltip",
|
|
159
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
160
|
+
className: "libro-tooltip-text",
|
|
161
|
+
children: l10n.t('增加')
|
|
162
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
163
|
+
className: "libro-tooltip-keybind",
|
|
164
|
+
children: "B"
|
|
165
|
+
})]
|
|
166
|
+
}),
|
|
167
|
+
group: ['sidetoolbar2'],
|
|
168
|
+
order: 'g1'
|
|
169
|
+
});
|
|
170
|
+
registry.registerItem({
|
|
171
|
+
id: NotebookCommands['DeleteCell'].id,
|
|
172
|
+
command: NotebookCommands['DeleteCell'].id,
|
|
173
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
174
|
+
className: "libro-side-tooltip",
|
|
175
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
176
|
+
className: "libro-tooltip-text",
|
|
177
|
+
children: l10n.t('删除')
|
|
178
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
179
|
+
className: "libro-tooltip-keybind",
|
|
180
|
+
children: "D D"
|
|
181
|
+
})]
|
|
182
|
+
}),
|
|
183
|
+
group: ['sidetoolbar2'],
|
|
184
|
+
order: 'g2'
|
|
185
|
+
});
|
|
186
|
+
registry.registerItem({
|
|
187
|
+
id: NotebookCommands['UndoCellAction'].id,
|
|
188
|
+
command: NotebookCommands['UndoCellAction'].id,
|
|
189
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
190
|
+
className: "libro-tooltip",
|
|
191
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
192
|
+
className: "libro-tooltip-text",
|
|
193
|
+
children: l10n.t('撤销')
|
|
194
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
195
|
+
className: "libro-tooltip-keybind",
|
|
196
|
+
children: "Z"
|
|
197
|
+
})]
|
|
198
|
+
}),
|
|
199
|
+
group: ['group3'],
|
|
200
|
+
order: 'h1'
|
|
201
|
+
});
|
|
202
|
+
registry.registerItem({
|
|
203
|
+
id: NotebookCommands['RedoCellAction'].id,
|
|
204
|
+
command: NotebookCommands['RedoCellAction'].id,
|
|
205
|
+
tooltip: /*#__PURE__*/_jsxs("div", {
|
|
206
|
+
className: "libro-tooltip",
|
|
207
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
208
|
+
className: "libro-tooltip-text",
|
|
209
|
+
children: l10n.t('重做')
|
|
210
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
211
|
+
className: "libro-tooltip-keybind",
|
|
212
|
+
children: "Shift + Z"
|
|
213
|
+
})]
|
|
214
|
+
}),
|
|
215
|
+
group: ['group3'],
|
|
216
|
+
order: 'h2'
|
|
217
|
+
});
|
|
218
|
+
registry.registerItem({
|
|
219
|
+
id: NotebookCommands['EnableOrDisableAllOutputScrolling'].id,
|
|
220
|
+
command: NotebookCommands['EnableOrDisableAllOutputScrolling'].id,
|
|
221
|
+
tooltip: /*#__PURE__*/_jsx(OutputsScorllTooltip, {
|
|
222
|
+
libroService: this.libroService
|
|
223
|
+
}),
|
|
224
|
+
group: ['group3'],
|
|
225
|
+
order: 'h2',
|
|
226
|
+
icon: AllOutputsScrollIcon
|
|
227
|
+
});
|
|
228
|
+
registry.registerItem({
|
|
229
|
+
id: NotebookCommands['HideAllCell'].id,
|
|
230
|
+
command: NotebookCommands['HideAllCell'].id,
|
|
231
|
+
icon: HideAllSelect,
|
|
232
|
+
group: ['group3'],
|
|
233
|
+
order: 'i'
|
|
234
|
+
});
|
|
235
|
+
registry.registerItem({
|
|
236
|
+
id: NotebookCommands['ClearAllCellOutput'].id,
|
|
237
|
+
command: NotebookCommands['ClearAllCellOutput'].id,
|
|
238
|
+
tooltip: /*#__PURE__*/_jsx("div", {
|
|
239
|
+
className: "libro-tooltip",
|
|
240
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
241
|
+
className: "libro-tooltip-text",
|
|
242
|
+
children: l10n.t('清空输出')
|
|
243
|
+
})
|
|
244
|
+
}),
|
|
245
|
+
group: ['group3'],
|
|
246
|
+
order: 'j'
|
|
247
|
+
});
|
|
248
|
+
registry.registerItem({
|
|
249
|
+
id: NotebookCommands['ChangeCellTo'].id,
|
|
250
|
+
icon: ToolItemSelect,
|
|
251
|
+
command: NotebookCommands['ChangeCellTo'].id,
|
|
252
|
+
group: ['group4'],
|
|
253
|
+
order: 'k'
|
|
254
|
+
});
|
|
255
|
+
registry.registerItem({
|
|
256
|
+
id: NotebookCommands['More'].id,
|
|
257
|
+
icon: SideToolbarMoreSelect,
|
|
258
|
+
command: NotebookCommands['More'].id,
|
|
259
|
+
group: ['sidetoolbar3'],
|
|
260
|
+
order: 'm'
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
}]);
|
|
264
|
+
return LibroToolbarContribution;
|
|
265
|
+
}(), (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "modalService", [_dec2], {
|
|
266
|
+
configurable: true,
|
|
267
|
+
enumerable: true,
|
|
268
|
+
writable: true,
|
|
269
|
+
initializer: null
|
|
270
|
+
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, "libroService", [_dec3], {
|
|
271
|
+
configurable: true,
|
|
272
|
+
enumerable: true,
|
|
273
|
+
writable: true,
|
|
274
|
+
initializer: null
|
|
275
|
+
})), _class2)) || _class);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/toolbar/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAM/C,eAAO,MAAM,kBAAkB,YAI9B,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ManaModule } from '@difizen/mana-app';
|
|
2
|
+
import { LibroToolbarContribution } from "./libro-toolbar.js";
|
|
3
|
+
import { RestartClearOutputsContribution } from "./restart-clear-outputs-contribution.js";
|
|
4
|
+
import { ShutdownContribution } from "./shutdown-contribution.js";
|
|
5
|
+
export var LibroToolbarModule = ManaModule.create().register(LibroToolbarContribution, RestartClearOutputsContribution, ShutdownContribution);
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ModalContribution } from '@difizen/mana-app';
|
|
2
|
+
export declare class RestartClearOutputsContribution implements ModalContribution {
|
|
3
|
+
registerModal(): import("@difizen/mana-app").ModalItem<import("../libro-view.js").LibroView>;
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=restart-clear-outputs-contribution.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"restart-clear-outputs-contribution.d.ts","sourceRoot":"","sources":["../../src/toolbar/restart-clear-outputs-contribution.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,mBAAmB,CAAC;AAIjE,qBACa,+BAAgC,YAAW,iBAAiB;IACvE,aAAa;CAGd"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _dec, _class;
|
|
3
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
4
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
5
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
6
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
7
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
|
+
import { ModalContribution, singleton } from '@difizen/mana-app';
|
|
9
|
+
import { RestartClearOutputModal } from "./restart-clear-outputs-modal.js";
|
|
10
|
+
export var RestartClearOutputsContribution = (_dec = singleton({
|
|
11
|
+
contrib: ModalContribution
|
|
12
|
+
}), _dec(_class = /*#__PURE__*/function () {
|
|
13
|
+
function RestartClearOutputsContribution() {
|
|
14
|
+
_classCallCheck(this, RestartClearOutputsContribution);
|
|
15
|
+
}
|
|
16
|
+
_createClass(RestartClearOutputsContribution, [{
|
|
17
|
+
key: "registerModal",
|
|
18
|
+
value: function registerModal() {
|
|
19
|
+
return RestartClearOutputModal;
|
|
20
|
+
}
|
|
21
|
+
}]);
|
|
22
|
+
return RestartClearOutputsContribution;
|
|
23
|
+
}()) || _class);
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ModalItemProps, ModalItem } from '@difizen/mana-app';
|
|
2
|
+
import type { LibroView } from '../libro-view.js';
|
|
3
|
+
export declare function RestartClearOutputModalComponent({ visible, close, data, }: ModalItemProps<LibroView>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const RestartClearOutputModal: ModalItem<LibroView>;
|
|
5
|
+
//# sourceMappingURL=restart-clear-outputs-modal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"restart-clear-outputs-modal.d.ts","sourceRoot":"","sources":["../../src/toolbar/restart-clear-outputs-modal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAKnE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAElD,wBAAgB,gCAAgC,CAAC,EAC/C,OAAO,EACP,KAAK,EACL,IAAI,GACL,EAAE,cAAc,CAAC,SAAS,CAAC,2CAoB3B;AAED,eAAO,MAAM,uBAAuB,EAAE,SAAS,CAAC,SAAS,CAGxD,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Modal } from 'antd';
|
|
2
|
+
import { useCallback } from 'react';
|
|
3
|
+
import { NotebookCommands } from "../command/index.js";
|
|
4
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
5
|
+
export function RestartClearOutputModalComponent(_ref) {
|
|
6
|
+
var visible = _ref.visible,
|
|
7
|
+
close = _ref.close,
|
|
8
|
+
data = _ref.data;
|
|
9
|
+
var handleRestart = useCallback(function () {
|
|
10
|
+
data === null || data === void 0 || data.restartClearOutput();
|
|
11
|
+
close();
|
|
12
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
13
|
+
}, [data]);
|
|
14
|
+
return /*#__PURE__*/_jsx(Modal, {
|
|
15
|
+
title: "Restart Kernel?",
|
|
16
|
+
open: visible,
|
|
17
|
+
onOk: handleRestart,
|
|
18
|
+
onCancel: function onCancel() {
|
|
19
|
+
return close();
|
|
20
|
+
},
|
|
21
|
+
width: '400px',
|
|
22
|
+
centered: true,
|
|
23
|
+
className: "libro-restart-kernel-modal",
|
|
24
|
+
children: "Do you want to restart the current kernel? All variables will be lost."
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
export var RestartClearOutputModal = {
|
|
28
|
+
id: NotebookCommands['RestartClearOutput'].id,
|
|
29
|
+
component: RestartClearOutputModalComponent
|
|
30
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"save-icon.d.ts","sourceRoot":"","sources":["../../src/toolbar/save-icon.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAKhC,eAAO,MAAM,QAAQ,EAAE,EAiCtB,CAAC"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
2
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
3
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
4
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
5
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
6
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
7
|
+
import { SaveOutlined, CheckOutlined, CloseOutlined, LoadingOutlined } from '@ant-design/icons';
|
|
8
|
+
import { useInject, ViewInstance } from '@difizen/mana-app';
|
|
9
|
+
import { useEffect, useCallback, useState } from 'react';
|
|
10
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
11
|
+
export var SaveIcon = function SaveIcon() {
|
|
12
|
+
var _useState = useState(undefined),
|
|
13
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
14
|
+
saved = _useState2[0],
|
|
15
|
+
setSaved = _useState2[1];
|
|
16
|
+
var libroView = useInject(ViewInstance);
|
|
17
|
+
var handleSave = useCallback(function (result) {
|
|
18
|
+
setSaved(result);
|
|
19
|
+
setTimeout(function () {
|
|
20
|
+
setSaved(undefined);
|
|
21
|
+
}, 500);
|
|
22
|
+
}, []);
|
|
23
|
+
useEffect(function () {
|
|
24
|
+
var toDispose;
|
|
25
|
+
if (libroView) {
|
|
26
|
+
toDispose = libroView.onSave(function (result) {
|
|
27
|
+
handleSave(result);
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
return function () {
|
|
31
|
+
var _toDispose;
|
|
32
|
+
(_toDispose = toDispose) === null || _toDispose === void 0 || _toDispose.dispose();
|
|
33
|
+
};
|
|
34
|
+
}, [handleSave, libroView]);
|
|
35
|
+
if (saved !== undefined) {
|
|
36
|
+
if (saved) {
|
|
37
|
+
return /*#__PURE__*/_jsx(CheckOutlined, {
|
|
38
|
+
style: {
|
|
39
|
+
color: 'green'
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
} else {
|
|
43
|
+
return /*#__PURE__*/_jsx(CloseOutlined, {
|
|
44
|
+
style: {
|
|
45
|
+
color: 'red'
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
if (libroView !== null && libroView !== void 0 && libroView.saving) {
|
|
51
|
+
return /*#__PURE__*/_jsx(LoadingOutlined, {});
|
|
52
|
+
}
|
|
53
|
+
return /*#__PURE__*/_jsx(SaveOutlined, {});
|
|
54
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ModalContribution } from '@difizen/mana-app';
|
|
2
|
+
export declare class ShutdownContribution implements ModalContribution {
|
|
3
|
+
registerModal(): import("@difizen/mana-app").ModalItem<import("../libro-view.js").LibroView>;
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=shutdown-contribution.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shutdown-contribution.d.ts","sourceRoot":"","sources":["../../src/toolbar/shutdown-contribution.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,mBAAmB,CAAC;AAIjE,qBACa,oBAAqB,YAAW,iBAAiB;IAC5D,aAAa;CAGd"}
|