@opensumi/ide-core-browser 2.12.1-next-079c1930
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/README.md +16 -0
- package/lib/application/application-state-service.d.ts +16 -0
- package/lib/application/application-state-service.d.ts.map +1 -0
- package/lib/application/application-state-service.js +47 -0
- package/lib/application/application-state-service.js.map +1 -0
- package/lib/application/application.service.d.ts +11 -0
- package/lib/application/application.service.d.ts.map +1 -0
- package/lib/application/application.service.js +41 -0
- package/lib/application/application.service.js.map +1 -0
- package/lib/application/index.d.ts +3 -0
- package/lib/application/index.d.ts.map +1 -0
- package/lib/application/index.js +6 -0
- package/lib/application/index.js.map +1 -0
- package/lib/authentication/authentication.contribution.d.ts +8 -0
- package/lib/authentication/authentication.contribution.d.ts.map +1 -0
- package/lib/authentication/authentication.contribution.js +32 -0
- package/lib/authentication/authentication.contribution.js.map +1 -0
- package/lib/authentication/authentication.service.d.ts +54 -0
- package/lib/authentication/authentication.service.d.ts.map +1 -0
- package/lib/authentication/authentication.service.js +413 -0
- package/lib/authentication/authentication.service.js.map +1 -0
- package/lib/bootstrap/app.d.ts +142 -0
- package/lib/bootstrap/app.d.ts.map +1 -0
- package/lib/bootstrap/app.js +516 -0
- package/lib/bootstrap/app.js.map +1 -0
- package/lib/bootstrap/app.view.d.ts +11 -0
- package/lib/bootstrap/app.view.d.ts.map +1 -0
- package/lib/bootstrap/app.view.js +72 -0
- package/lib/bootstrap/app.view.js.map +1 -0
- package/lib/bootstrap/connection.d.ts +7 -0
- package/lib/bootstrap/connection.d.ts.map +1 -0
- package/lib/bootstrap/connection.js +78 -0
- package/lib/bootstrap/connection.js.map +1 -0
- package/lib/bootstrap/index.d.ts +4 -0
- package/lib/bootstrap/index.d.ts.map +1 -0
- package/lib/bootstrap/index.js +7 -0
- package/lib/bootstrap/index.js.map +1 -0
- package/lib/bootstrap/inner-providers.d.ts +3 -0
- package/lib/bootstrap/inner-providers.d.ts.map +1 -0
- package/lib/bootstrap/inner-providers.js +231 -0
- package/lib/bootstrap/inner-providers.js.map +1 -0
- package/lib/browser-module.d.ts +20 -0
- package/lib/browser-module.d.ts.map +1 -0
- package/lib/browser-module.js +15 -0
- package/lib/browser-module.js.map +1 -0
- package/lib/common/common.command.d.ts +156 -0
- package/lib/common/common.command.d.ts.map +1 -0
- package/lib/common/common.command.js +611 -0
- package/lib/common/common.command.js.map +1 -0
- package/lib/common/common.contribution.d.ts +22 -0
- package/lib/common/common.contribution.d.ts.map +1 -0
- package/lib/common/common.contribution.js +241 -0
- package/lib/common/common.contribution.js.map +1 -0
- package/lib/common/common.define.d.ts +47 -0
- package/lib/common/common.define.d.ts.map +1 -0
- package/lib/common/common.define.js +5 -0
- package/lib/common/common.define.js.map +1 -0
- package/lib/common/common.module.d.ts +13 -0
- package/lib/common/common.module.d.ts.map +1 -0
- package/lib/common/common.module.js +41 -0
- package/lib/common/common.module.js.map +1 -0
- package/lib/common/common.storage.d.ts +9 -0
- package/lib/common/common.storage.d.ts.map +1 -0
- package/lib/common/common.storage.js +25 -0
- package/lib/common/common.storage.js.map +1 -0
- package/lib/common/index.d.ts +5 -0
- package/lib/common/index.d.ts.map +1 -0
- package/lib/common/index.js +8 -0
- package/lib/common/index.js.map +1 -0
- package/lib/components/actions/index.d.ts +77 -0
- package/lib/components/actions/index.d.ts.map +1 -0
- package/lib/components/actions/index.js +201 -0
- package/lib/components/actions/index.js.map +1 -0
- package/lib/components/actions/placements.d.ts +58 -0
- package/lib/components/actions/placements.d.ts.map +1 -0
- package/lib/components/actions/placements.js +48 -0
- package/lib/components/actions/placements.js.map +1 -0
- package/lib/components/actions/styles.module.less +128 -0
- package/lib/components/badge/index.d.ts +2 -0
- package/lib/components/badge/index.d.ts.map +1 -0
- package/lib/components/badge/index.js +6 -0
- package/lib/components/badge/index.js.map +1 -0
- package/lib/components/click-outside/index.d.ts +6 -0
- package/lib/components/click-outside/index.d.ts.map +1 -0
- package/lib/components/click-outside/index.js +27 -0
- package/lib/components/click-outside/index.js.map +1 -0
- package/lib/components/index.d.ts +25 -0
- package/lib/components/index.d.ts.map +1 -0
- package/lib/components/index.js +30 -0
- package/lib/components/index.js.map +1 -0
- package/lib/components/layout/box-panel.d.ts +18 -0
- package/lib/components/layout/box-panel.d.ts.map +1 -0
- package/lib/components/layout/box-panel.js +20 -0
- package/lib/components/layout/box-panel.js.map +1 -0
- package/lib/components/layout/default-layout.d.ts +15 -0
- package/lib/components/layout/default-layout.d.ts.map +1 -0
- package/lib/components/layout/default-layout.js +39 -0
- package/lib/components/layout/default-layout.js.map +1 -0
- package/lib/components/layout/index.d.ts +5 -0
- package/lib/components/layout/index.d.ts.map +1 -0
- package/lib/components/layout/index.js +8 -0
- package/lib/components/layout/index.js.map +1 -0
- package/lib/components/layout/layout.d.ts +13 -0
- package/lib/components/layout/layout.d.ts.map +1 -0
- package/lib/components/layout/layout.js +72 -0
- package/lib/components/layout/layout.js.map +1 -0
- package/lib/components/layout/split-panel.d.ts +38 -0
- package/lib/components/layout/split-panel.d.ts.map +1 -0
- package/lib/components/layout/split-panel.js +182 -0
- package/lib/components/layout/split-panel.js.map +1 -0
- package/lib/components/layout/split-panel.service.d.ts +16 -0
- package/lib/components/layout/split-panel.service.d.ts.map +1 -0
- package/lib/components/layout/split-panel.service.js +69 -0
- package/lib/components/layout/split-panel.service.js.map +1 -0
- package/lib/components/layout/styles.module.less +119 -0
- package/lib/components/loading/index.d.ts +2 -0
- package/lib/components/loading/index.d.ts.map +1 -0
- package/lib/components/loading/index.js +5 -0
- package/lib/components/loading/index.js.map +1 -0
- package/lib/components/loading/loading.less +14 -0
- package/lib/components/loading/loading.view.d.ts +4 -0
- package/lib/components/loading/loading.view.d.ts.map +1 -0
- package/lib/components/loading/loading.view.js +12 -0
- package/lib/components/loading/loading.view.js.map +1 -0
- package/lib/components/loading/media/loading-dark.svg +52 -0
- package/lib/components/loading/media/loading-hc.svg +52 -0
- package/lib/components/loading/media/loading.svg +52 -0
- package/lib/components/popover/styles.module.less +81 -0
- package/lib/components/portal/index.d.ts +6 -0
- package/lib/components/portal/index.d.ts.map +1 -0
- package/lib/components/portal/index.js +11 -0
- package/lib/components/portal/index.js.map +1 -0
- package/lib/components/progressbar/index.d.ts +5 -0
- package/lib/components/progressbar/index.d.ts.map +1 -0
- package/lib/components/progressbar/index.js +15 -0
- package/lib/components/progressbar/index.js.map +1 -0
- package/lib/components/progressbar/styles.module.less +31 -0
- package/lib/components/recycle-tree/index.d.ts +2 -0
- package/lib/components/recycle-tree/index.d.ts.map +1 -0
- package/lib/components/recycle-tree/index.js +5 -0
- package/lib/components/recycle-tree/index.js.map +1 -0
- package/lib/components/recycle-tree/recycle-tree.view.d.ts +82 -0
- package/lib/components/recycle-tree/recycle-tree.view.d.ts.map +1 -0
- package/lib/components/recycle-tree/recycle-tree.view.js +192 -0
- package/lib/components/recycle-tree/recycle-tree.view.js.map +1 -0
- package/lib/components/resize/resize.d.ts +39 -0
- package/lib/components/resize/resize.d.ts.map +1 -0
- package/lib/components/resize/resize.js +609 -0
- package/lib/components/resize/resize.js.map +1 -0
- package/lib/components/resize/resize.module.less +78 -0
- package/lib/components/scrollbar/index.d.ts +2 -0
- package/lib/components/scrollbar/index.d.ts.map +1 -0
- package/lib/components/scrollbar/index.js +5 -0
- package/lib/components/scrollbar/index.js.map +1 -0
- package/lib/components/scrollbar/scrollbar.less +36 -0
- package/lib/components/scrollbar/scrollbar.view.d.ts +7 -0
- package/lib/components/scrollbar/scrollbar.view.d.ts.map +1 -0
- package/lib/components/scrollbar/scrollbar.view.js +11 -0
- package/lib/components/scrollbar/scrollbar.view.js.map +1 -0
- package/lib/components/select/index.d.ts +4 -0
- package/lib/components/select/index.d.ts.map +1 -0
- package/lib/components/select/index.js +14 -0
- package/lib/components/select/index.js.map +1 -0
- package/lib/components/select/styles.less +8 -0
- package/lib/components/tree/index.d.ts +4 -0
- package/lib/components/tree/index.d.ts.map +1 -0
- package/lib/components/tree/index.js +7 -0
- package/lib/components/tree/index.js.map +1 -0
- package/lib/components/tree/tree-node.view.d.ts +26 -0
- package/lib/components/tree/tree-node.view.d.ts.map +1 -0
- package/lib/components/tree/tree-node.view.js +346 -0
- package/lib/components/tree/tree-node.view.js.map +1 -0
- package/lib/components/tree/tree.module.less +295 -0
- package/lib/components/tree/tree.view.d.ts +132 -0
- package/lib/components/tree/tree.view.d.ts.map +1 -0
- package/lib/components/tree/tree.view.js +246 -0
- package/lib/components/tree/tree.view.js.map +1 -0
- package/lib/context-key.d.ts +32 -0
- package/lib/context-key.d.ts.map +1 -0
- package/lib/context-key.js +9 -0
- package/lib/context-key.js.map +1 -0
- package/lib/contextkey/explorer.d.ts +16 -0
- package/lib/contextkey/explorer.d.ts.map +1 -0
- package/lib/contextkey/explorer.js +20 -0
- package/lib/contextkey/explorer.js.map +1 -0
- package/lib/contextkey/index.d.ts +6 -0
- package/lib/contextkey/index.d.ts.map +1 -0
- package/lib/contextkey/index.js +9 -0
- package/lib/contextkey/index.js.map +1 -0
- package/lib/contextkey/outline.d.ts +4 -0
- package/lib/contextkey/outline.d.ts.map +1 -0
- package/lib/contextkey/outline.js +7 -0
- package/lib/contextkey/outline.js.map +1 -0
- package/lib/contextkey/resource.d.ts +17 -0
- package/lib/contextkey/resource.d.ts.map +1 -0
- package/lib/contextkey/resource.js +45 -0
- package/lib/contextkey/resource.js.map +1 -0
- package/lib/contextkey/terminal.d.ts +7 -0
- package/lib/contextkey/terminal.d.ts.map +1 -0
- package/lib/contextkey/terminal.js +10 -0
- package/lib/contextkey/terminal.js.map +1 -0
- package/lib/contextkey/workspace.d.ts +7 -0
- package/lib/contextkey/workspace.d.ts.map +1 -0
- package/lib/contextkey/workspace.js +10 -0
- package/lib/contextkey/workspace.js.map +1 -0
- package/lib/core-preferences.d.ts +57 -0
- package/lib/core-preferences.d.ts.map +1 -0
- package/lib/core-preferences.js +328 -0
- package/lib/core-preferences.js.map +1 -0
- package/lib/dom/index.d.ts +68 -0
- package/lib/dom/index.d.ts.map +1 -0
- package/lib/dom/index.js +126 -0
- package/lib/dom/index.js.map +1 -0
- package/lib/encoding-registry.d.ts +31 -0
- package/lib/encoding-registry.d.ts.map +1 -0
- package/lib/encoding-registry.js +85 -0
- package/lib/encoding-registry.js.map +1 -0
- package/lib/fs/index.d.ts +12 -0
- package/lib/fs/index.d.ts.map +1 -0
- package/lib/fs/index.js +9 -0
- package/lib/fs/index.js.map +1 -0
- package/lib/hash-calculate/hash-calculate.contribution.d.ts +6 -0
- package/lib/hash-calculate/hash-calculate.contribution.d.ts.map +1 -0
- package/lib/hash-calculate/hash-calculate.contribution.js +27 -0
- package/lib/hash-calculate/hash-calculate.contribution.js.map +1 -0
- package/lib/index.d.ts +28 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +34 -0
- package/lib/index.js.map +1 -0
- package/lib/keybinding/index.d.ts +2 -0
- package/lib/keybinding/index.d.ts.map +1 -0
- package/lib/keybinding/index.js +5 -0
- package/lib/keybinding/index.js.map +1 -0
- package/lib/keybinding/keybinding.d.ts +340 -0
- package/lib/keybinding/keybinding.d.ts.map +1 -0
- package/lib/keybinding/keybinding.js +720 -0
- package/lib/keybinding/keybinding.js.map +1 -0
- package/lib/keyboard/index.d.ts +4 -0
- package/lib/keyboard/index.d.ts.map +1 -0
- package/lib/keyboard/index.js +7 -0
- package/lib/keyboard/index.js.map +1 -0
- package/lib/keyboard/keyboard-layout-provider.d.ts +92 -0
- package/lib/keyboard/keyboard-layout-provider.d.ts.map +1 -0
- package/lib/keyboard/keyboard-layout-provider.js +344 -0
- package/lib/keyboard/keyboard-layout-provider.js.map +1 -0
- package/lib/keyboard/keyboard-layout-service.d.ts +65 -0
- package/lib/keyboard/keyboard-layout-service.d.ts.map +1 -0
- package/lib/keyboard/keyboard-layout-service.js +415 -0
- package/lib/keyboard/keyboard-layout-service.js.map +1 -0
- package/lib/keyboard/keys.d.ts +294 -0
- package/lib/keyboard/keys.d.ts.map +1 -0
- package/lib/keyboard/keys.js +699 -0
- package/lib/keyboard/keys.js.map +1 -0
- package/lib/keyboard/layouts/_.contribution.d.ts +9 -0
- package/lib/keyboard/layouts/_.contribution.d.ts.map +1 -0
- package/lib/keyboard/layouts/_.contribution.js +21 -0
- package/lib/keyboard/layouts/_.contribution.js.map +1 -0
- package/lib/keyboard/layouts/cz.win.d.ts +2 -0
- package/lib/keyboard/layouts/cz.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/cz.win.js +169 -0
- package/lib/keyboard/layouts/cz.win.js.map +1 -0
- package/lib/keyboard/layouts/de-swiss.win.d.ts +2 -0
- package/lib/keyboard/layouts/de-swiss.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/de-swiss.win.js +169 -0
- package/lib/keyboard/layouts/de-swiss.win.js.map +1 -0
- package/lib/keyboard/layouts/de.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/de.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/de.darwin.js +132 -0
- package/lib/keyboard/layouts/de.darwin.js.map +1 -0
- package/lib/keyboard/layouts/de.linux.d.ts +2 -0
- package/lib/keyboard/layouts/de.linux.d.ts.map +1 -0
- package/lib/keyboard/layouts/de.linux.js +187 -0
- package/lib/keyboard/layouts/de.linux.js.map +1 -0
- package/lib/keyboard/layouts/de.win.d.ts +2 -0
- package/lib/keyboard/layouts/de.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/de.win.js +169 -0
- package/lib/keyboard/layouts/de.win.js.map +1 -0
- package/lib/keyboard/layouts/dk.win.d.ts +2 -0
- package/lib/keyboard/layouts/dk.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/dk.win.js +169 -0
- package/lib/keyboard/layouts/dk.win.js.map +1 -0
- package/lib/keyboard/layouts/dvorak.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/dvorak.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/dvorak.darwin.js +132 -0
- package/lib/keyboard/layouts/dvorak.darwin.js.map +1 -0
- package/lib/keyboard/layouts/en-belgian.win.d.ts +2 -0
- package/lib/keyboard/layouts/en-belgian.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/en-belgian.win.js +169 -0
- package/lib/keyboard/layouts/en-belgian.win.js.map +1 -0
- package/lib/keyboard/layouts/en-ext.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/en-ext.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/en-ext.darwin.js +132 -0
- package/lib/keyboard/layouts/en-ext.darwin.js.map +1 -0
- package/lib/keyboard/layouts/en-in.win.d.ts +2 -0
- package/lib/keyboard/layouts/en-in.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/en-in.win.js +169 -0
- package/lib/keyboard/layouts/en-in.win.js.map +1 -0
- package/lib/keyboard/layouts/en-intl.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/en-intl.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/en-intl.darwin.js +132 -0
- package/lib/keyboard/layouts/en-intl.darwin.js.map +1 -0
- package/lib/keyboard/layouts/en-intl.win.d.ts +2 -0
- package/lib/keyboard/layouts/en-intl.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/en-intl.win.js +169 -0
- package/lib/keyboard/layouts/en-intl.win.js.map +1 -0
- package/lib/keyboard/layouts/en-uk.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/en-uk.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/en-uk.darwin.js +132 -0
- package/lib/keyboard/layouts/en-uk.darwin.js.map +1 -0
- package/lib/keyboard/layouts/en-uk.win.d.ts +2 -0
- package/lib/keyboard/layouts/en-uk.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/en-uk.win.js +169 -0
- package/lib/keyboard/layouts/en-uk.win.js.map +1 -0
- package/lib/keyboard/layouts/en.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/en.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/en.darwin.js +140 -0
- package/lib/keyboard/layouts/en.darwin.js.map +1 -0
- package/lib/keyboard/layouts/en.linux.d.ts +2 -0
- package/lib/keyboard/layouts/en.linux.d.ts.map +1 -0
- package/lib/keyboard/layouts/en.linux.js +189 -0
- package/lib/keyboard/layouts/en.linux.js.map +1 -0
- package/lib/keyboard/layouts/en.win.d.ts +2 -0
- package/lib/keyboard/layouts/en.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/en.win.js +174 -0
- package/lib/keyboard/layouts/en.win.js.map +1 -0
- package/lib/keyboard/layouts/es-latin.win.d.ts +2 -0
- package/lib/keyboard/layouts/es-latin.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/es-latin.win.js +169 -0
- package/lib/keyboard/layouts/es-latin.win.js.map +1 -0
- package/lib/keyboard/layouts/es.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/es.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/es.darwin.js +132 -0
- package/lib/keyboard/layouts/es.darwin.js.map +1 -0
- package/lib/keyboard/layouts/es.linux.d.ts +2 -0
- package/lib/keyboard/layouts/es.linux.d.ts.map +1 -0
- package/lib/keyboard/layouts/es.linux.js +187 -0
- package/lib/keyboard/layouts/es.linux.js.map +1 -0
- package/lib/keyboard/layouts/es.win.d.ts +2 -0
- package/lib/keyboard/layouts/es.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/es.win.js +169 -0
- package/lib/keyboard/layouts/es.win.js.map +1 -0
- package/lib/keyboard/layouts/fr.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/fr.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/fr.darwin.js +132 -0
- package/lib/keyboard/layouts/fr.darwin.js.map +1 -0
- package/lib/keyboard/layouts/fr.linux.d.ts +2 -0
- package/lib/keyboard/layouts/fr.linux.d.ts.map +1 -0
- package/lib/keyboard/layouts/fr.linux.js +187 -0
- package/lib/keyboard/layouts/fr.linux.js.map +1 -0
- package/lib/keyboard/layouts/fr.win.d.ts +2 -0
- package/lib/keyboard/layouts/fr.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/fr.win.js +169 -0
- package/lib/keyboard/layouts/fr.win.js.map +1 -0
- package/lib/keyboard/layouts/hu.win.d.ts +2 -0
- package/lib/keyboard/layouts/hu.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/hu.win.js +169 -0
- package/lib/keyboard/layouts/hu.win.js.map +1 -0
- package/lib/keyboard/layouts/it.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/it.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/it.darwin.js +132 -0
- package/lib/keyboard/layouts/it.darwin.js.map +1 -0
- package/lib/keyboard/layouts/it.win.d.ts +2 -0
- package/lib/keyboard/layouts/it.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/it.win.js +169 -0
- package/lib/keyboard/layouts/it.win.js.map +1 -0
- package/lib/keyboard/layouts/jp-roman.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/jp-roman.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/jp-roman.darwin.js +132 -0
- package/lib/keyboard/layouts/jp-roman.darwin.js.map +1 -0
- package/lib/keyboard/layouts/jp.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/jp.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/jp.darwin.js +132 -0
- package/lib/keyboard/layouts/jp.darwin.js.map +1 -0
- package/lib/keyboard/layouts/ko.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/ko.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/ko.darwin.js +132 -0
- package/lib/keyboard/layouts/ko.darwin.js.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.d.ts +3 -0
- package/lib/keyboard/layouts/layout.contribution.d.ts.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/layout.contribution.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.darwin.js +27 -0
- package/lib/keyboard/layouts/layout.contribution.darwin.js.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.js +11 -0
- package/lib/keyboard/layouts/layout.contribution.js.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.linux.d.ts +2 -0
- package/lib/keyboard/layouts/layout.contribution.linux.d.ts.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.linux.js +16 -0
- package/lib/keyboard/layouts/layout.contribution.linux.js.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.win.d.ts +2 -0
- package/lib/keyboard/layouts/layout.contribution.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/layout.contribution.win.js +33 -0
- package/lib/keyboard/layouts/layout.contribution.win.js.map +1 -0
- package/lib/keyboard/layouts/no.win.d.ts +2 -0
- package/lib/keyboard/layouts/no.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/no.win.js +169 -0
- package/lib/keyboard/layouts/no.win.js.map +1 -0
- package/lib/keyboard/layouts/pl.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/pl.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/pl.darwin.js +132 -0
- package/lib/keyboard/layouts/pl.darwin.js.map +1 -0
- package/lib/keyboard/layouts/pl.win.d.ts +2 -0
- package/lib/keyboard/layouts/pl.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/pl.win.js +169 -0
- package/lib/keyboard/layouts/pl.win.js.map +1 -0
- package/lib/keyboard/layouts/pt-br.win.d.ts +2 -0
- package/lib/keyboard/layouts/pt-br.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/pt-br.win.js +169 -0
- package/lib/keyboard/layouts/pt-br.win.js.map +1 -0
- package/lib/keyboard/layouts/pt.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/pt.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/pt.darwin.js +132 -0
- package/lib/keyboard/layouts/pt.darwin.js.map +1 -0
- package/lib/keyboard/layouts/pt.win.d.ts +2 -0
- package/lib/keyboard/layouts/pt.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/pt.win.js +169 -0
- package/lib/keyboard/layouts/pt.win.js.map +1 -0
- package/lib/keyboard/layouts/ru.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/ru.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/ru.darwin.js +132 -0
- package/lib/keyboard/layouts/ru.darwin.js.map +1 -0
- package/lib/keyboard/layouts/ru.linux.d.ts +2 -0
- package/lib/keyboard/layouts/ru.linux.d.ts.map +1 -0
- package/lib/keyboard/layouts/ru.linux.js +187 -0
- package/lib/keyboard/layouts/ru.linux.js.map +1 -0
- package/lib/keyboard/layouts/ru.win.d.ts +2 -0
- package/lib/keyboard/layouts/ru.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/ru.win.js +169 -0
- package/lib/keyboard/layouts/ru.win.js.map +1 -0
- package/lib/keyboard/layouts/sv.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/sv.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/sv.darwin.js +132 -0
- package/lib/keyboard/layouts/sv.darwin.js.map +1 -0
- package/lib/keyboard/layouts/sv.win.d.ts +2 -0
- package/lib/keyboard/layouts/sv.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/sv.win.js +171 -0
- package/lib/keyboard/layouts/sv.win.js.map +1 -0
- package/lib/keyboard/layouts/thai.win.d.ts +2 -0
- package/lib/keyboard/layouts/thai.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/thai.win.js +169 -0
- package/lib/keyboard/layouts/thai.win.js.map +1 -0
- package/lib/keyboard/layouts/tr.win.d.ts +2 -0
- package/lib/keyboard/layouts/tr.win.d.ts.map +1 -0
- package/lib/keyboard/layouts/tr.win.js +169 -0
- package/lib/keyboard/layouts/tr.win.js.map +1 -0
- package/lib/keyboard/layouts/zh-hans.darwin.d.ts +2 -0
- package/lib/keyboard/layouts/zh-hans.darwin.d.ts.map +1 -0
- package/lib/keyboard/layouts/zh-hans.darwin.js +132 -0
- package/lib/keyboard/layouts/zh-hans.darwin.js.map +1 -0
- package/lib/layout/accordion/tab-bar-toolbar.d.ts +25 -0
- package/lib/layout/accordion/tab-bar-toolbar.d.ts.map +1 -0
- package/lib/layout/accordion/tab-bar-toolbar.js +37 -0
- package/lib/layout/accordion/tab-bar-toolbar.js.map +1 -0
- package/lib/layout/accordion/view-context-key.registry.d.ts +9 -0
- package/lib/layout/accordion/view-context-key.registry.d.ts.map +1 -0
- package/lib/layout/accordion/view-context-key.registry.js +38 -0
- package/lib/layout/accordion/view-context-key.registry.js.map +1 -0
- package/lib/layout/index.d.ts +103 -0
- package/lib/layout/index.d.ts.map +1 -0
- package/lib/layout/index.js +143 -0
- package/lib/layout/index.js.map +1 -0
- package/lib/layout/layout-state.d.ts +24 -0
- package/lib/layout/layout-state.d.ts.map +1 -0
- package/lib/layout/layout-state.js +99 -0
- package/lib/layout/layout-state.js.map +1 -0
- package/lib/logger/browser-logger.d.ts +17 -0
- package/lib/logger/browser-logger.d.ts.map +1 -0
- package/lib/logger/browser-logger.js +50 -0
- package/lib/logger/browser-logger.js.map +1 -0
- package/lib/logger/index.d.ts +2 -0
- package/lib/logger/index.d.ts.map +1 -0
- package/lib/logger/index.js +5 -0
- package/lib/logger/index.js.map +1 -0
- package/lib/menu/next/base.d.ts +242 -0
- package/lib/menu/next/base.d.ts.map +1 -0
- package/lib/menu/next/base.js +267 -0
- package/lib/menu/next/base.js.map +1 -0
- package/lib/menu/next/ctxmenu-service.d.ts +42 -0
- package/lib/menu/next/ctxmenu-service.d.ts.map +1 -0
- package/lib/menu/next/ctxmenu-service.js +151 -0
- package/lib/menu/next/ctxmenu-service.js.map +1 -0
- package/lib/menu/next/index.d.ts +11 -0
- package/lib/menu/next/index.d.ts.map +1 -0
- package/lib/menu/next/index.js +14 -0
- package/lib/menu/next/index.js.map +1 -0
- package/lib/menu/next/menu-id.d.ts +59 -0
- package/lib/menu/next/menu-id.d.ts.map +1 -0
- package/lib/menu/next/menu-id.js +73 -0
- package/lib/menu/next/menu-id.js.map +1 -0
- package/lib/menu/next/menu-service.d.ts +9 -0
- package/lib/menu/next/menu-service.d.ts.map +1 -0
- package/lib/menu/next/menu-service.js +205 -0
- package/lib/menu/next/menu-service.js.map +1 -0
- package/lib/menu/next/menu-util.d.ts +18 -0
- package/lib/menu/next/menu-util.d.ts.map +1 -0
- package/lib/menu/next/menu-util.js +64 -0
- package/lib/menu/next/menu-util.js.map +1 -0
- package/lib/menu/next/menu.contrib.interface.d.ts +22 -0
- package/lib/menu/next/menu.contrib.interface.d.ts.map +1 -0
- package/lib/menu/next/menu.contrib.interface.js +9 -0
- package/lib/menu/next/menu.contrib.interface.js.map +1 -0
- package/lib/menu/next/menu.interface.d.ts +100 -0
- package/lib/menu/next/menu.interface.d.ts.map +1 -0
- package/lib/menu/next/menu.interface.js +192 -0
- package/lib/menu/next/menu.interface.js.map +1 -0
- package/lib/menu/next/menubar-service.d.ts +53 -0
- package/lib/menu/next/menubar-service.d.ts.map +1 -0
- package/lib/menu/next/menubar-service.js +178 -0
- package/lib/menu/next/menubar-service.js.map +1 -0
- package/lib/menu/next/renderer/ctxmenu/base.d.ts +19 -0
- package/lib/menu/next/renderer/ctxmenu/base.d.ts.map +1 -0
- package/lib/menu/next/renderer/ctxmenu/base.js +7 -0
- package/lib/menu/next/renderer/ctxmenu/base.js.map +1 -0
- package/lib/menu/next/renderer/ctxmenu/browser.d.ts +19 -0
- package/lib/menu/next/renderer/ctxmenu/browser.d.ts.map +1 -0
- package/lib/menu/next/renderer/ctxmenu/browser.js +40 -0
- package/lib/menu/next/renderer/ctxmenu/browser.js.map +1 -0
- package/lib/menu/next/renderer/ctxmenu/electron.d.ts +34 -0
- package/lib/menu/next/renderer/ctxmenu/electron.d.ts.map +1 -0
- package/lib/menu/next/renderer/ctxmenu/electron.js +198 -0
- package/lib/menu/next/renderer/ctxmenu/electron.js.map +1 -0
- package/lib/menu/next/toolbar-action.service.d.ts +50 -0
- package/lib/menu/next/toolbar-action.service.d.ts.map +1 -0
- package/lib/menu/next/toolbar-action.service.js +93 -0
- package/lib/menu/next/toolbar-action.service.js.map +1 -0
- package/lib/monaco/index.d.ts +99 -0
- package/lib/monaco/index.d.ts.map +1 -0
- package/lib/monaco/index.js +32 -0
- package/lib/monaco/index.js.map +1 -0
- package/lib/opener/command-opener.d.ts +12 -0
- package/lib/opener/command-opener.d.ts.map +1 -0
- package/lib/opener/command-opener.js +49 -0
- package/lib/opener/command-opener.js.map +1 -0
- package/lib/opener/default-opener.d.ts +8 -0
- package/lib/opener/default-opener.d.ts.map +1 -0
- package/lib/opener/default-opener.js +32 -0
- package/lib/opener/default-opener.js.map +1 -0
- package/lib/opener/http-opener.d.ts +9 -0
- package/lib/opener/http-opener.d.ts.map +1 -0
- package/lib/opener/http-opener.js +33 -0
- package/lib/opener/http-opener.js.map +1 -0
- package/lib/opener/index.d.ts +16 -0
- package/lib/opener/index.d.ts.map +1 -0
- package/lib/opener/index.js +6 -0
- package/lib/opener/index.js.map +1 -0
- package/lib/opener/opener.contribution.d.ts +14 -0
- package/lib/opener/opener.contribution.d.ts.map +1 -0
- package/lib/opener/opener.contribution.js +63 -0
- package/lib/opener/opener.contribution.js.map +1 -0
- package/lib/opener/opener.service.d.ts +14 -0
- package/lib/opener/opener.service.d.ts.map +1 -0
- package/lib/opener/opener.service.js +67 -0
- package/lib/opener/opener.service.js.map +1 -0
- package/lib/preferences/early-preferences.d.ts +24 -0
- package/lib/preferences/early-preferences.d.ts.map +1 -0
- package/lib/preferences/early-preferences.js +96 -0
- package/lib/preferences/early-preferences.js.map +1 -0
- package/lib/preferences/index.d.ts +9 -0
- package/lib/preferences/index.d.ts.map +1 -0
- package/lib/preferences/index.js +12 -0
- package/lib/preferences/index.js.map +1 -0
- package/lib/preferences/preference-configurations.d.ts +22 -0
- package/lib/preferences/preference-configurations.d.ts.map +1 -0
- package/lib/preferences/preference-configurations.js +68 -0
- package/lib/preferences/preference-configurations.js.map +1 -0
- package/lib/preferences/preference-contribution.d.ts +82 -0
- package/lib/preferences/preference-contribution.d.ts.map +1 -0
- package/lib/preferences/preference-contribution.js +325 -0
- package/lib/preferences/preference-contribution.js.map +1 -0
- package/lib/preferences/preference-provider.d.ts +117 -0
- package/lib/preferences/preference-provider.d.ts.map +1 -0
- package/lib/preferences/preference-provider.js +275 -0
- package/lib/preferences/preference-provider.js.map +1 -0
- package/lib/preferences/preference-proxy.d.ts +45 -0
- package/lib/preferences/preference-proxy.d.ts.map +1 -0
- package/lib/preferences/preference-proxy.js +195 -0
- package/lib/preferences/preference-proxy.js.map +1 -0
- package/lib/preferences/preference-scope.d.ts +3 -0
- package/lib/preferences/preference-scope.d.ts.map +1 -0
- package/lib/preferences/preference-scope.js +6 -0
- package/lib/preferences/preference-scope.js.map +1 -0
- package/lib/preferences/preference-service.d.ts +194 -0
- package/lib/preferences/preference-service.d.ts.map +1 -0
- package/lib/preferences/preference-service.js +425 -0
- package/lib/preferences/preference-service.js.map +1 -0
- package/lib/preferences/settings.d.ts +41 -0
- package/lib/preferences/settings.d.ts.map +1 -0
- package/lib/preferences/settings.js +5 -0
- package/lib/preferences/settings.js.map +1 -0
- package/lib/progress/index.d.ts +36 -0
- package/lib/progress/index.d.ts.map +1 -0
- package/lib/progress/index.js +10 -0
- package/lib/progress/index.js.map +1 -0
- package/lib/progress/progress-bar.d.ts +7 -0
- package/lib/progress/progress-bar.d.ts.map +1 -0
- package/lib/progress/progress-bar.js +14 -0
- package/lib/progress/progress-bar.js.map +1 -0
- package/lib/progress/progress-indicator.d.ts +12 -0
- package/lib/progress/progress-indicator.d.ts.map +1 -0
- package/lib/progress/progress-indicator.js +106 -0
- package/lib/progress/progress-indicator.js.map +1 -0
- package/lib/progress/progress.module.less +40 -0
- package/lib/progress/progress.service.d.ts +19 -0
- package/lib/progress/progress.service.d.ts.map +1 -0
- package/lib/progress/progress.service.js +343 -0
- package/lib/progress/progress.service.js.map +1 -0
- package/lib/quick-open/index.d.ts +467 -0
- package/lib/quick-open/index.d.ts.map +1 -0
- package/lib/quick-open/index.js +145 -0
- package/lib/quick-open/index.js.map +1 -0
- package/lib/quick-open/recent-files.d.ts +11 -0
- package/lib/quick-open/recent-files.d.ts.map +1 -0
- package/lib/quick-open/recent-files.js +73 -0
- package/lib/quick-open/recent-files.js.map +1 -0
- package/lib/raw-context-key.d.ts +57 -0
- package/lib/raw-context-key.d.ts.map +1 -0
- package/lib/raw-context-key.js +96 -0
- package/lib/raw-context-key.js.map +1 -0
- package/lib/react-hooks/event.d.ts +11 -0
- package/lib/react-hooks/event.d.ts.map +1 -0
- package/lib/react-hooks/event.js +64 -0
- package/lib/react-hooks/event.js.map +1 -0
- package/lib/react-hooks/hot-key.d.ts +5 -0
- package/lib/react-hooks/hot-key.d.ts.map +1 -0
- package/lib/react-hooks/hot-key.js +48 -0
- package/lib/react-hooks/hot-key.js.map +1 -0
- package/lib/react-hooks/index.d.ts +4 -0
- package/lib/react-hooks/index.d.ts.map +1 -0
- package/lib/react-hooks/index.js +7 -0
- package/lib/react-hooks/index.js.map +1 -0
- package/lib/react-hooks/injectable-hooks.d.ts +3 -0
- package/lib/react-hooks/injectable-hooks.d.ts.map +1 -0
- package/lib/react-hooks/injectable-hooks.js +33 -0
- package/lib/react-hooks/injectable-hooks.js.map +1 -0
- package/lib/react-hooks/portal-hooks.d.ts +2 -0
- package/lib/react-hooks/portal-hooks.d.ts.map +1 -0
- package/lib/react-hooks/portal-hooks.js +36 -0
- package/lib/react-hooks/portal-hooks.js.map +1 -0
- package/lib/react-providers/config-provider.d.ts +182 -0
- package/lib/react-providers/config-provider.d.ts.map +1 -0
- package/lib/react-providers/config-provider.js +24 -0
- package/lib/react-providers/config-provider.js.map +1 -0
- package/lib/react-providers/index.d.ts +3 -0
- package/lib/react-providers/index.d.ts.map +1 -0
- package/lib/react-providers/index.js +6 -0
- package/lib/react-providers/index.js.map +1 -0
- package/lib/react-providers/slot.d.ts +73 -0
- package/lib/react-providers/slot.d.ts.map +1 -0
- package/lib/react-providers/slot.js +184 -0
- package/lib/react-providers/slot.js.map +1 -0
- package/lib/services/clipboard.service.d.ts +17 -0
- package/lib/services/clipboard.service.d.ts.map +1 -0
- package/lib/services/clipboard.service.js +57 -0
- package/lib/services/clipboard.service.js.map +1 -0
- package/lib/services/credentials-service.d.ts +36 -0
- package/lib/services/credentials-service.d.ts.map +1 -0
- package/lib/services/credentials-service.js +62 -0
- package/lib/services/credentials-service.js.map +1 -0
- package/lib/services/cryptr-service.d.ts +11 -0
- package/lib/services/cryptr-service.d.ts.map +1 -0
- package/lib/services/cryptr-service.js +24 -0
- package/lib/services/cryptr-service.js.map +1 -0
- package/lib/services/external-uri.service.d.ts +28 -0
- package/lib/services/external-uri.service.d.ts.map +1 -0
- package/lib/services/external-uri.service.js +58 -0
- package/lib/services/external-uri.service.js.map +1 -0
- package/lib/services/index.d.ts +8 -0
- package/lib/services/index.d.ts.map +1 -0
- package/lib/services/index.js +11 -0
- package/lib/services/index.js.map +1 -0
- package/lib/services/label-service.d.ts +74 -0
- package/lib/services/label-service.d.ts.map +1 -0
- package/lib/services/label-service.js +306 -0
- package/lib/services/label-service.js.map +1 -0
- package/lib/services/status-bar-service.d.ts +86 -0
- package/lib/services/status-bar-service.d.ts.map +1 -0
- package/lib/services/status-bar-service.js +25 -0
- package/lib/services/status-bar-service.js.map +1 -0
- package/lib/services/storage-service.d.ts +72 -0
- package/lib/services/storage-service.d.ts.map +1 -0
- package/lib/services/storage-service.js +128 -0
- package/lib/services/storage-service.js.map +1 -0
- package/lib/style/codicons/README.md +32 -0
- package/lib/style/codicons/codicon-animations.css +15 -0
- package/lib/style/entry.less +25 -0
- package/lib/style/icon/fileicons/file-default.svg +1 -0
- package/lib/style/icon/fileicons/folder-default.svg +1 -0
- package/lib/style/icon/fileicons.less +9 -0
- package/lib/style/icon/icon.d.ts +19 -0
- package/lib/style/icon/icon.d.ts.map +1 -0
- package/lib/style/icon/icon.js +64 -0
- package/lib/style/icon/icon.js.map +1 -0
- package/lib/style/icon/ide-iconfont.d.ts +5 -0
- package/lib/style/icon/ide-iconfont.d.ts.map +1 -0
- package/lib/style/icon/ide-iconfont.js +10 -0
- package/lib/style/icon/ide-iconfont.js.map +1 -0
- package/lib/style/icon/index.less +54 -0
- package/lib/style/icon/seti.woff +0 -0
- package/lib/style/icon/symbol-icons/boolean-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/boolean-light.svg +3 -0
- package/lib/style/icon/symbol-icons/class-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/class-light.svg +3 -0
- package/lib/style/icon/symbol-icons/constant-dark.svg +4 -0
- package/lib/style/icon/symbol-icons/constant-light.svg +4 -0
- package/lib/style/icon/symbol-icons/enumerator-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/enumerator-item-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/enumerator-item-light.svg +3 -0
- package/lib/style/icon/symbol-icons/enumerator-light.svg +3 -0
- package/lib/style/icon/symbol-icons/event-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/event-light.svg +3 -0
- package/lib/style/icon/symbol-icons/field-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/field-light.svg +3 -0
- package/lib/style/icon/symbol-icons/file-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/file-light.svg +3 -0
- package/lib/style/icon/symbol-icons/indexer-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/indexer-light.svg +3 -0
- package/lib/style/icon/symbol-icons/interface-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/interface-light.svg +3 -0
- package/lib/style/icon/symbol-icons/keyword-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/keyword-light.svg +3 -0
- package/lib/style/icon/symbol-icons/method-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/method-light.svg +3 -0
- package/lib/style/icon/symbol-icons/namespace-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/namespace-light.svg +3 -0
- package/lib/style/icon/symbol-icons/numeric-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/numeric-light.svg +3 -0
- package/lib/style/icon/symbol-icons/operator-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/operator-light.svg +3 -0
- package/lib/style/icon/symbol-icons/property-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/property-light.svg +3 -0
- package/lib/style/icon/symbol-icons/snippet-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/snippet-light.svg +3 -0
- package/lib/style/icon/symbol-icons/string-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/string-light.svg +3 -0
- package/lib/style/icon/symbol-icons/structure-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/structure-light.svg +3 -0
- package/lib/style/icon/symbol-icons/symbol-icons.css +284 -0
- package/lib/style/icon/symbol-icons/template-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/template-light.svg +3 -0
- package/lib/style/icon/symbol-icons/variable-dark.svg +3 -0
- package/lib/style/icon/symbol-icons/variable-light.svg +3 -0
- package/lib/style/icon.less +8 -0
- package/lib/style/index.less +14 -0
- package/lib/style/monaco-override.less +86 -0
- package/lib/style/normalize.less +89 -0
- package/lib/style/octicons/octicons-cdn.css +269 -0
- package/lib/style/octicons/octicons.css +263 -0
- package/lib/style/octicons/octicons.html +1882 -0
- package/lib/style/octicons/octicons.svg +582 -0
- package/lib/style/octicons/octicons.ttf +0 -0
- package/lib/style/override.less +80 -0
- package/lib/style/toolbar.less +193 -0
- package/lib/style/utilities.less +18 -0
- package/lib/style/variable.less +16 -0
- package/lib/toolbar/components/auto-complete.d.ts +1 -0
- package/lib/toolbar/components/auto-complete.d.ts.map +1 -0
- package/lib/toolbar/components/auto-complete.js +2 -0
- package/lib/toolbar/components/auto-complete.js.map +1 -0
- package/lib/toolbar/components/button.d.ts +11 -0
- package/lib/toolbar/components/button.d.ts.map +1 -0
- package/lib/toolbar/components/button.js +324 -0
- package/lib/toolbar/components/button.js.map +1 -0
- package/lib/toolbar/components/index.d.ts +3 -0
- package/lib/toolbar/components/index.d.ts.map +1 -0
- package/lib/toolbar/components/index.js +6 -0
- package/lib/toolbar/components/index.js.map +1 -0
- package/lib/toolbar/components/select.d.ts +5 -0
- package/lib/toolbar/components/select.d.ts.map +1 -0
- package/lib/toolbar/components/select.js +161 -0
- package/lib/toolbar/components/select.js.map +1 -0
- package/lib/toolbar/index.d.ts +4 -0
- package/lib/toolbar/index.d.ts.map +1 -0
- package/lib/toolbar/index.js +9 -0
- package/lib/toolbar/index.js.map +1 -0
- package/lib/toolbar/toolbar.d.ts +17 -0
- package/lib/toolbar/toolbar.d.ts.map +1 -0
- package/lib/toolbar/toolbar.js +508 -0
- package/lib/toolbar/toolbar.js.map +1 -0
- package/lib/toolbar/toolbar.popover.registry.d.ts +11 -0
- package/lib/toolbar/toolbar.popover.registry.d.ts.map +1 -0
- package/lib/toolbar/toolbar.popover.registry.js +36 -0
- package/lib/toolbar/toolbar.popover.registry.js.map +1 -0
- package/lib/toolbar/toolbar.registry.d.ts +46 -0
- package/lib/toolbar/toolbar.registry.d.ts.map +1 -0
- package/lib/toolbar/toolbar.registry.js +283 -0
- package/lib/toolbar/toolbar.registry.js.map +1 -0
- package/lib/toolbar/types.d.ts +286 -0
- package/lib/toolbar/types.d.ts.map +1 -0
- package/lib/toolbar/types.js +18 -0
- package/lib/toolbar/types.js.map +1 -0
- package/lib/tree/index.d.ts +4 -0
- package/lib/tree/index.d.ts.map +1 -0
- package/lib/tree/index.js +7 -0
- package/lib/tree/index.js.map +1 -0
- package/lib/tree/tree-expansion.d.ts +16 -0
- package/lib/tree/tree-expansion.d.ts.map +1 -0
- package/lib/tree/tree-expansion.js +20 -0
- package/lib/tree/tree-expansion.js.map +1 -0
- package/lib/tree/tree-selection.d.ts +48 -0
- package/lib/tree/tree-selection.d.ts.map +1 -0
- package/lib/tree/tree-selection.js +64 -0
- package/lib/tree/tree-selection.js.map +1 -0
- package/lib/tree/tree.d.ts +195 -0
- package/lib/tree/tree.d.ts.map +1 -0
- package/lib/tree/tree.js +108 -0
- package/lib/tree/tree.js.map +1 -0
- package/lib/utils/create-overlay.d.ts +8 -0
- package/lib/utils/create-overlay.d.ts.map +1 -0
- package/lib/utils/create-overlay.js +50 -0
- package/lib/utils/create-overlay.js.map +1 -0
- package/lib/utils/electron.d.ts +23 -0
- package/lib/utils/electron.d.ts.map +1 -0
- package/lib/utils/electron.js +56 -0
- package/lib/utils/electron.js.map +1 -0
- package/lib/utils/env.d.ts +4 -0
- package/lib/utils/env.d.ts.map +1 -0
- package/lib/utils/env.js +31 -0
- package/lib/utils/env.js.map +1 -0
- package/lib/utils/icon.d.ts +7 -0
- package/lib/utils/icon.d.ts.map +1 -0
- package/lib/utils/icon.js +18 -0
- package/lib/utils/icon.js.map +1 -0
- package/lib/utils/index.d.ts +6 -0
- package/lib/utils/index.d.ts.map +1 -0
- package/lib/utils/index.js +9 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/parse.d.ts +25 -0
- package/lib/utils/parse.d.ts.map +1 -0
- package/lib/utils/parse.js +72 -0
- package/lib/utils/parse.js.map +1 -0
- package/lib/utils/react-hooks.d.ts +12 -0
- package/lib/utils/react-hooks.d.ts.map +1 -0
- package/lib/utils/react-hooks.js +84 -0
- package/lib/utils/react-hooks.js.map +1 -0
- package/lib/variable/index.d.ts +2 -0
- package/lib/variable/index.d.ts.map +1 -0
- package/lib/variable/index.js +5 -0
- package/lib/variable/index.js.map +1 -0
- package/lib/variable/variable.d.ts +49 -0
- package/lib/variable/variable.d.ts.map +1 -0
- package/lib/variable/variable.js +56 -0
- package/lib/variable/variable.js.map +1 -0
- package/lib/window/index.d.ts +25 -0
- package/lib/window/index.d.ts.map +1 -0
- package/lib/window/index.js +5 -0
- package/lib/window/index.js.map +1 -0
- package/lib/window/window.service.d.ts +14 -0
- package/lib/window/window.service.d.ts.map +1 -0
- package/lib/window/window.service.js +103 -0
- package/lib/window/window.service.js.map +1 -0
- package/package.json +55 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.bindConnectionService = exports.createNetClientConnection = exports.createClientConnection2 = void 0;
|
|
4
|
+
const ide_connection_1 = require("@opensumi/ide-connection");
|
|
5
|
+
const message_1 = require("@opensumi/ide-connection/lib/common/message");
|
|
6
|
+
const ide_core_common_1 = require("@opensumi/ide-core-common");
|
|
7
|
+
// 建立连接之前,无法使用落盘的 logger
|
|
8
|
+
// 初始化时使用不落盘的 logger
|
|
9
|
+
const initialLogger = (0, ide_core_common_1.getDebugLogger)();
|
|
10
|
+
async function createClientConnection2(injector, modules, wsPath, onReconnect, protocols, clientId) {
|
|
11
|
+
const reporterService = injector.get(ide_core_common_1.IReporterService);
|
|
12
|
+
const eventBus = injector.get(ide_core_common_1.IEventBus);
|
|
13
|
+
const wsChannelHandler = new ide_connection_1.WSChannelHandler(wsPath, initialLogger, protocols, clientId);
|
|
14
|
+
wsChannelHandler.setReporter(reporterService);
|
|
15
|
+
wsChannelHandler.connection.addEventListener('open', () => {
|
|
16
|
+
eventBus.fire(new ide_core_common_1.BrowserConnectionOpenEvent());
|
|
17
|
+
});
|
|
18
|
+
wsChannelHandler.connection.addEventListener('close', () => {
|
|
19
|
+
eventBus.fire(new ide_core_common_1.BrowserConnectionCloseEvent());
|
|
20
|
+
});
|
|
21
|
+
wsChannelHandler.connection.addEventListener('error', (e) => {
|
|
22
|
+
eventBus.fire(new ide_core_common_1.BrowserConnectionErrorEvent(e));
|
|
23
|
+
});
|
|
24
|
+
await wsChannelHandler.initHandler();
|
|
25
|
+
injector.addProviders({
|
|
26
|
+
token: ide_connection_1.WSChannelHandler,
|
|
27
|
+
useValue: wsChannelHandler,
|
|
28
|
+
});
|
|
29
|
+
// 重连不会执行后面的逻辑
|
|
30
|
+
const channel = await wsChannelHandler.openChannel('RPCService');
|
|
31
|
+
channel.onReOpen(() => onReconnect());
|
|
32
|
+
bindConnectionService(injector, modules, (0, message_1.createWebSocketConnection)(channel));
|
|
33
|
+
}
|
|
34
|
+
exports.createClientConnection2 = createClientConnection2;
|
|
35
|
+
async function createNetClientConnection(injector, modules, connection) {
|
|
36
|
+
bindConnectionService(injector, modules, (0, ide_connection_1.createSocketConnection)(connection));
|
|
37
|
+
}
|
|
38
|
+
exports.createNetClientConnection = createNetClientConnection;
|
|
39
|
+
async function bindConnectionService(injector, modules, connection) {
|
|
40
|
+
const clientCenter = new ide_connection_1.RPCServiceCenter();
|
|
41
|
+
clientCenter.setConnection(connection);
|
|
42
|
+
connection.onClose(() => {
|
|
43
|
+
clientCenter.removeConnection(connection);
|
|
44
|
+
});
|
|
45
|
+
const { getRPCService, } = (0, ide_connection_1.initRPCService)(clientCenter);
|
|
46
|
+
const backServiceArr = [];
|
|
47
|
+
// 存放依赖前端后端服务,后端服务实例化后再去实例化这些 token
|
|
48
|
+
const dependClientBackServices = [];
|
|
49
|
+
for (const module of modules) {
|
|
50
|
+
const moduleInstance = injector.get(module);
|
|
51
|
+
if (moduleInstance.backServices) {
|
|
52
|
+
for (const backService of moduleInstance.backServices) {
|
|
53
|
+
backServiceArr.push(backService);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
for (const backService of backServiceArr) {
|
|
58
|
+
const { servicePath } = backService;
|
|
59
|
+
const rpcService = getRPCService(servicePath);
|
|
60
|
+
const injectService = {
|
|
61
|
+
token: servicePath,
|
|
62
|
+
useValue: rpcService,
|
|
63
|
+
};
|
|
64
|
+
injector.addProviders(injectService);
|
|
65
|
+
// 这里不进行初始化,先收集依赖,等所有 servicePath 实例化完后在做实例化,防止循环依赖
|
|
66
|
+
if (backService.clientToken) {
|
|
67
|
+
dependClientBackServices.push(backService);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
for (const backService of dependClientBackServices) {
|
|
71
|
+
const { servicePath } = backService;
|
|
72
|
+
const rpcService = getRPCService(servicePath);
|
|
73
|
+
const clientService = injector.get(backService.clientToken);
|
|
74
|
+
rpcService.onRequestService(clientService);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.bindConnectionService = bindConnectionService;
|
|
78
|
+
//# sourceMappingURL=connection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"connection.js","sourceRoot":"","sources":["../../src/bootstrap/connection.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/bootstrap/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
(0, tslib_1.__exportStar)(require("./app"), exports);
|
|
5
|
+
(0, tslib_1.__exportStar)(require("./app.view"), exports);
|
|
6
|
+
(0, tslib_1.__exportStar)(require("./connection"), exports);
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bootstrap/index.ts"],"names":[],"mappings":";;;AAAA,qDAAsB;AACtB,0DAA2B;AAC3B,4DAA6B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inner-providers.d.ts","sourceRoot":"","sources":["../../src/bootstrap/inner-providers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,QAAQ,EAAE,MAAM,cAAc,CAAC;AAiElD,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,QAAQ,QAmMtD"}
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.injectInnerProviders = void 0;
|
|
4
|
+
const ide_core_common_1 = require("@opensumi/ide-core-common");
|
|
5
|
+
const common_1 = require("../common");
|
|
6
|
+
const application_state_service_1 = require("../application/application-state-service");
|
|
7
|
+
const application_service_1 = require("../application/application.service");
|
|
8
|
+
const keyboard_layout_provider_1 = require("@opensumi/ide-core-common/lib/keyboard/keyboard-layout-provider");
|
|
9
|
+
const keybinding_1 = require("../keybinding");
|
|
10
|
+
const keyboard_1 = require("../keyboard");
|
|
11
|
+
const logger_1 = require("../logger");
|
|
12
|
+
const layout_1 = require("../layout");
|
|
13
|
+
const utils_1 = require("../utils");
|
|
14
|
+
const electron_1 = require("../utils/electron");
|
|
15
|
+
const electron_2 = require("@opensumi/ide-core-common/lib/electron");
|
|
16
|
+
const preferences_1 = require("../preferences");
|
|
17
|
+
const variable_1 = require("../variable");
|
|
18
|
+
const next_1 = require("../menu/next");
|
|
19
|
+
const base_1 = require("../menu/next/renderer/ctxmenu/base");
|
|
20
|
+
const electron_3 = require("../menu/next/renderer/ctxmenu/electron");
|
|
21
|
+
const browser_1 = require("../menu/next/renderer/ctxmenu/browser");
|
|
22
|
+
const react_providers_1 = require("../react-providers");
|
|
23
|
+
const toolbar_action_service_1 = require("../menu/next/toolbar-action.service");
|
|
24
|
+
const progress_1 = require("../progress");
|
|
25
|
+
const progress_service_1 = require("../progress/progress.service");
|
|
26
|
+
const toolbar_registry_1 = require("../toolbar/toolbar.registry");
|
|
27
|
+
const toolbar_1 = require("../toolbar");
|
|
28
|
+
const fs_1 = require("../fs");
|
|
29
|
+
const opener_1 = require("../opener");
|
|
30
|
+
const opener_service_1 = require("../opener/opener.service");
|
|
31
|
+
const window_1 = require("../window");
|
|
32
|
+
const window_service_1 = require("../window/window.service");
|
|
33
|
+
const clipboard_service_1 = require("../services/clipboard.service");
|
|
34
|
+
const external_uri_service_1 = require("../services/external-uri.service");
|
|
35
|
+
const toolbar_popover_registry_1 = require("../toolbar/toolbar.popover.registry");
|
|
36
|
+
const authentication_service_1 = require("../authentication/authentication.service");
|
|
37
|
+
const services_1 = require("../services");
|
|
38
|
+
const hash_calculate_1 = require("@opensumi/ide-core-common/lib/hash-calculate/hash-calculate");
|
|
39
|
+
function injectInnerProviders(injector) {
|
|
40
|
+
// 生成 ContributionProvider
|
|
41
|
+
(0, ide_core_common_1.createContributionProvider)(injector, common_1.ClientAppContribution);
|
|
42
|
+
(0, ide_core_common_1.createContributionProvider)(injector, ide_core_common_1.CommandContribution);
|
|
43
|
+
(0, ide_core_common_1.createContributionProvider)(injector, fs_1.FsProviderContribution);
|
|
44
|
+
(0, ide_core_common_1.createContributionProvider)(injector, keybinding_1.KeybindingContribution);
|
|
45
|
+
(0, ide_core_common_1.createContributionProvider)(injector, next_1.MenuContribution);
|
|
46
|
+
(0, ide_core_common_1.createContributionProvider)(injector, layout_1.ComponentContribution);
|
|
47
|
+
(0, ide_core_common_1.createContributionProvider)(injector, react_providers_1.SlotRendererContribution);
|
|
48
|
+
(0, ide_core_common_1.createContributionProvider)(injector, preferences_1.PreferenceContribution);
|
|
49
|
+
(0, ide_core_common_1.createContributionProvider)(injector, variable_1.VariableContribution);
|
|
50
|
+
(0, ide_core_common_1.createContributionProvider)(injector, layout_1.TabBarToolbarContribution);
|
|
51
|
+
(0, ide_core_common_1.createContributionProvider)(injector, toolbar_1.ToolBarActionContribution);
|
|
52
|
+
// 一些内置抽象实现
|
|
53
|
+
const providers = [
|
|
54
|
+
{
|
|
55
|
+
token: ide_core_common_1.IEventBus,
|
|
56
|
+
useClass: ide_core_common_1.EventBusImpl,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
token: ide_core_common_1.CommandService,
|
|
60
|
+
useClass: ide_core_common_1.CommandServiceImpl,
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
token: ide_core_common_1.CommandRegistry,
|
|
64
|
+
useClass: ide_core_common_1.CommandRegistryImpl,
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
token: keybinding_1.KeybindingRegistry,
|
|
68
|
+
useClass: keybinding_1.KeybindingRegistryImpl,
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
token: keybinding_1.KeybindingService,
|
|
72
|
+
useFactory: (inject) => {
|
|
73
|
+
return inject.get(keybinding_1.KeybindingRegistry);
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
token: keyboard_layout_provider_1.KeyboardNativeLayoutService,
|
|
78
|
+
useClass: keyboard_1.BrowserKeyboardLayoutImpl,
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
token: keyboard_layout_provider_1.KeyboardLayoutChangeNotifierService,
|
|
82
|
+
useFactory: (inject) => {
|
|
83
|
+
return inject.get(keyboard_layout_provider_1.KeyboardNativeLayoutService);
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
token: keyboard_1.KeyValidator,
|
|
88
|
+
useFactory: (inject) => {
|
|
89
|
+
return inject.get(keyboard_layout_provider_1.KeyboardNativeLayoutService);
|
|
90
|
+
},
|
|
91
|
+
},
|
|
92
|
+
application_state_service_1.ClientAppStateService,
|
|
93
|
+
{
|
|
94
|
+
token: logger_1.ILogger,
|
|
95
|
+
useClass: logger_1.Logger,
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
token: layout_1.ComponentRegistry,
|
|
99
|
+
useClass: layout_1.ComponentRegistryImpl,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
token: variable_1.VariableRegistry,
|
|
103
|
+
useClass: variable_1.VariableRegistryImpl,
|
|
104
|
+
},
|
|
105
|
+
// next version menu
|
|
106
|
+
{
|
|
107
|
+
token: next_1.AbstractMenuService,
|
|
108
|
+
useClass: next_1.MenuServiceImpl,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
token: next_1.AbstractContextMenuService,
|
|
112
|
+
useClass: next_1.ContextMenuServiceImpl,
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
token: next_1.IMenuRegistry,
|
|
116
|
+
useClass: next_1.MenuRegistryImpl,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
token: toolbar_action_service_1.IToolbarActionService,
|
|
120
|
+
useClass: toolbar_action_service_1.ToolbarActionService,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
token: base_1.ICtxMenuRenderer,
|
|
124
|
+
useClass: (0, utils_1.useNativeContextMenu)() ? electron_3.ElectronCtxMenuRenderer : browser_1.BrowserCtxMenuRenderer,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
token: next_1.AbstractMenubarService,
|
|
128
|
+
useClass: next_1.MenubarServiceImpl,
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
token: ide_core_common_1.IReporter,
|
|
132
|
+
useClass: ide_core_common_1.DefaultReporter,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
token: ide_core_common_1.IReporterService,
|
|
136
|
+
useClass: ide_core_common_1.ReporterService,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
token: ide_core_common_1.ReporterMetadata,
|
|
140
|
+
useValue: {
|
|
141
|
+
host: ide_core_common_1.REPORT_HOST.BROWSER,
|
|
142
|
+
},
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
token: progress_1.IProgressService,
|
|
146
|
+
useClass: progress_service_1.ProgressService,
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
token: toolbar_1.IToolbarRegistry,
|
|
150
|
+
useClass: toolbar_registry_1.NextToolbarRegistryImpl,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
token: toolbar_1.IToolbarPopoverRegistry,
|
|
154
|
+
useClass: toolbar_popover_registry_1.ToolbarPopoverRegistry,
|
|
155
|
+
},
|
|
156
|
+
toolbar_registry_1.ToolbarClientAppContribution,
|
|
157
|
+
{
|
|
158
|
+
token: ide_core_common_1.IProblemPatternRegistry,
|
|
159
|
+
useClass: ide_core_common_1.ProblemPatternRegistryImpl,
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
token: ide_core_common_1.IProblemMatcherRegistry,
|
|
163
|
+
useClass: ide_core_common_1.ProblemMatchersRegistryImpl,
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
token: ide_core_common_1.ITaskDefinitionRegistry,
|
|
167
|
+
useClass: ide_core_common_1.TaskDefinitionRegistryImpl,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
token: opener_1.IOpenerService,
|
|
171
|
+
useClass: opener_service_1.OpenerService,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
token: window_1.IWindowService,
|
|
175
|
+
useClass: window_service_1.WindowService,
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
token: ide_core_common_1.IApplicationService,
|
|
179
|
+
useClass: application_service_1.ApplicationService,
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
token: clipboard_service_1.IClipboardService,
|
|
183
|
+
useClass: clipboard_service_1.BrowserClipboardService,
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
token: external_uri_service_1.IExternalUriService,
|
|
187
|
+
useClass: external_uri_service_1.ExternalUriService,
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
token: ide_core_common_1.IAuthenticationService,
|
|
191
|
+
useClass: authentication_service_1.AuthenticationService,
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
token: services_1.ICryptrService,
|
|
195
|
+
useClass: services_1.CryptrService,
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
token: services_1.ICredentialsService,
|
|
199
|
+
useClass: services_1.CredentialsService,
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
token: hash_calculate_1.IHashCalculateService,
|
|
203
|
+
useClass: hash_calculate_1.HashCalculateServiceImpl,
|
|
204
|
+
},
|
|
205
|
+
];
|
|
206
|
+
injector.addProviders(...providers);
|
|
207
|
+
// 为electron添加独特的api服务,主要是向electron-main进行调用的服务
|
|
208
|
+
if ((0, ide_core_common_1.isElectronRenderer)()) {
|
|
209
|
+
injector.addProviders({
|
|
210
|
+
token: ide_core_common_1.IElectronMainMenuService,
|
|
211
|
+
useValue: (0, electron_1.createElectronMainApi)(ide_core_common_1.IElectronMainMenuService),
|
|
212
|
+
}, {
|
|
213
|
+
token: electron_2.IElectronMainUIService,
|
|
214
|
+
useValue: (0, electron_1.createElectronMainApi)(electron_2.IElectronMainUIService),
|
|
215
|
+
}, {
|
|
216
|
+
token: electron_2.IElectronMainLifeCycleService,
|
|
217
|
+
useValue: (0, electron_1.createElectronMainApi)(electron_2.IElectronMainLifeCycleService),
|
|
218
|
+
}, {
|
|
219
|
+
token: electron_2.IElectronURLService,
|
|
220
|
+
useValue: (0, electron_1.createElectronMainApi)(electron_2.IElectronURLService),
|
|
221
|
+
}, {
|
|
222
|
+
token: electron_3.IElectronMenuFactory,
|
|
223
|
+
useClass: electron_3.ElectronMenuFactory,
|
|
224
|
+
}, {
|
|
225
|
+
token: electron_3.IElectronMenuBarService,
|
|
226
|
+
useClass: electron_3.ElectronMenuBarService,
|
|
227
|
+
});
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
exports.injectInnerProviders = injectInnerProviders;
|
|
231
|
+
//# sourceMappingURL=inner-providers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inner-providers.js","sourceRoot":"","sources":["../../src/bootstrap/inner-providers.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { BasicModule, CommandRegistry, Deferred } from '@opensumi/ide-core-common';
|
|
3
|
+
import { AppConfig } from './react-providers';
|
|
4
|
+
import { Injector } from '@opensumi/di';
|
|
5
|
+
export declare const IClientApp: unique symbol;
|
|
6
|
+
export interface IClientApp {
|
|
7
|
+
appInitialized: Deferred<void>;
|
|
8
|
+
browserModules: BrowserModule<any>[];
|
|
9
|
+
injector: Injector;
|
|
10
|
+
config: AppConfig;
|
|
11
|
+
commandRegistry: CommandRegistry;
|
|
12
|
+
fireOnReload: (forcedReload?: boolean) => void;
|
|
13
|
+
}
|
|
14
|
+
export declare abstract class BrowserModule<T = any> extends BasicModule {
|
|
15
|
+
protected app: IClientApp;
|
|
16
|
+
component?: React.ComponentType<T>;
|
|
17
|
+
preferences?: (inject: Injector) => void;
|
|
18
|
+
isOverlay?: boolean;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=browser-module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-module.d.ts","sourceRoot":"","sources":["../src/browser-module.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACnF,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAa,MAAM,cAAc,CAAC;AAEnD,eAAO,MAAM,UAAU,eAA6B,CAAC;AAErD,MAAM,WAAW,UAAU;IACzB,cAAc,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC/B,cAAc,EAAE,aAAa,CAAC,GAAG,CAAC,EAAE,CAAC;IACrC,QAAQ,EAAE,QAAQ,CAAC;IACnB,MAAM,EAAE,SAAS,CAAC;IAClB,eAAe,EAAE,eAAe,CAAC;IACjC,YAAY,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;CAChD;AAED,8BAAsB,aAAa,CAAC,CAAC,GAAG,GAAG,CAAE,SAAQ,WAAW;IAE9D,SAAS,CAAC,GAAG,EAAE,UAAU,CAAC;IACnB,SAAS,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;IACnC,WAAW,CAAC,EAAE,CAAC,MAAM,EAAE,QAAQ,KAAK,IAAI,CAAC;IAEzC,SAAS,CAAC,EAAE,OAAO,CAAC;CAC5B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BrowserModule = exports.IClientApp = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const ide_core_common_1 = require("@opensumi/ide-core-common");
|
|
6
|
+
const di_1 = require("@opensumi/di");
|
|
7
|
+
exports.IClientApp = Symbol('CLIENT_APP_TOKEN');
|
|
8
|
+
class BrowserModule extends ide_core_common_1.BasicModule {
|
|
9
|
+
}
|
|
10
|
+
(0, tslib_1.__decorate)([
|
|
11
|
+
(0, di_1.Autowired)(exports.IClientApp),
|
|
12
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
13
|
+
], BrowserModule.prototype, "app", void 0);
|
|
14
|
+
exports.BrowserModule = BrowserModule;
|
|
15
|
+
//# sourceMappingURL=browser-module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-module.js","sourceRoot":"","sources":["../src/browser-module.ts"],"names":[],"mappings":";;;;AAAA,+DAAmF;AAEnF,qCAAmD;AAEtC,QAAA,UAAU,GAAG,MAAM,CAAC,kBAAkB,CAAC,CAAC;AAWrD,MAAsB,aAAuB,SAAQ,6BAAW;CAO/D;AALC;IADC,IAAA,cAAS,EAAC,kBAAU,CAAC;;0CACI;AAF5B,sCAOC"}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { Command } from '..';
|
|
2
|
+
export declare namespace FILE_COMMANDS {
|
|
3
|
+
const NEW_FILE: Command;
|
|
4
|
+
const RENAME_FILE: Command;
|
|
5
|
+
const DELETE_FILE: Command;
|
|
6
|
+
const NEW_FOLDER: Command;
|
|
7
|
+
const COMPARE_SELECTED: Command;
|
|
8
|
+
const OPEN_FILE: Command;
|
|
9
|
+
const SAVE_FILE: Command;
|
|
10
|
+
const COLLAPSE_ALL: Command;
|
|
11
|
+
const REFRESH_ALL: Command;
|
|
12
|
+
const OPEN_RESOURCES: Command;
|
|
13
|
+
const OPEN_TO_THE_SIDE: Command;
|
|
14
|
+
const COPY_PATH: Command;
|
|
15
|
+
const COPY_RELATIVE_PATH: Command;
|
|
16
|
+
const COPY_FILE: Command;
|
|
17
|
+
const CUT_FILE: Command;
|
|
18
|
+
const PASTE_FILE: Command;
|
|
19
|
+
const LOCATION: Command;
|
|
20
|
+
const LOCATION_WITH_EDITOR: Command;
|
|
21
|
+
const OPEN_FOLDER: Command;
|
|
22
|
+
const VSCODE_OPEN_FOLDER: Command;
|
|
23
|
+
const OPEN_WORKSPACE: Command;
|
|
24
|
+
const SEARCH_ON_FOLDER: Command;
|
|
25
|
+
const FOCUS_FILES: Command;
|
|
26
|
+
const FILTER_TOGGLE: Command;
|
|
27
|
+
const FILTER_OPEN: Command;
|
|
28
|
+
const OPEN_WITH_PATH: Command;
|
|
29
|
+
const FILTER_CLOSE: Command;
|
|
30
|
+
const NEXT: Command;
|
|
31
|
+
const PREV: Command;
|
|
32
|
+
const COLLAPSE: Command;
|
|
33
|
+
const EXPAND: Command;
|
|
34
|
+
const REVEAL_IN_EXPLORER: Command;
|
|
35
|
+
}
|
|
36
|
+
export declare namespace OPEN_EDITORS_COMMANDS {
|
|
37
|
+
const SAVE_ALL: Command;
|
|
38
|
+
const CLOSE_ALL: Command;
|
|
39
|
+
const SAVE_BY_GROUP: Command;
|
|
40
|
+
const CLOSE_BY_GROUP: Command;
|
|
41
|
+
const OPEN: Command;
|
|
42
|
+
const CLOSE: Command;
|
|
43
|
+
const OPEN_TO_THE_SIDE: Command;
|
|
44
|
+
const COMPARE_SELECTED: Command;
|
|
45
|
+
const COPY_RELATIVE_PATH: Command;
|
|
46
|
+
const COPY_PATH: Command;
|
|
47
|
+
}
|
|
48
|
+
export declare namespace COMMON_COMMANDS {
|
|
49
|
+
const FIND: Command;
|
|
50
|
+
const REPLACE: Command;
|
|
51
|
+
const ABOUT_COMMAND: Command;
|
|
52
|
+
const OPEN_PREFERENCES: Command;
|
|
53
|
+
const LOCATE_PREFERENCES: Command;
|
|
54
|
+
const OPEN_KEYMAPS: Command;
|
|
55
|
+
const OPEN_LAUNCH_CONFIGURATION: Command;
|
|
56
|
+
}
|
|
57
|
+
export declare namespace EDITOR_COMMANDS {
|
|
58
|
+
const API_OPEN_EDITOR_COMMAND_ID = "_workbench.open";
|
|
59
|
+
const API_OPEN_DIFF_EDITOR_COMMAND_ID = "_workbench.diff";
|
|
60
|
+
const API_OPEN_WITH_EDITOR_COMMAND_ID = "_workbench.openWith";
|
|
61
|
+
const NEW_UNTITLED_FILE: Command;
|
|
62
|
+
const UNDO: Command;
|
|
63
|
+
const REDO: Command;
|
|
64
|
+
const SELECT_ALL: Command;
|
|
65
|
+
const OPEN_RESOURCE: Command;
|
|
66
|
+
const OPEN_RESOURCES: Command;
|
|
67
|
+
const SAVE_URI: Command;
|
|
68
|
+
const SAVE_CURRENT: Command;
|
|
69
|
+
const COMPARE: Command;
|
|
70
|
+
const CLOSE: Command;
|
|
71
|
+
const CLOSE_ALL_IN_GROUP: Command;
|
|
72
|
+
const CLOSE_OTHER_IN_GROUP: Command;
|
|
73
|
+
const CLOSE_ALL: Command;
|
|
74
|
+
const CLOSE_SAVED: Command;
|
|
75
|
+
const SAVE_ALL: Command;
|
|
76
|
+
const CLOSE_TO_RIGHT: Command;
|
|
77
|
+
const GET_CURRENT: Command;
|
|
78
|
+
const GET_CURRENT_RESOURCE: Command;
|
|
79
|
+
const SPLIT_TO_LEFT: Command;
|
|
80
|
+
const SPLIT_TO_RIGHT: Command;
|
|
81
|
+
const SPLIT_TO_TOP: Command;
|
|
82
|
+
const SPLIT_TO_BOTTOM: Command;
|
|
83
|
+
const CHANGE_LANGUAGE: Command;
|
|
84
|
+
const CHANGE_ENCODING: Command;
|
|
85
|
+
const CHANGE_EOL: Command;
|
|
86
|
+
const NAVIGATE_LEFT: Command;
|
|
87
|
+
const NAVIGATE_RIGHT: Command;
|
|
88
|
+
const NAVIGATE_UP: Command;
|
|
89
|
+
const NAVIGATE_DOWN: Command;
|
|
90
|
+
const NAVIGATE_NEXT: Command;
|
|
91
|
+
const NAVIGATE_PREVIOUS: Command;
|
|
92
|
+
const PREVIOUS: Command;
|
|
93
|
+
const NEXT: Command;
|
|
94
|
+
const PREVIOUS_IN_GROUP: Command;
|
|
95
|
+
const NEXT_IN_GROUP: Command;
|
|
96
|
+
const LAST_IN_GROUP: Command;
|
|
97
|
+
const CLOSE_OTHER_GROUPS: Command;
|
|
98
|
+
const OPEN_EDITOR_AT_INDEX: Command;
|
|
99
|
+
const EVEN_EDITOR_GROUPS: Command;
|
|
100
|
+
const REVERT_DOCUMENT: Command;
|
|
101
|
+
const REVERT_AND_CLOSE: Command;
|
|
102
|
+
const GO_FORWARD: Command;
|
|
103
|
+
const GO_BACK: Command;
|
|
104
|
+
const PIN_CURRENT: Command;
|
|
105
|
+
const COPY_CURRENT_PATH: Command;
|
|
106
|
+
const GO_TO_GROUP: Command;
|
|
107
|
+
const MOVE_GROUP: Command;
|
|
108
|
+
const REOPEN_CLOSED: Command;
|
|
109
|
+
const FOCUS: Command;
|
|
110
|
+
const TEST_TOKENIZE: Command;
|
|
111
|
+
const AUTO_SAVE: Command;
|
|
112
|
+
const FOCUS_ACTIVE_EDITOR_GROUP: Command;
|
|
113
|
+
/**
|
|
114
|
+
* 编辑器是富组件时的 undo
|
|
115
|
+
*/
|
|
116
|
+
const COMPONENT_UNDO: Command;
|
|
117
|
+
/**
|
|
118
|
+
* 编辑器是富组件时的 redo
|
|
119
|
+
*/
|
|
120
|
+
const COMPONENT_REDO: Command;
|
|
121
|
+
const SEARCH_WORKSPACE_SYMBOL: Command;
|
|
122
|
+
const SEARCH_WORKSPACE_SYMBOL_CLASS: Command;
|
|
123
|
+
const GO_TO_LINE: Command;
|
|
124
|
+
const QUICK_OPEN: Command;
|
|
125
|
+
const TOGGLE_WORD_WRAP: Command;
|
|
126
|
+
}
|
|
127
|
+
export declare namespace SEARCH_COMMANDS {
|
|
128
|
+
const OPEN_SEARCH: Command;
|
|
129
|
+
const REFRESH: Command;
|
|
130
|
+
const CLEAN: Command;
|
|
131
|
+
const FOLD: Command;
|
|
132
|
+
const GET_RECENT_SEARCH_WORD: Command;
|
|
133
|
+
const GET_BACK_RECENT_SEARCH_WORD: Command;
|
|
134
|
+
const MENU_REPLACE: Command;
|
|
135
|
+
const MENU_REPLACE_ALL: Command;
|
|
136
|
+
const MENU_HIDE: Command;
|
|
137
|
+
const MENU_COPY: Command;
|
|
138
|
+
const MENU_COPY_ALL: Command;
|
|
139
|
+
const MENU_COPY_PATH: Command;
|
|
140
|
+
}
|
|
141
|
+
export declare namespace OUTLINE_COMMANDS {
|
|
142
|
+
const OUTLINE_COLLAPSE_ALL: Command;
|
|
143
|
+
const OUTLINE_FOLLOW_CURSOR: Command;
|
|
144
|
+
const OUTLINE_SORT_KIND: Command;
|
|
145
|
+
const OUTLINE_SORT_NAME: Command;
|
|
146
|
+
const OUTLINE_SORT_POSITION: Command;
|
|
147
|
+
}
|
|
148
|
+
export declare namespace WORKSPACE_COMMANDS {
|
|
149
|
+
const ADD_WORKSPACE_FOLDER: Command;
|
|
150
|
+
const REMOVE_WORKSPACE_FOLDER: Command;
|
|
151
|
+
const SAVE_WORKSPACE_AS_FILE: Command;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace KEYBOARD_COMMANDS {
|
|
154
|
+
const CHOOSE_KEYBOARD_LAYOUT: Command;
|
|
155
|
+
}
|
|
156
|
+
//# sourceMappingURL=common.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.command.d.ts","sourceRoot":"","sources":["../../src/common/common.command.ts"],"names":[],"mappings":"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"}
|