├── .editorconfig ├── .github └── workflows │ ├── ci_build.yml │ └── ui_tests.yml ├── .gitignore ├── .prettierrc ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.2.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── package.json ├── shared ├── codeEditor │ ├── codeEditor.module.scss │ ├── completions.ts │ ├── index.tsx │ ├── package.json │ ├── styles.d.ts │ ├── terminalCursor.ts │ ├── theme.ts │ └── tsconfig.json ├── common │ ├── branchGraph │ │ ├── branchGraph.module.scss │ │ ├── diff.ts │ │ ├── index.tsx │ │ ├── layout.ts │ │ └── utils.ts │ ├── components │ │ ├── dataGrid │ │ │ ├── dataGrid.module.scss │ │ │ ├── index.tsx │ │ │ ├── renderUtils.tsx │ │ │ ├── state.ts │ │ │ └── utils.ts │ │ ├── infoCards │ │ │ ├── getLatestInfo.ts │ │ │ ├── index.tsx │ │ │ └── infoCards.module.scss │ │ └── resultGrid │ │ │ ├── index.tsx │ │ │ ├── resultGrid.module.scss │ │ │ └── state.ts │ ├── decodeRawBuffer │ │ └── index.ts │ ├── fonts │ │ ├── edgedb-300.woff2 │ │ ├── edgedb-400.woff2 │ │ ├── edgedb-500.woff2 │ │ ├── edgedb-600.woff2 │ │ ├── edgedb-700.woff2 │ │ └── include.scss │ ├── hooks │ │ ├── globalDragCursor │ │ │ ├── globalDragCursor.module.scss │ │ │ └── index.tsx │ │ ├── useDragHandler.ts │ │ ├── useInitialValue.ts │ │ ├── useKeyboardShortcut.ts │ │ ├── useMobile.ts │ │ ├── useModal │ │ │ └── index.tsx │ │ ├── usePersistedState.ts │ │ ├── useResize.ts │ │ ├── useTheme │ │ │ ├── index.tsx │ │ │ └── mixin.scss │ │ └── useTooltips.tsx │ ├── index.ts │ ├── logo.tsx │ ├── mixins.scss │ ├── newui │ │ ├── button │ │ │ ├── button.module.scss │ │ │ └── index.tsx │ │ ├── checkbox │ │ │ ├── checkbox.module.scss │ │ │ └── index.tsx │ │ ├── copyButton │ │ │ ├── copyButton.module.scss │ │ │ └── index.tsx │ │ ├── fieldHeader │ │ │ ├── fieldHeader.module.scss │ │ │ └── index.tsx │ │ ├── horizontalCardList │ │ │ ├── horizontalCardList.module.scss │ │ │ └── index.tsx │ │ ├── iconToggle │ │ │ ├── iconToggle.module.scss │ │ │ └── index.tsx │ │ ├── icons │ │ │ ├── index.tsx │ │ │ └── other.tsx │ │ ├── index.ts │ │ ├── infoTooltip │ │ │ ├── index.tsx │ │ │ └── infoTooltip.module.scss │ │ ├── loadingSkeleton │ │ │ ├── index.tsx │ │ │ └── loadingSkeleton.module.scss │ │ ├── logo.module.scss │ │ ├── logo.tsx │ │ ├── logos │ │ │ └── index.tsx │ │ ├── modal │ │ │ ├── index.tsx │ │ │ └── modal.module.scss │ │ ├── panelTabs │ │ │ ├── index.tsx │ │ │ └── panelTabs.module.scss │ │ ├── select │ │ │ ├── index.tsx │ │ │ └── select.module.scss │ │ ├── textInput │ │ │ ├── index.tsx │ │ │ └── textInput.module.scss │ │ ├── theme.module.scss │ │ └── userMenu │ │ │ ├── index.tsx │ │ │ └── userMenu.module.scss │ ├── package.json │ ├── schemaData │ │ ├── index.ts │ │ ├── knownTypes.ts │ │ ├── queries.ts │ │ └── utils.ts │ ├── styles.d.ts │ ├── styles.scss │ ├── tsconfig.json │ ├── ui │ │ ├── button │ │ │ ├── button.module.scss │ │ │ └── index.tsx │ │ ├── codeBlock │ │ │ └── index.tsx │ │ ├── customScrollbar │ │ │ ├── customScrollbar.module.scss │ │ │ └── index.tsx │ │ ├── icons │ │ │ ├── index.tsx │ │ │ └── logo.tsx │ │ ├── mobile │ │ │ ├── button │ │ │ │ ├── button.module.scss │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── roundButton │ │ │ │ ├── index.tsx │ │ │ │ └── roundButton.module.scss │ │ ├── modal │ │ │ ├── index.tsx │ │ │ └── modal.module.scss │ │ ├── navtabs │ │ │ ├── interfaces.tsx │ │ │ ├── mobile.tsx │ │ │ └── mobileNavTabs.module.scss │ │ ├── select │ │ │ ├── index.tsx │ │ │ └── select.module.scss │ │ ├── spinner │ │ │ ├── index.tsx │ │ │ └── spinner.module.scss │ │ ├── splitView │ │ │ ├── index.tsx │ │ │ ├── model.ts │ │ │ └── splitView.module.scss │ │ ├── switch │ │ │ ├── index.tsx │ │ │ └── switch.module.scss │ │ ├── switcherButton │ │ │ ├── index.tsx │ │ │ └── switcherButton.module.scss │ │ ├── themeSwitcher │ │ │ ├── icons.tsx │ │ │ ├── index.tsx │ │ │ └── themeSwitcher.module.scss │ │ ├── toggleSwitch │ │ │ ├── index.tsx │ │ │ └── toggleSwitch.module.scss │ │ ├── tooltip │ │ │ ├── index.tsx │ │ │ └── tooltip.module.scss │ │ └── verticalTabBar │ │ │ ├── index.tsx │ │ │ └── verticalTabBar.module.scss │ └── utils │ │ ├── array.ts │ │ ├── assertNever.ts │ │ ├── classNames.ts │ │ ├── debug.ts │ │ ├── easing.ts │ │ ├── format.ts │ │ ├── fuzzysortHighlight.tsx │ │ ├── localStorageCache.ts │ │ ├── markString.tsx │ │ ├── moduleNames.ts │ │ ├── relativeTime.tsx │ │ └── renderJsonResult.ts ├── inspector │ ├── buildItem.tsx │ ├── buildScalar.tsx │ ├── context.ts │ ├── index.tsx │ ├── inspector.module.scss │ ├── package.json │ ├── state.ts │ ├── styles.d.ts │ └── tsconfig.json ├── lang-edgeql │ ├── debug.js │ ├── edgeql.ts │ ├── genMeta.js │ ├── lang.grammar │ ├── lang.js │ ├── lang.terms.js │ ├── meta.d.ts │ ├── meta.js │ ├── package.json │ └── tokens.js ├── schemaGraph │ ├── components │ │ ├── schemaGraph │ │ │ ├── SchemaLink.tsx │ │ │ ├── SchemaNode.tsx │ │ │ ├── SchemaNodeLinkProps.tsx │ │ │ ├── SchemaNodeObject.tsx │ │ │ ├── debug.module.scss │ │ │ ├── debug.tsx │ │ │ ├── index.tsx │ │ │ ├── interfaces.ts │ │ │ └── schemaGraph.module.scss │ │ └── schemaMinimap │ │ │ ├── index.tsx │ │ │ └── schemaMinimap.module.scss │ ├── core │ │ ├── aStar.ts │ │ ├── focusedLayout.ts │ │ ├── grid.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── linkLayout.ts │ │ ├── routeLinks.ts │ │ ├── utils.ts │ │ ├── webcolaLayout.ts │ │ └── worker │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ └── layout.worker.ts │ ├── index.ts │ ├── package.json │ └── state │ │ ├── graph.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── provider.ts │ │ ├── query.ts │ │ └── sidepanel.ts └── studio │ ├── components │ ├── dataEditor │ │ ├── dataEditor.module.scss │ │ ├── editor.tsx │ │ ├── icons.tsx │ │ ├── index.tsx │ │ ├── parsers.ts │ │ └── utils.ts │ ├── databasePage │ │ ├── databasePage.module.scss │ │ └── index.tsx │ ├── errorPage │ │ ├── errorPage.module.scss │ │ └── index.tsx │ ├── explainVis │ │ ├── codeEditorContexts.tsx │ │ ├── codeblock.tsx │ │ ├── explainVis.module.scss │ │ ├── index.tsx │ │ ├── state.ts │ │ └── treemapLayout.tsx │ ├── extendedViewers │ │ ├── hexViewer │ │ │ ├── hexViewer.module.scss │ │ │ ├── index.tsx │ │ │ └── state.ts │ │ ├── index.tsx │ │ ├── jsonViewer │ │ │ ├── index.tsx │ │ │ └── jsonViewer.module.scss │ │ ├── postgisViewer │ │ │ ├── controlPoint.png │ │ │ ├── editableGeom │ │ │ │ ├── convert.ts │ │ │ │ ├── curves.ts │ │ │ │ ├── geojsonTypes.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── icons.tsx │ │ │ ├── index.tsx │ │ │ ├── postgisViewer.module.scss │ │ │ ├── state.ts │ │ │ ├── styles │ │ │ │ ├── LICENSE.md │ │ │ │ ├── dark_layers.json │ │ │ │ ├── layers.ts │ │ │ │ └── light_layers.json │ │ │ ├── toolbar.tsx │ │ │ └── wktRenderers.tsx │ │ ├── shared.module.scss │ │ ├── shared.tsx │ │ └── textViewer │ │ │ ├── index.tsx │ │ │ └── textViewer.module.scss │ ├── headerNav │ │ ├── elements.tsx │ │ ├── headerNav.module.scss │ │ └── index.tsx │ ├── lazyTabs │ │ └── lazyTabs.module.scss │ ├── modals │ │ ├── createBranch.tsx │ │ └── modals.module.scss │ ├── objectTypeSelect │ │ └── index.tsx │ ├── sessionState │ │ ├── icons.tsx │ │ ├── index.tsx │ │ └── sessionState.module.scss │ └── visualQuerybuilder │ │ ├── index.tsx │ │ ├── queryBuilder.module.scss │ │ └── state.ts │ ├── hooks │ └── dbRoute.ts │ ├── icons │ ├── checkbox_checked.svg │ ├── docs.tsx │ └── index.tsx │ ├── idbStore │ └── index.ts │ ├── index.ts │ ├── package.json │ ├── state │ ├── connection.ts │ ├── database.ts │ ├── explainGraphSettings.ts │ ├── index.ts │ ├── instance.ts │ ├── sessionState.ts │ └── utils │ │ └── lru.ts │ ├── styles.d.ts │ ├── tabs │ ├── ai │ │ ├── ai.tsx │ │ ├── aiAdmin.module.scss │ │ ├── index.tsx │ │ ├── logos.tsx │ │ ├── playground.tsx │ │ ├── prompts.tsx │ │ ├── providers.tsx │ │ └── state │ │ │ ├── index.ts │ │ │ └── rag.ts │ ├── auth │ │ ├── auth.tsx │ │ ├── authAdmin.module.scss │ │ ├── colourUtils.ts │ │ ├── config.tsx │ │ ├── icons.tsx │ │ ├── index.tsx │ │ ├── loginUIPreview.tsx │ │ ├── loginuipreview.module.scss │ │ ├── providers.tsx │ │ ├── shared.tsx │ │ ├── smtp.tsx │ │ ├── state │ │ │ └── index.tsx │ │ └── webhooks.tsx │ ├── dashboard │ │ ├── databaseDashboard.module.scss │ │ ├── exampleSchema.mts │ │ └── index.tsx │ ├── dataview │ │ ├── dataInspector.module.scss │ │ ├── dataInspector.tsx │ │ ├── dataview.module.scss │ │ ├── editsModal.module.scss │ │ ├── fieldConfig.module.scss │ │ ├── fieldConfig.tsx │ │ ├── icons.tsx │ │ ├── index.tsx │ │ ├── reviewEditsModal.tsx │ │ └── state │ │ │ ├── edits.ts │ │ │ └── index.ts │ ├── graphql │ │ ├── graphql.module.scss │ │ ├── index.tsx │ │ ├── lang.ts │ │ └── state │ │ │ └── index.ts │ ├── perfStats │ │ ├── analyze.tsx │ │ ├── filters.tsx │ │ ├── index.tsx │ │ ├── perfStats.module.scss │ │ ├── state │ │ │ └── index.ts │ │ ├── statsChart.tsx │ │ ├── statsTable.tsx │ │ └── utils.tsx │ ├── queryEditor │ │ ├── history.tsx │ │ ├── index.tsx │ │ ├── paramEditor │ │ │ ├── index.tsx │ │ │ └── paramEditor.module.scss │ │ ├── queryeditor.module.scss │ │ └── state │ │ │ ├── extractQueryParameters.ts │ │ │ ├── index.ts │ │ │ ├── parameters.ts │ │ │ └── thumbnailGen.tsx │ ├── repl │ │ ├── commands.tsx │ │ ├── index.tsx │ │ ├── repl.module.scss │ │ └── state │ │ │ ├── commands.ts │ │ │ ├── index.ts │ │ │ ├── itemHeights.ts │ │ │ └── utils.ts │ └── schema │ │ ├── graphView.tsx │ │ ├── index.tsx │ │ ├── renderers │ │ ├── alias.tsx │ │ ├── annotation.tsx │ │ ├── constraint.tsx │ │ ├── extension.tsx │ │ ├── function.tsx │ │ ├── global.tsx │ │ ├── index.tsx │ │ ├── module.tsx │ │ ├── object.tsx │ │ ├── operator.tsx │ │ ├── pointer.tsx │ │ ├── scalar.tsx │ │ ├── schemaIndex.tsx │ │ └── utils.tsx │ │ ├── schema.module.scss │ │ ├── state │ │ ├── index.ts │ │ └── textView.ts │ │ ├── textView.module.scss │ │ └── textView.tsx │ ├── tsconfig.json │ └── utils │ ├── completer.ts │ ├── decodeRawBuffer.ts │ ├── extractErrorDetails.ts │ ├── formatDuration.ts │ ├── rewriteTypedesc.ts │ └── syntaxTree.ts ├── tsconfig.base.json ├── web ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── playwright.config.ts ├── playwright │ ├── _globalSetup.ts │ ├── _globalTeardown.ts │ ├── auth.json │ ├── fixtures.ts │ └── index.ts ├── public │ ├── android-chrome-192.png │ ├── android-chrome-512.png │ ├── app.webmanifest │ ├── apple-touch-icon.png │ ├── favicon-16.png │ ├── favicon-32.png │ └── robots.txt ├── src │ ├── app.module.scss │ ├── app.tsx │ ├── components │ │ ├── databasePage │ │ │ ├── databasePage.module.scss │ │ │ └── index.tsx │ │ ├── header │ │ │ ├── header.module.scss │ │ │ └── index.tsx │ │ ├── instancePage │ │ │ ├── index.tsx │ │ │ └── instancePage.module.scss │ │ ├── loginPage │ │ │ ├── index.tsx │ │ │ └── loginPage.module.scss │ │ └── main │ │ │ ├── index.tsx │ │ │ └── main.module.scss │ ├── fonts │ │ ├── edgedb-300.woff2 │ │ ├── edgedb-400.woff2 │ │ ├── edgedb-500.woff2 │ │ ├── edgedb-600.woff2 │ │ ├── edgedb-700.woff2 │ │ └── include.scss │ ├── index.css │ ├── main.tsx │ ├── mixins.scss │ ├── state │ │ ├── models │ │ │ └── app.ts │ │ ├── providers.ts │ │ └── store.ts │ ├── utils │ │ └── reportAccessibility.ts │ └── vite-env.d.ts ├── tests │ ├── clientSettings.spec.ts │ ├── dataViewer.spec.ts │ ├── queryEditor.spec.ts │ ├── repl.spec.ts │ ├── schema.spec.ts │ └── simple.spec.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.github/workflows/ci_build.yml -------------------------------------------------------------------------------- /.github/workflows/ui_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.github/workflows/ui_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.yarn/releases/yarn-3.2.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/package.json -------------------------------------------------------------------------------- /shared/codeEditor/codeEditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/codeEditor.module.scss -------------------------------------------------------------------------------- /shared/codeEditor/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/completions.ts -------------------------------------------------------------------------------- /shared/codeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/index.tsx -------------------------------------------------------------------------------- /shared/codeEditor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/package.json -------------------------------------------------------------------------------- /shared/codeEditor/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/styles.d.ts -------------------------------------------------------------------------------- /shared/codeEditor/terminalCursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/terminalCursor.ts -------------------------------------------------------------------------------- /shared/codeEditor/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/theme.ts -------------------------------------------------------------------------------- /shared/codeEditor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/codeEditor/tsconfig.json -------------------------------------------------------------------------------- /shared/common/branchGraph/branchGraph.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/branchGraph/branchGraph.module.scss -------------------------------------------------------------------------------- /shared/common/branchGraph/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/branchGraph/diff.ts -------------------------------------------------------------------------------- /shared/common/branchGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/branchGraph/index.tsx -------------------------------------------------------------------------------- /shared/common/branchGraph/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/branchGraph/layout.ts -------------------------------------------------------------------------------- /shared/common/branchGraph/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/branchGraph/utils.ts -------------------------------------------------------------------------------- /shared/common/components/dataGrid/dataGrid.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/dataGrid/dataGrid.module.scss -------------------------------------------------------------------------------- /shared/common/components/dataGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/dataGrid/index.tsx -------------------------------------------------------------------------------- /shared/common/components/dataGrid/renderUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/dataGrid/renderUtils.tsx -------------------------------------------------------------------------------- /shared/common/components/dataGrid/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/dataGrid/state.ts -------------------------------------------------------------------------------- /shared/common/components/dataGrid/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/dataGrid/utils.ts -------------------------------------------------------------------------------- /shared/common/components/infoCards/getLatestInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/infoCards/getLatestInfo.ts -------------------------------------------------------------------------------- /shared/common/components/infoCards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/infoCards/index.tsx -------------------------------------------------------------------------------- /shared/common/components/infoCards/infoCards.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/infoCards/infoCards.module.scss -------------------------------------------------------------------------------- /shared/common/components/resultGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/resultGrid/index.tsx -------------------------------------------------------------------------------- /shared/common/components/resultGrid/resultGrid.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/resultGrid/resultGrid.module.scss -------------------------------------------------------------------------------- /shared/common/components/resultGrid/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/components/resultGrid/state.ts -------------------------------------------------------------------------------- /shared/common/decodeRawBuffer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/decodeRawBuffer/index.ts -------------------------------------------------------------------------------- /shared/common/fonts/edgedb-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/fonts/edgedb-300.woff2 -------------------------------------------------------------------------------- /shared/common/fonts/edgedb-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/fonts/edgedb-400.woff2 -------------------------------------------------------------------------------- /shared/common/fonts/edgedb-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/fonts/edgedb-500.woff2 -------------------------------------------------------------------------------- /shared/common/fonts/edgedb-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/fonts/edgedb-600.woff2 -------------------------------------------------------------------------------- /shared/common/fonts/edgedb-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/fonts/edgedb-700.woff2 -------------------------------------------------------------------------------- /shared/common/fonts/include.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/fonts/include.scss -------------------------------------------------------------------------------- /shared/common/hooks/globalDragCursor/globalDragCursor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/globalDragCursor/globalDragCursor.module.scss -------------------------------------------------------------------------------- /shared/common/hooks/globalDragCursor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/globalDragCursor/index.tsx -------------------------------------------------------------------------------- /shared/common/hooks/useDragHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useDragHandler.ts -------------------------------------------------------------------------------- /shared/common/hooks/useInitialValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useInitialValue.ts -------------------------------------------------------------------------------- /shared/common/hooks/useKeyboardShortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useKeyboardShortcut.ts -------------------------------------------------------------------------------- /shared/common/hooks/useMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useMobile.ts -------------------------------------------------------------------------------- /shared/common/hooks/useModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useModal/index.tsx -------------------------------------------------------------------------------- /shared/common/hooks/usePersistedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/usePersistedState.ts -------------------------------------------------------------------------------- /shared/common/hooks/useResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useResize.ts -------------------------------------------------------------------------------- /shared/common/hooks/useTheme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useTheme/index.tsx -------------------------------------------------------------------------------- /shared/common/hooks/useTheme/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useTheme/mixin.scss -------------------------------------------------------------------------------- /shared/common/hooks/useTooltips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/hooks/useTooltips.tsx -------------------------------------------------------------------------------- /shared/common/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /shared/common/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/logo.tsx -------------------------------------------------------------------------------- /shared/common/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/mixins.scss -------------------------------------------------------------------------------- /shared/common/newui/button/button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/button/button.module.scss -------------------------------------------------------------------------------- /shared/common/newui/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/button/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/checkbox/checkbox.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/checkbox/checkbox.module.scss -------------------------------------------------------------------------------- /shared/common/newui/checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/checkbox/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/copyButton/copyButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/copyButton/copyButton.module.scss -------------------------------------------------------------------------------- /shared/common/newui/copyButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/copyButton/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/fieldHeader/fieldHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/fieldHeader/fieldHeader.module.scss -------------------------------------------------------------------------------- /shared/common/newui/fieldHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/fieldHeader/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/horizontalCardList/horizontalCardList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/horizontalCardList/horizontalCardList.module.scss -------------------------------------------------------------------------------- /shared/common/newui/horizontalCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/horizontalCardList/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/iconToggle/iconToggle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/iconToggle/iconToggle.module.scss -------------------------------------------------------------------------------- /shared/common/newui/iconToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/iconToggle/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/icons/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/icons/other.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/icons/other.tsx -------------------------------------------------------------------------------- /shared/common/newui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/index.ts -------------------------------------------------------------------------------- /shared/common/newui/infoTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/infoTooltip/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/infoTooltip/infoTooltip.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/infoTooltip/infoTooltip.module.scss -------------------------------------------------------------------------------- /shared/common/newui/loadingSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/loadingSkeleton/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/loadingSkeleton/loadingSkeleton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/loadingSkeleton/loadingSkeleton.module.scss -------------------------------------------------------------------------------- /shared/common/newui/logo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/logo.module.scss -------------------------------------------------------------------------------- /shared/common/newui/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/logo.tsx -------------------------------------------------------------------------------- /shared/common/newui/logos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/logos/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/modal/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/modal/modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/modal/modal.module.scss -------------------------------------------------------------------------------- /shared/common/newui/panelTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/panelTabs/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/panelTabs/panelTabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/panelTabs/panelTabs.module.scss -------------------------------------------------------------------------------- /shared/common/newui/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/select/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/select/select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/select/select.module.scss -------------------------------------------------------------------------------- /shared/common/newui/textInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/textInput/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/textInput/textInput.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/textInput/textInput.module.scss -------------------------------------------------------------------------------- /shared/common/newui/theme.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/theme.module.scss -------------------------------------------------------------------------------- /shared/common/newui/userMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/userMenu/index.tsx -------------------------------------------------------------------------------- /shared/common/newui/userMenu/userMenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/newui/userMenu/userMenu.module.scss -------------------------------------------------------------------------------- /shared/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/package.json -------------------------------------------------------------------------------- /shared/common/schemaData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/schemaData/index.ts -------------------------------------------------------------------------------- /shared/common/schemaData/knownTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/schemaData/knownTypes.ts -------------------------------------------------------------------------------- /shared/common/schemaData/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/schemaData/queries.ts -------------------------------------------------------------------------------- /shared/common/schemaData/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/schemaData/utils.ts -------------------------------------------------------------------------------- /shared/common/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/styles.d.ts -------------------------------------------------------------------------------- /shared/common/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/styles.scss -------------------------------------------------------------------------------- /shared/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/tsconfig.json -------------------------------------------------------------------------------- /shared/common/ui/button/button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/button/button.module.scss -------------------------------------------------------------------------------- /shared/common/ui/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/button/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/codeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/codeBlock/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/customScrollbar/customScrollbar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/customScrollbar/customScrollbar.module.scss -------------------------------------------------------------------------------- /shared/common/ui/customScrollbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/customScrollbar/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/icons/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/icons/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/icons/logo.tsx -------------------------------------------------------------------------------- /shared/common/ui/mobile/button/button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/mobile/button/button.module.scss -------------------------------------------------------------------------------- /shared/common/ui/mobile/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/mobile/button/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/mobile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/mobile/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/mobile/roundButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/mobile/roundButton/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/mobile/roundButton/roundButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/mobile/roundButton/roundButton.module.scss -------------------------------------------------------------------------------- /shared/common/ui/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/modal/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/modal/modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/modal/modal.module.scss -------------------------------------------------------------------------------- /shared/common/ui/navtabs/interfaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/navtabs/interfaces.tsx -------------------------------------------------------------------------------- /shared/common/ui/navtabs/mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/navtabs/mobile.tsx -------------------------------------------------------------------------------- /shared/common/ui/navtabs/mobileNavTabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/navtabs/mobileNavTabs.module.scss -------------------------------------------------------------------------------- /shared/common/ui/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/select/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/select/select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/select/select.module.scss -------------------------------------------------------------------------------- /shared/common/ui/spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/spinner/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/spinner/spinner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/spinner/spinner.module.scss -------------------------------------------------------------------------------- /shared/common/ui/splitView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/splitView/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/splitView/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/splitView/model.ts -------------------------------------------------------------------------------- /shared/common/ui/splitView/splitView.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/splitView/splitView.module.scss -------------------------------------------------------------------------------- /shared/common/ui/switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/switch/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/switch/switch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/switch/switch.module.scss -------------------------------------------------------------------------------- /shared/common/ui/switcherButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/switcherButton/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/switcherButton/switcherButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/switcherButton/switcherButton.module.scss -------------------------------------------------------------------------------- /shared/common/ui/themeSwitcher/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/themeSwitcher/icons.tsx -------------------------------------------------------------------------------- /shared/common/ui/themeSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/themeSwitcher/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/themeSwitcher/themeSwitcher.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/themeSwitcher/themeSwitcher.module.scss -------------------------------------------------------------------------------- /shared/common/ui/toggleSwitch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/toggleSwitch/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/toggleSwitch/toggleSwitch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/toggleSwitch/toggleSwitch.module.scss -------------------------------------------------------------------------------- /shared/common/ui/tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/tooltip/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/tooltip/tooltip.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/tooltip/tooltip.module.scss -------------------------------------------------------------------------------- /shared/common/ui/verticalTabBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/verticalTabBar/index.tsx -------------------------------------------------------------------------------- /shared/common/ui/verticalTabBar/verticalTabBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/ui/verticalTabBar/verticalTabBar.module.scss -------------------------------------------------------------------------------- /shared/common/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/array.ts -------------------------------------------------------------------------------- /shared/common/utils/assertNever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/assertNever.ts -------------------------------------------------------------------------------- /shared/common/utils/classNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/classNames.ts -------------------------------------------------------------------------------- /shared/common/utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/debug.ts -------------------------------------------------------------------------------- /shared/common/utils/easing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/easing.ts -------------------------------------------------------------------------------- /shared/common/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/format.ts -------------------------------------------------------------------------------- /shared/common/utils/fuzzysortHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/fuzzysortHighlight.tsx -------------------------------------------------------------------------------- /shared/common/utils/localStorageCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/localStorageCache.ts -------------------------------------------------------------------------------- /shared/common/utils/markString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/markString.tsx -------------------------------------------------------------------------------- /shared/common/utils/moduleNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/moduleNames.ts -------------------------------------------------------------------------------- /shared/common/utils/relativeTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/relativeTime.tsx -------------------------------------------------------------------------------- /shared/common/utils/renderJsonResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/common/utils/renderJsonResult.ts -------------------------------------------------------------------------------- /shared/inspector/buildItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/buildItem.tsx -------------------------------------------------------------------------------- /shared/inspector/buildScalar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/buildScalar.tsx -------------------------------------------------------------------------------- /shared/inspector/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/context.ts -------------------------------------------------------------------------------- /shared/inspector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/index.tsx -------------------------------------------------------------------------------- /shared/inspector/inspector.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/inspector.module.scss -------------------------------------------------------------------------------- /shared/inspector/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/package.json -------------------------------------------------------------------------------- /shared/inspector/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/state.ts -------------------------------------------------------------------------------- /shared/inspector/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/styles.d.ts -------------------------------------------------------------------------------- /shared/inspector/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/inspector/tsconfig.json -------------------------------------------------------------------------------- /shared/lang-edgeql/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/debug.js -------------------------------------------------------------------------------- /shared/lang-edgeql/edgeql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/edgeql.ts -------------------------------------------------------------------------------- /shared/lang-edgeql/genMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/genMeta.js -------------------------------------------------------------------------------- /shared/lang-edgeql/lang.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/lang.grammar -------------------------------------------------------------------------------- /shared/lang-edgeql/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/lang.js -------------------------------------------------------------------------------- /shared/lang-edgeql/lang.terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/lang.terms.js -------------------------------------------------------------------------------- /shared/lang-edgeql/meta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/meta.d.ts -------------------------------------------------------------------------------- /shared/lang-edgeql/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/meta.js -------------------------------------------------------------------------------- /shared/lang-edgeql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/package.json -------------------------------------------------------------------------------- /shared/lang-edgeql/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/lang-edgeql/tokens.js -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/SchemaLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/SchemaLink.tsx -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/SchemaNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/SchemaNode.tsx -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/SchemaNodeLinkProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/SchemaNodeLinkProps.tsx -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/SchemaNodeObject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/SchemaNodeObject.tsx -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/debug.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/debug.module.scss -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/debug.tsx -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/index.tsx -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/interfaces.ts -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaGraph/schemaGraph.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaGraph/schemaGraph.module.scss -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaMinimap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaMinimap/index.tsx -------------------------------------------------------------------------------- /shared/schemaGraph/components/schemaMinimap/schemaMinimap.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/components/schemaMinimap/schemaMinimap.module.scss -------------------------------------------------------------------------------- /shared/schemaGraph/core/aStar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/aStar.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/focusedLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/focusedLayout.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/grid.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/index.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/interfaces.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/linkLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/linkLayout.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/routeLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/routeLinks.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/utils.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/webcolaLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/webcolaLayout.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/worker/index.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/worker/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/worker/interfaces.ts -------------------------------------------------------------------------------- /shared/schemaGraph/core/worker/layout.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/core/worker/layout.worker.ts -------------------------------------------------------------------------------- /shared/schemaGraph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/index.ts -------------------------------------------------------------------------------- /shared/schemaGraph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/package.json -------------------------------------------------------------------------------- /shared/schemaGraph/state/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/state/graph.ts -------------------------------------------------------------------------------- /shared/schemaGraph/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/state/index.ts -------------------------------------------------------------------------------- /shared/schemaGraph/state/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/state/interfaces.ts -------------------------------------------------------------------------------- /shared/schemaGraph/state/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/state/provider.ts -------------------------------------------------------------------------------- /shared/schemaGraph/state/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/state/query.ts -------------------------------------------------------------------------------- /shared/schemaGraph/state/sidepanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/schemaGraph/state/sidepanel.ts -------------------------------------------------------------------------------- /shared/studio/components/dataEditor/dataEditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/dataEditor/dataEditor.module.scss -------------------------------------------------------------------------------- /shared/studio/components/dataEditor/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/dataEditor/editor.tsx -------------------------------------------------------------------------------- /shared/studio/components/dataEditor/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/dataEditor/icons.tsx -------------------------------------------------------------------------------- /shared/studio/components/dataEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/dataEditor/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/dataEditor/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/dataEditor/parsers.ts -------------------------------------------------------------------------------- /shared/studio/components/dataEditor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/dataEditor/utils.ts -------------------------------------------------------------------------------- /shared/studio/components/databasePage/databasePage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/databasePage/databasePage.module.scss -------------------------------------------------------------------------------- /shared/studio/components/databasePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/databasePage/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/errorPage/errorPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/errorPage/errorPage.module.scss -------------------------------------------------------------------------------- /shared/studio/components/errorPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/errorPage/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/explainVis/codeEditorContexts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/explainVis/codeEditorContexts.tsx -------------------------------------------------------------------------------- /shared/studio/components/explainVis/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/explainVis/codeblock.tsx -------------------------------------------------------------------------------- /shared/studio/components/explainVis/explainVis.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/explainVis/explainVis.module.scss -------------------------------------------------------------------------------- /shared/studio/components/explainVis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/explainVis/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/explainVis/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/explainVis/state.ts -------------------------------------------------------------------------------- /shared/studio/components/explainVis/treemapLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/explainVis/treemapLayout.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/hexViewer/hexViewer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/hexViewer/hexViewer.module.scss -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/hexViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/hexViewer/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/hexViewer/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/hexViewer/state.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/jsonViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/jsonViewer/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/jsonViewer/jsonViewer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/jsonViewer/jsonViewer.module.scss -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/controlPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/controlPoint.png -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/editableGeom/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/editableGeom/convert.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/editableGeom/curves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/editableGeom/curves.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/editableGeom/geojsonTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/editableGeom/geojsonTypes.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/editableGeom/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/editableGeom/types.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/editableGeom/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/editableGeom/utils.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/icons.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/postgisViewer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/postgisViewer.module.scss -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/state.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/styles/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/styles/LICENSE.md -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/styles/dark_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/styles/dark_layers.json -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/styles/layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/styles/layers.ts -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/styles/light_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/styles/light_layers.json -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/toolbar.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/postgisViewer/wktRenderers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/postgisViewer/wktRenderers.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/shared.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/shared.module.scss -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/shared.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/textViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/textViewer/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/extendedViewers/textViewer/textViewer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/extendedViewers/textViewer/textViewer.module.scss -------------------------------------------------------------------------------- /shared/studio/components/headerNav/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/headerNav/elements.tsx -------------------------------------------------------------------------------- /shared/studio/components/headerNav/headerNav.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/headerNav/headerNav.module.scss -------------------------------------------------------------------------------- /shared/studio/components/headerNav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/headerNav/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/lazyTabs/lazyTabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/lazyTabs/lazyTabs.module.scss -------------------------------------------------------------------------------- /shared/studio/components/modals/createBranch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/modals/createBranch.tsx -------------------------------------------------------------------------------- /shared/studio/components/modals/modals.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/modals/modals.module.scss -------------------------------------------------------------------------------- /shared/studio/components/objectTypeSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/objectTypeSelect/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/sessionState/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/sessionState/icons.tsx -------------------------------------------------------------------------------- /shared/studio/components/sessionState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/sessionState/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/sessionState/sessionState.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/sessionState/sessionState.module.scss -------------------------------------------------------------------------------- /shared/studio/components/visualQuerybuilder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/visualQuerybuilder/index.tsx -------------------------------------------------------------------------------- /shared/studio/components/visualQuerybuilder/queryBuilder.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/visualQuerybuilder/queryBuilder.module.scss -------------------------------------------------------------------------------- /shared/studio/components/visualQuerybuilder/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/components/visualQuerybuilder/state.ts -------------------------------------------------------------------------------- /shared/studio/hooks/dbRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/hooks/dbRoute.ts -------------------------------------------------------------------------------- /shared/studio/icons/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/icons/checkbox_checked.svg -------------------------------------------------------------------------------- /shared/studio/icons/docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/icons/docs.tsx -------------------------------------------------------------------------------- /shared/studio/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/icons/index.tsx -------------------------------------------------------------------------------- /shared/studio/idbStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/idbStore/index.ts -------------------------------------------------------------------------------- /shared/studio/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /shared/studio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/package.json -------------------------------------------------------------------------------- /shared/studio/state/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/state/connection.ts -------------------------------------------------------------------------------- /shared/studio/state/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/state/database.ts -------------------------------------------------------------------------------- /shared/studio/state/explainGraphSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/state/explainGraphSettings.ts -------------------------------------------------------------------------------- /shared/studio/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/state/index.ts -------------------------------------------------------------------------------- /shared/studio/state/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/state/instance.ts -------------------------------------------------------------------------------- /shared/studio/state/sessionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/state/sessionState.ts -------------------------------------------------------------------------------- /shared/studio/state/utils/lru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/state/utils/lru.ts -------------------------------------------------------------------------------- /shared/studio/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/styles.d.ts -------------------------------------------------------------------------------- /shared/studio/tabs/ai/ai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/ai.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/ai/aiAdmin.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/aiAdmin.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/ai/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/ai/logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/logos.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/ai/playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/playground.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/ai/prompts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/prompts.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/ai/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/providers.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/ai/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/state/index.ts -------------------------------------------------------------------------------- /shared/studio/tabs/ai/state/rag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/ai/state/rag.ts -------------------------------------------------------------------------------- /shared/studio/tabs/auth/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/auth.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/authAdmin.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/authAdmin.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/auth/colourUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/colourUtils.ts -------------------------------------------------------------------------------- /shared/studio/tabs/auth/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/config.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/icons.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/loginUIPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/loginUIPreview.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/loginuipreview.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/loginuipreview.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/auth/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/providers.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/shared.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/smtp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/smtp.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/state/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/state/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/auth/webhooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/auth/webhooks.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/dashboard/databaseDashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dashboard/databaseDashboard.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/dashboard/exampleSchema.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dashboard/exampleSchema.mts -------------------------------------------------------------------------------- /shared/studio/tabs/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dashboard/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/dataInspector.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/dataInspector.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/dataInspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/dataInspector.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/dataview.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/dataview.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/editsModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/editsModal.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/fieldConfig.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/fieldConfig.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/fieldConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/fieldConfig.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/icons.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/reviewEditsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/reviewEditsModal.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/state/edits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/state/edits.ts -------------------------------------------------------------------------------- /shared/studio/tabs/dataview/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/dataview/state/index.ts -------------------------------------------------------------------------------- /shared/studio/tabs/graphql/graphql.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/graphql/graphql.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/graphql/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/graphql/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/graphql/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/graphql/lang.ts -------------------------------------------------------------------------------- /shared/studio/tabs/graphql/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/graphql/state/index.ts -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/analyze.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/analyze.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/filters.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/perfStats.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/perfStats.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/state/index.ts -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/statsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/statsChart.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/statsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/statsTable.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/perfStats/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/perfStats/utils.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/history.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/paramEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/paramEditor/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/paramEditor/paramEditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/paramEditor/paramEditor.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/queryeditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/queryeditor.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/state/extractQueryParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/state/extractQueryParameters.ts -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/state/index.ts -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/state/parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/state/parameters.ts -------------------------------------------------------------------------------- /shared/studio/tabs/queryEditor/state/thumbnailGen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/queryEditor/state/thumbnailGen.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/repl/commands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/repl/commands.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/repl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/repl/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/repl/repl.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/repl/repl.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/repl/state/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/repl/state/commands.ts -------------------------------------------------------------------------------- /shared/studio/tabs/repl/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/repl/state/index.ts -------------------------------------------------------------------------------- /shared/studio/tabs/repl/state/itemHeights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/repl/state/itemHeights.ts -------------------------------------------------------------------------------- /shared/studio/tabs/repl/state/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/repl/state/utils.ts -------------------------------------------------------------------------------- /shared/studio/tabs/schema/graphView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/graphView.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/alias.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/alias.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/annotation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/annotation.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/constraint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/constraint.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/extension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/extension.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/function.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/function.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/global.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/index.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/module.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/object.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/object.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/operator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/operator.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/pointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/pointer.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/scalar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/scalar.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/schemaIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/schemaIndex.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/renderers/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/renderers/utils.tsx -------------------------------------------------------------------------------- /shared/studio/tabs/schema/schema.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/schema.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/schema/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/state/index.ts -------------------------------------------------------------------------------- /shared/studio/tabs/schema/state/textView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/state/textView.ts -------------------------------------------------------------------------------- /shared/studio/tabs/schema/textView.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/textView.module.scss -------------------------------------------------------------------------------- /shared/studio/tabs/schema/textView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tabs/schema/textView.tsx -------------------------------------------------------------------------------- /shared/studio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/tsconfig.json -------------------------------------------------------------------------------- /shared/studio/utils/completer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/utils/completer.ts -------------------------------------------------------------------------------- /shared/studio/utils/decodeRawBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/utils/decodeRawBuffer.ts -------------------------------------------------------------------------------- /shared/studio/utils/extractErrorDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/utils/extractErrorDetails.ts -------------------------------------------------------------------------------- /shared/studio/utils/formatDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/utils/formatDuration.ts -------------------------------------------------------------------------------- /shared/studio/utils/rewriteTypedesc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/utils/rewriteTypedesc.ts -------------------------------------------------------------------------------- /shared/studio/utils/syntaxTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/shared/studio/utils/syntaxTree.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/README.md -------------------------------------------------------------------------------- /web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/eslint.config.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/package.json -------------------------------------------------------------------------------- /web/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/playwright.config.ts -------------------------------------------------------------------------------- /web/playwright/_globalSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/playwright/_globalSetup.ts -------------------------------------------------------------------------------- /web/playwright/_globalTeardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/playwright/_globalTeardown.ts -------------------------------------------------------------------------------- /web/playwright/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/playwright/auth.json -------------------------------------------------------------------------------- /web/playwright/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/playwright/fixtures.ts -------------------------------------------------------------------------------- /web/playwright/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/playwright/index.ts -------------------------------------------------------------------------------- /web/public/android-chrome-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/public/android-chrome-192.png -------------------------------------------------------------------------------- /web/public/android-chrome-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/public/android-chrome-512.png -------------------------------------------------------------------------------- /web/public/app.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/public/app.webmanifest -------------------------------------------------------------------------------- /web/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/public/apple-touch-icon.png -------------------------------------------------------------------------------- /web/public/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/public/favicon-16.png -------------------------------------------------------------------------------- /web/public/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/public/favicon-32.png -------------------------------------------------------------------------------- /web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/public/robots.txt -------------------------------------------------------------------------------- /web/src/app.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/app.module.scss -------------------------------------------------------------------------------- /web/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/app.tsx -------------------------------------------------------------------------------- /web/src/components/databasePage/databasePage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/databasePage/databasePage.module.scss -------------------------------------------------------------------------------- /web/src/components/databasePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/databasePage/index.tsx -------------------------------------------------------------------------------- /web/src/components/header/header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/header/header.module.scss -------------------------------------------------------------------------------- /web/src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/header/index.tsx -------------------------------------------------------------------------------- /web/src/components/instancePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/instancePage/index.tsx -------------------------------------------------------------------------------- /web/src/components/instancePage/instancePage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/instancePage/instancePage.module.scss -------------------------------------------------------------------------------- /web/src/components/loginPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/loginPage/index.tsx -------------------------------------------------------------------------------- /web/src/components/loginPage/loginPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/loginPage/loginPage.module.scss -------------------------------------------------------------------------------- /web/src/components/main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/main/index.tsx -------------------------------------------------------------------------------- /web/src/components/main/main.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/components/main/main.module.scss -------------------------------------------------------------------------------- /web/src/fonts/edgedb-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/fonts/edgedb-300.woff2 -------------------------------------------------------------------------------- /web/src/fonts/edgedb-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/fonts/edgedb-400.woff2 -------------------------------------------------------------------------------- /web/src/fonts/edgedb-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/fonts/edgedb-500.woff2 -------------------------------------------------------------------------------- /web/src/fonts/edgedb-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/fonts/edgedb-600.woff2 -------------------------------------------------------------------------------- /web/src/fonts/edgedb-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/fonts/edgedb-700.woff2 -------------------------------------------------------------------------------- /web/src/fonts/include.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/fonts/include.scss -------------------------------------------------------------------------------- /web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/index.css -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/main.tsx -------------------------------------------------------------------------------- /web/src/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/mixins.scss -------------------------------------------------------------------------------- /web/src/state/models/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/state/models/app.ts -------------------------------------------------------------------------------- /web/src/state/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/state/providers.ts -------------------------------------------------------------------------------- /web/src/state/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/state/store.ts -------------------------------------------------------------------------------- /web/src/utils/reportAccessibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/src/utils/reportAccessibility.ts -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/tests/clientSettings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tests/clientSettings.spec.ts -------------------------------------------------------------------------------- /web/tests/dataViewer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tests/dataViewer.spec.ts -------------------------------------------------------------------------------- /web/tests/queryEditor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tests/queryEditor.spec.ts -------------------------------------------------------------------------------- /web/tests/repl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tests/repl.spec.ts -------------------------------------------------------------------------------- /web/tests/schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tests/schema.spec.ts -------------------------------------------------------------------------------- /web/tests/simple.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tests/simple.spec.ts -------------------------------------------------------------------------------- /web/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tsconfig.app.json -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/tsconfig.node.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/web/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/gel-ui/HEAD/yarn.lock --------------------------------------------------------------------------------