├── .changeset ├── README.md └── config.json ├── .github └── workflows │ ├── changesets.yaml │ └── main.yaml ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .prettierrc ├── README.md ├── biome.json ├── examples └── nextjs13 │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── app │ ├── custom-commands │ │ └── page.tsx │ ├── databrowser │ │ └── page.tsx │ ├── global.css │ ├── head.tsx │ ├── init │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ └── welcome │ │ └── page.tsx │ ├── e2e │ ├── databrower-pagination.test.ts │ ├── databrowser-add-delete.test.ts │ ├── databrowser-edit-json.test.ts │ ├── databrowser-edit-string.test.ts │ ├── databrowser-freesearch.test.ts │ ├── databrowser-hash.test.ts │ ├── databrowser-json.test.ts │ ├── databrowser-list.test.ts │ ├── databrowser-set.test.ts │ ├── databrowser-string.test.ts │ ├── databrowser-test-reset-e2e.test.ts │ ├── databrowser-ttl.test.ts │ ├── databrowser-zset.test.ts │ ├── databrowser.test.ts │ └── utils │ │ └── index.ts │ ├── next.config.js │ ├── package.json │ ├── playwright.config.ts │ ├── public │ ├── favicon.ico │ ├── next.svg │ ├── thirteen.svg │ └── vercel.svg │ └── tsconfig.json ├── package.json ├── packages ├── react-cli │ ├── CHANGELOG.md │ ├── README.md │ ├── img │ │ └── cli.png │ ├── index.html │ ├── package.json │ ├── src │ │ ├── cli.css │ │ ├── index.ts │ │ ├── playground.tsx │ │ └── redis-cli.tsx │ ├── tsconfig.json │ ├── tsup.config.js │ └── vite.config.ts └── react-databrowser │ ├── CHANGELOG.md │ ├── README.md │ ├── components.json │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── src │ ├── components │ │ ├── databrowser │ │ │ ├── components │ │ │ │ ├── add-data │ │ │ │ │ └── add-data-dialog.tsx │ │ │ │ ├── data-display-container │ │ │ │ │ ├── data-delete.tsx │ │ │ │ │ ├── data-display.tsx │ │ │ │ │ ├── data-loading.tsx │ │ │ │ │ ├── data-table.tsx │ │ │ │ │ ├── data-ttl-actions.tsx │ │ │ │ │ ├── data-value-edit.tsx │ │ │ │ │ ├── delete-alert-dialog.tsx │ │ │ │ │ ├── display-scrollarea.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── missing-data-display.tsx │ │ │ │ │ └── ttl-popover.tsx │ │ │ │ ├── icons │ │ │ │ │ └── icon-braces.tsx │ │ │ │ └── sidebar │ │ │ │ │ ├── data-key-buttons.tsx │ │ │ │ │ ├── data-type-selector.tsx │ │ │ │ │ ├── display-db-size.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── reload-button.tsx │ │ │ │ │ ├── sidebar-missing-data.tsx │ │ │ │ │ └── skeleton-buttons.tsx │ │ │ ├── copy-to-clipboard-button.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useAddData.ts │ │ │ │ ├── useDebounce.ts │ │ │ │ ├── useDeleteKey.ts │ │ │ │ ├── useFetchPaginatedKeys.ts │ │ │ │ ├── useFetchSingleDataByKey │ │ │ │ │ ├── fetch-data-types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── useFetchTTLBy.ts │ │ │ │ ├── useUpdateStringAndJSON.ts │ │ │ │ └── useUpdateTTL.ts │ │ │ ├── index.tsx │ │ │ └── type-tag.tsx │ │ └── ui │ │ │ ├── alert-dialog.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── dialog.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── spinner.tsx │ │ │ ├── table.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── globals.css │ ├── index.ts │ ├── lib │ │ ├── clients.ts │ │ └── utils.ts │ ├── playground.tsx │ ├── store.tsx │ └── types │ │ └── index.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsup.config.js │ └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/changesets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.github/workflows/changesets.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/biome.json -------------------------------------------------------------------------------- /examples/nextjs13/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/.gitignore -------------------------------------------------------------------------------- /examples/nextjs13/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/CHANGELOG.md -------------------------------------------------------------------------------- /examples/nextjs13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/README.md -------------------------------------------------------------------------------- /examples/nextjs13/app/custom-commands/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/custom-commands/page.tsx -------------------------------------------------------------------------------- /examples/nextjs13/app/databrowser/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/databrowser/page.tsx -------------------------------------------------------------------------------- /examples/nextjs13/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/global.css -------------------------------------------------------------------------------- /examples/nextjs13/app/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/head.tsx -------------------------------------------------------------------------------- /examples/nextjs13/app/init/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/init/page.tsx -------------------------------------------------------------------------------- /examples/nextjs13/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/layout.tsx -------------------------------------------------------------------------------- /examples/nextjs13/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/page.tsx -------------------------------------------------------------------------------- /examples/nextjs13/app/welcome/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/app/welcome/page.tsx -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrower-pagination.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrower-pagination.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-add-delete.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-add-delete.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-edit-json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-edit-json.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-edit-string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-edit-string.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-freesearch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-freesearch.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-hash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-hash.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-json.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-list.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-set.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-set.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-string.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-test-reset-e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-test-reset-e2e.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-ttl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-ttl.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser-zset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser-zset.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/databrowser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/databrowser.test.ts -------------------------------------------------------------------------------- /examples/nextjs13/e2e/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/e2e/utils/index.ts -------------------------------------------------------------------------------- /examples/nextjs13/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/next.config.js -------------------------------------------------------------------------------- /examples/nextjs13/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/package.json -------------------------------------------------------------------------------- /examples/nextjs13/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/playwright.config.ts -------------------------------------------------------------------------------- /examples/nextjs13/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/public/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs13/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/public/next.svg -------------------------------------------------------------------------------- /examples/nextjs13/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/public/thirteen.svg -------------------------------------------------------------------------------- /examples/nextjs13/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/public/vercel.svg -------------------------------------------------------------------------------- /examples/nextjs13/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/examples/nextjs13/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/package.json -------------------------------------------------------------------------------- /packages/react-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/README.md -------------------------------------------------------------------------------- /packages/react-cli/img/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/img/cli.png -------------------------------------------------------------------------------- /packages/react-cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/index.html -------------------------------------------------------------------------------- /packages/react-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/package.json -------------------------------------------------------------------------------- /packages/react-cli/src/cli.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/src/cli.css -------------------------------------------------------------------------------- /packages/react-cli/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./redis-cli.js"; 2 | -------------------------------------------------------------------------------- /packages/react-cli/src/playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/src/playground.tsx -------------------------------------------------------------------------------- /packages/react-cli/src/redis-cli.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/src/redis-cli.tsx -------------------------------------------------------------------------------- /packages/react-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/tsconfig.json -------------------------------------------------------------------------------- /packages/react-cli/tsup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/tsup.config.js -------------------------------------------------------------------------------- /packages/react-cli/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-cli/vite.config.ts -------------------------------------------------------------------------------- /packages/react-databrowser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-databrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/README.md -------------------------------------------------------------------------------- /packages/react-databrowser/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/components.json -------------------------------------------------------------------------------- /packages/react-databrowser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/index.html -------------------------------------------------------------------------------- /packages/react-databrowser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/package.json -------------------------------------------------------------------------------- /packages/react-databrowser/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/postcss.config.js -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/add-data/add-data-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/add-data/add-data-dialog.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/data-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/data-delete.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/data-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/data-display.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/data-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/data-loading.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/data-table.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/data-ttl-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/data-ttl-actions.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/data-value-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/data-value-edit.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/delete-alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/delete-alert-dialog.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/display-scrollarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/display-scrollarea.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/index.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/missing-data-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/missing-data-display.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/data-display-container/ttl-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/data-display-container/ttl-popover.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/icons/icon-braces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/icons/icon-braces.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/sidebar/data-key-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/sidebar/data-key-buttons.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/sidebar/data-type-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/sidebar/data-type-selector.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/sidebar/display-db-size.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/sidebar/display-db-size.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/sidebar/index.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/sidebar/reload-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/sidebar/reload-button.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/sidebar/sidebar-missing-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/sidebar/sidebar-missing-data.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/components/sidebar/skeleton-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/components/sidebar/skeleton-buttons.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/copy-to-clipboard-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/copy-to-clipboard-button.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/index.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useAddData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useAddData.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useDebounce.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useDeleteKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useDeleteKey.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useFetchPaginatedKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useFetchPaginatedKeys.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useFetchSingleDataByKey/fetch-data-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useFetchSingleDataByKey/fetch-data-types.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useFetchSingleDataByKey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useFetchSingleDataByKey/index.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useFetchSingleDataByKey/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useFetchSingleDataByKey/utils.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useFetchTTLBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useFetchTTLBy.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useUpdateStringAndJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useUpdateStringAndJSON.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/hooks/useUpdateTTL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/hooks/useUpdateTTL.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/index.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/databrowser/type-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/databrowser/type-tag.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/button.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/input.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/label.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/select.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/spinner.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/table.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/globals.css -------------------------------------------------------------------------------- /packages/react-databrowser/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/index.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/lib/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/lib/clients.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/lib/utils.ts -------------------------------------------------------------------------------- /packages/react-databrowser/src/playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/playground.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/store.tsx -------------------------------------------------------------------------------- /packages/react-databrowser/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/src/types/index.ts -------------------------------------------------------------------------------- /packages/react-databrowser/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/tailwind.config.js -------------------------------------------------------------------------------- /packages/react-databrowser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/tsconfig.json -------------------------------------------------------------------------------- /packages/react-databrowser/tsup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/tsup.config.js -------------------------------------------------------------------------------- /packages/react-databrowser/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/packages/react-databrowser/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/react-ui/HEAD/turbo.json --------------------------------------------------------------------------------