/
vshmidt
/
cloudbeaver
Обзор
Документация
Войти
/
vshmidt
/
cloudbeaver
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
webapp/packages/plugin-sql-editor/src/index.ts
59 строк
3 KB
sergeyteleshev
Save scripts to custom locations (use import/export buttons) (#4258)
15 апр 2026, 16:12
Не верифицирован
15 апр 2026, 16:12
1660e62
Код
Авторство
О чём код?
/* * CloudBeaver - Cloud Database Manager * Copyright (C) 2020-2026 DBeaver Corp and others * * Licensed under the Apache License, Version 2.0. * you may not use this file except in compliance with the License. */ import './module.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_EXECUTE_NEW.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_EXECUTE_SCRIPT.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_EXECUTE.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_FORMAT.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_SHOW_EXECUTION_PLAN.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_START_COMPLETION.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_ACCEPT_COMPLETION.js'; export * from './actions/bindings/KEY_BINDING_SQL_EDITOR_ESCAPE.js'; export * from './actions/ACTION_SQL_EDITOR_EXECUTE_NEW.js'; export * from './actions/ACTION_SQL_EDITOR_EXECUTE_SCRIPT.js'; export * from './actions/ACTION_SQL_EDITOR_EXECUTE.js'; export * from './actions/ACTION_SQL_EDITOR_FORMAT.js'; export * from './actions/ACTION_SQL_EDITOR_SHOW_EXECUTION_PLAN.js'; export * from './actions/ACTION_SQL_EDITOR_SHOW_OUTPUT.js'; export * from './SqlDataSource/LocalStorage/ILocalStorageSqlDataSourceState.js'; export * from './SqlDataSource/LocalStorage/LocalStorageSqlDataSource.js'; export * from './SqlDataSource/LocalStorage/LocalStorageSqlDataSourceBootstrap.js'; export * from './SqlDataSource/SqlDataSourceHistory/ISqlDataSourceHistoryState.js'; export * from './SqlDataSource/SqlDataSourceHistory/createSqlDataSourceHistoryInitialState.js'; export * from './SqlDataSource/BaseSqlDataSource.js'; export * from './SqlDataSource/ESqlDataSourceFeatures.js'; export * from './SqlDataSource/ISqlDataSource.js'; export * from './SqlDataSource/SqlDataSourceService.js'; export * from './SqlDataSource/MemorySqlDataSource.js'; export * from './SqlEditor/ISQLEditorData.js'; export * from './SqlEditor/DATA_CONTEXT_SQL_EDITOR_DATA.js'; export * from './SqlEditor/SQL_EDITOR_ACTIONS_MENU.js'; export * from './SqlEditor/SQL_EDITOR_TOOLS_MENU.js'; export * from './SqlEditor/SqlEditorStateContext.js'; export * from './SqlResultTabs/DATA_CONTEXT_SQL_EDITOR_RESULT_ID.js'; export * from './SqlResultTabs/SqlResultTabsService.js'; export * from './SqlResultTabs/OutputLogs/OutputLogsEventHandler.js'; export * from './SqlResultTabs/OutputLogs/OutputLogsResource.js'; export * from './SqlResultTabs/OutputLogs/OutputLogsService.js'; export * from './SqlEditorModel/SqlEditorModelService.js'; export * from './DATA_CONTEXT_SQL_EDITOR_STATE.js'; export * from './getSqlEditorName.js'; export * from './QueryDataSource.js'; export * from './SqlDialectInfoService.js'; export * from './ISqlEditorTabState.js'; export * from './SQLEditorLoader.js'; export * from './SqlEditorModeService.js'; export * from './SqlEditorService.js'; export * from './SqlEditorSettingsService.js'; export * from './SqlEditorView.js'; export * from './SqlResultTabs/SqlQueryService.js'; export * from './SqlResultTabs/ExecutionPlan/SqlExecutionPlanViewService.js'; export * from './downloadSql.js'; export type { ISqlExecutionPlanViewProps } from './SqlResultTabs/ExecutionPlan/ISqlExecutionPlanViewProps.js';