@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,343 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
|
3
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.ProgressService = void 0;
|
|
8
|
+
const tslib_1 = require("tslib");
|
|
9
|
+
const di_1 = require("@opensumi/di");
|
|
10
|
+
const ide_core_common_1 = require("@opensumi/ide-core-common");
|
|
11
|
+
const __1 = require("..");
|
|
12
|
+
const services_1 = require("../services");
|
|
13
|
+
const progress_indicator_1 = require("./progress-indicator");
|
|
14
|
+
const linkedText_1 = require("@opensumi/ide-core-common/lib/linkedText");
|
|
15
|
+
const components_1 = require("../components");
|
|
16
|
+
const ide_components_1 = require("@opensumi/ide-components");
|
|
17
|
+
const React = require("react");
|
|
18
|
+
const progress_bar_1 = require("./progress-bar");
|
|
19
|
+
let ProgressService = class ProgressService {
|
|
20
|
+
constructor() {
|
|
21
|
+
// 不同的视图会有不同的IProgressIndicator实例
|
|
22
|
+
this.progressIndicatorRegistry = new Map();
|
|
23
|
+
this.windowProgressStack = [];
|
|
24
|
+
this.windowProgressStatusEntry = undefined;
|
|
25
|
+
}
|
|
26
|
+
registerProgressIndicator(location, indicator) {
|
|
27
|
+
const targetIndicator = indicator || this.injector.get(progress_indicator_1.ProgressIndicator);
|
|
28
|
+
this.progressIndicatorRegistry.set(location, targetIndicator);
|
|
29
|
+
return {
|
|
30
|
+
dispose: () => this.progressIndicatorRegistry.delete(location),
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
getIndicator(location) {
|
|
34
|
+
return this.progressIndicatorRegistry.get(location);
|
|
35
|
+
}
|
|
36
|
+
withProgress(options, task, onDidCancel) {
|
|
37
|
+
const location = options.location;
|
|
38
|
+
if (typeof location === 'string') {
|
|
39
|
+
if (this.progressIndicatorRegistry.get(location)) {
|
|
40
|
+
return this.withCompositeProgress(location, task, Object.assign(Object.assign({}, options), { location }));
|
|
41
|
+
}
|
|
42
|
+
throw new Error(`Bad progress location: ${location}`);
|
|
43
|
+
}
|
|
44
|
+
switch (location) {
|
|
45
|
+
case ide_core_common_1.ProgressLocation.Notification:
|
|
46
|
+
return this.withNotificationProgress(Object.assign(Object.assign({}, options), { location }), task, onDidCancel);
|
|
47
|
+
case ide_core_common_1.ProgressLocation.Window:
|
|
48
|
+
return this.withWindowProgress(Object.assign(Object.assign({}, options), { location }), task);
|
|
49
|
+
case ide_core_common_1.ProgressLocation.Explorer:
|
|
50
|
+
return this.withCompositeProgress('explorer', task, Object.assign(Object.assign({}, options), { location }));
|
|
51
|
+
case ide_core_common_1.ProgressLocation.Scm:
|
|
52
|
+
return this.withCompositeProgress('scm', task, Object.assign(Object.assign({}, options), { location }));
|
|
53
|
+
case ide_core_common_1.ProgressLocation.Extensions:
|
|
54
|
+
return this.withCompositeProgress('extensions', task, Object.assign(Object.assign({}, options), { location }));
|
|
55
|
+
default:
|
|
56
|
+
throw new Error(`Bad progress location: ${location}`);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
withWindowProgress(options, callback) {
|
|
60
|
+
const task = [options, new ide_core_common_1.Progress(() => this.updateWindowProgress())];
|
|
61
|
+
const promise = callback(task[1]);
|
|
62
|
+
let delayHandle = setTimeout(() => {
|
|
63
|
+
delayHandle = undefined;
|
|
64
|
+
this.windowProgressStack.unshift(task);
|
|
65
|
+
this.updateWindowProgress();
|
|
66
|
+
// show progress for at least 150ms
|
|
67
|
+
Promise.all([
|
|
68
|
+
(0, __1.timeout)(150),
|
|
69
|
+
promise,
|
|
70
|
+
]).finally(() => {
|
|
71
|
+
const idx = this.windowProgressStack.indexOf(task);
|
|
72
|
+
this.windowProgressStack.splice(idx, 1);
|
|
73
|
+
this.updateWindowProgress();
|
|
74
|
+
});
|
|
75
|
+
}, 150);
|
|
76
|
+
// cancel delay if promise finishes below 150ms
|
|
77
|
+
return promise.finally(() => clearTimeout(delayHandle));
|
|
78
|
+
}
|
|
79
|
+
updateWindowProgress(idx = 0) {
|
|
80
|
+
var _a;
|
|
81
|
+
// We still have progress to show
|
|
82
|
+
if (idx < this.windowProgressStack.length) {
|
|
83
|
+
const [options, progress] = this.windowProgressStack[idx];
|
|
84
|
+
const progressTitle = options.title;
|
|
85
|
+
const progressMessage = progress.value && progress.value.message;
|
|
86
|
+
const progressCommand = options.command;
|
|
87
|
+
let text;
|
|
88
|
+
let title;
|
|
89
|
+
if (progressTitle && progressMessage) {
|
|
90
|
+
// <title>: <message>
|
|
91
|
+
text = (0, ide_core_common_1.format)('{0}: {1}', progressTitle, progressMessage);
|
|
92
|
+
title = options.source ? (0, ide_core_common_1.format)('[{0}] {1}: {2}', options.source, progressTitle, progressMessage) : text;
|
|
93
|
+
}
|
|
94
|
+
else if (progressTitle) {
|
|
95
|
+
// <title>
|
|
96
|
+
text = progressTitle;
|
|
97
|
+
title = options.source ? (0, ide_core_common_1.format)('[{0}]: {1}', options.source, progressTitle) : text;
|
|
98
|
+
}
|
|
99
|
+
else if (progressMessage) {
|
|
100
|
+
// <message>
|
|
101
|
+
text = progressMessage;
|
|
102
|
+
title = options.source ? (0, ide_core_common_1.format)('[{0}]: {1}', options.source, progressMessage) : text;
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
// no title, no message -> no progress. try with next on stack
|
|
106
|
+
this.updateWindowProgress(idx + 1);
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
const statusEntryProperties = {
|
|
110
|
+
text: `$(sync~spin) ${text}`,
|
|
111
|
+
tooltip: title,
|
|
112
|
+
command: progressCommand,
|
|
113
|
+
alignment: services_1.StatusBarAlignment.LEFT,
|
|
114
|
+
};
|
|
115
|
+
if (this.windowProgressStatusEntry) {
|
|
116
|
+
this.windowProgressStatusEntry.update(statusEntryProperties);
|
|
117
|
+
}
|
|
118
|
+
else {
|
|
119
|
+
this.commandService.executeCommand('statusbar.addElement', 'status.progress', statusEntryProperties).
|
|
120
|
+
then((accessor) => {
|
|
121
|
+
this.windowProgressStatusEntry = accessor;
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
else {
|
|
126
|
+
// Progress is done so we remove the status entry
|
|
127
|
+
(_a = this.windowProgressStatusEntry) === null || _a === void 0 ? void 0 : _a.dispose();
|
|
128
|
+
this.windowProgressStatusEntry = undefined;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
withCompositeProgress(location, task, options) {
|
|
132
|
+
const progressIndicator = this.progressIndicatorRegistry.get(location);
|
|
133
|
+
let progressRunner;
|
|
134
|
+
const promise = task({
|
|
135
|
+
report: (progress) => {
|
|
136
|
+
if (!progressRunner) {
|
|
137
|
+
return;
|
|
138
|
+
}
|
|
139
|
+
if (typeof progress.increment === 'number') {
|
|
140
|
+
progressRunner.worked(progress.increment);
|
|
141
|
+
}
|
|
142
|
+
if (typeof progress.total === 'number') {
|
|
143
|
+
progressRunner.total(progress.total);
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
});
|
|
147
|
+
if (progressIndicator) {
|
|
148
|
+
if (typeof options.total === 'number') {
|
|
149
|
+
progressRunner = progressIndicator.show(options.total, options.delay);
|
|
150
|
+
promise.catch(() => undefined /* ignore */).finally(() => progressRunner ? progressRunner.done() : undefined);
|
|
151
|
+
}
|
|
152
|
+
else {
|
|
153
|
+
progressIndicator.showWhile(promise, options.delay);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
return promise;
|
|
157
|
+
}
|
|
158
|
+
withNotificationProgress(options, callback, onDidCancel) {
|
|
159
|
+
// tslint:disable-next-line: new-parens
|
|
160
|
+
const progressStateModel = new class extends ide_core_common_1.Disposable {
|
|
161
|
+
constructor() {
|
|
162
|
+
super();
|
|
163
|
+
this._onDidReport = this.registerDispose(new ide_core_common_1.Emitter());
|
|
164
|
+
this.onDidReport = this._onDidReport.event;
|
|
165
|
+
this._step = undefined;
|
|
166
|
+
this._done = false;
|
|
167
|
+
this.promise = callback(this);
|
|
168
|
+
this.promise.finally(() => {
|
|
169
|
+
this.dispose();
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
get step() { return this._step; }
|
|
173
|
+
get done() { return this._done; }
|
|
174
|
+
report(step) {
|
|
175
|
+
this._step = step;
|
|
176
|
+
this._onDidReport.fire(step);
|
|
177
|
+
}
|
|
178
|
+
cancel(choice) {
|
|
179
|
+
onDidCancel === null || onDidCancel === void 0 ? void 0 : onDidCancel(choice);
|
|
180
|
+
this.dispose();
|
|
181
|
+
}
|
|
182
|
+
dispose() {
|
|
183
|
+
this._done = true;
|
|
184
|
+
super.dispose();
|
|
185
|
+
}
|
|
186
|
+
};
|
|
187
|
+
const createWindowProgress = () => {
|
|
188
|
+
// Create a promise that we can resolve as needed
|
|
189
|
+
// when the outside calls dispose on us
|
|
190
|
+
let promiseResolve;
|
|
191
|
+
const promise = new Promise((resolve) => promiseResolve = resolve);
|
|
192
|
+
this.withWindowProgress({
|
|
193
|
+
location: ide_core_common_1.ProgressLocation.Window,
|
|
194
|
+
title: options.title ? (0, linkedText_1.parseLinkedText)(options.title).toString() : undefined, // convert markdown links => string
|
|
195
|
+
}, (progress) => {
|
|
196
|
+
function reportProgress(step) {
|
|
197
|
+
if (step.message) {
|
|
198
|
+
progress.report({
|
|
199
|
+
message: (0, linkedText_1.parseLinkedText)(step.message).toString(), // convert markdown links => string
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
// Apply any progress that was made already
|
|
204
|
+
if (progressStateModel.step) {
|
|
205
|
+
reportProgress(progressStateModel.step);
|
|
206
|
+
}
|
|
207
|
+
// Continue to report progress as it happens
|
|
208
|
+
const onDidReportListener = progressStateModel.onDidReport((step) => reportProgress(step));
|
|
209
|
+
promise.finally(() => onDidReportListener.dispose());
|
|
210
|
+
// When the progress model gets disposed, we are done as well
|
|
211
|
+
ide_core_common_1.Event.once(progressStateModel.onDispose)(() => promiseResolve());
|
|
212
|
+
return promise;
|
|
213
|
+
});
|
|
214
|
+
// Dispose means completing our promise
|
|
215
|
+
return (0, ide_core_common_1.toDisposable)(() => promiseResolve());
|
|
216
|
+
};
|
|
217
|
+
let progressBar;
|
|
218
|
+
let progressRunner;
|
|
219
|
+
let isInfinite = false;
|
|
220
|
+
const createNotification = (message, silent, increment) => {
|
|
221
|
+
var _a;
|
|
222
|
+
const buttons = [];
|
|
223
|
+
if (options.buttons) {
|
|
224
|
+
// TODO: with progress Notification暂不支持自定义按钮
|
|
225
|
+
}
|
|
226
|
+
if (options.cancellable) {
|
|
227
|
+
buttons.push((0, ide_core_common_1.localize)('ButtonCancel'));
|
|
228
|
+
}
|
|
229
|
+
const notificationKey = Math.random().toString(18).slice(2, 5);
|
|
230
|
+
const indicator = this.injector.get(progress_indicator_1.ProgressIndicator);
|
|
231
|
+
this.registerProgressIndicator(notificationKey, indicator);
|
|
232
|
+
// Switch to window based progress once the notification
|
|
233
|
+
// changes visibility to hidden and is still ongoing.
|
|
234
|
+
// Remove that window based progress once the notification
|
|
235
|
+
// shows again.
|
|
236
|
+
let windowProgressDisposable;
|
|
237
|
+
const onVisibilityChange = (visible) => {
|
|
238
|
+
// Clear any previous running window progress
|
|
239
|
+
(0, ide_core_common_1.dispose)(windowProgressDisposable);
|
|
240
|
+
// Create new window progress if notification got hidden
|
|
241
|
+
if (!visible && !progressStateModel.done) {
|
|
242
|
+
windowProgressDisposable = createWindowProgress();
|
|
243
|
+
}
|
|
244
|
+
};
|
|
245
|
+
progressBar = React.createElement(progress_bar_1.ProgressBar, { progressModel: indicator.progressModel });
|
|
246
|
+
(_a = (0, components_1.open)(message, ide_components_1.MessageType.Info, true, notificationKey, buttons, progressBar, 0, () => onVisibilityChange(false))) === null || _a === void 0 ? void 0 : _a.then(() => {
|
|
247
|
+
progressStateModel.cancel();
|
|
248
|
+
});
|
|
249
|
+
if (typeof increment === 'number' && increment >= 0) {
|
|
250
|
+
progressRunner = indicator.show(100);
|
|
251
|
+
progressRunner.worked(increment);
|
|
252
|
+
}
|
|
253
|
+
else {
|
|
254
|
+
isInfinite = true;
|
|
255
|
+
progressRunner = indicator.show(true);
|
|
256
|
+
}
|
|
257
|
+
return notificationKey;
|
|
258
|
+
};
|
|
259
|
+
const updateProgress = (increment) => {
|
|
260
|
+
if (typeof increment === 'number' && increment >= 0) {
|
|
261
|
+
if (isInfinite) {
|
|
262
|
+
isInfinite = false;
|
|
263
|
+
progressRunner.total(100);
|
|
264
|
+
}
|
|
265
|
+
progressRunner.worked(increment);
|
|
266
|
+
}
|
|
267
|
+
else {
|
|
268
|
+
progressRunner.total(0);
|
|
269
|
+
}
|
|
270
|
+
};
|
|
271
|
+
let notificationKey;
|
|
272
|
+
let notificationTimeout;
|
|
273
|
+
let titleAndMessage; // hoisted to make sure a delayed notification shows the most recent message
|
|
274
|
+
const updateNotification = (step) => {
|
|
275
|
+
// full message (inital or update)
|
|
276
|
+
if ((step === null || step === void 0 ? void 0 : step.message) && options.title) {
|
|
277
|
+
titleAndMessage = `${options.title}: ${step.message}`; // always prefix with overall title if we have it (https://github.com/Microsoft/vscode/issues/50932)
|
|
278
|
+
}
|
|
279
|
+
else {
|
|
280
|
+
titleAndMessage = options.title || (step === null || step === void 0 ? void 0 : step.message);
|
|
281
|
+
}
|
|
282
|
+
if (!notificationKey && titleAndMessage) {
|
|
283
|
+
// create notification now or after a delay
|
|
284
|
+
if (typeof options.delay === 'number' && options.delay > 0) {
|
|
285
|
+
if (typeof notificationTimeout !== 'number') {
|
|
286
|
+
notificationTimeout = setTimeout(() => notificationKey = createNotification(titleAndMessage, !!options.silent, step === null || step === void 0 ? void 0 : step.increment), options.delay);
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
else {
|
|
290
|
+
notificationKey = createNotification(titleAndMessage, !!options.silent, step === null || step === void 0 ? void 0 : step.increment);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
if (notificationKey) {
|
|
294
|
+
if (typeof (step === null || step === void 0 ? void 0 : step.increment) === 'number') {
|
|
295
|
+
updateProgress(step.increment);
|
|
296
|
+
}
|
|
297
|
+
if (titleAndMessage) {
|
|
298
|
+
(0, ide_components_1.update)(notificationKey, titleAndMessage);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
};
|
|
302
|
+
// Show initially
|
|
303
|
+
updateNotification(progressStateModel.step);
|
|
304
|
+
const listener = progressStateModel.onDidReport((step) => updateNotification(step));
|
|
305
|
+
ide_core_common_1.Event.once(progressStateModel.onDispose)(() => listener.dispose());
|
|
306
|
+
// Clean up eventually
|
|
307
|
+
(async () => {
|
|
308
|
+
try {
|
|
309
|
+
// with a delay we only wait for the finish of the promise
|
|
310
|
+
if (typeof options.delay === 'number' && options.delay > 0) {
|
|
311
|
+
await progressStateModel.promise;
|
|
312
|
+
}
|
|
313
|
+
// without a delay we show the notification for at least 800ms
|
|
314
|
+
// to reduce the chance of the notification flashing up and hiding
|
|
315
|
+
// tslint:disable-next-line: one-line
|
|
316
|
+
else {
|
|
317
|
+
await Promise.all([(0, __1.timeout)(800), progressStateModel.promise]);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
finally {
|
|
321
|
+
clearTimeout(notificationTimeout);
|
|
322
|
+
if (notificationKey) {
|
|
323
|
+
(0, ide_components_1.close)(notificationKey);
|
|
324
|
+
this.progressIndicatorRegistry.delete(notificationKey);
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
})();
|
|
328
|
+
return progressStateModel.promise;
|
|
329
|
+
}
|
|
330
|
+
};
|
|
331
|
+
(0, tslib_1.__decorate)([
|
|
332
|
+
(0, di_1.Autowired)(di_1.INJECTOR_TOKEN),
|
|
333
|
+
(0, tslib_1.__metadata)("design:type", di_1.Injector)
|
|
334
|
+
], ProgressService.prototype, "injector", void 0);
|
|
335
|
+
(0, tslib_1.__decorate)([
|
|
336
|
+
(0, di_1.Autowired)(ide_core_common_1.CommandService),
|
|
337
|
+
(0, tslib_1.__metadata)("design:type", Object)
|
|
338
|
+
], ProgressService.prototype, "commandService", void 0);
|
|
339
|
+
ProgressService = (0, tslib_1.__decorate)([
|
|
340
|
+
(0, di_1.Injectable)()
|
|
341
|
+
], ProgressService);
|
|
342
|
+
exports.ProgressService = ProgressService;
|
|
343
|
+
//# sourceMappingURL=progress.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"progress.service.js","sourceRoot":"","sources":["../../src/progress/progress.service.tsx"],"names":[],"mappings":";AAAA;;;gGAGgG;;;;AAEhG,qCAA+E;AAC/E,+DAAyR;AAEzR,0BAA0C;AAC1C,0CAAyF;AACzF,6DAAyD;AACzD,yEAA2E;AAC3E,8CAAqC;AACrC,6DAAsE;AACtE,+BAAgC;AAChC,iDAA6C;AAG7C,IAAa,eAAe,GAA5B,MAAa,eAAe;IAA5B;QAQE,iCAAiC;QACzB,8BAAyB,GAAoC,IAAI,GAAG,EAAE,CAAC;QAyC9D,wBAAmB,GAAkD,EAAE,CAAC;QACjF,8BAAyB,GAAuC,SAAS,CAAC;IAoUpF,CAAC;IA5WC,yBAAyB,CAAC,QAAgB,EAAE,SAA8B;QACxE,MAAM,eAAe,GAAG,SAAS,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,sCAAiB,CAAC,CAAC;QAC1E,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;QAC9D,OAAO;YACL,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,yBAAyB,CAAC,MAAM,CAAC,QAAQ,CAAC;SAC/D,CAAC;IACJ,CAAC;IAED,YAAY,CAAC,QAAgB;QAC3B,OAAO,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACtD,CAAC;IAED,YAAY,CACV,OAA6G,EAC7G,IAAwD,EACxD,WAAiE;QACjE,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;QAClC,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE;YAChC,IAAI,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE;gBAChD,OAAO,IAAI,CAAC,qBAAqB,CAAC,QAAQ,EAAE,IAAI,kCAAO,OAAO,KAAE,QAAQ,IAAG,CAAC;aAC7E;YACD,MAAM,IAAI,KAAK,CAAC,0BAA0B,QAAQ,EAAE,CAAC,CAAC;SACvD;QACD,QAAQ,QAAQ,EAAE;YAChB,KAAK,kCAAgB,CAAC,YAAY;gBAChC,OAAO,IAAI,CAAC,wBAAwB,iCAAM,OAAO,KAAE,QAAQ,KAAI,IAAI,EAAE,WAAW,CAAC,CAAC;YACpF,KAAK,kCAAgB,CAAC,MAAM;gBAC1B,OAAO,IAAI,CAAC,kBAAkB,iCAAM,OAAO,KAAE,QAAQ,KAAI,IAAI,CAAC,CAAC;YACjE,KAAK,kCAAgB,CAAC,QAAQ;gBAC5B,OAAO,IAAI,CAAC,qBAAqB,CAAC,UAAU,EAAE,IAAI,kCAAO,OAAO,KAAE,QAAQ,IAAG,CAAC;YAChF,KAAK,kCAAgB,CAAC,GAAG;gBACvB,OAAO,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE,IAAI,kCAAO,OAAO,KAAE,QAAQ,IAAG,CAAC;YAC3E,KAAK,kCAAgB,CAAC,UAAU;gBAC9B,OAAO,IAAI,CAAC,qBAAqB,CAAC,YAAY,EAAE,IAAI,kCAAO,OAAO,KAAE,QAAQ,IAAG,CAAC;YAClF;gBACE,MAAM,IAAI,KAAK,CAAC,0BAA0B,QAAQ,EAAE,CAAC,CAAC;SACzD;IACH,CAAC;IAKO,kBAAkB,CAAc,OAA+B,EAAE,QAAmE;QAC1I,MAAM,IAAI,GAAsD,CAAC,OAAO,EAAE,IAAI,0BAAQ,CAAgB,GAAG,EAAE,CAAC,IAAI,CAAC,oBAAoB,EAAE,CAAC,CAAC,CAAC;QAE1I,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAElC,IAAI,WAAW,GAAQ,UAAU,CAAC,GAAG,EAAE;YACrC,WAAW,GAAG,SAAS,CAAC;YACxB,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YACvC,IAAI,CAAC,oBAAoB,EAAE,CAAC;YAE5B,mCAAmC;YACnC,OAAO,CAAC,GAAG,CAAC;gBACV,IAAA,WAAO,EAAC,GAAG,CAAC;gBACZ,OAAO;aACR,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE;gBACd,MAAM,GAAG,GAAG,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;gBACnD,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;gBACxC,IAAI,CAAC,oBAAoB,EAAE,CAAC;YAC9B,CAAC,CAAC,CAAC;QACL,CAAC,EAAE,GAAG,CAAC,CAAC;QAER,+CAA+C;QAC/C,OAAO,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,YAAY,CAAC,WAAW,CAAC,CAAC,CAAC;IAC1D,CAAC;IAEO,oBAAoB,CAAC,MAAc,CAAC;;QAE1C,iCAAiC;QACjC,IAAI,GAAG,GAAG,IAAI,CAAC,mBAAmB,CAAC,MAAM,EAAE;YACzC,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,GAAG,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;YAE1D,MAAM,aAAa,GAAG,OAAO,CAAC,KAAK,CAAC;YACpC,MAAM,eAAe,GAAG,QAAQ,CAAC,KAAK,IAAI,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC;YACjE,MAAM,eAAe,GAAI,OAAkC,CAAC,OAAO,CAAC;YACpE,IAAI,IAAY,CAAC;YACjB,IAAI,KAAa,CAAC;YAElB,IAAI,aAAa,IAAI,eAAe,EAAE;gBACpC,qBAAqB;gBACrB,IAAI,GAAG,IAAA,wBAAM,EAAC,UAAU,EAAE,aAAa,EAAE,eAAe,CAAC,CAAC;gBAC1D,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,IAAA,wBAAM,EAAC,gBAAgB,EAAE,OAAO,CAAC,MAAM,EAAE,aAAa,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;aAE1G;iBAAM,IAAI,aAAa,EAAE;gBACxB,UAAU;gBACV,IAAI,GAAG,aAAa,CAAC;gBACrB,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,IAAA,wBAAM,EAAC,YAAY,EAAE,OAAO,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;aAErF;iBAAM,IAAI,eAAe,EAAE;gBAC1B,YAAY;gBACZ,IAAI,GAAG,eAAe,CAAC;gBACvB,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,IAAA,wBAAM,EAAC,YAAY,EAAE,OAAO,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;aAEvF;iBAAM;gBACL,8DAA8D;gBAC9D,IAAI,CAAC,oBAAoB,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;gBACnC,OAAO;aACR;YAED,MAAM,qBAAqB,GAAmB;gBAC5C,IAAI,EAAE,gBAAgB,IAAI,EAAE;gBAC5B,OAAO,EAAE,KAAK;gBACd,OAAO,EAAE,eAAe;gBACxB,SAAS,EAAE,6BAAkB,CAAC,IAAI;aACnC,CAAC;YAEF,IAAI,IAAI,CAAC,yBAAyB,EAAE;gBAClC,IAAI,CAAC,yBAAyB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;aAC9D;iBAAM;gBACL,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,sBAAsB,EAAE,iBAAiB,EAAE,qBAAqB,CAAC;oBAClG,IAAI,CAAC,CAAC,QAAa,EAAE,EAAE;oBACrB,IAAI,CAAC,yBAAyB,GAAG,QAAQ,CAAC;gBAC5C,CAAC,CAAC,CAAC;aACN;SACF;aAAM;YACL,iDAAiD;YACjD,MAAA,IAAI,CAAC,yBAAyB,0CAAE,OAAO,EAAE,CAAC;YAC1C,IAAI,CAAC,yBAAyB,GAAG,SAAS,CAAC;SAC5C;IACH,CAAC;IAEO,qBAAqB,CAAoC,QAAgB,EAAE,IAA+C,EAAE,OAAkC;QACpK,MAAM,iBAAiB,GAAmC,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACvG,IAAI,cAA2C,CAAC;QAEhD,MAAM,OAAO,GAAG,IAAI,CAAC;YACnB,MAAM,EAAE,CAAC,QAAQ,EAAE,EAAE;gBACnB,IAAI,CAAC,cAAc,EAAE;oBACnB,OAAO;iBACR;gBAED,IAAI,OAAO,QAAQ,CAAC,SAAS,KAAK,QAAQ,EAAE;oBAC1C,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;iBAC3C;gBAED,IAAI,OAAO,QAAQ,CAAC,KAAK,KAAK,QAAQ,EAAE;oBACtC,cAAc,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;iBACtC;YACH,CAAC;SACF,CAAC,CAAC;QAEH,IAAI,iBAAiB,EAAE;YACrB,IAAI,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,EAAE;gBACrC,cAAc,GAAG,iBAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;gBACtE,OAAO,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;aAC/G;iBAAM;gBACL,iBAAiB,CAAC,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;aACrD;SACF;QAED,OAAO,OAAO,CAAC;IACjB,CAAC;IAEO,wBAAwB,CAAoC,OAAqC,EAAE,QAAmD,EAAE,WAAuC;QAErM,uCAAuC;QACvC,MAAM,kBAAkB,GAAG,IAAI,KAAM,SAAQ,4BAAU;YAarD;gBACE,KAAK,EAAE,CAAC;gBAZO,iBAAY,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,yBAAO,EAAiB,CAAC,CAAC;gBAC1E,gBAAW,GAAG,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC;gBAEvC,UAAK,GAA8B,SAAS,CAAC;gBAG7C,UAAK,GAAG,KAAK,CAAC;gBAQpB,IAAI,CAAC,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;gBAE9B,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE;oBACxB,IAAI,CAAC,OAAO,EAAE,CAAC;gBACjB,CAAC,CAAC,CAAC;YACL,CAAC;YAfD,IAAI,IAAI,KAAK,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YAGjC,IAAI,IAAI,KAAK,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;YAcjC,MAAM,CAAC,IAAmB;gBACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;gBAElB,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAC/B,CAAC;YAED,MAAM,CAAC,MAAe;gBACpB,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAG,MAAM,CAAC,CAAC;gBAEtB,IAAI,CAAC,OAAO,EAAE,CAAC;YACjB,CAAC;YAED,OAAO;gBACL,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;gBAClB,KAAK,CAAC,OAAO,EAAE,CAAC;YAClB,CAAC;SACF,CAAC;QAEF,MAAM,oBAAoB,GAAG,GAAG,EAAE;YAEhC,iDAAiD;YACjD,uCAAuC;YACvC,IAAI,cAAoD,CAAC;YACzD,MAAM,OAAO,GAAG,IAAI,OAAO,CAAI,CAAC,OAAO,EAAE,EAAE,CAAC,cAAc,GAAG,OAAO,CAAC,CAAC;YAEtE,IAAI,CAAC,kBAAkB,CAAI;gBACzB,QAAQ,EAAE,kCAAgB,CAAC,MAAM;gBACjC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,IAAA,4BAAe,EAAC,OAAO,CAAC,KAAK,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,SAAS,EAAE,mCAAmC;aAClH,EAAE,CAAC,QAAQ,EAAE,EAAE;gBAEd,SAAS,cAAc,CAAC,IAAmB;oBACzC,IAAI,IAAI,CAAC,OAAO,EAAE;wBAChB,QAAQ,CAAC,MAAM,CAAC;4BACd,OAAO,EAAE,IAAA,4BAAe,EAAC,IAAI,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,EAAE,mCAAmC;yBACvF,CAAC,CAAC;qBACJ;gBACH,CAAC;gBAED,2CAA2C;gBAC3C,IAAI,kBAAkB,CAAC,IAAI,EAAE;oBAC3B,cAAc,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;iBACzC;gBAED,4CAA4C;gBAC5C,MAAM,mBAAmB,GAAG,kBAAkB,CAAC,WAAW,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC;gBAC3F,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,CAAC,CAAC;gBAErD,6DAA6D;gBAC7D,uBAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,CAAC,cAAc,EAAE,CAAC,CAAC;gBAEjE,OAAO,OAAO,CAAC;YACjB,CAAC,CAAC,CAAC;YAEH,uCAAuC;YACvC,OAAO,IAAA,8BAAY,EAAC,GAAG,EAAE,CAAC,cAAc,EAAE,CAAC,CAAC;QAC9C,CAAC,CAAC;QAEF,IAAI,WAA4B,CAAC;QACjC,IAAI,cAA+B,CAAC;QACpC,IAAI,UAAU,GAAG,KAAK,CAAC;QAEvB,MAAM,kBAAkB,GAAG,CAAC,OAAe,EAAE,MAAe,EAAE,SAAkB,EAAU,EAAE;;YAE1F,MAAM,OAAO,GAAa,EAAE,CAAC;YAC7B,IAAI,OAAO,CAAC,OAAO,EAAE;gBACnB,4CAA4C;aAC7C;YAED,IAAI,OAAO,CAAC,WAAW,EAAE;gBACvB,OAAO,CAAC,IAAI,CAAC,IAAA,0BAAQ,EAAC,cAAc,CAAC,CAAC,CAAC;aACxC;YAED,MAAM,eAAe,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;YAC/D,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,sCAAiB,CAAC,CAAC;YACvD,IAAI,CAAC,yBAAyB,CAAC,eAAe,EAAE,SAAS,CAAC,CAAC;YAE3D,wDAAwD;YACxD,qDAAqD;YACrD,0DAA0D;YAC1D,eAAe;YACf,IAAI,wBAAiD,CAAC;YACtD,MAAM,kBAAkB,GAAG,CAAC,OAAgB,EAAE,EAAE;gBAC9C,6CAA6C;gBAC7C,IAAA,yBAAO,EAAC,wBAAwB,CAAC,CAAC;gBAElC,wDAAwD;gBACxD,IAAI,CAAC,OAAO,IAAI,CAAC,kBAAkB,CAAC,IAAI,EAAE;oBACxC,wBAAwB,GAAG,oBAAoB,EAAE,CAAC;iBACnD;YACH,CAAC,CAAC;YACF,WAAW,GAAG,oBAAC,0BAAW,IAAC,aAAa,EAAE,SAAS,CAAC,aAAa,GAAI,CAAC;YACtE,MAAA,IAAA,iBAAI,EAAC,OAAO,EAAE,4BAAW,CAAC,IAAI,EAAE,IAAI,EAAE,eAAe,EAAE,OAAO,EAAE,WAAW,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC,0CAAE,IAAI,CAAC,GAAG,EAAE;gBAC1H,kBAAkB,CAAC,MAAM,EAAE,CAAC;YAC9B,CAAC,CAAC,CAAC;YACH,IAAI,OAAO,SAAS,KAAK,QAAQ,IAAI,SAAS,IAAI,CAAC,EAAE;gBACnD,cAAc,GAAG,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gBACrC,cAAc,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;aAClC;iBAAM;gBACL,UAAU,GAAG,IAAI,CAAC;gBAClB,cAAc,GAAG,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;aACvC;YAED,OAAO,eAAe,CAAC;QACzB,CAAC,CAAC;QAEF,MAAM,cAAc,GAAG,CAAC,SAAkB,EAAQ,EAAE;YAClD,IAAI,OAAO,SAAS,KAAK,QAAQ,IAAI,SAAS,IAAI,CAAC,EAAE;gBACnD,IAAI,UAAU,EAAE;oBACd,UAAU,GAAG,KAAK,CAAC;oBACnB,cAAc,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;iBAC3B;gBACD,cAAc,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;aAClC;iBAAM;gBACL,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;aACzB;QACH,CAAC,CAAC;QAEF,IAAI,eAAmC,CAAC;QACxC,IAAI,mBAAoC,CAAC;QACzC,IAAI,eAAmC,CAAC,CAAC,4EAA4E;QAErH,MAAM,kBAAkB,GAAG,CAAC,IAAoB,EAAQ,EAAE;YAExD,kCAAkC;YAClC,IAAI,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,OAAO,KAAI,OAAO,CAAC,KAAK,EAAE;gBAClC,eAAe,GAAG,GAAG,OAAO,CAAC,KAAK,KAAK,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,oGAAoG;aAC5J;iBAAM;gBACL,eAAe,GAAG,OAAO,CAAC,KAAK,KAAI,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,OAAO,CAAA,CAAC;aAClD;YAED,IAAI,CAAC,eAAe,IAAI,eAAe,EAAE;gBAEvC,2CAA2C;gBAC3C,IAAI,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,IAAI,OAAO,CAAC,KAAK,GAAG,CAAC,EAAE;oBAC1D,IAAI,OAAO,mBAAmB,KAAK,QAAQ,EAAE;wBAC3C,mBAAmB,GAAG,UAAU,CAAC,GAAG,EAAE,CAAC,eAAe,GAAG,kBAAkB,CAAC,eAAgB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,SAAS,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;qBAClJ;iBACF;qBAAM;oBACL,eAAe,GAAG,kBAAkB,CAAC,eAAe,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,SAAS,CAAC,CAAC;iBAC1F;aACF;YAED,IAAI,eAAe,EAAE;gBACnB,IAAI,OAAO,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,SAAS,CAAA,KAAK,QAAQ,EAAE;oBACvC,cAAc,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;iBAChC;gBACD,IAAI,eAAe,EAAE;oBACnB,IAAA,uBAAM,EAAC,eAAe,EAAE,eAAe,CAAC,CAAC;iBAC1C;aACF;QACH,CAAC,CAAC;QAEF,iBAAiB;QACjB,kBAAkB,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;QAC5C,MAAM,QAAQ,GAAG,kBAAkB,CAAC,WAAW,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC;QACpF,uBAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;QAEnE,sBAAsB;QACtB,CAAC,KAAK,IAAI,EAAE;YACV,IAAI;gBAEF,0DAA0D;gBAC1D,IAAI,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,IAAI,OAAO,CAAC,KAAK,GAAG,CAAC,EAAE;oBAC1D,MAAM,kBAAkB,CAAC,OAAO,CAAC;iBAClC;gBAED,8DAA8D;gBAC9D,kEAAkE;gBAClE,qCAAqC;qBAChC;oBACH,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,IAAA,WAAO,EAAC,GAAG,CAAC,EAAE,kBAAkB,CAAC,OAAO,CAAC,CAAC,CAAC;iBAC/D;aACF;oBAAS;gBACR,YAAY,CAAC,mBAAmB,CAAC,CAAC;gBAClC,IAAI,eAAe,EAAE;oBACnB,IAAA,sBAAK,EAAC,eAAe,CAAC,CAAC;oBACvB,IAAI,CAAC,yBAAyB,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;iBACxD;aACF;QACH,CAAC,CAAC,EAAE,CAAC;QAEL,OAAO,kBAAkB,CAAC,OAAO,CAAC;IACpC,CAAC;CAEF,CAAA;AApXC;IADC,IAAA,cAAS,EAAC,mBAAc,CAAC;2CAChB,aAAQ;iDAAC;AAGnB;IADC,IAAA,cAAS,EAAC,gCAAc,CAAC;;uDACsB;AANrC,eAAe;IAD3B,IAAA,eAAU,GAAE;GACA,eAAe,CAuX3B;AAvXY,0CAAe"}
|