├── .all-contributorsrc ├── .cargo └── config.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── astro-build-status.yml │ ├── code-quality.yml │ ├── pr-quality.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc.json ├── .release-it.json ├── .vscode └── settings.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── apps ├── desktop │ ├── .gitignore │ ├── CHANGELOG.md │ ├── components.json │ ├── eslint.config.mjs │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── icons │ │ │ ├── cube.svg │ │ │ ├── graphql.svg │ │ │ ├── planet.svg │ │ │ └── swagger.svg │ │ └── logo.svg │ ├── src-tauri │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── capabilities │ │ │ └── main.json │ │ ├── icons │ │ │ ├── 128x128.png │ │ │ ├── 128x128@2x.png │ │ │ ├── 32x32.png │ │ │ ├── Square107x107Logo.png │ │ │ ├── Square142x142Logo.png │ │ │ ├── Square150x150Logo.png │ │ │ ├── Square284x284Logo.png │ │ │ ├── Square30x30Logo.png │ │ │ ├── Square310x310Logo.png │ │ │ ├── Square44x44Logo.png │ │ │ ├── Square71x71Logo.png │ │ │ ├── Square89x89Logo.png │ │ │ ├── StoreLogo.png │ │ │ ├── icon.icns │ │ │ ├── icon.ico │ │ │ └── icon.png │ │ ├── migrations │ │ │ └── 20251002151424_init.sql │ │ ├── src │ │ │ ├── cli.rs │ │ │ ├── commands │ │ │ │ ├── connection.rs │ │ │ │ ├── fs.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── row.rs │ │ │ │ └── table.rs │ │ │ ├── main.rs │ │ │ ├── state.rs │ │ │ └── updater.rs │ │ ├── tauri.conf.json │ │ └── tauri.conf.prod.json │ ├── src │ │ ├── bindings.ts │ │ ├── commands │ │ │ ├── connection.ts │ │ │ └── row.ts │ │ ├── components │ │ │ ├── custom-tooltip.tsx │ │ │ ├── custom │ │ │ │ ├── date-input.tsx │ │ │ │ ├── searchable-input.tsx │ │ │ │ └── tooltip-button.tsx │ │ │ ├── data-table │ │ │ │ ├── data-table-column-header.tsx │ │ │ │ ├── data-table-config.ts │ │ │ │ ├── data-table-filter-list.tsx │ │ │ │ ├── data-table-pagination.tsx │ │ │ │ ├── data-table-range-filter.tsx │ │ │ │ ├── data-table-skeleton.tsx │ │ │ │ ├── data-table-sort-list.tsx │ │ │ │ ├── data-table-view-options.tsx │ │ │ │ └── data-table.tsx │ │ │ ├── dialogs │ │ │ │ └── error-dialog.tsx │ │ │ ├── icons │ │ │ │ ├── mysql.tsx │ │ │ │ ├── postgres.tsx │ │ │ │ └── sqlite.tsx │ │ │ ├── loading-spinner.tsx │ │ │ └── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── alert-dialog.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── breadcrumb.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── collapsible.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── context-menu.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── empty.tsx │ │ │ │ ├── faceted.tsx │ │ │ │ ├── form.tsx │ │ │ │ ├── input-group.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── kbd.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── loading-button.tsx │ │ │ │ ├── pagination.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── radio-group.tsx │ │ │ │ ├── resizable.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── sheet.tsx │ │ │ │ ├── sidebar.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── sonner.tsx │ │ │ │ ├── sortable.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── text-area.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ └── tooltip.tsx │ │ ├── features │ │ │ ├── about │ │ │ │ └── about.tsx │ │ │ ├── command-palette │ │ │ │ ├── palette.tsx │ │ │ │ └── state.ts │ │ │ ├── common │ │ │ │ └── db-context.ts │ │ │ ├── connections │ │ │ │ ├── components │ │ │ │ │ ├── common-connection-opts.tsx │ │ │ │ │ ├── connection-card.tsx │ │ │ │ │ ├── connection-form.tsx │ │ │ │ │ └── new-connection-btn.tsx │ │ │ │ └── schema.ts │ │ │ ├── keybindings │ │ │ │ ├── action-utils.tsx │ │ │ │ ├── components │ │ │ │ │ └── available-keybindings.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── keybindings.tsx │ │ │ │ └── manager.ts │ │ │ ├── settings │ │ │ │ ├── components │ │ │ │ │ ├── enum-select-input.tsx │ │ │ │ │ └── settings.tsx │ │ │ │ ├── context.tsx │ │ │ │ └── preferences.tsx │ │ │ ├── sql-editor │ │ │ │ └── editor.tsx │ │ │ └── table-view │ │ │ │ ├── columns.tsx │ │ │ │ ├── components │ │ │ │ ├── create-row-sheet.tsx │ │ │ │ ├── dynamic-input.tsx │ │ │ │ ├── edit-row-sheet.tsx │ │ │ │ ├── selected-rows-actions.tsx │ │ │ │ └── table-selection-breadcrumb.tsx │ │ │ │ ├── context.ts │ │ │ │ ├── queries.ts │ │ │ │ └── schemas.ts │ │ ├── hooks │ │ │ ├── row.ts │ │ │ ├── use-callback-ref.ts │ │ │ ├── use-composed-refs.ts │ │ │ ├── use-setup-code-mirror.ts │ │ │ ├── use-setup-data-table.ts │ │ │ ├── use-setup-pagination.ts │ │ │ └── use-tauri-event-listener.ts │ │ ├── index.css │ │ ├── lib │ │ │ ├── constants.ts │ │ │ ├── data-table.ts │ │ │ ├── editor-ext.ts │ │ │ ├── parsers.ts │ │ │ ├── types.ts │ │ │ └── utils.tsx │ │ ├── main.tsx │ │ ├── routeTree.gen.ts │ │ ├── routes │ │ │ ├── -components │ │ │ │ ├── settings-layout-sidebar.tsx │ │ │ │ └── table-layout-sidebar.tsx │ │ │ ├── __root.tsx │ │ │ ├── _settings-layout.settings │ │ │ │ └── preferences │ │ │ │ │ └── route.tsx │ │ │ ├── _settings-layout.tsx │ │ │ ├── connection.$connId │ │ │ │ ├── _table-layout.tsx │ │ │ │ └── _table-layout │ │ │ │ │ ├── sql-editor │ │ │ │ │ └── route.tsx │ │ │ │ │ ├── table-view │ │ │ │ │ ├── $tableName │ │ │ │ │ │ ├── -components │ │ │ │ │ │ │ └── fk-dropdown.tsx │ │ │ │ │ │ └── route.tsx │ │ │ │ │ └── empty │ │ │ │ │ │ └── route.tsx │ │ │ │ │ └── utilities │ │ │ │ │ └── route.tsx │ │ │ └── index │ │ │ │ └── route.tsx │ │ ├── state │ │ │ ├── dialogState.ts │ │ │ ├── sheetState.ts │ │ │ └── tableState.ts │ │ ├── types │ │ │ ├── data-table.ts │ │ │ └── index.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── web │ ├── .gitignore │ ├── astro.config.mjs │ ├── components.json │ ├── ec.config.mjs │ ├── eslint.config.js │ ├── package.json │ ├── public │ └── billboard.png │ ├── src │ ├── assets │ │ ├── logo-docs.svg │ │ ├── logo.svg │ │ ├── overview.png │ │ └── star.svg │ ├── components │ │ ├── docs │ │ │ └── RemoteMD.astro │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ └── tooltip.tsx │ ├── content │ │ ├── config.ts │ │ └── docs │ │ │ ├── changelog │ │ │ └── index.mdx │ │ │ ├── contributing │ │ │ └── index.mdx │ │ │ ├── features │ │ │ ├── api-docs.mdx │ │ │ ├── cli.mdx │ │ │ ├── keybindings.mdx │ │ │ ├── settings.mdx │ │ │ └── updater.mdx │ │ │ ├── overview │ │ │ └── index.mdx │ │ │ └── references │ │ │ ├── cli.mdx │ │ │ ├── keybindings.md │ │ │ └── settings.mdx │ ├── env.d.ts │ ├── layouts │ │ ├── Layout.astro │ │ └── MaxWidthWrapper.astro │ ├── lib │ │ └── settings-generator.ts │ ├── pages │ │ └── index.astro │ ├── sections │ │ ├── Download │ │ │ ├── Download.astro │ │ │ └── DownloadTable.astro │ │ ├── Features │ │ │ ├── cards │ │ │ │ ├── api-docs.tsx │ │ │ │ ├── cli.tsx │ │ │ │ ├── command-palette.tsx │ │ │ │ ├── cross-platform.tsx │ │ │ │ ├── keybindings.tsx │ │ │ │ ├── open-source.tsx │ │ │ │ ├── settings.tsx │ │ │ │ └── updater.tsx │ │ │ ├── components │ │ │ │ ├── bento-grid.tsx │ │ │ │ └── highlight.tsx │ │ │ └── features.tsx │ │ ├── Footer │ │ │ └── Footer.astro │ │ ├── Heading │ │ │ ├── Heading.astro │ │ │ ├── animated-star.tsx │ │ │ └── download-btn.tsx │ │ └── Nav │ │ │ ├── Nav.astro │ │ │ ├── desktop-nav.tsx │ │ │ ├── home-btn.tsx │ │ │ └── mobile-nav.tsx │ └── styles │ │ ├── docs.css │ │ └── globals.css │ ├── tailwind.config.ts │ └── tsconfig.json ├── bun.lock ├── crates ├── tx-handlers │ ├── Cargo.toml │ └── src │ │ ├── database.rs │ │ ├── lib.rs │ │ ├── mysql.rs │ │ ├── postgres.rs │ │ ├── query.rs │ │ ├── schema.rs │ │ └── sqlite.rs ├── tx-keybindings │ ├── Cargo.toml │ └── src │ │ ├── default.rs │ │ ├── fs.rs │ │ ├── lib.rs │ │ └── schema.rs ├── tx-lib │ ├── Cargo.toml │ └── src │ │ ├── error.rs │ │ ├── events.rs │ │ ├── fs.rs │ │ ├── lib.rs │ │ └── types.rs └── tx-settings │ ├── Cargo.toml │ ├── schema.json │ └── src │ ├── fs.rs │ ├── lib.rs │ ├── main.rs │ └── schema.rs ├── docker-compose.yml ├── docs └── billboard.png ├── package.json ├── packages ├── config │ └── tailwind │ │ ├── package.json │ │ └── src │ │ └── index.ts └── lib │ ├── package.json │ ├── src │ ├── index.ts │ └── utils.ts │ └── tsconfig.json ├── scripts ├── prepare_metax.ps1 └── prepare_metax.sh └── tsconfig.base.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/astro-build-status.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.github/workflows/astro-build-status.yml -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.github/workflows/pr-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.github/workflows/pr-quality.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/README.md -------------------------------------------------------------------------------- /apps/desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/.gitignore -------------------------------------------------------------------------------- /apps/desktop/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/CHANGELOG.md -------------------------------------------------------------------------------- /apps/desktop/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/components.json -------------------------------------------------------------------------------- /apps/desktop/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/eslint.config.mjs -------------------------------------------------------------------------------- /apps/desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/index.html -------------------------------------------------------------------------------- /apps/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/package.json -------------------------------------------------------------------------------- /apps/desktop/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/postcss.config.js -------------------------------------------------------------------------------- /apps/desktop/public/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/public/icons/cube.svg -------------------------------------------------------------------------------- /apps/desktop/public/icons/graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/public/icons/graphql.svg -------------------------------------------------------------------------------- /apps/desktop/public/icons/planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/public/icons/planet.svg -------------------------------------------------------------------------------- /apps/desktop/public/icons/swagger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/public/icons/swagger.svg -------------------------------------------------------------------------------- /apps/desktop/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/public/logo.svg -------------------------------------------------------------------------------- /apps/desktop/src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/.gitignore -------------------------------------------------------------------------------- /apps/desktop/src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /apps/desktop/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /apps/desktop/src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/build.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/capabilities/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/capabilities/main.json -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/migrations/20251002151424_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/migrations/20251002151424_init.sql -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/cli.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/commands/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/commands/connection.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/commands/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/commands/fs.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/commands/mod.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/commands/row.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/commands/row.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/commands/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/commands/table.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/main.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/state.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/updater.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/src/updater.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /apps/desktop/src-tauri/tauri.conf.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src-tauri/tauri.conf.prod.json -------------------------------------------------------------------------------- /apps/desktop/src/bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/bindings.ts -------------------------------------------------------------------------------- /apps/desktop/src/commands/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/commands/connection.ts -------------------------------------------------------------------------------- /apps/desktop/src/commands/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/commands/row.ts -------------------------------------------------------------------------------- /apps/desktop/src/components/custom-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/custom-tooltip.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/custom/date-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/custom/date-input.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/custom/searchable-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/custom/searchable-input.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/custom/tooltip-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/custom/tooltip-button.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-column-header.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-config.ts -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-filter-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-filter-list.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-pagination.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-range-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-range-filter.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-skeleton.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-sort-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-sort-list.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table-view-options.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/data-table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/data-table/data-table.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/dialogs/error-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/dialogs/error-dialog.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/icons/mysql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/icons/mysql.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/icons/postgres.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/icons/postgres.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/icons/sqlite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/icons/sqlite.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/loading-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/loading-spinner.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/empty.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/faceted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/faceted.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/form.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/input-group.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/input.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/kbd.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/label.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/loading-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/loading-button.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/select.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/sortable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/sortable.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/table.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/text-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/text-area.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/desktop/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/about/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/about/about.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/command-palette/palette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/command-palette/palette.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/command-palette/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/command-palette/state.ts -------------------------------------------------------------------------------- /apps/desktop/src/features/common/db-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/common/db-context.ts -------------------------------------------------------------------------------- /apps/desktop/src/features/connections/components/common-connection-opts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/connections/components/common-connection-opts.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/connections/components/connection-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/connections/components/connection-card.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/connections/components/connection-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/connections/components/connection-form.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/connections/components/new-connection-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/connections/components/new-connection-btn.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/connections/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/connections/schema.ts -------------------------------------------------------------------------------- /apps/desktop/src/features/keybindings/action-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/keybindings/action-utils.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/keybindings/components/available-keybindings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/keybindings/components/available-keybindings.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/keybindings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/keybindings/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/features/keybindings/keybindings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/keybindings/keybindings.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/keybindings/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/keybindings/manager.ts -------------------------------------------------------------------------------- /apps/desktop/src/features/settings/components/enum-select-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/settings/components/enum-select-input.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/settings/components/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/settings/components/settings.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/settings/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/settings/context.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/settings/preferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/settings/preferences.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/sql-editor/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/sql-editor/editor.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/columns.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/components/create-row-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/components/create-row-sheet.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/components/dynamic-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/components/dynamic-input.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/components/edit-row-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/components/edit-row-sheet.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/components/selected-rows-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/components/selected-rows-actions.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/components/table-selection-breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/components/table-selection-breadcrumb.tsx -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/context.ts -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/queries.ts -------------------------------------------------------------------------------- /apps/desktop/src/features/table-view/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/features/table-view/schemas.ts -------------------------------------------------------------------------------- /apps/desktop/src/hooks/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/hooks/row.ts -------------------------------------------------------------------------------- /apps/desktop/src/hooks/use-callback-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/hooks/use-callback-ref.ts -------------------------------------------------------------------------------- /apps/desktop/src/hooks/use-composed-refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/hooks/use-composed-refs.ts -------------------------------------------------------------------------------- /apps/desktop/src/hooks/use-setup-code-mirror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/hooks/use-setup-code-mirror.ts -------------------------------------------------------------------------------- /apps/desktop/src/hooks/use-setup-data-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/hooks/use-setup-data-table.ts -------------------------------------------------------------------------------- /apps/desktop/src/hooks/use-setup-pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/hooks/use-setup-pagination.ts -------------------------------------------------------------------------------- /apps/desktop/src/hooks/use-tauri-event-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/hooks/use-tauri-event-listener.ts -------------------------------------------------------------------------------- /apps/desktop/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/index.css -------------------------------------------------------------------------------- /apps/desktop/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/lib/constants.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/data-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/lib/data-table.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/editor-ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/lib/editor-ext.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/lib/parsers.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/lib/types.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/lib/utils.tsx -------------------------------------------------------------------------------- /apps/desktop/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/main.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routeTree.gen.ts -------------------------------------------------------------------------------- /apps/desktop/src/routes/-components/settings-layout-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/-components/settings-layout-sidebar.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/-components/table-layout-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/-components/table-layout-sidebar.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/__root.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/_settings-layout.settings/preferences/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/_settings-layout.settings/preferences/route.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/_settings-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/_settings-layout.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/connection.$connId/_table-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/connection.$connId/_table-layout.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/connection.$connId/_table-layout/sql-editor/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/connection.$connId/_table-layout/sql-editor/route.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/connection.$connId/_table-layout/table-view/$tableName/-components/fk-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/connection.$connId/_table-layout/table-view/$tableName/-components/fk-dropdown.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/connection.$connId/_table-layout/table-view/$tableName/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/connection.$connId/_table-layout/table-view/$tableName/route.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/connection.$connId/_table-layout/table-view/empty/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/connection.$connId/_table-layout/table-view/empty/route.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/connection.$connId/_table-layout/utilities/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/connection.$connId/_table-layout/utilities/route.tsx -------------------------------------------------------------------------------- /apps/desktop/src/routes/index/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/routes/index/route.tsx -------------------------------------------------------------------------------- /apps/desktop/src/state/dialogState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/state/dialogState.ts -------------------------------------------------------------------------------- /apps/desktop/src/state/sheetState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/state/sheetState.ts -------------------------------------------------------------------------------- /apps/desktop/src/state/tableState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/state/tableState.ts -------------------------------------------------------------------------------- /apps/desktop/src/types/data-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/types/data-table.ts -------------------------------------------------------------------------------- /apps/desktop/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/src/types/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/desktop/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/tailwind.config.ts -------------------------------------------------------------------------------- /apps/desktop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/tsconfig.json -------------------------------------------------------------------------------- /apps/desktop/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/tsconfig.node.json -------------------------------------------------------------------------------- /apps/desktop/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/desktop/vite.config.ts -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/astro.config.mjs -------------------------------------------------------------------------------- /apps/web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/components.json -------------------------------------------------------------------------------- /apps/web/ec.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/ec.config.mjs -------------------------------------------------------------------------------- /apps/web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/eslint.config.js -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/public/billboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/public/billboard.png -------------------------------------------------------------------------------- /apps/web/src/assets/logo-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/assets/logo-docs.svg -------------------------------------------------------------------------------- /apps/web/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/assets/logo.svg -------------------------------------------------------------------------------- /apps/web/src/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/assets/overview.png -------------------------------------------------------------------------------- /apps/web/src/assets/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/assets/star.svg -------------------------------------------------------------------------------- /apps/web/src/components/docs/RemoteMD.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/docs/RemoteMD.astro -------------------------------------------------------------------------------- /apps/web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/ui/table.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/web/src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/config.ts -------------------------------------------------------------------------------- /apps/web/src/content/docs/changelog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/changelog/index.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/contributing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/contributing/index.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/features/api-docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/features/api-docs.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/features/cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/features/cli.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/features/keybindings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/features/keybindings.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/features/settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/features/settings.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/features/updater.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/features/updater.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/overview/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/overview/index.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/references/cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/references/cli.mdx -------------------------------------------------------------------------------- /apps/web/src/content/docs/references/keybindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/references/keybindings.md -------------------------------------------------------------------------------- /apps/web/src/content/docs/references/settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/content/docs/references/settings.mdx -------------------------------------------------------------------------------- /apps/web/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/env.d.ts -------------------------------------------------------------------------------- /apps/web/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/layouts/Layout.astro -------------------------------------------------------------------------------- /apps/web/src/layouts/MaxWidthWrapper.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/layouts/MaxWidthWrapper.astro -------------------------------------------------------------------------------- /apps/web/src/lib/settings-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/lib/settings-generator.ts -------------------------------------------------------------------------------- /apps/web/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/pages/index.astro -------------------------------------------------------------------------------- /apps/web/src/sections/Download/Download.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Download/Download.astro -------------------------------------------------------------------------------- /apps/web/src/sections/Download/DownloadTable.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Download/DownloadTable.astro -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/api-docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/api-docs.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/cli.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/cli.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/command-palette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/command-palette.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/cross-platform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/cross-platform.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/keybindings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/keybindings.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/open-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/open-source.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/settings.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/cards/updater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/cards/updater.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/components/bento-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/components/bento-grid.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/components/highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/components/highlight.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Features/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Features/features.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Footer/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Footer/Footer.astro -------------------------------------------------------------------------------- /apps/web/src/sections/Heading/Heading.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Heading/Heading.astro -------------------------------------------------------------------------------- /apps/web/src/sections/Heading/animated-star.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Heading/animated-star.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Heading/download-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Heading/download-btn.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Nav/Nav.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Nav/Nav.astro -------------------------------------------------------------------------------- /apps/web/src/sections/Nav/desktop-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Nav/desktop-nav.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Nav/home-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Nav/home-btn.tsx -------------------------------------------------------------------------------- /apps/web/src/sections/Nav/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/sections/Nav/mobile-nav.tsx -------------------------------------------------------------------------------- /apps/web/src/styles/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/styles/docs.css -------------------------------------------------------------------------------- /apps/web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/bun.lock -------------------------------------------------------------------------------- /crates/tx-handlers/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/Cargo.toml -------------------------------------------------------------------------------- /crates/tx-handlers/src/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/src/database.rs -------------------------------------------------------------------------------- /crates/tx-handlers/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/src/lib.rs -------------------------------------------------------------------------------- /crates/tx-handlers/src/mysql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/src/mysql.rs -------------------------------------------------------------------------------- /crates/tx-handlers/src/postgres.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/src/postgres.rs -------------------------------------------------------------------------------- /crates/tx-handlers/src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/src/query.rs -------------------------------------------------------------------------------- /crates/tx-handlers/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/src/schema.rs -------------------------------------------------------------------------------- /crates/tx-handlers/src/sqlite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-handlers/src/sqlite.rs -------------------------------------------------------------------------------- /crates/tx-keybindings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-keybindings/Cargo.toml -------------------------------------------------------------------------------- /crates/tx-keybindings/src/default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-keybindings/src/default.rs -------------------------------------------------------------------------------- /crates/tx-keybindings/src/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-keybindings/src/fs.rs -------------------------------------------------------------------------------- /crates/tx-keybindings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-keybindings/src/lib.rs -------------------------------------------------------------------------------- /crates/tx-keybindings/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-keybindings/src/schema.rs -------------------------------------------------------------------------------- /crates/tx-lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-lib/Cargo.toml -------------------------------------------------------------------------------- /crates/tx-lib/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-lib/src/error.rs -------------------------------------------------------------------------------- /crates/tx-lib/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-lib/src/events.rs -------------------------------------------------------------------------------- /crates/tx-lib/src/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-lib/src/fs.rs -------------------------------------------------------------------------------- /crates/tx-lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-lib/src/lib.rs -------------------------------------------------------------------------------- /crates/tx-lib/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-lib/src/types.rs -------------------------------------------------------------------------------- /crates/tx-settings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-settings/Cargo.toml -------------------------------------------------------------------------------- /crates/tx-settings/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-settings/schema.json -------------------------------------------------------------------------------- /crates/tx-settings/src/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-settings/src/fs.rs -------------------------------------------------------------------------------- /crates/tx-settings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-settings/src/lib.rs -------------------------------------------------------------------------------- /crates/tx-settings/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-settings/src/main.rs -------------------------------------------------------------------------------- /crates/tx-settings/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/crates/tx-settings/src/schema.rs -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/billboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/docs/billboard.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/package.json -------------------------------------------------------------------------------- /packages/config/tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/packages/config/tailwind/package.json -------------------------------------------------------------------------------- /packages/config/tailwind/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/packages/config/tailwind/src/index.ts -------------------------------------------------------------------------------- /packages/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/packages/lib/package.json -------------------------------------------------------------------------------- /packages/lib/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./utils" 2 | -------------------------------------------------------------------------------- /packages/lib/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/packages/lib/src/utils.ts -------------------------------------------------------------------------------- /packages/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/packages/lib/tsconfig.json -------------------------------------------------------------------------------- /scripts/prepare_metax.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/scripts/prepare_metax.ps1 -------------------------------------------------------------------------------- /scripts/prepare_metax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/scripts/prepare_metax.sh -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kareemmahlees/tablex/HEAD/tsconfig.base.json --------------------------------------------------------------------------------