├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── npm-publish.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── art ├── SCR-20240821-ddjg.png ├── SCR-20240821-ddlx.png ├── SCR-20240821-ddns.png ├── SCR-20240821-ddpm.png ├── SCR-20240821-ddrb.png └── SCR-20240821-dfrd.png ├── authentication-analysis-tr.md ├── authentication-analysis.md ├── bun.lock ├── package.json ├── packages ├── auth │ ├── .releaserc.yaml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── components.json │ ├── package.json │ ├── postcss.config.mjs │ ├── src │ │ ├── components │ │ │ ├── auth-layout.tsx │ │ │ ├── forgot-password-form.tsx │ │ │ ├── index.ts │ │ │ ├── login-form.tsx │ │ │ └── register-form.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ └── use-auth.tsx │ │ ├── index.ts │ │ ├── lib │ │ │ ├── auth-client.ts │ │ │ └── validation.ts │ │ ├── providers │ │ │ ├── index.ts │ │ │ └── refine-auth-provider.tsx │ │ └── types │ │ │ ├── auth.ts │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tsup.config.ts │ └── update-version.js └── theme │ ├── .npmignore │ ├── .releaserc.yaml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── components.json │ ├── dist │ ├── globals.css │ ├── index.d.ts │ ├── index.js │ ├── lib │ │ ├── utils.d.ts │ │ └── utils.js │ ├── ui.d.ts │ └── ui.js │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ ├── postcss.config.mjs │ ├── readme.md │ ├── src │ ├── buttons │ │ ├── clone.tsx │ │ ├── create.tsx │ │ ├── delete.tsx │ │ ├── edit.tsx │ │ ├── export.tsx │ │ ├── import.tsx │ │ ├── index.ts │ │ ├── list.tsx │ │ ├── refresh.tsx │ │ ├── save.tsx │ │ └── show.tsx │ ├── components │ │ ├── breadcrumbs.tsx │ │ ├── combobox.tsx │ │ ├── confirm.tsx │ │ ├── field.tsx │ │ ├── form.tsx │ │ ├── index.ts │ │ ├── link.tsx │ │ ├── loader.tsx │ │ ├── modeToggle.tsx │ │ ├── pageHeader.tsx │ │ ├── select.tsx │ │ └── sidebar.tsx │ ├── curds │ │ ├── create.tsx │ │ ├── edit.tsx │ │ ├── index.ts │ │ ├── list.tsx │ │ └── show │ │ │ ├── index.tsx │ │ │ └── row.tsx │ ├── globals.css │ ├── hooks │ │ ├── index.ts │ │ ├── useDeleteHelper.tsx │ │ ├── useGetEditUrl.tsx │ │ ├── useGetShowUrl.tsx │ │ └── useOnBack.tsx │ ├── index.ts │ ├── layouts │ │ ├── base.tsx │ │ ├── default.tsx │ │ └── index.ts │ ├── lib │ │ └── utils.ts │ ├── locales │ │ ├── en.json │ │ ├── index.ts │ │ └── tr.json │ ├── providers │ │ ├── deleteProvider.tsx │ │ ├── i18n-provider.tsx │ │ ├── index.ts │ │ ├── notificationProvider.ts │ │ └── theme-provider.tsx │ ├── table │ │ ├── actions │ │ │ ├── delete.tsx │ │ │ ├── edit.tsx │ │ │ ├── index.tsx │ │ │ └── show.tsx │ │ ├── fields │ │ │ ├── checkall.tsx │ │ │ ├── index.ts │ │ │ ├── pagination.tsx │ │ │ ├── sort.tsx │ │ │ ├── table-filter-date-range-picker.tsx │ │ │ ├── table-filter-dropdown.tsx │ │ │ └── table-filter-search-column.tsx │ │ ├── index.tsx │ │ └── toolbar │ │ │ ├── index.tsx │ │ │ └── table-view-options-dropdown.tsx │ ├── types │ │ ├── buttons.d.ts │ │ ├── confirmDialog.d.ts │ │ ├── curds.d.ts │ │ ├── index.d.ts │ │ ├── layout.d.ts │ │ ├── pageHeader.d.ts │ │ └── react.d.ts │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── index.ts │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── loading.tsx │ │ ├── popover.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sonner.tsx │ │ ├── table.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx │ ├── tsconfig.json │ ├── tsup.config.ts │ └── update-version.js ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── readme.md └── templates ├── nextjs ├── .eslintrc.json ├── .gitignore ├── README.md ├── app │ ├── app-layout.tsx │ ├── components │ │ ├── chart1.tsx │ │ ├── chart2.tsx │ │ ├── chart3.tsx │ │ ├── chart4.tsx │ │ └── footer.tsx │ ├── dashboard │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── posts │ │ ├── [id] │ │ │ ├── edit │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ └── Form.tsx │ │ ├── create │ │ │ └── page.tsx │ │ └── page.tsx │ ├── resources.tsx │ └── users │ │ ├── [id] │ │ ├── edit │ │ │ └── page.tsx │ │ └── page.tsx │ │ ├── components │ │ └── Form.tsx │ │ ├── create │ │ └── page.tsx │ │ └── page.tsx ├── components.json ├── components │ └── ui │ │ ├── avatar.tsx │ │ ├── card.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── select.tsx │ │ └── textarea.tsx ├── lib │ └── utils.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public │ ├── logo-mini.svg │ └── logo.svg ├── tailwind.config.ts └── tsconfig.json └── vite-react ├── README.md ├── components.json ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public └── refine.svg ├── src ├── App.tsx ├── assets │ ├── logo-mini.svg │ └── logo.svg ├── components │ └── ui │ │ ├── avatar.tsx │ │ ├── card.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── input.tsx │ │ ├── select.tsx │ │ └── textarea.tsx ├── globals.css ├── i18n.ts ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── pages │ ├── Dashboard.tsx │ ├── components │ │ ├── chart1.tsx │ │ ├── chart2.tsx │ │ ├── chart3.tsx │ │ └── chart4.tsx │ ├── posts │ │ ├── Create.tsx │ │ ├── Edit.tsx │ │ ├── Form.tsx │ │ ├── Show.tsx │ │ └── list.tsx │ └── users │ │ ├── Create.tsx │ │ ├── Edit.tsx │ │ ├── Form.tsx │ │ ├── Show.tsx │ │ └── list.tsx ├── resources.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/LICENSE -------------------------------------------------------------------------------- /art/SCR-20240821-ddjg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/art/SCR-20240821-ddjg.png -------------------------------------------------------------------------------- /art/SCR-20240821-ddlx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/art/SCR-20240821-ddlx.png -------------------------------------------------------------------------------- /art/SCR-20240821-ddns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/art/SCR-20240821-ddns.png -------------------------------------------------------------------------------- /art/SCR-20240821-ddpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/art/SCR-20240821-ddpm.png -------------------------------------------------------------------------------- /art/SCR-20240821-ddrb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/art/SCR-20240821-ddrb.png -------------------------------------------------------------------------------- /art/SCR-20240821-dfrd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/art/SCR-20240821-dfrd.png -------------------------------------------------------------------------------- /authentication-analysis-tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/authentication-analysis-tr.md -------------------------------------------------------------------------------- /authentication-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/authentication-analysis.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/package.json -------------------------------------------------------------------------------- /packages/auth/.releaserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/.releaserc.yaml -------------------------------------------------------------------------------- /packages/auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/CHANGELOG.md -------------------------------------------------------------------------------- /packages/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/LICENSE -------------------------------------------------------------------------------- /packages/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/README.md -------------------------------------------------------------------------------- /packages/auth/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/components.json -------------------------------------------------------------------------------- /packages/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/package.json -------------------------------------------------------------------------------- /packages/auth/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/postcss.config.mjs -------------------------------------------------------------------------------- /packages/auth/src/components/auth-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/components/auth-layout.tsx -------------------------------------------------------------------------------- /packages/auth/src/components/forgot-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/components/forgot-password-form.tsx -------------------------------------------------------------------------------- /packages/auth/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/components/index.ts -------------------------------------------------------------------------------- /packages/auth/src/components/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/components/login-form.tsx -------------------------------------------------------------------------------- /packages/auth/src/components/register-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/components/register-form.tsx -------------------------------------------------------------------------------- /packages/auth/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-auth"; -------------------------------------------------------------------------------- /packages/auth/src/hooks/use-auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/hooks/use-auth.tsx -------------------------------------------------------------------------------- /packages/auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/index.ts -------------------------------------------------------------------------------- /packages/auth/src/lib/auth-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/lib/auth-client.ts -------------------------------------------------------------------------------- /packages/auth/src/lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/lib/validation.ts -------------------------------------------------------------------------------- /packages/auth/src/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./refine-auth-provider"; -------------------------------------------------------------------------------- /packages/auth/src/providers/refine-auth-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/providers/refine-auth-provider.tsx -------------------------------------------------------------------------------- /packages/auth/src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/src/types/auth.ts -------------------------------------------------------------------------------- /packages/auth/src/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./auth"; -------------------------------------------------------------------------------- /packages/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/tsconfig.json -------------------------------------------------------------------------------- /packages/auth/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/tsup.config.ts -------------------------------------------------------------------------------- /packages/auth/update-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/auth/update-version.js -------------------------------------------------------------------------------- /packages/theme/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/.npmignore -------------------------------------------------------------------------------- /packages/theme/.releaserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/.releaserc.yaml -------------------------------------------------------------------------------- /packages/theme/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/CHANGELOG.md -------------------------------------------------------------------------------- /packages/theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/LICENSE -------------------------------------------------------------------------------- /packages/theme/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/components.json -------------------------------------------------------------------------------- /packages/theme/dist/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/dist/globals.css -------------------------------------------------------------------------------- /packages/theme/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/dist/index.d.ts -------------------------------------------------------------------------------- /packages/theme/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/dist/index.js -------------------------------------------------------------------------------- /packages/theme/dist/lib/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/dist/lib/utils.d.ts -------------------------------------------------------------------------------- /packages/theme/dist/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/dist/lib/utils.js -------------------------------------------------------------------------------- /packages/theme/dist/ui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/dist/ui.d.ts -------------------------------------------------------------------------------- /packages/theme/dist/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/dist/ui.js -------------------------------------------------------------------------------- /packages/theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/package.json -------------------------------------------------------------------------------- /packages/theme/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/pnpm-lock.yaml -------------------------------------------------------------------------------- /packages/theme/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | ignoredBuiltDependencies: 2 | - '@tailwindcss/oxide' 3 | -------------------------------------------------------------------------------- /packages/theme/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/postcss.config.mjs -------------------------------------------------------------------------------- /packages/theme/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/readme.md -------------------------------------------------------------------------------- /packages/theme/src/buttons/clone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/clone.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/create.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/delete.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/edit.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/export.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/export.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/import.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/index.ts -------------------------------------------------------------------------------- /packages/theme/src/buttons/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/list.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/refresh.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/save.tsx -------------------------------------------------------------------------------- /packages/theme/src/buttons/show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/buttons/show.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/breadcrumbs.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/combobox.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/confirm.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/field.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/form.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/index.ts -------------------------------------------------------------------------------- /packages/theme/src/components/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/link.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/loader.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/modeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/modeToggle.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/pageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/pageHeader.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/select.tsx -------------------------------------------------------------------------------- /packages/theme/src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/components/sidebar.tsx -------------------------------------------------------------------------------- /packages/theme/src/curds/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/curds/create.tsx -------------------------------------------------------------------------------- /packages/theme/src/curds/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/curds/edit.tsx -------------------------------------------------------------------------------- /packages/theme/src/curds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/curds/index.ts -------------------------------------------------------------------------------- /packages/theme/src/curds/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/curds/list.tsx -------------------------------------------------------------------------------- /packages/theme/src/curds/show/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/curds/show/index.tsx -------------------------------------------------------------------------------- /packages/theme/src/curds/show/row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/curds/show/row.tsx -------------------------------------------------------------------------------- /packages/theme/src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/globals.css -------------------------------------------------------------------------------- /packages/theme/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/theme/src/hooks/useDeleteHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/hooks/useDeleteHelper.tsx -------------------------------------------------------------------------------- /packages/theme/src/hooks/useGetEditUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/hooks/useGetEditUrl.tsx -------------------------------------------------------------------------------- /packages/theme/src/hooks/useGetShowUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/hooks/useGetShowUrl.tsx -------------------------------------------------------------------------------- /packages/theme/src/hooks/useOnBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/hooks/useOnBack.tsx -------------------------------------------------------------------------------- /packages/theme/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/index.ts -------------------------------------------------------------------------------- /packages/theme/src/layouts/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/layouts/base.tsx -------------------------------------------------------------------------------- /packages/theme/src/layouts/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/layouts/default.tsx -------------------------------------------------------------------------------- /packages/theme/src/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/layouts/index.ts -------------------------------------------------------------------------------- /packages/theme/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/lib/utils.ts -------------------------------------------------------------------------------- /packages/theme/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/locales/en.json -------------------------------------------------------------------------------- /packages/theme/src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/locales/index.ts -------------------------------------------------------------------------------- /packages/theme/src/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/locales/tr.json -------------------------------------------------------------------------------- /packages/theme/src/providers/deleteProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/providers/deleteProvider.tsx -------------------------------------------------------------------------------- /packages/theme/src/providers/i18n-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/providers/i18n-provider.tsx -------------------------------------------------------------------------------- /packages/theme/src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/providers/index.ts -------------------------------------------------------------------------------- /packages/theme/src/providers/notificationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/providers/notificationProvider.ts -------------------------------------------------------------------------------- /packages/theme/src/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/providers/theme-provider.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/actions/delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/actions/delete.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/actions/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/actions/edit.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/actions/index.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/actions/show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/actions/show.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/fields/checkall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/fields/checkall.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/fields/index.ts -------------------------------------------------------------------------------- /packages/theme/src/table/fields/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/fields/pagination.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/fields/sort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/fields/sort.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/fields/table-filter-date-range-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/fields/table-filter-date-range-picker.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/fields/table-filter-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/fields/table-filter-dropdown.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/fields/table-filter-search-column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/fields/table-filter-search-column.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/index.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/toolbar/index.tsx -------------------------------------------------------------------------------- /packages/theme/src/table/toolbar/table-view-options-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/table/toolbar/table-view-options-dropdown.tsx -------------------------------------------------------------------------------- /packages/theme/src/types/buttons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/types/buttons.d.ts -------------------------------------------------------------------------------- /packages/theme/src/types/confirmDialog.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/types/confirmDialog.d.ts -------------------------------------------------------------------------------- /packages/theme/src/types/curds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/types/curds.d.ts -------------------------------------------------------------------------------- /packages/theme/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/types/index.d.ts -------------------------------------------------------------------------------- /packages/theme/src/types/layout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/types/layout.d.ts -------------------------------------------------------------------------------- /packages/theme/src/types/pageHeader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/types/pageHeader.d.ts -------------------------------------------------------------------------------- /packages/theme/src/types/react.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/types/react.d.ts -------------------------------------------------------------------------------- /packages/theme/src/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/avatar.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/badge.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/button.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/calendar.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/card.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/checkbox.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/command.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/dialog.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/form.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/index.ts -------------------------------------------------------------------------------- /packages/theme/src/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/input.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/label.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/loading.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/popover.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/resizable.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/scroll-area.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/select.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/separator.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/sonner.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/table.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/textarea.tsx -------------------------------------------------------------------------------- /packages/theme/src/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/src/ui/tooltip.tsx -------------------------------------------------------------------------------- /packages/theme/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/tsconfig.json -------------------------------------------------------------------------------- /packages/theme/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/tsup.config.ts -------------------------------------------------------------------------------- /packages/theme/update-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/packages/theme/update-version.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/readme.md -------------------------------------------------------------------------------- /templates/nextjs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/.eslintrc.json -------------------------------------------------------------------------------- /templates/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/.gitignore -------------------------------------------------------------------------------- /templates/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/README.md -------------------------------------------------------------------------------- /templates/nextjs/app/app-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/app-layout.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/components/chart1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/components/chart1.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/components/chart2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/components/chart2.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/components/chart3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/components/chart3.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/components/chart4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/components/chart4.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/components/footer.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/dashboard/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/favicon.ico -------------------------------------------------------------------------------- /templates/nextjs/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/globals.css -------------------------------------------------------------------------------- /templates/nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/layout.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/posts/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/posts/[id]/edit/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/posts/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/posts/[id]/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/posts/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/posts/components/Form.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/posts/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/posts/create/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/posts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/posts/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/resources.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/users/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/users/[id]/edit/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/users/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/users/[id]/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/users/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/users/components/Form.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/users/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/users/create/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/app/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/app/users/page.tsx -------------------------------------------------------------------------------- /templates/nextjs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components.json -------------------------------------------------------------------------------- /templates/nextjs/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/avatar.tsx -------------------------------------------------------------------------------- /templates/nextjs/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/card.tsx -------------------------------------------------------------------------------- /templates/nextjs/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/chart.tsx -------------------------------------------------------------------------------- /templates/nextjs/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /templates/nextjs/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /templates/nextjs/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/input.tsx -------------------------------------------------------------------------------- /templates/nextjs/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/select.tsx -------------------------------------------------------------------------------- /templates/nextjs/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/components/ui/textarea.tsx -------------------------------------------------------------------------------- /templates/nextjs/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/lib/utils.ts -------------------------------------------------------------------------------- /templates/nextjs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/next.config.mjs -------------------------------------------------------------------------------- /templates/nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/package-lock.json -------------------------------------------------------------------------------- /templates/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/package.json -------------------------------------------------------------------------------- /templates/nextjs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/postcss.config.mjs -------------------------------------------------------------------------------- /templates/nextjs/public/logo-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/public/logo-mini.svg -------------------------------------------------------------------------------- /templates/nextjs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/public/logo.svg -------------------------------------------------------------------------------- /templates/nextjs/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/tailwind.config.ts -------------------------------------------------------------------------------- /templates/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/nextjs/tsconfig.json -------------------------------------------------------------------------------- /templates/vite-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/README.md -------------------------------------------------------------------------------- /templates/vite-react/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/components.json -------------------------------------------------------------------------------- /templates/vite-react/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/eslint.config.js -------------------------------------------------------------------------------- /templates/vite-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/index.html -------------------------------------------------------------------------------- /templates/vite-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/package-lock.json -------------------------------------------------------------------------------- /templates/vite-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/package.json -------------------------------------------------------------------------------- /templates/vite-react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/postcss.config.cjs -------------------------------------------------------------------------------- /templates/vite-react/public/refine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/public/refine.svg -------------------------------------------------------------------------------- /templates/vite-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/App.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/assets/logo-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/assets/logo-mini.svg -------------------------------------------------------------------------------- /templates/vite-react/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/assets/logo.svg -------------------------------------------------------------------------------- /templates/vite-react/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/components/ui/card.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/components/ui/input.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/components/ui/select.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/globals.css -------------------------------------------------------------------------------- /templates/vite-react/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/i18n.ts -------------------------------------------------------------------------------- /templates/vite-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/index.css -------------------------------------------------------------------------------- /templates/vite-react/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/lib/utils.ts -------------------------------------------------------------------------------- /templates/vite-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/main.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/components/chart1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/components/chart1.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/components/chart2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/components/chart2.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/components/chart3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/components/chart3.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/components/chart4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/components/chart4.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/posts/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/posts/Create.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/posts/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/posts/Edit.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/posts/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/posts/Form.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/posts/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/posts/Show.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/posts/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/posts/list.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/users/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/users/Create.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/users/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/users/Edit.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/users/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/users/Form.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/users/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/users/Show.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/pages/users/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/pages/users/list.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/src/resources.tsx -------------------------------------------------------------------------------- /templates/vite-react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /templates/vite-react/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/tailwind.config.js -------------------------------------------------------------------------------- /templates/vite-react/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/tsconfig.app.json -------------------------------------------------------------------------------- /templates/vite-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/tsconfig.json -------------------------------------------------------------------------------- /templates/vite-react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/tsconfig.node.json -------------------------------------------------------------------------------- /templates/vite-react/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/vercel.json -------------------------------------------------------------------------------- /templates/vite-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdiunal/refine-shadcn/HEAD/templates/vite-react/vite.config.ts --------------------------------------------------------------------------------