├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .circleci ├── config.yml └── windows │ ├── dependencies.config │ ├── deploy_release.bat │ ├── deploy_snapshot.bat │ ├── prepare.bat │ └── short_workspace.patch ├── .github ├── CODEOWNERS └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .npmrc ├── .nvmrc ├── .vscode └── extensions.json ├── BUILD ├── LICENSE ├── README.md ├── VERSION ├── WORKSPACE ├── angular.json ├── config └── brew │ ├── BUILD │ └── typedb-studio.rb ├── dependencies └── typedb │ ├── BUILD │ └── repositories.bzl ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── app-icon.icns │ ├── favicon.ico │ ├── icon_152x152.png │ └── icon_76x76.png ├── src │ ├── lib.rs │ └── main.rs └── tauri.conf.json ├── src ├── assets │ ├── typedb-bot.png │ └── water-wheel.svg ├── concept │ ├── action.ts │ ├── connection.ts │ ├── transaction.ts │ └── view-state.ts ├── environments │ ├── environment.dev.ts │ ├── environment.prod.ts │ ├── environment.ts │ └── typings.ts ├── framework │ ├── button │ │ ├── button.component.html │ │ ├── button.component.scss │ │ └── button.component.ts │ ├── code-editor │ │ ├── code-editor.component.html │ │ ├── code-editor.component.scss │ │ ├── code-editor.component.ts │ │ └── theme.ts │ ├── code-snippet │ │ ├── code-snippet.component.html │ │ ├── code-snippet.component.scss │ │ └── code-snippet.component.ts │ ├── codemirror-lang-typeql │ │ ├── complete.ts │ │ ├── generated │ │ │ ├── typeql.grammar.generated.terms.ts │ │ │ └── typeql.grammar.generated.ts │ │ ├── index.ts │ │ ├── navigation.ts │ │ ├── typeQLAutocompleteSchema.ts │ │ ├── typeql.grammar │ │ ├── typeql.grammar.d.ts │ │ └── typeql_suggestions.ts │ ├── delete-resource-section │ │ ├── delete-resource-section.component.html │ │ ├── delete-resource-section.component.scss │ │ └── delete-resource-section.component.ts │ ├── form │ │ ├── actions │ │ │ ├── form-actions.component.html │ │ │ ├── form-actions.component.scss │ │ │ └── form-actions.component.ts │ │ ├── form.component.html │ │ ├── form.component.ts │ │ ├── index.ts │ │ ├── input │ │ │ ├── form-input.component.html │ │ │ ├── form-input.component.scss │ │ │ ├── form-input.component.ts │ │ │ └── password │ │ │ │ ├── form-password-input.component.html │ │ │ │ ├── form-password-input.component.scss │ │ │ │ └── form-password-input.component.ts │ │ ├── select │ │ │ ├── form-select.component.html │ │ │ ├── form-select.component.scss │ │ │ └── form-select.component.ts │ │ ├── textarea │ │ │ ├── form-textarea.component.html │ │ │ ├── form-textarea.component.scss │ │ │ └── form-textarea.component.ts │ │ ├── toggle-group │ │ │ ├── form-toggle-group.component.html │ │ │ ├── form-toggle-group.component.scss │ │ │ └── form-toggle-group.component.ts │ │ └── validation.ts │ ├── graph-visualiser │ │ ├── config.ts │ │ ├── converter.ts │ │ ├── defaults.ts │ │ ├── graph.ts │ │ ├── index.ts │ │ ├── interaction.ts │ │ ├── layouts.ts │ │ ├── node-diamond │ │ │ ├── index.ts │ │ │ ├── shader-frag.ts │ │ │ ├── shader-vert.ts │ │ │ └── utils.ts │ │ └── visualisation.ts │ ├── info-card-button │ │ ├── integration-card.component.html │ │ ├── integration-card.component.scss │ │ └── integration-card.component.ts │ ├── link-panels │ │ ├── link-panel.component.html │ │ ├── link-panel.component.scss │ │ ├── link-panels.component.scss │ │ └── link-panels.component.ts │ ├── menu │ │ └── hover-menu.component.ts │ ├── modal │ │ ├── close-button │ │ │ ├── modal-close-button.component.html │ │ │ ├── modal-close-button.component.scss │ │ │ └── modal-close-button.component.ts │ │ ├── confirmation │ │ │ ├── confirmation-modal.component.html │ │ │ ├── confirmation-modal.component.scss │ │ │ ├── confirmation-modal.component.ts │ │ │ └── strong │ │ │ │ ├── strong-confirmation-modal.component.html │ │ │ │ ├── strong-confirmation-modal.component.scss │ │ │ │ └── strong-confirmation-modal.component.ts │ │ ├── contact-support │ │ │ ├── contact-support-modal.component.html │ │ │ ├── contact-support-modal.component.scss │ │ │ └── contact-support-modal.component.ts │ │ ├── index.ts │ │ ├── modal.component.html │ │ ├── modal.component.scss │ │ └── modal.component.ts │ ├── ngx-resizable │ │ ├── ngx-resizable.service.ts │ │ ├── resizable │ │ │ ├── drag.directive.ts │ │ │ ├── resizable.component.html │ │ │ ├── resizable.component.scss │ │ │ └── resizable.component.ts │ │ └── window.service.ts │ ├── properties-table │ │ ├── properties-table.component.html │ │ ├── properties-table.component.scss │ │ ├── properties-table.component.ts │ │ └── row │ │ │ ├── properties-table-row.component.html │ │ │ ├── properties-table-row.component.scss │ │ │ └── properties-table-row.component.ts │ ├── scroll-container │ │ ├── detect-scroll.directive.ts │ │ └── scroll-container.component.ts │ ├── snackbar │ │ ├── snackbar.component.html │ │ ├── snackbar.component.scss │ │ └── snackbar.component.ts │ ├── spinner │ │ ├── spinner.component.scss │ │ └── spinner.component.ts │ ├── table │ │ ├── copyable-text-cell │ │ │ ├── table-copyable-text-cell.component.html │ │ │ ├── table-copyable-text-cell.component.scss │ │ │ └── table-copyable-text-cell.component.ts │ │ ├── filter-group │ │ │ ├── filter-group.component.html │ │ │ ├── filter-group.component.scss │ │ │ ├── filter-group.component.ts │ │ │ ├── filter-operator.pipe.ts │ │ │ ├── filter-spec.ts │ │ │ ├── filter-value.pipe.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── paginator │ │ │ ├── table-paginator.component.html │ │ │ ├── table-paginator.component.scss │ │ │ └── table-paginator.component.ts │ │ ├── selection-cell │ │ │ ├── table-selection-cell.component.html │ │ │ └── table-selection-cell.component.ts │ │ ├── selection-header-cell │ │ │ ├── table-selection-header-cell.component.html │ │ │ └── table-selection-header-cell.component.ts │ │ ├── status-cell │ │ │ ├── table-status-cell.component.html │ │ │ ├── table-status-cell.component.scss │ │ │ └── table-status-cell.component.ts │ │ └── toolbar │ │ │ ├── table-toolbar.component.html │ │ │ ├── table-toolbar.component.scss │ │ │ └── table-toolbar.component.ts │ ├── text │ │ ├── heading-with-highlights.component.html │ │ ├── heading-with-highlights.component.scss │ │ ├── p-with-highlights.component.scss │ │ └── text-with-highlights.component.ts │ ├── tooltip │ │ ├── rich-tooltip.component.html │ │ ├── rich-tooltip.component.scss │ │ ├── rich-tooltip.component.ts │ │ └── rich-tooltip.directive.ts │ └── util │ │ ├── color-style.ts │ │ ├── datetime.pipe.ts │ │ ├── index.ts │ │ ├── menu-item.ts │ │ ├── observable.ts │ │ ├── os.ts │ │ ├── strings.ts │ │ └── url-params.ts ├── index.html ├── main.ts ├── module │ ├── 404 │ │ ├── 404-page.component.html │ │ ├── 404-page.component.scss │ │ └── 404-page.component.ts │ ├── about │ │ ├── app-info-dialog.component.html │ │ ├── app-info-dialog.component.scss │ │ └── app-info-dialog.component.ts │ ├── ai │ │ ├── vibe-query.component.html │ │ ├── vibe-query.component.scss │ │ └── vibe-query.component.ts │ ├── connection │ │ ├── create │ │ │ ├── connection-creator.component.html │ │ │ ├── connection-creator.component.scss │ │ │ └── connection-creator.component.ts │ │ ├── transaction │ │ │ ├── transaction-control.component.html │ │ │ ├── transaction-control.component.scss │ │ │ └── transaction-control.component.ts │ │ └── widget │ │ │ ├── connection-widget.component.html │ │ │ ├── connection-widget.component.scss │ │ │ └── connection-widget.component.ts │ ├── database │ │ ├── create-dialog │ │ │ ├── database-create-dialog.component.html │ │ │ ├── database-create-dialog.component.scss │ │ │ └── database-create-dialog.component.ts │ │ ├── delete-dialog │ │ │ ├── database-delete-dialog.component.html │ │ │ ├── database-delete-dialog.component.scss │ │ │ └── database-delete-dialog.component.ts │ │ └── select-dialog │ │ │ ├── database-select-dialog.component.html │ │ │ ├── database-select-dialog.component.scss │ │ │ └── database-select-dialog.component.ts │ ├── home │ │ ├── home.component.html │ │ ├── home.component.scss │ │ └── home.component.ts │ ├── query │ │ ├── query-page.component.html │ │ ├── query-page.component.scss │ │ └── query-page.component.ts │ ├── scaffold │ │ ├── page │ │ │ ├── page-scaffold.component.html │ │ │ ├── page-scaffold.component.scss │ │ │ └── page-scaffold.component.ts │ │ └── sidebar │ │ │ ├── link │ │ │ ├── sidebar-link.component.html │ │ │ ├── sidebar-link.component.scss │ │ │ └── sidebar-link.component.ts │ │ │ ├── right │ │ │ ├── right-sidebar.component.html │ │ │ ├── right-sidebar.component.scss │ │ │ └── right-sidebar.component.ts │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ └── sidebar.component.ts │ ├── schema │ │ ├── schema-page.component.html │ │ ├── schema-page.component.scss │ │ ├── schema-page.component.ts │ │ ├── text-dialog │ │ │ ├── schema-text-dialog.component.html │ │ │ ├── schema-text-dialog.component.scss │ │ │ └── schema-text-dialog.component.ts │ │ ├── tool-window │ │ │ ├── schema-tool-window.component.html │ │ │ ├── schema-tool-window.component.scss │ │ │ └── schema-tool-window.component.ts │ │ └── tree-node │ │ │ ├── schema-tree-node.component.html │ │ │ ├── schema-tree-node.component.scss │ │ │ └── schema-tree-node.component.ts │ └── user │ │ ├── change-password-dialog │ │ ├── user-change-password-dialog.component.html │ │ ├── user-change-password-dialog.component.scss │ │ └── user-change-password-dialog.component.ts │ │ ├── create-dialog │ │ ├── user-create-dialog.component.html │ │ ├── user-create-dialog.component.scss │ │ └── user-create-dialog.component.ts │ │ ├── delete-dialog │ │ ├── user-delete-dialog.component.html │ │ ├── user-delete-dialog.component.scss │ │ └── user-delete-dialog.component.ts │ │ ├── table │ │ ├── users-table.component.html │ │ ├── users-table.component.scss │ │ └── users-table.component.ts │ │ ├── users-page.component.html │ │ ├── users-page.component.scss │ │ └── users-page.component.ts ├── polyfills.ts ├── robots.txt ├── root.component.html ├── root.component.scss ├── root.component.ts ├── routing │ ├── routes.ts │ └── title-strategy.ts ├── service │ ├── analytics.service.ts │ ├── app-data.service.ts │ ├── cloud.service.ts │ ├── driver-state.service.ts │ ├── error-handler.service.ts │ ├── query-page-state.service.ts │ ├── schema-state.service.ts │ ├── schema-tool-window-state.service.ts │ ├── snackbar.service.ts │ ├── storage.service.ts │ └── vibe-query-state.service.ts ├── site.webmanifest └── util.ts ├── styles ├── base.scss ├── material-overrides.scss └── typography.scss ├── tsconfig.app.json └── tsconfig.json /.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.bazelignore -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.2.0 2 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/windows/dependencies.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.circleci/windows/dependencies.config -------------------------------------------------------------------------------- /.circleci/windows/deploy_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.circleci/windows/deploy_release.bat -------------------------------------------------------------------------------- /.circleci/windows/deploy_snapshot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.circleci/windows/deploy_snapshot.bat -------------------------------------------------------------------------------- /.circleci/windows/prepare.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.circleci/windows/prepare.bat -------------------------------------------------------------------------------- /.circleci/windows/short_workspace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.circleci/windows/short_workspace.patch -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @alexjpwalker @flyingsilverfin 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.7.0 -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/WORKSPACE -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/angular.json -------------------------------------------------------------------------------- /config/brew/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/config/brew/BUILD -------------------------------------------------------------------------------- /config/brew/typedb-studio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/config/brew/typedb-studio.rb -------------------------------------------------------------------------------- /dependencies/typedb/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/dependencies/typedb/BUILD -------------------------------------------------------------------------------- /dependencies/typedb/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/dependencies/typedb/repositories.bzl -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - typedb-web/common 3 | -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/app-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/icons/app-icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/icons/favicon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon_152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/icons/icon_152x152.png -------------------------------------------------------------------------------- /src-tauri/icons/icon_76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/icons/icon_76x76.png -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/assets/typedb-bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/assets/typedb-bot.png -------------------------------------------------------------------------------- /src/assets/water-wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/assets/water-wheel.svg -------------------------------------------------------------------------------- /src/concept/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/concept/action.ts -------------------------------------------------------------------------------- /src/concept/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/concept/connection.ts -------------------------------------------------------------------------------- /src/concept/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/concept/transaction.ts -------------------------------------------------------------------------------- /src/concept/view-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/concept/view-state.ts -------------------------------------------------------------------------------- /src/environments/environment.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/environments/environment.dev.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/environments/typings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/environments/typings.ts -------------------------------------------------------------------------------- /src/framework/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/button/button.component.html -------------------------------------------------------------------------------- /src/framework/button/button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/button/button.component.scss -------------------------------------------------------------------------------- /src/framework/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/button/button.component.ts -------------------------------------------------------------------------------- /src/framework/code-editor/code-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/code-editor/code-editor.component.html -------------------------------------------------------------------------------- /src/framework/code-editor/code-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/code-editor/code-editor.component.scss -------------------------------------------------------------------------------- /src/framework/code-editor/code-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/code-editor/code-editor.component.ts -------------------------------------------------------------------------------- /src/framework/code-editor/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/code-editor/theme.ts -------------------------------------------------------------------------------- /src/framework/code-snippet/code-snippet.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/code-snippet/code-snippet.component.html -------------------------------------------------------------------------------- /src/framework/code-snippet/code-snippet.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/code-snippet/code-snippet.component.scss -------------------------------------------------------------------------------- /src/framework/code-snippet/code-snippet.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/code-snippet/code-snippet.component.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/complete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/complete.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/generated/typeql.grammar.generated.terms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/generated/typeql.grammar.generated.terms.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/generated/typeql.grammar.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/generated/typeql.grammar.generated.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/index.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/navigation.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/typeQLAutocompleteSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/typeQLAutocompleteSchema.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/typeql.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/typeql.grammar -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/typeql.grammar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/typeql.grammar.d.ts -------------------------------------------------------------------------------- /src/framework/codemirror-lang-typeql/typeql_suggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/codemirror-lang-typeql/typeql_suggestions.ts -------------------------------------------------------------------------------- /src/framework/delete-resource-section/delete-resource-section.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/delete-resource-section/delete-resource-section.component.html -------------------------------------------------------------------------------- /src/framework/delete-resource-section/delete-resource-section.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/delete-resource-section/delete-resource-section.component.scss -------------------------------------------------------------------------------- /src/framework/delete-resource-section/delete-resource-section.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/delete-resource-section/delete-resource-section.component.ts -------------------------------------------------------------------------------- /src/framework/form/actions/form-actions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/actions/form-actions.component.html -------------------------------------------------------------------------------- /src/framework/form/actions/form-actions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/actions/form-actions.component.scss -------------------------------------------------------------------------------- /src/framework/form/actions/form-actions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/actions/form-actions.component.ts -------------------------------------------------------------------------------- /src/framework/form/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/form.component.html -------------------------------------------------------------------------------- /src/framework/form/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/form.component.ts -------------------------------------------------------------------------------- /src/framework/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/index.ts -------------------------------------------------------------------------------- /src/framework/form/input/form-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/input/form-input.component.html -------------------------------------------------------------------------------- /src/framework/form/input/form-input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/input/form-input.component.scss -------------------------------------------------------------------------------- /src/framework/form/input/form-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/input/form-input.component.ts -------------------------------------------------------------------------------- /src/framework/form/input/password/form-password-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/input/password/form-password-input.component.html -------------------------------------------------------------------------------- /src/framework/form/input/password/form-password-input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/input/password/form-password-input.component.scss -------------------------------------------------------------------------------- /src/framework/form/input/password/form-password-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/input/password/form-password-input.component.ts -------------------------------------------------------------------------------- /src/framework/form/select/form-select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/select/form-select.component.html -------------------------------------------------------------------------------- /src/framework/form/select/form-select.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/select/form-select.component.scss -------------------------------------------------------------------------------- /src/framework/form/select/form-select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/select/form-select.component.ts -------------------------------------------------------------------------------- /src/framework/form/textarea/form-textarea.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/textarea/form-textarea.component.html -------------------------------------------------------------------------------- /src/framework/form/textarea/form-textarea.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/textarea/form-textarea.component.scss -------------------------------------------------------------------------------- /src/framework/form/textarea/form-textarea.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/textarea/form-textarea.component.ts -------------------------------------------------------------------------------- /src/framework/form/toggle-group/form-toggle-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/toggle-group/form-toggle-group.component.html -------------------------------------------------------------------------------- /src/framework/form/toggle-group/form-toggle-group.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/toggle-group/form-toggle-group.component.scss -------------------------------------------------------------------------------- /src/framework/form/toggle-group/form-toggle-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/toggle-group/form-toggle-group.component.ts -------------------------------------------------------------------------------- /src/framework/form/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/form/validation.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/config.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/converter.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/defaults.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/graph.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/index.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/interaction.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/layouts.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/node-diamond/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/node-diamond/index.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/node-diamond/shader-frag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/node-diamond/shader-frag.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/node-diamond/shader-vert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/node-diamond/shader-vert.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/node-diamond/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/node-diamond/utils.ts -------------------------------------------------------------------------------- /src/framework/graph-visualiser/visualisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/graph-visualiser/visualisation.ts -------------------------------------------------------------------------------- /src/framework/info-card-button/integration-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/info-card-button/integration-card.component.html -------------------------------------------------------------------------------- /src/framework/info-card-button/integration-card.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/info-card-button/integration-card.component.scss -------------------------------------------------------------------------------- /src/framework/info-card-button/integration-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/info-card-button/integration-card.component.ts -------------------------------------------------------------------------------- /src/framework/link-panels/link-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/link-panels/link-panel.component.html -------------------------------------------------------------------------------- /src/framework/link-panels/link-panel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/link-panels/link-panel.component.scss -------------------------------------------------------------------------------- /src/framework/link-panels/link-panels.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/link-panels/link-panels.component.scss -------------------------------------------------------------------------------- /src/framework/link-panels/link-panels.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/link-panels/link-panels.component.ts -------------------------------------------------------------------------------- /src/framework/menu/hover-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/menu/hover-menu.component.ts -------------------------------------------------------------------------------- /src/framework/modal/close-button/modal-close-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/close-button/modal-close-button.component.html -------------------------------------------------------------------------------- /src/framework/modal/close-button/modal-close-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/close-button/modal-close-button.component.scss -------------------------------------------------------------------------------- /src/framework/modal/close-button/modal-close-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/close-button/modal-close-button.component.ts -------------------------------------------------------------------------------- /src/framework/modal/confirmation/confirmation-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/confirmation/confirmation-modal.component.html -------------------------------------------------------------------------------- /src/framework/modal/confirmation/confirmation-modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/confirmation/confirmation-modal.component.scss -------------------------------------------------------------------------------- /src/framework/modal/confirmation/confirmation-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/confirmation/confirmation-modal.component.ts -------------------------------------------------------------------------------- /src/framework/modal/confirmation/strong/strong-confirmation-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/confirmation/strong/strong-confirmation-modal.component.html -------------------------------------------------------------------------------- /src/framework/modal/confirmation/strong/strong-confirmation-modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/confirmation/strong/strong-confirmation-modal.component.scss -------------------------------------------------------------------------------- /src/framework/modal/confirmation/strong/strong-confirmation-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/confirmation/strong/strong-confirmation-modal.component.ts -------------------------------------------------------------------------------- /src/framework/modal/contact-support/contact-support-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/contact-support/contact-support-modal.component.html -------------------------------------------------------------------------------- /src/framework/modal/contact-support/contact-support-modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/contact-support/contact-support-modal.component.scss -------------------------------------------------------------------------------- /src/framework/modal/contact-support/contact-support-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/contact-support/contact-support-modal.component.ts -------------------------------------------------------------------------------- /src/framework/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/index.ts -------------------------------------------------------------------------------- /src/framework/modal/modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/modal.component.html -------------------------------------------------------------------------------- /src/framework/modal/modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/modal.component.scss -------------------------------------------------------------------------------- /src/framework/modal/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/modal/modal.component.ts -------------------------------------------------------------------------------- /src/framework/ngx-resizable/ngx-resizable.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/ngx-resizable/ngx-resizable.service.ts -------------------------------------------------------------------------------- /src/framework/ngx-resizable/resizable/drag.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/ngx-resizable/resizable/drag.directive.ts -------------------------------------------------------------------------------- /src/framework/ngx-resizable/resizable/resizable.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/ngx-resizable/resizable/resizable.component.html -------------------------------------------------------------------------------- /src/framework/ngx-resizable/resizable/resizable.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/ngx-resizable/resizable/resizable.component.scss -------------------------------------------------------------------------------- /src/framework/ngx-resizable/resizable/resizable.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/ngx-resizable/resizable/resizable.component.ts -------------------------------------------------------------------------------- /src/framework/ngx-resizable/window.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/ngx-resizable/window.service.ts -------------------------------------------------------------------------------- /src/framework/properties-table/properties-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/properties-table/properties-table.component.html -------------------------------------------------------------------------------- /src/framework/properties-table/properties-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/properties-table/properties-table.component.scss -------------------------------------------------------------------------------- /src/framework/properties-table/properties-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/properties-table/properties-table.component.ts -------------------------------------------------------------------------------- /src/framework/properties-table/row/properties-table-row.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/properties-table/row/properties-table-row.component.html -------------------------------------------------------------------------------- /src/framework/properties-table/row/properties-table-row.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/properties-table/row/properties-table-row.component.scss -------------------------------------------------------------------------------- /src/framework/properties-table/row/properties-table-row.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/properties-table/row/properties-table-row.component.ts -------------------------------------------------------------------------------- /src/framework/scroll-container/detect-scroll.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/scroll-container/detect-scroll.directive.ts -------------------------------------------------------------------------------- /src/framework/scroll-container/scroll-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/scroll-container/scroll-container.component.ts -------------------------------------------------------------------------------- /src/framework/snackbar/snackbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/snackbar/snackbar.component.html -------------------------------------------------------------------------------- /src/framework/snackbar/snackbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/snackbar/snackbar.component.scss -------------------------------------------------------------------------------- /src/framework/snackbar/snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/snackbar/snackbar.component.ts -------------------------------------------------------------------------------- /src/framework/spinner/spinner.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/spinner/spinner.component.scss -------------------------------------------------------------------------------- /src/framework/spinner/spinner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/spinner/spinner.component.ts -------------------------------------------------------------------------------- /src/framework/table/copyable-text-cell/table-copyable-text-cell.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/copyable-text-cell/table-copyable-text-cell.component.html -------------------------------------------------------------------------------- /src/framework/table/copyable-text-cell/table-copyable-text-cell.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/copyable-text-cell/table-copyable-text-cell.component.scss -------------------------------------------------------------------------------- /src/framework/table/copyable-text-cell/table-copyable-text-cell.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/copyable-text-cell/table-copyable-text-cell.component.ts -------------------------------------------------------------------------------- /src/framework/table/filter-group/filter-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/filter-group/filter-group.component.html -------------------------------------------------------------------------------- /src/framework/table/filter-group/filter-group.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/filter-group/filter-group.component.scss -------------------------------------------------------------------------------- /src/framework/table/filter-group/filter-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/filter-group/filter-group.component.ts -------------------------------------------------------------------------------- /src/framework/table/filter-group/filter-operator.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/filter-group/filter-operator.pipe.ts -------------------------------------------------------------------------------- /src/framework/table/filter-group/filter-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/filter-group/filter-spec.ts -------------------------------------------------------------------------------- /src/framework/table/filter-group/filter-value.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/filter-group/filter-value.pipe.ts -------------------------------------------------------------------------------- /src/framework/table/filter-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/filter-group/index.ts -------------------------------------------------------------------------------- /src/framework/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/index.ts -------------------------------------------------------------------------------- /src/framework/table/paginator/table-paginator.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/paginator/table-paginator.component.html -------------------------------------------------------------------------------- /src/framework/table/paginator/table-paginator.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/paginator/table-paginator.component.scss -------------------------------------------------------------------------------- /src/framework/table/paginator/table-paginator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/paginator/table-paginator.component.ts -------------------------------------------------------------------------------- /src/framework/table/selection-cell/table-selection-cell.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/selection-cell/table-selection-cell.component.html -------------------------------------------------------------------------------- /src/framework/table/selection-cell/table-selection-cell.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/selection-cell/table-selection-cell.component.ts -------------------------------------------------------------------------------- /src/framework/table/selection-header-cell/table-selection-header-cell.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/selection-header-cell/table-selection-header-cell.component.html -------------------------------------------------------------------------------- /src/framework/table/selection-header-cell/table-selection-header-cell.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/selection-header-cell/table-selection-header-cell.component.ts -------------------------------------------------------------------------------- /src/framework/table/status-cell/table-status-cell.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/status-cell/table-status-cell.component.html -------------------------------------------------------------------------------- /src/framework/table/status-cell/table-status-cell.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/status-cell/table-status-cell.component.scss -------------------------------------------------------------------------------- /src/framework/table/status-cell/table-status-cell.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/status-cell/table-status-cell.component.ts -------------------------------------------------------------------------------- /src/framework/table/toolbar/table-toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/toolbar/table-toolbar.component.html -------------------------------------------------------------------------------- /src/framework/table/toolbar/table-toolbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/toolbar/table-toolbar.component.scss -------------------------------------------------------------------------------- /src/framework/table/toolbar/table-toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/table/toolbar/table-toolbar.component.ts -------------------------------------------------------------------------------- /src/framework/text/heading-with-highlights.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/text/heading-with-highlights.component.html -------------------------------------------------------------------------------- /src/framework/text/heading-with-highlights.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/text/heading-with-highlights.component.scss -------------------------------------------------------------------------------- /src/framework/text/p-with-highlights.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/text/p-with-highlights.component.scss -------------------------------------------------------------------------------- /src/framework/text/text-with-highlights.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/text/text-with-highlights.component.ts -------------------------------------------------------------------------------- /src/framework/tooltip/rich-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/tooltip/rich-tooltip.component.html -------------------------------------------------------------------------------- /src/framework/tooltip/rich-tooltip.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/tooltip/rich-tooltip.component.scss -------------------------------------------------------------------------------- /src/framework/tooltip/rich-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/tooltip/rich-tooltip.component.ts -------------------------------------------------------------------------------- /src/framework/tooltip/rich-tooltip.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/tooltip/rich-tooltip.directive.ts -------------------------------------------------------------------------------- /src/framework/util/color-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/color-style.ts -------------------------------------------------------------------------------- /src/framework/util/datetime.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/datetime.pipe.ts -------------------------------------------------------------------------------- /src/framework/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/index.ts -------------------------------------------------------------------------------- /src/framework/util/menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/menu-item.ts -------------------------------------------------------------------------------- /src/framework/util/observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/observable.ts -------------------------------------------------------------------------------- /src/framework/util/os.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/os.ts -------------------------------------------------------------------------------- /src/framework/util/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/strings.ts -------------------------------------------------------------------------------- /src/framework/util/url-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/framework/util/url-params.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/module/404/404-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/404/404-page.component.html -------------------------------------------------------------------------------- /src/module/404/404-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/404/404-page.component.scss -------------------------------------------------------------------------------- /src/module/404/404-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/404/404-page.component.ts -------------------------------------------------------------------------------- /src/module/about/app-info-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/about/app-info-dialog.component.html -------------------------------------------------------------------------------- /src/module/about/app-info-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/about/app-info-dialog.component.scss -------------------------------------------------------------------------------- /src/module/about/app-info-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/about/app-info-dialog.component.ts -------------------------------------------------------------------------------- /src/module/ai/vibe-query.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/ai/vibe-query.component.html -------------------------------------------------------------------------------- /src/module/ai/vibe-query.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/ai/vibe-query.component.scss -------------------------------------------------------------------------------- /src/module/ai/vibe-query.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/ai/vibe-query.component.ts -------------------------------------------------------------------------------- /src/module/connection/create/connection-creator.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/create/connection-creator.component.html -------------------------------------------------------------------------------- /src/module/connection/create/connection-creator.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/create/connection-creator.component.scss -------------------------------------------------------------------------------- /src/module/connection/create/connection-creator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/create/connection-creator.component.ts -------------------------------------------------------------------------------- /src/module/connection/transaction/transaction-control.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/transaction/transaction-control.component.html -------------------------------------------------------------------------------- /src/module/connection/transaction/transaction-control.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/transaction/transaction-control.component.scss -------------------------------------------------------------------------------- /src/module/connection/transaction/transaction-control.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/transaction/transaction-control.component.ts -------------------------------------------------------------------------------- /src/module/connection/widget/connection-widget.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/widget/connection-widget.component.html -------------------------------------------------------------------------------- /src/module/connection/widget/connection-widget.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/widget/connection-widget.component.scss -------------------------------------------------------------------------------- /src/module/connection/widget/connection-widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/connection/widget/connection-widget.component.ts -------------------------------------------------------------------------------- /src/module/database/create-dialog/database-create-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/create-dialog/database-create-dialog.component.html -------------------------------------------------------------------------------- /src/module/database/create-dialog/database-create-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/create-dialog/database-create-dialog.component.scss -------------------------------------------------------------------------------- /src/module/database/create-dialog/database-create-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/create-dialog/database-create-dialog.component.ts -------------------------------------------------------------------------------- /src/module/database/delete-dialog/database-delete-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/delete-dialog/database-delete-dialog.component.html -------------------------------------------------------------------------------- /src/module/database/delete-dialog/database-delete-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/delete-dialog/database-delete-dialog.component.scss -------------------------------------------------------------------------------- /src/module/database/delete-dialog/database-delete-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/delete-dialog/database-delete-dialog.component.ts -------------------------------------------------------------------------------- /src/module/database/select-dialog/database-select-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/select-dialog/database-select-dialog.component.html -------------------------------------------------------------------------------- /src/module/database/select-dialog/database-select-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/select-dialog/database-select-dialog.component.scss -------------------------------------------------------------------------------- /src/module/database/select-dialog/database-select-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/database/select-dialog/database-select-dialog.component.ts -------------------------------------------------------------------------------- /src/module/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/home/home.component.html -------------------------------------------------------------------------------- /src/module/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/home/home.component.scss -------------------------------------------------------------------------------- /src/module/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/home/home.component.ts -------------------------------------------------------------------------------- /src/module/query/query-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/query/query-page.component.html -------------------------------------------------------------------------------- /src/module/query/query-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/query/query-page.component.scss -------------------------------------------------------------------------------- /src/module/query/query-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/query/query-page.component.ts -------------------------------------------------------------------------------- /src/module/scaffold/page/page-scaffold.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/page/page-scaffold.component.html -------------------------------------------------------------------------------- /src/module/scaffold/page/page-scaffold.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/page/page-scaffold.component.scss -------------------------------------------------------------------------------- /src/module/scaffold/page/page-scaffold.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/page/page-scaffold.component.ts -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/link/sidebar-link.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/link/sidebar-link.component.html -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/link/sidebar-link.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/link/sidebar-link.component.scss -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/link/sidebar-link.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/link/sidebar-link.component.ts -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/right/right-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/right/right-sidebar.component.html -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/right/right-sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/right/right-sidebar.component.scss -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/right/right-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/right/right-sidebar.component.ts -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /src/module/scaffold/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/scaffold/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/module/schema/schema-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/schema-page.component.html -------------------------------------------------------------------------------- /src/module/schema/schema-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/schema-page.component.scss -------------------------------------------------------------------------------- /src/module/schema/schema-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/schema-page.component.ts -------------------------------------------------------------------------------- /src/module/schema/text-dialog/schema-text-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/text-dialog/schema-text-dialog.component.html -------------------------------------------------------------------------------- /src/module/schema/text-dialog/schema-text-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/text-dialog/schema-text-dialog.component.scss -------------------------------------------------------------------------------- /src/module/schema/text-dialog/schema-text-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/text-dialog/schema-text-dialog.component.ts -------------------------------------------------------------------------------- /src/module/schema/tool-window/schema-tool-window.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/tool-window/schema-tool-window.component.html -------------------------------------------------------------------------------- /src/module/schema/tool-window/schema-tool-window.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/tool-window/schema-tool-window.component.scss -------------------------------------------------------------------------------- /src/module/schema/tool-window/schema-tool-window.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/tool-window/schema-tool-window.component.ts -------------------------------------------------------------------------------- /src/module/schema/tree-node/schema-tree-node.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/tree-node/schema-tree-node.component.html -------------------------------------------------------------------------------- /src/module/schema/tree-node/schema-tree-node.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/tree-node/schema-tree-node.component.scss -------------------------------------------------------------------------------- /src/module/schema/tree-node/schema-tree-node.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/schema/tree-node/schema-tree-node.component.ts -------------------------------------------------------------------------------- /src/module/user/change-password-dialog/user-change-password-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/change-password-dialog/user-change-password-dialog.component.html -------------------------------------------------------------------------------- /src/module/user/change-password-dialog/user-change-password-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/change-password-dialog/user-change-password-dialog.component.scss -------------------------------------------------------------------------------- /src/module/user/change-password-dialog/user-change-password-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/change-password-dialog/user-change-password-dialog.component.ts -------------------------------------------------------------------------------- /src/module/user/create-dialog/user-create-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/create-dialog/user-create-dialog.component.html -------------------------------------------------------------------------------- /src/module/user/create-dialog/user-create-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/create-dialog/user-create-dialog.component.scss -------------------------------------------------------------------------------- /src/module/user/create-dialog/user-create-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/create-dialog/user-create-dialog.component.ts -------------------------------------------------------------------------------- /src/module/user/delete-dialog/user-delete-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/delete-dialog/user-delete-dialog.component.html -------------------------------------------------------------------------------- /src/module/user/delete-dialog/user-delete-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/delete-dialog/user-delete-dialog.component.scss -------------------------------------------------------------------------------- /src/module/user/delete-dialog/user-delete-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/delete-dialog/user-delete-dialog.component.ts -------------------------------------------------------------------------------- /src/module/user/table/users-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/table/users-table.component.html -------------------------------------------------------------------------------- /src/module/user/table/users-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/table/users-table.component.scss -------------------------------------------------------------------------------- /src/module/user/table/users-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/table/users-table.component.ts -------------------------------------------------------------------------------- /src/module/user/users-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/users-page.component.html -------------------------------------------------------------------------------- /src/module/user/users-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/users-page.component.scss -------------------------------------------------------------------------------- /src/module/user/users-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/module/user/users-page.component.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/robots.txt -------------------------------------------------------------------------------- /src/root.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/root.component.html -------------------------------------------------------------------------------- /src/root.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/root.component.scss -------------------------------------------------------------------------------- /src/root.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/root.component.ts -------------------------------------------------------------------------------- /src/routing/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/routing/routes.ts -------------------------------------------------------------------------------- /src/routing/title-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/routing/title-strategy.ts -------------------------------------------------------------------------------- /src/service/analytics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/analytics.service.ts -------------------------------------------------------------------------------- /src/service/app-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/app-data.service.ts -------------------------------------------------------------------------------- /src/service/cloud.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/cloud.service.ts -------------------------------------------------------------------------------- /src/service/driver-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/driver-state.service.ts -------------------------------------------------------------------------------- /src/service/error-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/error-handler.service.ts -------------------------------------------------------------------------------- /src/service/query-page-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/query-page-state.service.ts -------------------------------------------------------------------------------- /src/service/schema-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/schema-state.service.ts -------------------------------------------------------------------------------- /src/service/schema-tool-window-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/schema-tool-window-state.service.ts -------------------------------------------------------------------------------- /src/service/snackbar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/snackbar.service.ts -------------------------------------------------------------------------------- /src/service/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/storage.service.ts -------------------------------------------------------------------------------- /src/service/vibe-query-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/service/vibe-query-state.service.ts -------------------------------------------------------------------------------- /src/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/site.webmanifest -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/src/util.ts -------------------------------------------------------------------------------- /styles/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/styles/base.scss -------------------------------------------------------------------------------- /styles/material-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/styles/material-overrides.scss -------------------------------------------------------------------------------- /styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/styles/typography.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-studio/HEAD/tsconfig.json --------------------------------------------------------------------------------