├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── actions └── form.ts ├── app ├── (auth) │ ├── layout.tsx │ ├── sign-in │ │ └── [[...sign-in]] │ │ │ └── page.tsx │ └── sign-up │ │ └── [[...sign-up]] │ │ └── page.tsx ├── (dashboard) │ ├── builder │ │ └── [id] │ │ │ ├── error.tsx │ │ │ ├── layout.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── forms │ │ └── [id] │ │ │ ├── error.tsx │ │ │ ├── layout.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── layout.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── submit │ └── [formURL] │ ├── layout.tsx │ ├── loading.tsx │ └── page.tsx ├── components.json ├── components ├── CreateFormBtn.tsx ├── Designer.tsx ├── DesignerSidebar.tsx ├── DragOverlayWrapper.tsx ├── FormBuilder.tsx ├── FormElements.tsx ├── FormElementsSidebar.tsx ├── FormLinkShare.tsx ├── FormSubmitComponent.tsx ├── Logo.tsx ├── PreviewDialogBtn.tsx ├── PropertiesFormSidebar.tsx ├── PublishFormBtn.tsx ├── SaveFormBtn.tsx ├── SidebarBtnElement.tsx ├── ThemeSwitcher.tsx ├── VisitBtn.tsx ├── context │ └── DesignerContext.tsx ├── fields │ ├── CheckboxField.tsx │ ├── DateField.tsx │ ├── NumberField.tsx │ ├── ParagraphField.tsx │ ├── SelectField.tsx │ ├── SeparatorField.tsx │ ├── SpacerField.tsx │ ├── SubTitleField.tsx │ ├── TextAreaField.tsx │ ├── TextField.tsx │ └── TitleField.tsx ├── hooks │ └── useDesigner.tsx ├── providers │ └── ThemeProvider.tsx └── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ └── use-toast.ts ├── lib ├── idGenerator.ts ├── prisma.ts └── utils.ts ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prettier.config.js ├── prisma ├── migrations │ ├── 20231027154929_initial │ │ └── migration.sql │ ├── 20231029052228_ │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── paper-dark.svg └── paper.svg ├── schemas └── form.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/README.md -------------------------------------------------------------------------------- /actions/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/actions/form.ts -------------------------------------------------------------------------------- /app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(auth)/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-up/[[...sign-up]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(auth)/sign-up/[[...sign-up]]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/builder/[id]/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/builder/[id]/error.tsx -------------------------------------------------------------------------------- /app/(dashboard)/builder/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/builder/[id]/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/builder/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/builder/[id]/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/builder/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/builder/[id]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/forms/[id]/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/forms/[id]/error.tsx -------------------------------------------------------------------------------- /app/(dashboard)/forms/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/forms/[id]/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/forms/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/forms/[id]/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/forms/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/forms/[id]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/submit/[formURL]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/submit/[formURL]/layout.tsx -------------------------------------------------------------------------------- /app/submit/[formURL]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/submit/[formURL]/loading.tsx -------------------------------------------------------------------------------- /app/submit/[formURL]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/app/submit/[formURL]/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components.json -------------------------------------------------------------------------------- /components/CreateFormBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/CreateFormBtn.tsx -------------------------------------------------------------------------------- /components/Designer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/Designer.tsx -------------------------------------------------------------------------------- /components/DesignerSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/DesignerSidebar.tsx -------------------------------------------------------------------------------- /components/DragOverlayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/DragOverlayWrapper.tsx -------------------------------------------------------------------------------- /components/FormBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/FormBuilder.tsx -------------------------------------------------------------------------------- /components/FormElements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/FormElements.tsx -------------------------------------------------------------------------------- /components/FormElementsSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/FormElementsSidebar.tsx -------------------------------------------------------------------------------- /components/FormLinkShare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/FormLinkShare.tsx -------------------------------------------------------------------------------- /components/FormSubmitComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/FormSubmitComponent.tsx -------------------------------------------------------------------------------- /components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/Logo.tsx -------------------------------------------------------------------------------- /components/PreviewDialogBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/PreviewDialogBtn.tsx -------------------------------------------------------------------------------- /components/PropertiesFormSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/PropertiesFormSidebar.tsx -------------------------------------------------------------------------------- /components/PublishFormBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/PublishFormBtn.tsx -------------------------------------------------------------------------------- /components/SaveFormBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/SaveFormBtn.tsx -------------------------------------------------------------------------------- /components/SidebarBtnElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/SidebarBtnElement.tsx -------------------------------------------------------------------------------- /components/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /components/VisitBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/VisitBtn.tsx -------------------------------------------------------------------------------- /components/context/DesignerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/context/DesignerContext.tsx -------------------------------------------------------------------------------- /components/fields/CheckboxField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/CheckboxField.tsx -------------------------------------------------------------------------------- /components/fields/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/DateField.tsx -------------------------------------------------------------------------------- /components/fields/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/NumberField.tsx -------------------------------------------------------------------------------- /components/fields/ParagraphField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/ParagraphField.tsx -------------------------------------------------------------------------------- /components/fields/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/SelectField.tsx -------------------------------------------------------------------------------- /components/fields/SeparatorField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/SeparatorField.tsx -------------------------------------------------------------------------------- /components/fields/SpacerField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/SpacerField.tsx -------------------------------------------------------------------------------- /components/fields/SubTitleField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/SubTitleField.tsx -------------------------------------------------------------------------------- /components/fields/TextAreaField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/TextAreaField.tsx -------------------------------------------------------------------------------- /components/fields/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/TextField.tsx -------------------------------------------------------------------------------- /components/fields/TitleField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/fields/TitleField.tsx -------------------------------------------------------------------------------- /components/hooks/useDesigner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/hooks/useDesigner.tsx -------------------------------------------------------------------------------- /components/providers/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/providers/ThemeProvider.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /lib/idGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/lib/idGenerator.ts -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/migrations/20231027154929_initial/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/prisma/migrations/20231027154929_initial/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20231029052228_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/prisma/migrations/20231029052228_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/paper-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/public/paper-dark.svg -------------------------------------------------------------------------------- /public/paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/public/paper.svg -------------------------------------------------------------------------------- /schemas/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/schemas/form.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmahmud/next-dnd-formbuilder/HEAD/yarn.lock --------------------------------------------------------------------------------