├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── pull_request_template.md └── workflows │ ├── deploy.yml │ ├── main.yml │ └── test-deploy.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── .storybook └── main.js ├── .stylelintrc.json ├── .vscode └── settings.json ├── .yarnrc ├── .yarnrc.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MIGRATION.md ├── README-koKR.md ├── README-zhCN.md ├── README.md ├── babel.config.json ├── codecov.yml ├── commitlint.config.js ├── jest.config.js ├── mock ├── fileMock.js ├── monacoMock.js └── styleMock.js ├── package.json ├── pnpm-lock.yaml ├── scripts └── release.mjs ├── src ├── common │ ├── __tests__ │ │ ├── dom.test.ts │ │ ├── treeUtil.test.ts │ │ └── utils.test.ts │ ├── className.ts │ ├── const.ts │ ├── css.ts │ ├── dom.ts │ ├── error.ts │ ├── event │ │ ├── __tests__ │ │ │ ├── eventBus.test.ts │ │ │ └── eventEmitter.test.ts │ │ ├── decorator.ts │ │ ├── eventBus.ts │ │ ├── eventEmitter.ts │ │ └── index.ts │ ├── id.ts │ ├── keyCodes.ts │ ├── logger.ts │ ├── observable.ts │ ├── treeUtil.ts │ ├── types.ts │ └── utils.ts ├── components │ ├── README.md │ ├── actionBar │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── actionBar.test.tsx.snap │ │ │ └── actionBar.test.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── breadcrumb │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── breadcrumb.test.tsx.snap │ │ │ └── breadcrumb.test.tsx │ │ ├── base.ts │ │ ├── index.tsx │ │ └── style.scss │ ├── button │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── button.test.tsx.snap │ │ │ └── button.test.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── checkbox │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── checkbox.test.tsx.snap │ │ │ └── checkbox.test.tsx │ │ ├── checkbox.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── collapse │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ └── index.test.tsx │ │ ├── base.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── contextMenu │ │ ├── __tests__ │ │ │ └── contextMenu.test.tsx │ │ └── index.tsx │ ├── contextView │ │ ├── __tests__ │ │ │ └── contextView.test.tsx │ │ ├── base.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── dialog │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── actionbutton.test.tsx.snap │ │ │ ├── actionbutton.test.tsx │ │ │ ├── confirm.test.tsx │ │ │ ├── confirmDialog.test.tsx │ │ │ └── dialog.test.tsx │ │ ├── actionButton.tsx │ │ ├── base.ts │ │ ├── confirm.tsx │ │ ├── confirmDialog.tsx │ │ ├── index.tsx │ │ ├── modal.tsx │ │ └── style.scss │ ├── display │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── display.test.tsx.snap │ │ │ └── display.test.tsx │ │ └── index.tsx │ ├── dropdown │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── dropdown.test.tsx.snap │ │ │ └── dropdown.test.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── icon │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── icon.test.tsx.snap │ │ │ └── icon.test.tsx │ │ └── index.tsx │ ├── index.ts │ ├── input │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── input.test.tsx.snap │ │ │ └── input.test.tsx │ │ ├── index.tsx │ │ ├── input.tsx │ │ ├── style.scss │ │ └── textArea.tsx │ ├── list │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── list.test.tsx.snap │ │ │ └── list.test.tsx │ │ ├── index.tsx │ │ ├── item.tsx │ │ ├── list.tsx │ │ └── style.scss │ ├── menu │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── menu.test.tsx.snap │ │ │ ├── menu.test.tsx │ │ │ ├── menuItem.test.tsx │ │ │ └── submenu.test.tsx │ │ ├── base.ts │ │ ├── divider.tsx │ │ ├── index.tsx │ │ ├── menu.tsx │ │ ├── menuItem.tsx │ │ ├── style.scss │ │ └── subMenu.tsx │ ├── monaco │ │ └── index.tsx │ ├── scrollBar │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── scrollBar.test.tsx.snap │ │ │ └── scrollBar.test.tsx │ │ ├── base.ts │ │ ├── index.tsx │ │ └── style.scss │ ├── search │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── search.test.tsx.snap │ │ │ └── search.test.tsx │ │ ├── base.ts │ │ ├── index.tsx │ │ ├── input.tsx │ │ └── style.scss │ ├── select │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── option.test.tsx.snap │ │ │ │ └── select.test.tsx.snap │ │ │ ├── option.test.tsx │ │ │ └── select.test.tsx │ │ ├── index.tsx │ │ ├── option.tsx │ │ ├── select.tsx │ │ └── style.scss │ ├── split │ │ ├── SplitPane.tsx │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ └── index.test.tsx │ │ ├── base.ts │ │ ├── index.ts │ │ ├── pane.tsx │ │ ├── sash.tsx │ │ └── style.scss │ ├── tabs │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── tabs.test.tsx.snap │ │ │ ├── tab.test.tsx │ │ │ ├── tabExtra.test.tsx │ │ │ └── tabs.test.tsx │ │ ├── index.tsx │ │ ├── style.scss │ │ ├── tab.tsx │ │ └── tabExtra.tsx │ ├── toolbar │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── toolbar.test.tsx.snap │ │ │ └── toolbar.test.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── tooltip │ │ ├── __tests__ │ │ │ └── tooltip.test.tsx │ │ ├── index.tsx │ │ └── style.scss │ └── tree │ │ ├── __tests__ │ │ └── tree.test.tsx │ │ ├── base.ts │ │ ├── index.tsx │ │ ├── style.scss │ │ └── treeNode.tsx ├── controller │ ├── __tests__ │ │ ├── activityBar.test.ts │ │ ├── auxiliaryBar.test.ts │ │ ├── editor.test.ts │ │ ├── editorTree.test.ts │ │ ├── explorer.test.ts │ │ ├── extension.test.ts │ │ ├── folderTree.test.ts │ │ ├── layout.test.ts │ │ ├── menuBar.test.ts │ │ ├── notification.test.ts │ │ ├── outline.test.ts │ │ ├── panel.test.ts │ │ ├── problems.test.ts │ │ ├── search.test.ts │ │ ├── setting.test.ts │ │ ├── sidebar.test.ts │ │ └── statusBar.test.ts │ ├── activityBar.ts │ ├── auxiliaryBar.ts │ ├── editor.tsx │ ├── explorer │ │ ├── editorTree.tsx │ │ ├── explorer.tsx │ │ ├── folderTree.tsx │ │ └── outline.tsx │ ├── extension.ts │ ├── index.ts │ ├── layout.ts │ ├── menuBar.ts │ ├── notification.tsx │ ├── panel.tsx │ ├── problems.tsx │ ├── search │ │ └── search.tsx │ ├── settings.tsx │ ├── sidebar.ts │ └── statusBar.tsx ├── extensions │ ├── activityBar │ │ └── index.ts │ ├── editor │ │ └── index.ts │ ├── editorTree │ │ └── index.ts │ ├── explorer │ │ └── index.ts │ ├── folderTree │ │ └── index.tsx │ ├── github-plus-theme-master │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── icon.png │ │ ├── index.ts │ │ ├── package.json │ │ ├── screenshot.jpg │ │ └── themes │ │ │ └── github-plus-theme.json │ ├── index.ts │ ├── locales-defaults │ │ ├── index.ts │ │ └── locales │ │ │ ├── en.json │ │ │ ├── ko-KR.json │ │ │ └── zh-CN.json │ ├── panel │ │ └── index.ts │ ├── theme-defaults │ │ ├── fileicons │ │ │ ├── images │ │ │ │ ├── document-dark.svg │ │ │ │ ├── document-light.svg │ │ │ │ ├── folder-dark.svg │ │ │ │ ├── folder-light.svg │ │ │ │ ├── folder-open-dark.svg │ │ │ │ ├── folder-open-light.svg │ │ │ │ ├── root-folder-dark.svg │ │ │ │ ├── root-folder-light.svg │ │ │ │ ├── root-folder-open-dark.svg │ │ │ │ └── root-folder-open-light.svg │ │ │ └── vs_minimal-icon-theme.json │ │ ├── index.ts │ │ ├── package.json │ │ ├── package.nls.json │ │ ├── target │ │ │ └── npmlist.json │ │ └── themes │ │ │ ├── dark_defaults.json │ │ │ ├── dark_plus.json │ │ │ ├── dark_vs.json │ │ │ ├── hc_black.json │ │ │ ├── hc_black_defaults.json │ │ │ ├── light_defaults.json │ │ │ ├── light_plus.json │ │ │ └── light_vs.json │ ├── theme-monokai │ │ ├── .vscodeignore │ │ ├── cgmanifest.json │ │ ├── index.ts │ │ ├── package.json │ │ ├── package.nls.json │ │ └── themes │ │ │ └── monokai-color-theme.json │ ├── vscode-intellij-darcula-theme-master │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .vscodeignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── themes │ │ │ └── darcula-color-theme.json │ │ └── view.png │ └── vscode-palenight-theme │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .vscodeignore │ │ ├── README.md │ │ ├── changelog.md │ │ ├── contributing.md │ │ ├── icon.png │ │ ├── index.ts │ │ ├── license.md │ │ ├── package.json │ │ └── themes │ │ ├── palenight-italic.json │ │ ├── palenight-mild-contrast.json │ │ ├── palenight-operator.json │ │ └── palenight.json ├── i18n │ ├── __tests__ │ │ └── localeService.test.ts │ ├── index.ts │ ├── localeService.ts │ ├── localization.ts │ ├── localize.tsx │ └── selectLocaleAction.ts ├── icons │ └── README.md ├── index.ts ├── model │ ├── colorTheme.ts │ ├── extension.ts │ ├── iconTheme.ts │ ├── index.ts │ ├── keybinding.ts │ ├── notification.tsx │ ├── problems.tsx │ ├── settings.ts │ ├── ui.ts │ └── workbench │ │ ├── activityBar.ts │ │ ├── auxiliaryBar.ts │ │ ├── editor.ts │ │ ├── explorer │ │ ├── editorTree.ts │ │ ├── explorer.tsx │ │ └── folderTree.tsx │ │ ├── index.ts │ │ ├── layout.ts │ │ ├── menuBar.ts │ │ ├── panel.tsx │ │ ├── search.tsx │ │ ├── sidebar.ts │ │ └── statusBar.tsx ├── molecule.api.ts ├── monaco │ ├── __tests__ │ │ └── action.test.ts │ ├── action.ts │ ├── api.ts │ ├── common.ts │ ├── index.ts │ ├── monacoService.ts │ ├── quickAccessProvider.ts │ ├── quickAccessSettingsAction.ts │ ├── quickAccessViewAction.ts │ ├── quickCopyLineUp.ts │ ├── quickCreateFile.ts │ ├── quickRedo.ts │ ├── quickSelectAllAction.ts │ ├── quickTogglePanelAction.ts │ ├── quickToggleSideBarAction.ts │ ├── quickUndo.ts │ └── selectColorThemeAction.ts ├── provider │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── molecule.test.tsx.snap │ │ └── molecule.test.tsx │ ├── create.ts │ ├── index.tsx │ └── molecule.tsx ├── react │ ├── __tests__ │ │ ├── component.test.ts │ │ ├── connector.test.tsx │ │ ├── helper.test.tsx │ │ ├── render-react.test.tsx │ │ └── render.test.tsx │ ├── component.ts │ ├── connector.tsx │ ├── controller.ts │ ├── helper.ts │ ├── index.ts │ └── render.ts ├── services │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── instanceService.test.tsx.snap │ │ │ └── settingsService.test.ts.snap │ │ ├── activityBarService.test.ts │ │ ├── auxiliaryBarService.test.ts │ │ ├── builtinService.test.ts │ │ ├── colorThemeHelper.test.ts │ │ ├── colorThemeService.test.ts │ │ ├── explorerService.test.ts │ │ ├── extensionService.test.ts │ │ ├── instanceService.test.tsx │ │ ├── keybinding.test.ts │ │ ├── layoutService.test.ts │ │ ├── menuBarService.test.ts │ │ ├── notificationService.test.ts │ │ ├── panelService.test.ts │ │ ├── problemsService.test.ts │ │ ├── settingsService.test.ts │ │ ├── sidebarService.test.ts │ │ └── statusBarService.test.ts │ ├── baseService.ts │ ├── builtinService │ │ ├── const.ts │ │ └── index.ts │ ├── extensionService.ts │ ├── index.ts │ ├── instanceService.tsx │ ├── keybinding.ts │ ├── notificationService.ts │ ├── problemsService.ts │ ├── settingsService.ts │ ├── theme │ │ ├── colorRegistry.ts │ │ ├── colorThemeService.ts │ │ └── helper.ts │ └── workbench │ │ ├── __tests__ │ │ ├── editorService.test.tsx │ │ ├── editorTreeService.test.ts │ │ ├── folderTreeService.test.tsx │ │ └── searchService.test.ts │ │ ├── activityBarService.ts │ │ ├── auxiliaryBarService.ts │ │ ├── editorService.ts │ │ ├── explorer │ │ ├── editorTreeService.ts │ │ ├── explorerService.ts │ │ └── folderTreeService.ts │ │ ├── index.ts │ │ ├── layoutService.ts │ │ ├── menuBarService.ts │ │ ├── panelService.ts │ │ ├── searchService.ts │ │ ├── sidebarService.ts │ │ └── statusBarService.ts ├── style │ ├── animation.scss │ ├── common.scss │ └── mo.scss ├── typings │ └── index.d.ts └── workbench │ ├── __tests__ │ ├── __snapshots__ │ │ └── workbench.test.tsx.snap │ └── workbench.test.tsx │ ├── activityBar │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── activityBar.test.tsx.snap │ │ │ └── activityBarItem.test.tsx.snap │ │ ├── activityBar.test.tsx │ │ └── activityBarItem.test.tsx │ ├── activityBar.tsx │ ├── activityBarItem.tsx │ ├── base.ts │ ├── index.tsx │ └── style.scss │ ├── auxiliaryBar │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── auxiliaryBar.test.tsx.snap │ │ │ └── auxiliaryBarTab.test.tsx.snap │ │ ├── auxiliaryBar.test.tsx │ │ └── auxiliaryBarTab.test.tsx │ ├── auxiliaryBar.tsx │ ├── auxiliaryBarTab.tsx │ ├── base.ts │ ├── index.ts │ └── style.scss │ ├── editor │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── editor.test.tsx.snap │ │ ├── action.test.tsx │ │ ├── breadcrumb.test.tsx │ │ ├── editor.test.tsx │ │ └── group.test.tsx │ ├── action.tsx │ ├── base.ts │ ├── breadcrumb.tsx │ ├── editor.tsx │ ├── group.tsx │ ├── index.tsx │ ├── statusBarView │ │ └── index.tsx │ ├── style.scss │ └── welcome │ │ ├── hooks.ts │ │ ├── index.tsx │ │ ├── logo.tsx │ │ ├── name.tsx │ │ └── style.scss │ ├── index.tsx │ ├── menuBar │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── menubar.test.tsx.snap │ │ └── menubar.test.tsx │ ├── horizontalView.tsx │ ├── index.tsx │ ├── logo.tsx │ ├── menuBar.tsx │ └── style.scss │ ├── notification │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── localeNotification.test.tsx.snap │ │ │ ├── notificationPane.test.tsx.snap │ │ │ └── statusBarView.test.tsx.snap │ │ ├── localeNotification.test.tsx │ │ ├── notificationPane.test.tsx │ │ └── statusBarView.test.tsx │ ├── index.tsx │ ├── notificationPane │ │ ├── index.tsx │ │ └── localeNotification.tsx │ ├── statusBarView │ │ ├── index.tsx │ │ └── style.scss │ └── style.scss │ ├── panel │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── output.test.tsx.snap │ │ │ └── panel.test.tsx.snap │ │ ├── output.test.tsx │ │ └── panel.test.tsx │ ├── index.tsx │ ├── output.tsx │ ├── panel.tsx │ └── style.scss │ ├── problems │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── paneView.test.tsx.snap │ │ │ └── statusBarView.test.tsx.snap │ │ ├── paneView.test.tsx │ │ └── statusBarView.test.tsx │ ├── index.tsx │ ├── paneView │ │ └── index.tsx │ ├── statusBarView │ │ └── index.tsx │ └── style.scss │ ├── settings │ ├── index.tsx │ ├── settings.tsx │ └── style.scss │ ├── sidebar │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── editorTree.test.tsx.snap │ │ │ ├── explore.test.tsx.snap │ │ │ └── siderbar.test.tsx.snap │ │ ├── editorTree.test.tsx │ │ ├── explore.test.tsx │ │ ├── folderTree.test.tsx │ │ ├── searchPanel.test.tsx │ │ └── siderbar.test.tsx │ ├── explore │ │ ├── base.ts │ │ ├── editorTree.tsx │ │ ├── explore.tsx │ │ ├── folderTree.tsx │ │ ├── index.tsx │ │ └── style.scss │ ├── index.tsx │ ├── search │ │ ├── base.ts │ │ ├── index.tsx │ │ ├── searchPanel.tsx │ │ └── searchTree.tsx │ ├── sidebar.tsx │ └── style.scss │ ├── statusBar │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── status.test.tsx.snap │ │ │ └── statusItem.test.tsx.snap │ │ ├── status.test.tsx │ │ └── statusItem.test.tsx │ ├── base.ts │ ├── index.tsx │ ├── item.tsx │ ├── statusBar.tsx │ └── style.scss │ ├── style.scss │ └── workbench.tsx ├── stories ├── 0-Welcome.stories.tsx ├── common │ └── propsTable │ │ ├── index.tsx │ │ └── style.scss ├── components │ ├── 10-Menu.stories.tsx │ ├── 11-DownDown.stories.tsx │ ├── 12-Button.stories.tsx │ ├── 13-Icon.stories.tsx │ ├── 14-Scrollbar.stories.tsx │ ├── 15-Input.stories.tsx │ ├── 15-Select.stories.tsx │ ├── 16-Checkbox.stories.tsx │ ├── 17-Dialog.stories.tsx │ ├── 18-Breadcrumb.stories.tsx │ ├── 19-Split.stories.tsx │ ├── 2-Collapse.stories.tsx │ ├── 3-Tabs.stories.tsx │ ├── 4-Tree.stories.tsx │ ├── 5-Monaco.stories.tsx │ ├── 6-ActionBar.stories.tsx │ ├── 7-ContextMenu.stories.tsx │ ├── 8-ContextView.stories.tsx │ └── 9-List.stories.tsx ├── demo.scss ├── extensions │ ├── actions │ │ └── quickOpen.ts │ ├── data-sync │ │ └── index.tsx │ ├── extend-panel │ │ ├── index.tsx │ │ └── pane.tsx │ ├── index.ts │ ├── locales-plus │ │ ├── index.tsx │ │ └── locale │ │ │ └── jp.json │ ├── problems │ │ └── index.tsx │ └── test │ │ ├── index.tsx │ │ └── testPane.tsx └── workbench │ └── 0-Workbench.stories.tsx ├── test ├── example.test.ts ├── setupTests.tsx └── utils.ts ├── tsconfig.base.json ├── tsconfig.build.json ├── tsconfig.json ├── website ├── README.md ├── babel.config.js ├── docs │ ├── advanced │ │ ├── customize-workbench.md │ │ └── event.md │ ├── contributing.md │ ├── examples │ │ └── index.md │ ├── guides │ │ ├── builtin.md │ │ ├── extend-builtin-ui.md │ │ ├── extend-color-theme.md │ │ ├── extend-keybinding.md │ │ ├── extend-locales.md │ │ ├── extend-quick-access.md │ │ ├── extend-settings.md │ │ ├── extend-workbench.md │ │ ├── extension.md │ │ └── icons.md │ ├── introduction.md │ ├── overview.md │ ├── quick-start.md │ └── the-first-extension.md ├── docusaurus.config.js ├── i18n │ └── zh-CN │ │ ├── code.json │ │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ ├── current │ │ │ ├── advanced │ │ │ │ ├── customize-builtin.md │ │ │ │ ├── customize-workbench.md │ │ │ │ └── event.md │ │ │ ├── contributing.md │ │ │ ├── guides │ │ │ │ ├── builtin.md │ │ │ │ ├── extend-builtin-ui.md │ │ │ │ ├── extend-color-theme.md │ │ │ │ ├── extend-keybinding.md │ │ │ │ ├── extend-locales.md │ │ │ │ ├── extend-quick-access.md │ │ │ │ ├── extend-settings.md │ │ │ │ ├── extend-workbench.md │ │ │ │ ├── extension.md │ │ │ │ └── icons.md │ │ │ ├── introduction.md │ │ │ ├── overview.md │ │ │ ├── quick-start.md │ │ │ └── the-first-extension.md │ │ ├── version-0.9.0-beta.2 │ │ │ ├── advanced │ │ │ │ ├── customize-builtin.md │ │ │ │ └── customize-workbench.md │ │ │ ├── contributing.md │ │ │ ├── guides │ │ │ │ ├── extend-builtin-ui.md │ │ │ │ ├── extend-color-theme.md │ │ │ │ ├── extend-keybinding.md │ │ │ │ ├── extend-locales.md │ │ │ │ ├── extend-quick-access.md │ │ │ │ ├── extend-settings.md │ │ │ │ ├── extend-workbench.md │ │ │ │ ├── extension.md │ │ │ │ └── icons.md │ │ │ ├── introduction.md │ │ │ ├── overview.md │ │ │ ├── quick-start.md │ │ │ └── the-first-extension.md │ │ └── version-1.x │ │ │ ├── advanced │ │ │ ├── customize-builtin.md │ │ │ ├── customize-workbench.md │ │ │ └── event.md │ │ │ ├── contributing.md │ │ │ ├── guides │ │ │ ├── builtin.md │ │ │ ├── extend-builtin-ui.md │ │ │ ├── extend-color-theme.md │ │ │ ├── extend-keybinding.md │ │ │ ├── extend-locales.md │ │ │ ├── extend-quick-access.md │ │ │ ├── extend-settings.md │ │ │ ├── extend-workbench.md │ │ │ ├── extension.md │ │ │ └── icons.md │ │ │ ├── introduction.md │ │ │ ├── overview.md │ │ │ ├── quick-start.md │ │ │ └── the-first-extension.md │ │ ├── docusaurus-plugin-content-pages │ │ └── case │ │ │ └── index.js │ │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── HomepageFeatures.js │ │ ├── HomepageFeatures.module.css │ │ └── ShowCase │ │ │ ├── index.js │ │ │ └── index.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── case │ │ └── index.js │ │ ├── index.js │ │ ├── index.module.css │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── advanced │ │ └── custom-workbench.png │ │ ├── docusaurus.png │ │ ├── easyToUse.svg │ │ ├── extensible.svg │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── guides │ │ ├── builtin-ui.png │ │ ├── colorThemePalette.jpg │ │ ├── custom-workbench.png │ │ ├── extend-language.png │ │ ├── extend-language2.png │ │ ├── extend-quickAccess-1.png │ │ ├── extend-quickAccess.png │ │ ├── extend-settings.png │ │ ├── extend-workbench.png │ │ ├── quick-access.jpg │ │ └── workbench-ui.png │ │ ├── logo.svg │ │ ├── logo@1x.png │ │ ├── logo@2x.png │ │ ├── logo@3x.png │ │ ├── molecule.png │ │ ├── qrcode-chat.jpg │ │ ├── react.svg │ │ ├── the-first-extension.png │ │ ├── tutorial │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg ├── versioned_docs │ ├── version-0.9.0-beta.2 │ │ ├── advanced │ │ │ └── customize-workbench.md │ │ ├── api │ │ │ ├── _category_.yml │ │ │ ├── classes │ │ │ │ ├── MoleculeProvider.md │ │ │ │ ├── _category_.yml │ │ │ │ ├── molecule.ActivityBarService.md │ │ │ │ ├── molecule.BuiltinService.md │ │ │ │ ├── molecule.ColorThemeService.md │ │ │ │ ├── molecule.EditorService.md │ │ │ │ ├── molecule.EditorTreeService.md │ │ │ │ ├── molecule.ExplorerService.md │ │ │ │ ├── molecule.ExtensionService.md │ │ │ │ ├── molecule.FolderTreeService.md │ │ │ │ ├── molecule.LayoutService.md │ │ │ │ ├── molecule.LocaleService.md │ │ │ │ ├── molecule.MenuBarService.md │ │ │ │ ├── molecule.NotificationService.md │ │ │ │ ├── molecule.PanelService.md │ │ │ │ ├── molecule.ProblemsService.md │ │ │ │ ├── molecule.SearchService.md │ │ │ │ ├── molecule.SettingsService.md │ │ │ │ ├── molecule.SidebarService.md │ │ │ │ ├── molecule.StatusBarService.md │ │ │ │ ├── molecule.component.Input.md │ │ │ │ ├── molecule.component.MonacoEditor.md │ │ │ │ ├── molecule.component.Select.md │ │ │ │ ├── molecule.event.EventEmitter.md │ │ │ │ ├── molecule.event.GlobalEvent.md │ │ │ │ ├── molecule.model.ActivityBarModel.md │ │ │ │ ├── molecule.model.EditorGroupModel.md │ │ │ │ ├── molecule.model.EditorModel.md │ │ │ │ ├── molecule.model.EditorTree.md │ │ │ │ ├── molecule.model.IExplorerModel.md │ │ │ │ ├── molecule.model.IFolderTreeModel.md │ │ │ │ ├── molecule.model.MenuBarModel.md │ │ │ │ ├── molecule.model.NotificationModel.md │ │ │ │ ├── molecule.model.PanelModel.md │ │ │ │ ├── molecule.model.ProblemsModel.md │ │ │ │ ├── molecule.model.SearchModel.md │ │ │ │ ├── molecule.model.SettingsModel.md │ │ │ │ ├── molecule.model.SidebarModel.md │ │ │ │ ├── molecule.model.StatusBarModel.md │ │ │ │ ├── molecule.model.TreeNodeModel.md │ │ │ │ ├── molecule.monaco.Action2.md │ │ │ │ ├── molecule.react.Component.md │ │ │ │ └── molecule.react.Controller.md │ │ │ ├── enums │ │ │ │ ├── _category_.yml │ │ │ │ ├── molecule.component.MenuMode.md │ │ │ │ ├── molecule.model.ActivityBarEvent.md │ │ │ │ ├── molecule.model.ColorScheme.md │ │ │ │ ├── molecule.model.EditorEvent.md │ │ │ │ ├── molecule.model.EditorTreeEvent.md │ │ │ │ ├── molecule.model.ExplorerEvent.md │ │ │ │ ├── molecule.model.FileTypes.md │ │ │ │ ├── molecule.model.Float.md │ │ │ │ ├── molecule.model.FolderTreeEvent.md │ │ │ │ ├── molecule.model.IContributeType.md │ │ │ │ ├── molecule.model.IExtensionType.md │ │ │ │ ├── molecule.model.MarkerSeverity.md │ │ │ │ ├── molecule.model.MenuBarEvent.md │ │ │ │ ├── molecule.model.NotificationStatus.md │ │ │ │ ├── molecule.model.PanelEvent.md │ │ │ │ ├── molecule.model.SearchEvent.md │ │ │ │ ├── molecule.model.SettingsEvent.md │ │ │ │ ├── molecule.model.StatusBarEvent.md │ │ │ │ ├── molecule.monaco.KeybindingWeight.md │ │ │ │ └── molecule.react.ComponentEvents.md │ │ │ ├── index.md │ │ │ ├── interfaces │ │ │ │ ├── IMoleculeProps.md │ │ │ │ ├── _category_.yml │ │ │ │ ├── molecule.IActivityBarController.md │ │ │ │ ├── molecule.IActivityBarService.md │ │ │ │ ├── molecule.IBuiltinService.md │ │ │ │ ├── molecule.IColorThemeService.md │ │ │ │ ├── molecule.IEditorController.md │ │ │ │ ├── molecule.IEditorService.md │ │ │ │ ├── molecule.IEditorTreeService.md │ │ │ │ ├── molecule.IExplorerService.md │ │ │ │ ├── molecule.IExtensionService.md │ │ │ │ ├── molecule.IFolderTreeService.md │ │ │ │ ├── molecule.ILayoutController.md │ │ │ │ ├── molecule.ILayoutService.md │ │ │ │ ├── molecule.ILocale.md │ │ │ │ ├── molecule.ILocaleService.md │ │ │ │ ├── molecule.ILocalizeProps.md │ │ │ │ ├── molecule.IMenuBarController.md │ │ │ │ ├── molecule.IMenuBarService.md │ │ │ │ ├── molecule.INotificationController.md │ │ │ │ ├── molecule.INotificationService.md │ │ │ │ ├── molecule.IPanelController.md │ │ │ │ ├── molecule.IPanelService.md │ │ │ │ ├── molecule.IProblemsController.md │ │ │ │ ├── molecule.IProblemsService.md │ │ │ │ ├── molecule.ISearchService.md │ │ │ │ ├── molecule.ISettingsController.md │ │ │ │ ├── molecule.ISettingsService.md │ │ │ │ ├── molecule.ISideBarController.md │ │ │ │ ├── molecule.ISidebarService.md │ │ │ │ ├── molecule.IStatusBarController.md │ │ │ │ ├── molecule.IStatusBarService.md │ │ │ │ ├── molecule.component.IActionBarItemProps.md │ │ │ │ ├── molecule.component.IActionBarProps.md │ │ │ │ ├── molecule.component.IBreadcrumbItemProps.md │ │ │ │ ├── molecule.component.IBreadcrumbProps.md │ │ │ │ ├── molecule.component.IButtonProps.md │ │ │ │ ├── molecule.component.ICheckboxProps.md │ │ │ │ ├── molecule.component.ICollapseProps.md │ │ │ │ ├── molecule.component.IContextMenuProps.md │ │ │ │ ├── molecule.component.IContextView.md │ │ │ │ ├── molecule.component.IContextViewProps.md │ │ │ │ ├── molecule.component.IDisplayProps.md │ │ │ │ ├── molecule.component.IDropDownProps.md │ │ │ │ ├── molecule.component.IIconProps.md │ │ │ │ ├── molecule.component.IInputProps.md │ │ │ │ ├── molecule.component.IItemProps.md │ │ │ │ ├── molecule.component.IListProps.md │ │ │ │ ├── molecule.component.IMenuItemProps.md │ │ │ │ ├── molecule.component.IModalFuncProps.md │ │ │ │ ├── molecule.component.IModalProps.md │ │ │ │ ├── molecule.component.IMonacoEditorProps.md │ │ │ │ ├── molecule.component.IScrollbarProps.md │ │ │ │ ├── molecule.component.ISearchProps.md │ │ │ │ ├── molecule.component.ISelectOptionProps.md │ │ │ │ ├── molecule.component.ISelectProps.md │ │ │ │ ├── molecule.component.ISubMenuProps.md │ │ │ │ ├── molecule.component.ITabProps.md │ │ │ │ ├── molecule.component.ITabsProps.md │ │ │ │ ├── molecule.component.ITextAreaProps.md │ │ │ │ ├── molecule.component.IToolTipProps.md │ │ │ │ ├── molecule.component.IToolbarProps.md │ │ │ │ ├── molecule.component.ITreeNodeItemProps.md │ │ │ │ ├── molecule.component.ITreeProps.md │ │ │ │ ├── molecule.model.IActivityBar.md │ │ │ │ ├── molecule.model.IActivityBarItem.md │ │ │ │ ├── molecule.model.IActivityMenuItemProps.md │ │ │ │ ├── molecule.model.IColorTheme.md │ │ │ │ ├── molecule.model.IColors.md │ │ │ │ ├── molecule.model.IContribute.md │ │ │ │ ├── molecule.model.IEditor.md │ │ │ │ ├── molecule.model.IEditorAction.md │ │ │ │ ├── molecule.model.IEditorActionsProps.md │ │ │ │ ├── molecule.model.IEditorGroup.md │ │ │ │ ├── molecule.model.IEditorTab.md │ │ │ │ ├── molecule.model.IExplorer.md │ │ │ │ ├── molecule.model.IExplorerPanelItem.md │ │ │ │ ├── molecule.model.IExtension.md │ │ │ │ ├── molecule.model.IFolderInputEvent.md │ │ │ │ ├── molecule.model.IFolderTree.md │ │ │ │ ├── molecule.model.IFolderTreeNodeProps.md │ │ │ │ ├── molecule.model.IFolderTreeSubItem.md │ │ │ │ ├── molecule.model.IIconTheme.md │ │ │ │ ├── molecule.model.IMenuBar.md │ │ │ │ ├── molecule.model.IMenuBarItem.md │ │ │ │ ├── molecule.model.INotification.md │ │ │ │ ├── molecule.model.INotificationItem.md │ │ │ │ ├── molecule.model.IOutput.md │ │ │ │ ├── molecule.model.IPanel.md │ │ │ │ ├── molecule.model.IPanelItem.md │ │ │ │ ├── molecule.model.IProblems.md │ │ │ │ ├── molecule.model.IProblemsItem.md │ │ │ │ ├── molecule.model.IRelatedInformation.md │ │ │ │ ├── molecule.model.ISearchProps.md │ │ │ │ ├── molecule.model.ISettings.md │ │ │ │ ├── molecule.model.ISidebar.md │ │ │ │ ├── molecule.model.ISidebarPane.md │ │ │ │ ├── molecule.model.ISimpleKeybinding.md │ │ │ │ ├── molecule.model.IStatusBar.md │ │ │ │ ├── molecule.model.IStatusBarItem.md │ │ │ │ ├── molecule.model.IWorkbench.md │ │ │ │ ├── molecule.model.TokenColor.md │ │ │ │ └── molecule.react.IComponent.md │ │ │ └── namespaces │ │ │ │ ├── _category_.yml │ │ │ │ ├── molecule.component.md │ │ │ │ ├── molecule.event.md │ │ │ │ ├── molecule.md │ │ │ │ ├── molecule.model.md │ │ │ │ ├── molecule.monaco.md │ │ │ │ └── molecule.react.md │ │ ├── contributing.md │ │ ├── examples │ │ │ └── index.md │ │ ├── guides │ │ │ ├── extend-builtin-ui.md │ │ │ ├── extend-color-theme.md │ │ │ ├── extend-keybinding.md │ │ │ ├── extend-locales.md │ │ │ ├── extend-quick-access.md │ │ │ ├── extend-settings.md │ │ │ ├── extend-workbench.md │ │ │ ├── extension.md │ │ │ └── icons.md │ │ ├── introduction.md │ │ ├── overview.md │ │ ├── quick-start.md │ │ └── the-first-extension.md │ └── version-1.x │ │ ├── advanced │ │ ├── customize-workbench.md │ │ └── event.md │ │ ├── api │ │ ├── _category_.yml │ │ ├── classes │ │ │ ├── _category_.yml │ │ │ ├── molecule.ActivityBarService.md │ │ │ ├── molecule.AuxiliaryBarService.md │ │ │ ├── molecule.BuiltinService.md │ │ │ ├── molecule.ColorThemeService.md │ │ │ ├── molecule.EditorService.md │ │ │ ├── molecule.EditorTreeService.md │ │ │ ├── molecule.ExplorerService.md │ │ │ ├── molecule.ExtensionService.md │ │ │ ├── molecule.FolderTreeService.md │ │ │ ├── molecule.LayoutService.md │ │ │ ├── molecule.LocaleService.md │ │ │ ├── molecule.MenuBarService.md │ │ │ ├── molecule.NotificationService.md │ │ │ ├── molecule.PanelService.md │ │ │ ├── molecule.ProblemsService.md │ │ │ ├── molecule.SearchService.md │ │ │ ├── molecule.SettingsService.md │ │ │ ├── molecule.SidebarService.md │ │ │ ├── molecule.StatusBarService.md │ │ │ ├── molecule.component.Input.md │ │ │ ├── molecule.component.MonacoEditor.md │ │ │ ├── molecule.component.Select.md │ │ │ ├── molecule.event.EventEmitter.md │ │ │ ├── molecule.event.GlobalEvent.md │ │ │ ├── molecule.model.ActivityBarModel.md │ │ │ ├── molecule.model.AuxiliaryModel.md │ │ │ ├── molecule.model.EditorGroupModel.md │ │ │ ├── molecule.model.EditorModel.md │ │ │ ├── molecule.model.EditorTree.md │ │ │ ├── molecule.model.IExplorerModel.md │ │ │ ├── molecule.model.IFolderTreeModel.md │ │ │ ├── molecule.model.MenuBarModel.md │ │ │ ├── molecule.model.NotificationModel.md │ │ │ ├── molecule.model.PanelModel.md │ │ │ ├── molecule.model.ProblemsModel.md │ │ │ ├── molecule.model.SearchModel.md │ │ │ ├── molecule.model.SettingsModel.md │ │ │ ├── molecule.model.SidebarModel.md │ │ │ ├── molecule.model.StatusBarModel.md │ │ │ ├── molecule.model.TreeNodeModel.md │ │ │ ├── molecule.monaco.Action2.md │ │ │ ├── molecule.react.Component.md │ │ │ └── molecule.react.Controller.md │ │ ├── enums │ │ │ ├── _category_.yml │ │ │ ├── molecule.component.DirectionKind.md │ │ │ ├── molecule.component.MenuMode.md │ │ │ ├── molecule.model.ActivityBarEvent.md │ │ │ ├── molecule.model.AuxiliaryEventKind.md │ │ │ ├── molecule.model.ColorScheme.md │ │ │ ├── molecule.model.ColorThemeEvent.md │ │ │ ├── molecule.model.ColorThemeMode.md │ │ │ ├── molecule.model.EditorEvent.md │ │ │ ├── molecule.model.EditorTreeEvent.md │ │ │ ├── molecule.model.ExplorerEvent.md │ │ │ ├── molecule.model.FileTypes.md │ │ │ ├── molecule.model.Float.md │ │ │ ├── molecule.model.FolderTreeEvent.md │ │ │ ├── molecule.model.IContributeType.md │ │ │ ├── molecule.model.IExtensionType.md │ │ │ ├── molecule.model.MarkerSeverity.md │ │ │ ├── molecule.model.MenuBarEvent.md │ │ │ ├── molecule.model.NotificationStatus.md │ │ │ ├── molecule.model.PanelEvent.md │ │ │ ├── molecule.model.ProblemsEvent.md │ │ │ ├── molecule.model.SearchEvent.md │ │ │ ├── molecule.model.SettingsEvent.md │ │ │ ├── molecule.model.StatusBarEvent.md │ │ │ ├── molecule.monaco.KeybindingWeight.md │ │ │ └── molecule.react.ComponentEvents.md │ │ ├── index.md │ │ ├── interfaces │ │ │ ├── _category_.yml │ │ │ ├── molecule.IActivityBarController.md │ │ │ ├── molecule.IActivityBarService.md │ │ │ ├── molecule.IAuxiliaryBarService.md │ │ │ ├── molecule.IBuiltinService.md │ │ │ ├── molecule.IColorThemeService.md │ │ │ ├── molecule.IEditorController.md │ │ │ ├── molecule.IEditorService.md │ │ │ ├── molecule.IEditorTreeService.md │ │ │ ├── molecule.IExplorerService.md │ │ │ ├── molecule.IExtensionService.md │ │ │ ├── molecule.IFolderTreeService.md │ │ │ ├── molecule.ILayoutController.md │ │ │ ├── molecule.ILayoutService.md │ │ │ ├── molecule.ILocale.md │ │ │ ├── molecule.ILocaleService.md │ │ │ ├── molecule.ILocalizeProps.md │ │ │ ├── molecule.IMenuBarController.md │ │ │ ├── molecule.IMenuBarService.md │ │ │ ├── molecule.INotificationController.md │ │ │ ├── molecule.INotificationService.md │ │ │ ├── molecule.IPanelController.md │ │ │ ├── molecule.IPanelService.md │ │ │ ├── molecule.IProblemsController.md │ │ │ ├── molecule.IProblemsService.md │ │ │ ├── molecule.ISearchService.md │ │ │ ├── molecule.ISettingsController.md │ │ │ ├── molecule.ISettingsService.md │ │ │ ├── molecule.ISideBarController.md │ │ │ ├── molecule.ISidebarService.md │ │ │ ├── molecule.IStatusBarController.md │ │ │ ├── molecule.IStatusBarService.md │ │ │ ├── molecule.component.IActionBarItemProps.md │ │ │ ├── molecule.component.IActionBarProps.md │ │ │ ├── molecule.component.IBreadcrumbItemProps.md │ │ │ ├── molecule.component.IBreadcrumbProps.md │ │ │ ├── molecule.component.IButtonProps.md │ │ │ ├── molecule.component.ICheckboxProps.md │ │ │ ├── molecule.component.ICollapseProps.md │ │ │ ├── molecule.component.IContextMenuProps.md │ │ │ ├── molecule.component.IContextView.md │ │ │ ├── molecule.component.IContextViewProps.md │ │ │ ├── molecule.component.IDisplayProps.md │ │ │ ├── molecule.component.IDropDownProps.md │ │ │ ├── molecule.component.IIconProps.md │ │ │ ├── molecule.component.IInputProps.md │ │ │ ├── molecule.component.IItemProps.md │ │ │ ├── molecule.component.IListProps.md │ │ │ ├── molecule.component.IMenuItemProps.md │ │ │ ├── molecule.component.IModalFuncProps.md │ │ │ ├── molecule.component.IModalProps.md │ │ │ ├── molecule.component.IMonacoEditorProps.md │ │ │ ├── molecule.component.IPaneConfigs.md │ │ │ ├── molecule.component.IScrollEvent.md │ │ │ ├── molecule.component.IScrollRef.md │ │ │ ├── molecule.component.IScrollbarProps.md │ │ │ ├── molecule.component.ISearchProps.md │ │ │ ├── molecule.component.ISelectOptionProps.md │ │ │ ├── molecule.component.ISelectProps.md │ │ │ ├── molecule.component.ISplitProps.md │ │ │ ├── molecule.component.ISubMenuProps.md │ │ │ ├── molecule.component.ITabProps.md │ │ │ ├── molecule.component.ITabsProps.md │ │ │ ├── molecule.component.ITextAreaProps.md │ │ │ ├── molecule.component.IToolTipProps.md │ │ │ ├── molecule.component.IToolbarProps.md │ │ │ ├── molecule.component.ITreeNodeItemProps.md │ │ │ ├── molecule.component.ITreeProps.md │ │ │ ├── molecule.event.ListenerEventContext.md │ │ │ ├── molecule.model.BuiltInEditorTabDataType.md │ │ │ ├── molecule.model.IActivityBar.md │ │ │ ├── molecule.model.IActivityBarItem.md │ │ │ ├── molecule.model.IActivityMenuItemProps.md │ │ │ ├── molecule.model.IAuxiliaryBar.md │ │ │ ├── molecule.model.IColorTheme.md │ │ │ ├── molecule.model.IColors.md │ │ │ ├── molecule.model.IContribute.md │ │ │ ├── molecule.model.IEditor.md │ │ │ ├── molecule.model.IEditorAction.md │ │ │ ├── molecule.model.IEditorActionsProps.md │ │ │ ├── molecule.model.IEditorGroup.md │ │ │ ├── molecule.model.IEditorTab.md │ │ │ ├── molecule.model.IExplorer.md │ │ │ ├── molecule.model.IExplorerPanelItem.md │ │ │ ├── molecule.model.IExtension.md │ │ │ ├── molecule.model.IFolderInputEvent.md │ │ │ ├── molecule.model.IFolderTree.md │ │ │ ├── molecule.model.IFolderTreeNodeProps.md │ │ │ ├── molecule.model.IFolderTreeSubItem.md │ │ │ ├── molecule.model.IIconTheme.md │ │ │ ├── molecule.model.IMenuBar.md │ │ │ ├── molecule.model.IMenuBarItem.md │ │ │ ├── molecule.model.INotification.md │ │ │ ├── molecule.model.INotificationItem.md │ │ │ ├── molecule.model.IOutput.md │ │ │ ├── molecule.model.IPanel.md │ │ │ ├── molecule.model.IPanelItem.md │ │ │ ├── molecule.model.IProblems.md │ │ │ ├── molecule.model.IProblemsItem.md │ │ │ ├── molecule.model.IProblemsTreeNode.md │ │ │ ├── molecule.model.IRelatedInformation.md │ │ │ ├── molecule.model.ISearchProps.md │ │ │ ├── molecule.model.ISettings.md │ │ │ ├── molecule.model.ISidebar.md │ │ │ ├── molecule.model.ISidebarPane.md │ │ │ ├── molecule.model.ISimpleKeybinding.md │ │ │ ├── molecule.model.IStatusBar.md │ │ │ ├── molecule.model.IStatusBarItem.md │ │ │ ├── molecule.model.IWorkbench.md │ │ │ ├── molecule.model.TokenColor.md │ │ │ └── molecule.react.IComponent.md │ │ └── namespaces │ │ │ ├── _category_.yml │ │ │ ├── molecule.component.md │ │ │ ├── molecule.event.md │ │ │ ├── molecule.md │ │ │ ├── molecule.model.md │ │ │ ├── molecule.monaco.md │ │ │ └── molecule.react.md │ │ ├── contributing.md │ │ ├── examples │ │ └── index.md │ │ ├── guides │ │ ├── builtin.md │ │ ├── extend-builtin-ui.md │ │ ├── extend-color-theme.md │ │ ├── extend-keybinding.md │ │ ├── extend-locales.md │ │ ├── extend-quick-access.md │ │ ├── extend-settings.md │ │ ├── extend-workbench.md │ │ ├── extension.md │ │ └── icons.md │ │ ├── introduction.md │ │ ├── overview.md │ │ ├── quick-start.md │ │ └── the-first-extension.md ├── versioned_sidebars │ ├── version-0.9.0-beta.2-sidebars.json │ └── version-1.x-sidebars.json ├── versions.json └── yarn.lock └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.github/workflows/test-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/.yarnrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README-koKR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/README-koKR.md -------------------------------------------------------------------------------- /README-zhCN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/README-zhCN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/babel.config.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/codecov.yml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/jest.config.js -------------------------------------------------------------------------------- /mock/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /mock/monacoMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/mock/monacoMock.js -------------------------------------------------------------------------------- /mock/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/release.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/scripts/release.mjs -------------------------------------------------------------------------------- /src/common/__tests__/dom.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/__tests__/dom.test.ts -------------------------------------------------------------------------------- /src/common/__tests__/treeUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/__tests__/treeUtil.test.ts -------------------------------------------------------------------------------- /src/common/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/__tests__/utils.test.ts -------------------------------------------------------------------------------- /src/common/className.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/className.ts -------------------------------------------------------------------------------- /src/common/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/const.ts -------------------------------------------------------------------------------- /src/common/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/css.ts -------------------------------------------------------------------------------- /src/common/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/dom.ts -------------------------------------------------------------------------------- /src/common/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/error.ts -------------------------------------------------------------------------------- /src/common/event/__tests__/eventBus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/event/__tests__/eventBus.test.ts -------------------------------------------------------------------------------- /src/common/event/__tests__/eventEmitter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/event/__tests__/eventEmitter.test.ts -------------------------------------------------------------------------------- /src/common/event/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/event/decorator.ts -------------------------------------------------------------------------------- /src/common/event/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/event/eventBus.ts -------------------------------------------------------------------------------- /src/common/event/eventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/event/eventEmitter.ts -------------------------------------------------------------------------------- /src/common/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/event/index.ts -------------------------------------------------------------------------------- /src/common/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/id.ts -------------------------------------------------------------------------------- /src/common/keyCodes.ts: -------------------------------------------------------------------------------- 1 | export enum KeyCodes { 2 | ENTER = 'Enter', 3 | } 4 | -------------------------------------------------------------------------------- /src/common/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/logger.ts -------------------------------------------------------------------------------- /src/common/observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/observable.ts -------------------------------------------------------------------------------- /src/common/treeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/treeUtil.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/components/actionBar/__tests__/__snapshots__/actionBar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/actionBar/__tests__/__snapshots__/actionBar.test.tsx.snap -------------------------------------------------------------------------------- /src/components/actionBar/__tests__/actionBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/actionBar/__tests__/actionBar.test.tsx -------------------------------------------------------------------------------- /src/components/actionBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/actionBar/index.tsx -------------------------------------------------------------------------------- /src/components/actionBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/actionBar/style.scss -------------------------------------------------------------------------------- /src/components/breadcrumb/__tests__/__snapshots__/breadcrumb.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/breadcrumb/__tests__/__snapshots__/breadcrumb.test.tsx.snap -------------------------------------------------------------------------------- /src/components/breadcrumb/__tests__/breadcrumb.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/breadcrumb/__tests__/breadcrumb.test.tsx -------------------------------------------------------------------------------- /src/components/breadcrumb/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/breadcrumb/base.ts -------------------------------------------------------------------------------- /src/components/breadcrumb/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/breadcrumb/index.tsx -------------------------------------------------------------------------------- /src/components/breadcrumb/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/breadcrumb/style.scss -------------------------------------------------------------------------------- /src/components/button/__tests__/__snapshots__/button.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/button/__tests__/__snapshots__/button.test.tsx.snap -------------------------------------------------------------------------------- /src/components/button/__tests__/button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/button/__tests__/button.test.tsx -------------------------------------------------------------------------------- /src/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/button/index.tsx -------------------------------------------------------------------------------- /src/components/button/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/button/style.scss -------------------------------------------------------------------------------- /src/components/checkbox/__tests__/__snapshots__/checkbox.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/checkbox/__tests__/__snapshots__/checkbox.test.tsx.snap -------------------------------------------------------------------------------- /src/components/checkbox/__tests__/checkbox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/checkbox/__tests__/checkbox.test.tsx -------------------------------------------------------------------------------- /src/components/checkbox/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/checkbox/checkbox.tsx -------------------------------------------------------------------------------- /src/components/checkbox/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './checkbox'; 2 | -------------------------------------------------------------------------------- /src/components/checkbox/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/checkbox/style.scss -------------------------------------------------------------------------------- /src/components/collapse/__tests__/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/collapse/__tests__/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/collapse/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/collapse/__tests__/index.test.tsx -------------------------------------------------------------------------------- /src/components/collapse/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/collapse/base.tsx -------------------------------------------------------------------------------- /src/components/collapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/collapse/index.tsx -------------------------------------------------------------------------------- /src/components/collapse/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/collapse/style.scss -------------------------------------------------------------------------------- /src/components/contextMenu/__tests__/contextMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/contextMenu/__tests__/contextMenu.test.tsx -------------------------------------------------------------------------------- /src/components/contextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/contextMenu/index.tsx -------------------------------------------------------------------------------- /src/components/contextView/__tests__/contextView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/contextView/__tests__/contextView.test.tsx -------------------------------------------------------------------------------- /src/components/contextView/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/contextView/base.tsx -------------------------------------------------------------------------------- /src/components/contextView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/contextView/index.tsx -------------------------------------------------------------------------------- /src/components/contextView/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/contextView/style.scss -------------------------------------------------------------------------------- /src/components/dialog/__tests__/__snapshots__/actionbutton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/__tests__/__snapshots__/actionbutton.test.tsx.snap -------------------------------------------------------------------------------- /src/components/dialog/__tests__/actionbutton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/__tests__/actionbutton.test.tsx -------------------------------------------------------------------------------- /src/components/dialog/__tests__/confirm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/__tests__/confirm.test.tsx -------------------------------------------------------------------------------- /src/components/dialog/__tests__/confirmDialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/__tests__/confirmDialog.test.tsx -------------------------------------------------------------------------------- /src/components/dialog/__tests__/dialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/__tests__/dialog.test.tsx -------------------------------------------------------------------------------- /src/components/dialog/actionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/actionButton.tsx -------------------------------------------------------------------------------- /src/components/dialog/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/base.ts -------------------------------------------------------------------------------- /src/components/dialog/confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/confirm.tsx -------------------------------------------------------------------------------- /src/components/dialog/confirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/confirmDialog.tsx -------------------------------------------------------------------------------- /src/components/dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/index.tsx -------------------------------------------------------------------------------- /src/components/dialog/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/modal.tsx -------------------------------------------------------------------------------- /src/components/dialog/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dialog/style.scss -------------------------------------------------------------------------------- /src/components/display/__tests__/__snapshots__/display.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/display/__tests__/__snapshots__/display.test.tsx.snap -------------------------------------------------------------------------------- /src/components/display/__tests__/display.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/display/__tests__/display.test.tsx -------------------------------------------------------------------------------- /src/components/display/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/display/index.tsx -------------------------------------------------------------------------------- /src/components/dropdown/__tests__/__snapshots__/dropdown.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dropdown/__tests__/__snapshots__/dropdown.test.tsx.snap -------------------------------------------------------------------------------- /src/components/dropdown/__tests__/dropdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dropdown/__tests__/dropdown.test.tsx -------------------------------------------------------------------------------- /src/components/dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dropdown/index.tsx -------------------------------------------------------------------------------- /src/components/dropdown/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/dropdown/style.scss -------------------------------------------------------------------------------- /src/components/icon/__tests__/__snapshots__/icon.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/icon/__tests__/__snapshots__/icon.test.tsx.snap -------------------------------------------------------------------------------- /src/components/icon/__tests__/icon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/icon/__tests__/icon.test.tsx -------------------------------------------------------------------------------- /src/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/icon/index.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/input/__tests__/__snapshots__/input.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/input/__tests__/__snapshots__/input.test.tsx.snap -------------------------------------------------------------------------------- /src/components/input/__tests__/input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/input/__tests__/input.test.tsx -------------------------------------------------------------------------------- /src/components/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/input/index.tsx -------------------------------------------------------------------------------- /src/components/input/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/input/input.tsx -------------------------------------------------------------------------------- /src/components/input/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/input/style.scss -------------------------------------------------------------------------------- /src/components/input/textArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/input/textArea.tsx -------------------------------------------------------------------------------- /src/components/list/__tests__/__snapshots__/list.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/list/__tests__/__snapshots__/list.test.tsx.snap -------------------------------------------------------------------------------- /src/components/list/__tests__/list.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/list/__tests__/list.test.tsx -------------------------------------------------------------------------------- /src/components/list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/list/index.tsx -------------------------------------------------------------------------------- /src/components/list/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/list/item.tsx -------------------------------------------------------------------------------- /src/components/list/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/list/list.tsx -------------------------------------------------------------------------------- /src/components/list/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/list/style.scss -------------------------------------------------------------------------------- /src/components/menu/__tests__/__snapshots__/menu.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/__tests__/__snapshots__/menu.test.tsx.snap -------------------------------------------------------------------------------- /src/components/menu/__tests__/menu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/__tests__/menu.test.tsx -------------------------------------------------------------------------------- /src/components/menu/__tests__/menuItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/__tests__/menuItem.test.tsx -------------------------------------------------------------------------------- /src/components/menu/__tests__/submenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/__tests__/submenu.test.tsx -------------------------------------------------------------------------------- /src/components/menu/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/base.ts -------------------------------------------------------------------------------- /src/components/menu/divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/divider.tsx -------------------------------------------------------------------------------- /src/components/menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/index.tsx -------------------------------------------------------------------------------- /src/components/menu/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/menu.tsx -------------------------------------------------------------------------------- /src/components/menu/menuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/menuItem.tsx -------------------------------------------------------------------------------- /src/components/menu/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/style.scss -------------------------------------------------------------------------------- /src/components/menu/subMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/menu/subMenu.tsx -------------------------------------------------------------------------------- /src/components/monaco/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/monaco/index.tsx -------------------------------------------------------------------------------- /src/components/scrollBar/__tests__/__snapshots__/scrollBar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/scrollBar/__tests__/__snapshots__/scrollBar.test.tsx.snap -------------------------------------------------------------------------------- /src/components/scrollBar/__tests__/scrollBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/scrollBar/__tests__/scrollBar.test.tsx -------------------------------------------------------------------------------- /src/components/scrollBar/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/scrollBar/base.ts -------------------------------------------------------------------------------- /src/components/scrollBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/scrollBar/index.tsx -------------------------------------------------------------------------------- /src/components/scrollBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/scrollBar/style.scss -------------------------------------------------------------------------------- /src/components/search/__tests__/__snapshots__/search.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/search/__tests__/__snapshots__/search.test.tsx.snap -------------------------------------------------------------------------------- /src/components/search/__tests__/search.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/search/__tests__/search.test.tsx -------------------------------------------------------------------------------- /src/components/search/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/search/base.ts -------------------------------------------------------------------------------- /src/components/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/search/index.tsx -------------------------------------------------------------------------------- /src/components/search/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/search/input.tsx -------------------------------------------------------------------------------- /src/components/search/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/search/style.scss -------------------------------------------------------------------------------- /src/components/select/__tests__/__snapshots__/option.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/__tests__/__snapshots__/option.test.tsx.snap -------------------------------------------------------------------------------- /src/components/select/__tests__/__snapshots__/select.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/__tests__/__snapshots__/select.test.tsx.snap -------------------------------------------------------------------------------- /src/components/select/__tests__/option.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/__tests__/option.test.tsx -------------------------------------------------------------------------------- /src/components/select/__tests__/select.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/__tests__/select.test.tsx -------------------------------------------------------------------------------- /src/components/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/index.tsx -------------------------------------------------------------------------------- /src/components/select/option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/option.tsx -------------------------------------------------------------------------------- /src/components/select/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/select.tsx -------------------------------------------------------------------------------- /src/components/select/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/select/style.scss -------------------------------------------------------------------------------- /src/components/split/SplitPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/SplitPane.tsx -------------------------------------------------------------------------------- /src/components/split/__tests__/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/__tests__/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/split/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/__tests__/index.test.tsx -------------------------------------------------------------------------------- /src/components/split/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/base.ts -------------------------------------------------------------------------------- /src/components/split/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/index.ts -------------------------------------------------------------------------------- /src/components/split/pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/pane.tsx -------------------------------------------------------------------------------- /src/components/split/sash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/sash.tsx -------------------------------------------------------------------------------- /src/components/split/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/split/style.scss -------------------------------------------------------------------------------- /src/components/tabs/__tests__/__snapshots__/tabs.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/__tests__/__snapshots__/tabs.test.tsx.snap -------------------------------------------------------------------------------- /src/components/tabs/__tests__/tab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/__tests__/tab.test.tsx -------------------------------------------------------------------------------- /src/components/tabs/__tests__/tabExtra.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/__tests__/tabExtra.test.tsx -------------------------------------------------------------------------------- /src/components/tabs/__tests__/tabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/__tests__/tabs.test.tsx -------------------------------------------------------------------------------- /src/components/tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/index.tsx -------------------------------------------------------------------------------- /src/components/tabs/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/style.scss -------------------------------------------------------------------------------- /src/components/tabs/tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/tab.tsx -------------------------------------------------------------------------------- /src/components/tabs/tabExtra.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tabs/tabExtra.tsx -------------------------------------------------------------------------------- /src/components/toolbar/__tests__/__snapshots__/toolbar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/toolbar/__tests__/__snapshots__/toolbar.test.tsx.snap -------------------------------------------------------------------------------- /src/components/toolbar/__tests__/toolbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/toolbar/__tests__/toolbar.test.tsx -------------------------------------------------------------------------------- /src/components/toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/toolbar/index.tsx -------------------------------------------------------------------------------- /src/components/toolbar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/toolbar/style.scss -------------------------------------------------------------------------------- /src/components/tooltip/__tests__/tooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tooltip/__tests__/tooltip.test.tsx -------------------------------------------------------------------------------- /src/components/tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tooltip/index.tsx -------------------------------------------------------------------------------- /src/components/tooltip/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tooltip/style.scss -------------------------------------------------------------------------------- /src/components/tree/__tests__/tree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tree/__tests__/tree.test.tsx -------------------------------------------------------------------------------- /src/components/tree/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tree/base.ts -------------------------------------------------------------------------------- /src/components/tree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tree/index.tsx -------------------------------------------------------------------------------- /src/components/tree/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tree/style.scss -------------------------------------------------------------------------------- /src/components/tree/treeNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/components/tree/treeNode.tsx -------------------------------------------------------------------------------- /src/controller/__tests__/activityBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/activityBar.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/auxiliaryBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/auxiliaryBar.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/editor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/editor.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/editorTree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/editorTree.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/explorer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/explorer.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/extension.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/folderTree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/folderTree.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/layout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/layout.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/menuBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/menuBar.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/notification.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/notification.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/outline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/outline.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/panel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/panel.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/problems.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/problems.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/search.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/search.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/setting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/setting.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/sidebar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/sidebar.test.ts -------------------------------------------------------------------------------- /src/controller/__tests__/statusBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/__tests__/statusBar.test.ts -------------------------------------------------------------------------------- /src/controller/activityBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/activityBar.ts -------------------------------------------------------------------------------- /src/controller/auxiliaryBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/auxiliaryBar.ts -------------------------------------------------------------------------------- /src/controller/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/editor.tsx -------------------------------------------------------------------------------- /src/controller/explorer/editorTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/explorer/editorTree.tsx -------------------------------------------------------------------------------- /src/controller/explorer/explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/explorer/explorer.tsx -------------------------------------------------------------------------------- /src/controller/explorer/folderTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/explorer/folderTree.tsx -------------------------------------------------------------------------------- /src/controller/explorer/outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/explorer/outline.tsx -------------------------------------------------------------------------------- /src/controller/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/extension.ts -------------------------------------------------------------------------------- /src/controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/index.ts -------------------------------------------------------------------------------- /src/controller/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/layout.ts -------------------------------------------------------------------------------- /src/controller/menuBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/menuBar.ts -------------------------------------------------------------------------------- /src/controller/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/notification.tsx -------------------------------------------------------------------------------- /src/controller/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/panel.tsx -------------------------------------------------------------------------------- /src/controller/problems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/problems.tsx -------------------------------------------------------------------------------- /src/controller/search/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/search/search.tsx -------------------------------------------------------------------------------- /src/controller/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/settings.tsx -------------------------------------------------------------------------------- /src/controller/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/sidebar.ts -------------------------------------------------------------------------------- /src/controller/statusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/controller/statusBar.tsx -------------------------------------------------------------------------------- /src/extensions/activityBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/activityBar/index.ts -------------------------------------------------------------------------------- /src/extensions/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/editor/index.ts -------------------------------------------------------------------------------- /src/extensions/editorTree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/editorTree/index.ts -------------------------------------------------------------------------------- /src/extensions/explorer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/explorer/index.ts -------------------------------------------------------------------------------- /src/extensions/folderTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/folderTree/index.tsx -------------------------------------------------------------------------------- /src/extensions/github-plus-theme-master/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/github-plus-theme-master/CHANGELOG.md -------------------------------------------------------------------------------- /src/extensions/github-plus-theme-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/github-plus-theme-master/README.md -------------------------------------------------------------------------------- /src/extensions/github-plus-theme-master/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/github-plus-theme-master/icon.png -------------------------------------------------------------------------------- /src/extensions/github-plus-theme-master/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/github-plus-theme-master/index.ts -------------------------------------------------------------------------------- /src/extensions/github-plus-theme-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/github-plus-theme-master/package.json -------------------------------------------------------------------------------- /src/extensions/github-plus-theme-master/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/github-plus-theme-master/screenshot.jpg -------------------------------------------------------------------------------- /src/extensions/github-plus-theme-master/themes/github-plus-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/github-plus-theme-master/themes/github-plus-theme.json -------------------------------------------------------------------------------- /src/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/index.ts -------------------------------------------------------------------------------- /src/extensions/locales-defaults/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/locales-defaults/index.ts -------------------------------------------------------------------------------- /src/extensions/locales-defaults/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/locales-defaults/locales/en.json -------------------------------------------------------------------------------- /src/extensions/locales-defaults/locales/ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/locales-defaults/locales/ko-KR.json -------------------------------------------------------------------------------- /src/extensions/locales-defaults/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/locales-defaults/locales/zh-CN.json -------------------------------------------------------------------------------- /src/extensions/panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/panel/index.ts -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/document-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/document-dark.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/document-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/document-light.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/folder-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/folder-dark.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/folder-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/folder-light.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/folder-open-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/folder-open-dark.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/folder-open-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/folder-open-light.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/root-folder-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/root-folder-dark.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/root-folder-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/root-folder-light.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/root-folder-open-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/root-folder-open-dark.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/images/root-folder-open-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/images/root-folder-open-light.svg -------------------------------------------------------------------------------- /src/extensions/theme-defaults/fileicons/vs_minimal-icon-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/fileicons/vs_minimal-icon-theme.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/index.ts -------------------------------------------------------------------------------- /src/extensions/theme-defaults/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/package.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/package.nls.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/target/npmlist.json: -------------------------------------------------------------------------------- 1 | { "name": "theme-defaults", "version": "1.0.0" } 2 | -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/dark_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/dark_defaults.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/dark_plus.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/dark_vs.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/hc_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/hc_black.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/hc_black_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/hc_black_defaults.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/light_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/light_defaults.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/light_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/light_plus.json -------------------------------------------------------------------------------- /src/extensions/theme-defaults/themes/light_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-defaults/themes/light_vs.json -------------------------------------------------------------------------------- /src/extensions/theme-monokai/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /src/extensions/theme-monokai/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-monokai/cgmanifest.json -------------------------------------------------------------------------------- /src/extensions/theme-monokai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-monokai/index.ts -------------------------------------------------------------------------------- /src/extensions/theme-monokai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-monokai/package.json -------------------------------------------------------------------------------- /src/extensions/theme-monokai/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-monokai/package.nls.json -------------------------------------------------------------------------------- /src/extensions/theme-monokai/themes/monokai-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/theme-monokai/themes/monokai-color-theme.json -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/.gitattributes -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/.gitignore -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/.vscodeignore -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/CHANGELOG.md -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/README.md -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/index.ts -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/package.json -------------------------------------------------------------------------------- /src/extensions/vscode-intellij-darcula-theme-master/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-intellij-darcula-theme-master/view.png -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/.editorconfig -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/.gitattributes: -------------------------------------------------------------------------------- 1 | *.json linguist-language=JavaScript 2 | -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/.gitignore -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/.vscodeignore -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/README.md -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/changelog.md -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/contributing.md -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/icon.png -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/index.ts -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/license.md -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/package.json -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/themes/palenight-italic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/themes/palenight-italic.json -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/themes/palenight-mild-contrast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/themes/palenight-mild-contrast.json -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/themes/palenight-operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/themes/palenight-operator.json -------------------------------------------------------------------------------- /src/extensions/vscode-palenight-theme/themes/palenight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/extensions/vscode-palenight-theme/themes/palenight.json -------------------------------------------------------------------------------- /src/i18n/__tests__/localeService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/i18n/__tests__/localeService.test.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/localeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/i18n/localeService.ts -------------------------------------------------------------------------------- /src/i18n/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/i18n/localization.ts -------------------------------------------------------------------------------- /src/i18n/localize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/i18n/localize.tsx -------------------------------------------------------------------------------- /src/i18n/selectLocaleAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/i18n/selectLocaleAction.ts -------------------------------------------------------------------------------- /src/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/icons/README.md -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/model/colorTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/colorTheme.ts -------------------------------------------------------------------------------- /src/model/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/extension.ts -------------------------------------------------------------------------------- /src/model/iconTheme.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * File icons for Molecule 3 | */ 4 | export interface IIconTheme {} 5 | -------------------------------------------------------------------------------- /src/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/index.ts -------------------------------------------------------------------------------- /src/model/keybinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/keybinding.ts -------------------------------------------------------------------------------- /src/model/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/notification.tsx -------------------------------------------------------------------------------- /src/model/problems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/problems.tsx -------------------------------------------------------------------------------- /src/model/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/settings.ts -------------------------------------------------------------------------------- /src/model/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/ui.ts -------------------------------------------------------------------------------- /src/model/workbench/activityBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/activityBar.ts -------------------------------------------------------------------------------- /src/model/workbench/auxiliaryBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/auxiliaryBar.ts -------------------------------------------------------------------------------- /src/model/workbench/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/editor.ts -------------------------------------------------------------------------------- /src/model/workbench/explorer/editorTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/explorer/editorTree.ts -------------------------------------------------------------------------------- /src/model/workbench/explorer/explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/explorer/explorer.tsx -------------------------------------------------------------------------------- /src/model/workbench/explorer/folderTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/explorer/folderTree.tsx -------------------------------------------------------------------------------- /src/model/workbench/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/index.ts -------------------------------------------------------------------------------- /src/model/workbench/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/layout.ts -------------------------------------------------------------------------------- /src/model/workbench/menuBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/menuBar.ts -------------------------------------------------------------------------------- /src/model/workbench/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/panel.tsx -------------------------------------------------------------------------------- /src/model/workbench/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/search.tsx -------------------------------------------------------------------------------- /src/model/workbench/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/sidebar.ts -------------------------------------------------------------------------------- /src/model/workbench/statusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/model/workbench/statusBar.tsx -------------------------------------------------------------------------------- /src/molecule.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/molecule.api.ts -------------------------------------------------------------------------------- /src/monaco/__tests__/action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/__tests__/action.test.ts -------------------------------------------------------------------------------- /src/monaco/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/action.ts -------------------------------------------------------------------------------- /src/monaco/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/api.ts -------------------------------------------------------------------------------- /src/monaco/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/common.ts -------------------------------------------------------------------------------- /src/monaco/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/index.ts -------------------------------------------------------------------------------- /src/monaco/monacoService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/monacoService.ts -------------------------------------------------------------------------------- /src/monaco/quickAccessProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickAccessProvider.ts -------------------------------------------------------------------------------- /src/monaco/quickAccessSettingsAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickAccessSettingsAction.ts -------------------------------------------------------------------------------- /src/monaco/quickAccessViewAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickAccessViewAction.ts -------------------------------------------------------------------------------- /src/monaco/quickCopyLineUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickCopyLineUp.ts -------------------------------------------------------------------------------- /src/monaco/quickCreateFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickCreateFile.ts -------------------------------------------------------------------------------- /src/monaco/quickRedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickRedo.ts -------------------------------------------------------------------------------- /src/monaco/quickSelectAllAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickSelectAllAction.ts -------------------------------------------------------------------------------- /src/monaco/quickTogglePanelAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickTogglePanelAction.ts -------------------------------------------------------------------------------- /src/monaco/quickToggleSideBarAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickToggleSideBarAction.ts -------------------------------------------------------------------------------- /src/monaco/quickUndo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/quickUndo.ts -------------------------------------------------------------------------------- /src/monaco/selectColorThemeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/monaco/selectColorThemeAction.ts -------------------------------------------------------------------------------- /src/provider/__tests__/__snapshots__/molecule.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/provider/__tests__/__snapshots__/molecule.test.tsx.snap -------------------------------------------------------------------------------- /src/provider/__tests__/molecule.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/provider/__tests__/molecule.test.tsx -------------------------------------------------------------------------------- /src/provider/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/provider/create.ts -------------------------------------------------------------------------------- /src/provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/provider/index.tsx -------------------------------------------------------------------------------- /src/provider/molecule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/provider/molecule.tsx -------------------------------------------------------------------------------- /src/react/__tests__/component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/__tests__/component.test.ts -------------------------------------------------------------------------------- /src/react/__tests__/connector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/__tests__/connector.test.tsx -------------------------------------------------------------------------------- /src/react/__tests__/helper.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/__tests__/helper.test.tsx -------------------------------------------------------------------------------- /src/react/__tests__/render-react.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/__tests__/render-react.test.tsx -------------------------------------------------------------------------------- /src/react/__tests__/render.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/__tests__/render.test.tsx -------------------------------------------------------------------------------- /src/react/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/component.ts -------------------------------------------------------------------------------- /src/react/connector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/connector.tsx -------------------------------------------------------------------------------- /src/react/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/controller.ts -------------------------------------------------------------------------------- /src/react/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/helper.ts -------------------------------------------------------------------------------- /src/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/index.ts -------------------------------------------------------------------------------- /src/react/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/react/render.ts -------------------------------------------------------------------------------- /src/services/__tests__/__snapshots__/instanceService.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/__snapshots__/instanceService.test.tsx.snap -------------------------------------------------------------------------------- /src/services/__tests__/__snapshots__/settingsService.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/__snapshots__/settingsService.test.ts.snap -------------------------------------------------------------------------------- /src/services/__tests__/activityBarService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/activityBarService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/auxiliaryBarService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/auxiliaryBarService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/builtinService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/builtinService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/colorThemeHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/colorThemeHelper.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/colorThemeService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/colorThemeService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/explorerService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/explorerService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/extensionService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/extensionService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/instanceService.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/instanceService.test.tsx -------------------------------------------------------------------------------- /src/services/__tests__/keybinding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/keybinding.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/layoutService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/layoutService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/menuBarService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/menuBarService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/notificationService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/notificationService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/panelService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/panelService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/problemsService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/problemsService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/settingsService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/settingsService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/sidebarService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/sidebarService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/statusBarService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/__tests__/statusBarService.test.ts -------------------------------------------------------------------------------- /src/services/baseService.ts: -------------------------------------------------------------------------------- 1 | export abstract class BaseService {} 2 | -------------------------------------------------------------------------------- /src/services/builtinService/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/builtinService/const.ts -------------------------------------------------------------------------------- /src/services/builtinService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/builtinService/index.ts -------------------------------------------------------------------------------- /src/services/extensionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/extensionService.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/instanceService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/instanceService.tsx -------------------------------------------------------------------------------- /src/services/keybinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/keybinding.ts -------------------------------------------------------------------------------- /src/services/notificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/notificationService.ts -------------------------------------------------------------------------------- /src/services/problemsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/problemsService.ts -------------------------------------------------------------------------------- /src/services/settingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/settingsService.ts -------------------------------------------------------------------------------- /src/services/theme/colorRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/theme/colorRegistry.ts -------------------------------------------------------------------------------- /src/services/theme/colorThemeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/theme/colorThemeService.ts -------------------------------------------------------------------------------- /src/services/theme/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/theme/helper.ts -------------------------------------------------------------------------------- /src/services/workbench/__tests__/editorService.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/__tests__/editorService.test.tsx -------------------------------------------------------------------------------- /src/services/workbench/__tests__/editorTreeService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/__tests__/editorTreeService.test.ts -------------------------------------------------------------------------------- /src/services/workbench/__tests__/folderTreeService.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/__tests__/folderTreeService.test.tsx -------------------------------------------------------------------------------- /src/services/workbench/__tests__/searchService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/__tests__/searchService.test.ts -------------------------------------------------------------------------------- /src/services/workbench/activityBarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/activityBarService.ts -------------------------------------------------------------------------------- /src/services/workbench/auxiliaryBarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/auxiliaryBarService.ts -------------------------------------------------------------------------------- /src/services/workbench/editorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/editorService.ts -------------------------------------------------------------------------------- /src/services/workbench/explorer/editorTreeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/explorer/editorTreeService.ts -------------------------------------------------------------------------------- /src/services/workbench/explorer/explorerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/explorer/explorerService.ts -------------------------------------------------------------------------------- /src/services/workbench/explorer/folderTreeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/explorer/folderTreeService.ts -------------------------------------------------------------------------------- /src/services/workbench/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/index.ts -------------------------------------------------------------------------------- /src/services/workbench/layoutService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/layoutService.ts -------------------------------------------------------------------------------- /src/services/workbench/menuBarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/menuBarService.ts -------------------------------------------------------------------------------- /src/services/workbench/panelService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/panelService.ts -------------------------------------------------------------------------------- /src/services/workbench/searchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/searchService.ts -------------------------------------------------------------------------------- /src/services/workbench/sidebarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/sidebarService.ts -------------------------------------------------------------------------------- /src/services/workbench/statusBarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/services/workbench/statusBarService.ts -------------------------------------------------------------------------------- /src/style/animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/style/animation.scss -------------------------------------------------------------------------------- /src/style/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/style/common.scss -------------------------------------------------------------------------------- /src/style/mo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/style/mo.scss -------------------------------------------------------------------------------- /src/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/typings/index.d.ts -------------------------------------------------------------------------------- /src/workbench/__tests__/__snapshots__/workbench.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/__tests__/__snapshots__/workbench.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/__tests__/workbench.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/__tests__/workbench.test.tsx -------------------------------------------------------------------------------- /src/workbench/activityBar/__tests__/__snapshots__/activityBar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/__tests__/__snapshots__/activityBar.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/activityBar/__tests__/__snapshots__/activityBarItem.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/__tests__/__snapshots__/activityBarItem.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/activityBar/__tests__/activityBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/__tests__/activityBar.test.tsx -------------------------------------------------------------------------------- /src/workbench/activityBar/__tests__/activityBarItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/__tests__/activityBarItem.test.tsx -------------------------------------------------------------------------------- /src/workbench/activityBar/activityBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/activityBar.tsx -------------------------------------------------------------------------------- /src/workbench/activityBar/activityBarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/activityBarItem.tsx -------------------------------------------------------------------------------- /src/workbench/activityBar/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/base.ts -------------------------------------------------------------------------------- /src/workbench/activityBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/index.tsx -------------------------------------------------------------------------------- /src/workbench/activityBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/activityBar/style.scss -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/__tests__/__snapshots__/auxiliaryBar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/__tests__/__snapshots__/auxiliaryBar.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/__tests__/__snapshots__/auxiliaryBarTab.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/__tests__/__snapshots__/auxiliaryBarTab.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/__tests__/auxiliaryBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/__tests__/auxiliaryBar.test.tsx -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/__tests__/auxiliaryBarTab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/__tests__/auxiliaryBarTab.test.tsx -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/auxiliaryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/auxiliaryBar.tsx -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/auxiliaryBarTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/auxiliaryBarTab.tsx -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/base.ts -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/index.ts -------------------------------------------------------------------------------- /src/workbench/auxiliaryBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/auxiliaryBar/style.scss -------------------------------------------------------------------------------- /src/workbench/editor/__tests__/__snapshots__/editor.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/__tests__/__snapshots__/editor.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/editor/__tests__/action.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/__tests__/action.test.tsx -------------------------------------------------------------------------------- /src/workbench/editor/__tests__/breadcrumb.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/__tests__/breadcrumb.test.tsx -------------------------------------------------------------------------------- /src/workbench/editor/__tests__/editor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/__tests__/editor.test.tsx -------------------------------------------------------------------------------- /src/workbench/editor/__tests__/group.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/__tests__/group.test.tsx -------------------------------------------------------------------------------- /src/workbench/editor/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/action.tsx -------------------------------------------------------------------------------- /src/workbench/editor/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/base.ts -------------------------------------------------------------------------------- /src/workbench/editor/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/breadcrumb.tsx -------------------------------------------------------------------------------- /src/workbench/editor/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/editor.tsx -------------------------------------------------------------------------------- /src/workbench/editor/group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/group.tsx -------------------------------------------------------------------------------- /src/workbench/editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/index.tsx -------------------------------------------------------------------------------- /src/workbench/editor/statusBarView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/statusBarView/index.tsx -------------------------------------------------------------------------------- /src/workbench/editor/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/style.scss -------------------------------------------------------------------------------- /src/workbench/editor/welcome/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/welcome/hooks.ts -------------------------------------------------------------------------------- /src/workbench/editor/welcome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/welcome/index.tsx -------------------------------------------------------------------------------- /src/workbench/editor/welcome/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/welcome/logo.tsx -------------------------------------------------------------------------------- /src/workbench/editor/welcome/name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/welcome/name.tsx -------------------------------------------------------------------------------- /src/workbench/editor/welcome/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/editor/welcome/style.scss -------------------------------------------------------------------------------- /src/workbench/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/index.tsx -------------------------------------------------------------------------------- /src/workbench/menuBar/__tests__/__snapshots__/menubar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/menuBar/__tests__/__snapshots__/menubar.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/menuBar/__tests__/menubar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/menuBar/__tests__/menubar.test.tsx -------------------------------------------------------------------------------- /src/workbench/menuBar/horizontalView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/menuBar/horizontalView.tsx -------------------------------------------------------------------------------- /src/workbench/menuBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/menuBar/index.tsx -------------------------------------------------------------------------------- /src/workbench/menuBar/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/menuBar/logo.tsx -------------------------------------------------------------------------------- /src/workbench/menuBar/menuBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/menuBar/menuBar.tsx -------------------------------------------------------------------------------- /src/workbench/menuBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/menuBar/style.scss -------------------------------------------------------------------------------- /src/workbench/notification/__tests__/__snapshots__/statusBarView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/__tests__/__snapshots__/statusBarView.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/notification/__tests__/localeNotification.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/__tests__/localeNotification.test.tsx -------------------------------------------------------------------------------- /src/workbench/notification/__tests__/notificationPane.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/__tests__/notificationPane.test.tsx -------------------------------------------------------------------------------- /src/workbench/notification/__tests__/statusBarView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/__tests__/statusBarView.test.tsx -------------------------------------------------------------------------------- /src/workbench/notification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/index.tsx -------------------------------------------------------------------------------- /src/workbench/notification/notificationPane/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/notificationPane/index.tsx -------------------------------------------------------------------------------- /src/workbench/notification/notificationPane/localeNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/notificationPane/localeNotification.tsx -------------------------------------------------------------------------------- /src/workbench/notification/statusBarView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/statusBarView/index.tsx -------------------------------------------------------------------------------- /src/workbench/notification/statusBarView/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/statusBarView/style.scss -------------------------------------------------------------------------------- /src/workbench/notification/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/notification/style.scss -------------------------------------------------------------------------------- /src/workbench/panel/__tests__/__snapshots__/output.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/__tests__/__snapshots__/output.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/panel/__tests__/__snapshots__/panel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/__tests__/__snapshots__/panel.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/panel/__tests__/output.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/__tests__/output.test.tsx -------------------------------------------------------------------------------- /src/workbench/panel/__tests__/panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/__tests__/panel.test.tsx -------------------------------------------------------------------------------- /src/workbench/panel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/index.tsx -------------------------------------------------------------------------------- /src/workbench/panel/output.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/output.tsx -------------------------------------------------------------------------------- /src/workbench/panel/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/panel.tsx -------------------------------------------------------------------------------- /src/workbench/panel/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/panel/style.scss -------------------------------------------------------------------------------- /src/workbench/problems/__tests__/__snapshots__/paneView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/__tests__/__snapshots__/paneView.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/problems/__tests__/__snapshots__/statusBarView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/__tests__/__snapshots__/statusBarView.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/problems/__tests__/paneView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/__tests__/paneView.test.tsx -------------------------------------------------------------------------------- /src/workbench/problems/__tests__/statusBarView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/__tests__/statusBarView.test.tsx -------------------------------------------------------------------------------- /src/workbench/problems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/index.tsx -------------------------------------------------------------------------------- /src/workbench/problems/paneView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/paneView/index.tsx -------------------------------------------------------------------------------- /src/workbench/problems/statusBarView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/statusBarView/index.tsx -------------------------------------------------------------------------------- /src/workbench/problems/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/problems/style.scss -------------------------------------------------------------------------------- /src/workbench/settings/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './settings'; 2 | -------------------------------------------------------------------------------- /src/workbench/settings/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/settings/settings.tsx -------------------------------------------------------------------------------- /src/workbench/settings/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/settings/style.scss -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/__snapshots__/editorTree.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/__snapshots__/editorTree.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/__snapshots__/explore.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/__snapshots__/explore.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/__snapshots__/siderbar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/__snapshots__/siderbar.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/editorTree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/editorTree.test.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/explore.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/explore.test.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/folderTree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/folderTree.test.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/searchPanel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/searchPanel.test.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/__tests__/siderbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/__tests__/siderbar.test.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/explore/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/explore/base.ts -------------------------------------------------------------------------------- /src/workbench/sidebar/explore/editorTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/explore/editorTree.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/explore/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/explore/explore.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/explore/folderTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/explore/folderTree.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/explore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/explore/index.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/explore/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/explore/style.scss -------------------------------------------------------------------------------- /src/workbench/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/index.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/search/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/search/base.ts -------------------------------------------------------------------------------- /src/workbench/sidebar/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/search/index.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/search/searchPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/search/searchPanel.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/search/searchTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/search/searchTree.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/sidebar.tsx -------------------------------------------------------------------------------- /src/workbench/sidebar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/sidebar/style.scss -------------------------------------------------------------------------------- /src/workbench/statusBar/__tests__/__snapshots__/status.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/__tests__/__snapshots__/status.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/statusBar/__tests__/__snapshots__/statusItem.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/__tests__/__snapshots__/statusItem.test.tsx.snap -------------------------------------------------------------------------------- /src/workbench/statusBar/__tests__/status.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/__tests__/status.test.tsx -------------------------------------------------------------------------------- /src/workbench/statusBar/__tests__/statusItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/__tests__/statusItem.test.tsx -------------------------------------------------------------------------------- /src/workbench/statusBar/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/base.ts -------------------------------------------------------------------------------- /src/workbench/statusBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/index.tsx -------------------------------------------------------------------------------- /src/workbench/statusBar/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/item.tsx -------------------------------------------------------------------------------- /src/workbench/statusBar/statusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/statusBar.tsx -------------------------------------------------------------------------------- /src/workbench/statusBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/statusBar/style.scss -------------------------------------------------------------------------------- /src/workbench/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/style.scss -------------------------------------------------------------------------------- /src/workbench/workbench.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/src/workbench/workbench.tsx -------------------------------------------------------------------------------- /stories/0-Welcome.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/0-Welcome.stories.tsx -------------------------------------------------------------------------------- /stories/common/propsTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/common/propsTable/index.tsx -------------------------------------------------------------------------------- /stories/common/propsTable/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/common/propsTable/style.scss -------------------------------------------------------------------------------- /stories/components/10-Menu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/10-Menu.stories.tsx -------------------------------------------------------------------------------- /stories/components/11-DownDown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/11-DownDown.stories.tsx -------------------------------------------------------------------------------- /stories/components/12-Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/12-Button.stories.tsx -------------------------------------------------------------------------------- /stories/components/13-Icon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/13-Icon.stories.tsx -------------------------------------------------------------------------------- /stories/components/14-Scrollbar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/14-Scrollbar.stories.tsx -------------------------------------------------------------------------------- /stories/components/15-Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/15-Input.stories.tsx -------------------------------------------------------------------------------- /stories/components/15-Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/15-Select.stories.tsx -------------------------------------------------------------------------------- /stories/components/16-Checkbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/16-Checkbox.stories.tsx -------------------------------------------------------------------------------- /stories/components/17-Dialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/17-Dialog.stories.tsx -------------------------------------------------------------------------------- /stories/components/18-Breadcrumb.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/18-Breadcrumb.stories.tsx -------------------------------------------------------------------------------- /stories/components/19-Split.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/19-Split.stories.tsx -------------------------------------------------------------------------------- /stories/components/2-Collapse.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/2-Collapse.stories.tsx -------------------------------------------------------------------------------- /stories/components/3-Tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/3-Tabs.stories.tsx -------------------------------------------------------------------------------- /stories/components/4-Tree.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/4-Tree.stories.tsx -------------------------------------------------------------------------------- /stories/components/5-Monaco.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/5-Monaco.stories.tsx -------------------------------------------------------------------------------- /stories/components/6-ActionBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/6-ActionBar.stories.tsx -------------------------------------------------------------------------------- /stories/components/7-ContextMenu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/7-ContextMenu.stories.tsx -------------------------------------------------------------------------------- /stories/components/8-ContextView.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/8-ContextView.stories.tsx -------------------------------------------------------------------------------- /stories/components/9-List.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/components/9-List.stories.tsx -------------------------------------------------------------------------------- /stories/demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/demo.scss -------------------------------------------------------------------------------- /stories/extensions/actions/quickOpen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/actions/quickOpen.ts -------------------------------------------------------------------------------- /stories/extensions/data-sync/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/data-sync/index.tsx -------------------------------------------------------------------------------- /stories/extensions/extend-panel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/extend-panel/index.tsx -------------------------------------------------------------------------------- /stories/extensions/extend-panel/pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/extend-panel/pane.tsx -------------------------------------------------------------------------------- /stories/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/index.ts -------------------------------------------------------------------------------- /stories/extensions/locales-plus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/locales-plus/index.tsx -------------------------------------------------------------------------------- /stories/extensions/locales-plus/locale/jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/locales-plus/locale/jp.json -------------------------------------------------------------------------------- /stories/extensions/problems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/problems/index.tsx -------------------------------------------------------------------------------- /stories/extensions/test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/test/index.tsx -------------------------------------------------------------------------------- /stories/extensions/test/testPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/extensions/test/testPane.tsx -------------------------------------------------------------------------------- /stories/workbench/0-Workbench.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/stories/workbench/0-Workbench.stories.tsx -------------------------------------------------------------------------------- /test/example.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/test/example.test.ts -------------------------------------------------------------------------------- /test/setupTests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/test/setupTests.tsx -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/advanced/customize-workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/advanced/customize-workbench.md -------------------------------------------------------------------------------- /website/docs/advanced/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/advanced/event.md -------------------------------------------------------------------------------- /website/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/contributing.md -------------------------------------------------------------------------------- /website/docs/examples/index.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /website/docs/guides/builtin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/builtin.md -------------------------------------------------------------------------------- /website/docs/guides/extend-builtin-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extend-builtin-ui.md -------------------------------------------------------------------------------- /website/docs/guides/extend-color-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extend-color-theme.md -------------------------------------------------------------------------------- /website/docs/guides/extend-keybinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extend-keybinding.md -------------------------------------------------------------------------------- /website/docs/guides/extend-locales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extend-locales.md -------------------------------------------------------------------------------- /website/docs/guides/extend-quick-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extend-quick-access.md -------------------------------------------------------------------------------- /website/docs/guides/extend-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extend-settings.md -------------------------------------------------------------------------------- /website/docs/guides/extend-workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extend-workbench.md -------------------------------------------------------------------------------- /website/docs/guides/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/extension.md -------------------------------------------------------------------------------- /website/docs/guides/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/guides/icons.md -------------------------------------------------------------------------------- /website/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/introduction.md -------------------------------------------------------------------------------- /website/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/overview.md -------------------------------------------------------------------------------- /website/docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/quick-start.md -------------------------------------------------------------------------------- /website/docs/the-first-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docs/the-first-extension.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/i18n/zh-CN/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/code.json -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/event.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/contributing.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/guides/builtin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/guides/builtin.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/guides/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/guides/extension.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/guides/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/guides/icons.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/overview.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick-start.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/current/the-first-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/current/the-first-extension.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/advanced/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/advanced/event.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/contributing.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/guides/builtin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/guides/builtin.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/guides/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/guides/icons.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/introduction.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/overview.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.x/quick-start.md -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-plugin-content-pages/case/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-plugin-content-pages/case/index.js -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /website/i18n/zh-CN/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/i18n/zh-CN/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/components/HomepageFeatures.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /website/src/components/ShowCase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/components/ShowCase/index.js -------------------------------------------------------------------------------- /website/src/components/ShowCase/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/components/ShowCase/index.module.css -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/case/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/pages/case/index.js -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/src/pages/markdown-page.md -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/advanced/custom-workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/advanced/custom-workbench.png -------------------------------------------------------------------------------- /website/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/docusaurus.png -------------------------------------------------------------------------------- /website/static/img/easyToUse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/easyToUse.svg -------------------------------------------------------------------------------- /website/static/img/extensible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/extensible.svg -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/favicon.png -------------------------------------------------------------------------------- /website/static/img/guides/builtin-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/builtin-ui.png -------------------------------------------------------------------------------- /website/static/img/guides/colorThemePalette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/colorThemePalette.jpg -------------------------------------------------------------------------------- /website/static/img/guides/custom-workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/custom-workbench.png -------------------------------------------------------------------------------- /website/static/img/guides/extend-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/extend-language.png -------------------------------------------------------------------------------- /website/static/img/guides/extend-language2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/extend-language2.png -------------------------------------------------------------------------------- /website/static/img/guides/extend-quickAccess-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/extend-quickAccess-1.png -------------------------------------------------------------------------------- /website/static/img/guides/extend-quickAccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/extend-quickAccess.png -------------------------------------------------------------------------------- /website/static/img/guides/extend-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/extend-settings.png -------------------------------------------------------------------------------- /website/static/img/guides/extend-workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/extend-workbench.png -------------------------------------------------------------------------------- /website/static/img/guides/quick-access.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/quick-access.jpg -------------------------------------------------------------------------------- /website/static/img/guides/workbench-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/guides/workbench-ui.png -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/logo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/logo@1x.png -------------------------------------------------------------------------------- /website/static/img/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/logo@2x.png -------------------------------------------------------------------------------- /website/static/img/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/logo@3x.png -------------------------------------------------------------------------------- /website/static/img/molecule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/molecule.png -------------------------------------------------------------------------------- /website/static/img/qrcode-chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/qrcode-chat.jpg -------------------------------------------------------------------------------- /website/static/img/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/react.svg -------------------------------------------------------------------------------- /website/static/img/the-first-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/the-first-extension.png -------------------------------------------------------------------------------- /website/static/img/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /website/static/img/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/advanced/customize-workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/advanced/customize-workbench.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'API' 2 | -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/classes/MoleculeProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/classes/MoleculeProvider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/classes/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Classes' 2 | position: 3 3 | -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/classes/molecule.PanelService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/classes/molecule.PanelService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/enums/_category_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/enums/_category_.yml -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/enums/molecule.model.Float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/enums/molecule.model.Float.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/index.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/interfaces/IMoleculeProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/interfaces/IMoleculeProps.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/interfaces/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Interfaces' 2 | position: 4 3 | -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/interfaces/molecule.ILocale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/interfaces/molecule.ILocale.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/namespaces/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Namespaces' 2 | position: 1 3 | -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.component.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.event.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.model.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.monaco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.monaco.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/api/namespaces/molecule.react.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/contributing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/examples/index.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extend-builtin-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extend-builtin-ui.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extend-color-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extend-color-theme.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extend-keybinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extend-keybinding.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extend-locales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extend-locales.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extend-quick-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extend-quick-access.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extend-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extend-settings.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extend-workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extend-workbench.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/extension.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/guides/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/guides/icons.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/introduction.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/overview.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/quick-start.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.9.0-beta.2/the-first-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-0.9.0-beta.2/the-first-extension.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/advanced/customize-workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/advanced/customize-workbench.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/advanced/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/advanced/event.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'API' 2 | -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Classes' 2 | position: 3 3 | -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.ActivityBarService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.ActivityBarService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.AuxiliaryBarService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.AuxiliaryBarService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.BuiltinService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.BuiltinService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.ColorThemeService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.ColorThemeService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.EditorService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.EditorService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.EditorTreeService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.EditorTreeService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.ExplorerService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.ExplorerService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.ExtensionService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.ExtensionService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.FolderTreeService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.FolderTreeService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.LayoutService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.LayoutService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.LocaleService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.LocaleService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.MenuBarService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.MenuBarService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.NotificationService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.NotificationService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.PanelService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.PanelService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.ProblemsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.ProblemsService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.SearchService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.SearchService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.SettingsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.SettingsService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.SidebarService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.SidebarService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.StatusBarService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.StatusBarService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.component.Input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.component.Input.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.component.Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.component.Select.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.event.EventEmitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.event.EventEmitter.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.event.GlobalEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.event.GlobalEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.AuxiliaryModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.AuxiliaryModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.EditorModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.EditorModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.EditorTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.EditorTree.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.IExplorerModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.IExplorerModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.MenuBarModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.MenuBarModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.PanelModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.PanelModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.ProblemsModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.ProblemsModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.SearchModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.SearchModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.SettingsModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.SettingsModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.SidebarModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.SidebarModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.StatusBarModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.StatusBarModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.model.TreeNodeModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.model.TreeNodeModel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.monaco.Action2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.monaco.Action2.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.react.Component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.react.Component.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/classes/molecule.react.Controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/classes/molecule.react.Controller.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/_category_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/_category_.yml -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.component.DirectionKind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.component.DirectionKind.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.component.MenuMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.component.MenuMode.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.ActivityBarEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.ActivityBarEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.ColorScheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.ColorScheme.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.ColorThemeEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.ColorThemeEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.ColorThemeMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.ColorThemeMode.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.EditorEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.EditorEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.EditorTreeEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.EditorTreeEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.ExplorerEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.ExplorerEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.FileTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.FileTypes.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.Float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.Float.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.FolderTreeEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.FolderTreeEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.IContributeType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.IContributeType.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.IExtensionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.IExtensionType.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.MarkerSeverity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.MarkerSeverity.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.MenuBarEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.MenuBarEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.PanelEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.PanelEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.ProblemsEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.ProblemsEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.SearchEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.SearchEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.SettingsEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.SettingsEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.model.StatusBarEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.model.StatusBarEvent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/enums/molecule.react.ComponentEvents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/enums/molecule.react.ComponentEvents.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/index.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Interfaces' 2 | position: 4 3 | -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.IBuiltinService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.IBuiltinService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.IEditorService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.IEditorService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.IExplorerService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.IExplorerService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.ILayoutService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.ILayoutService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.ILocale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.ILocale.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.ILocaleService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.ILocaleService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.ILocalizeProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.ILocalizeProps.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.IMenuBarService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.IMenuBarService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.IPanelController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.IPanelController.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.IPanelService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.IPanelService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.IProblemsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.IProblemsService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.ISearchService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.ISearchService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.ISettingsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.ISettingsService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.ISidebarService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.ISidebarService.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IColors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IColors.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IEditor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IEditor.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IEditorTab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IEditorTab.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IExplorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IExplorer.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IExtension.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IIconTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IIconTheme.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IMenuBar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IMenuBar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IOutput.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IPanel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IPanel.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IPanelItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IPanelItem.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IProblems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IProblems.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.ISettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.ISettings.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.ISidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.ISidebar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IStatusBar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IStatusBar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.IWorkbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.IWorkbench.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.model.TokenColor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.model.TokenColor.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/interfaces/molecule.react.IComponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/interfaces/molecule.react.IComponent.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/namespaces/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Namespaces' 2 | position: 1 3 | -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/namespaces/molecule.component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/namespaces/molecule.component.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/namespaces/molecule.event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/namespaces/molecule.event.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/namespaces/molecule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/namespaces/molecule.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/namespaces/molecule.model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/namespaces/molecule.model.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/namespaces/molecule.monaco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/namespaces/molecule.monaco.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/api/namespaces/molecule.react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/api/namespaces/molecule.react.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/contributing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/examples/index.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/builtin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/builtin.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extend-builtin-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extend-builtin-ui.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extend-color-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extend-color-theme.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extend-keybinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extend-keybinding.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extend-locales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extend-locales.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extend-quick-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extend-quick-access.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extend-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extend-settings.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extend-workbench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extend-workbench.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/extension.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/guides/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/guides/icons.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/introduction.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/overview.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/quick-start.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.x/the-first-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_docs/version-1.x/the-first-extension.md -------------------------------------------------------------------------------- /website/versioned_sidebars/version-0.9.0-beta.2-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_sidebars/version-0.9.0-beta.2-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-1.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/versioned_sidebars/version-1.x-sidebars.json -------------------------------------------------------------------------------- /website/versions.json: -------------------------------------------------------------------------------- 1 | ["1.x", "0.9.0-beta.2"] 2 | -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTStack/molecule/HEAD/yarn.lock --------------------------------------------------------------------------------