├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── convex ├── _generated │ ├── api.d.ts │ ├── api.js │ ├── dataModel.d.ts │ ├── server.d.ts │ └── server.js ├── auth.config.ts ├── documents.ts └── schema.ts ├── debug.log ├── liveblocks.config.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── blank-document.svg ├── business-letter.svg ├── cover-letter.svg ├── file.svg ├── globe.svg ├── letter.svg ├── logo.svg ├── next.svg ├── project-proposal.svg ├── resume.svg ├── software-proposal.svg ├── vercel.svg └── window.svg ├── src ├── app │ ├── (home) │ │ ├── document-menu.tsx │ │ ├── document-row.tsx │ │ ├── documents-table.tsx │ │ ├── navbar.tsx │ │ ├── page.tsx │ │ ├── search-input.tsx │ │ └── templates-gallery.tsx │ ├── api │ │ └── liveblocks-auth │ │ │ └── route.ts │ ├── documents │ │ ├── [documentId] │ │ │ ├── action.ts │ │ │ ├── avatars.tsx │ │ │ ├── document-input.tsx │ │ │ ├── document.tsx │ │ │ ├── editor.tsx │ │ │ ├── inbox.tsx │ │ │ ├── loading.tsx │ │ │ ├── navbar.tsx │ │ │ ├── page.tsx │ │ │ ├── room.tsx │ │ │ ├── ruler.tsx │ │ │ ├── threads.tsx │ │ │ └── toolbar.tsx │ │ └── page.tsx │ ├── error.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ └── layout.tsx ├── components │ ├── convex-client-provider.tsx │ ├── fullscreen-loader.tsx │ ├── remove-dialog.tsx │ ├── rename-dialog.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── constants │ ├── margins.ts │ └── templates.ts ├── extensions │ ├── font-size.ts │ └── line-height.ts ├── hooks │ ├── use-debounce.ts │ ├── use-mobile.tsx │ ├── use-search-param.ts │ └── use-toast.ts ├── lib │ └── utils.ts ├── middleware.ts └── store │ └── use-editor-store.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/components.json -------------------------------------------------------------------------------- /convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/_generated/api.js -------------------------------------------------------------------------------- /convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/_generated/server.js -------------------------------------------------------------------------------- /convex/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/auth.config.ts -------------------------------------------------------------------------------- /convex/documents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/documents.ts -------------------------------------------------------------------------------- /convex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/convex/schema.ts -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/debug.log -------------------------------------------------------------------------------- /liveblocks.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/liveblocks.config.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/blank-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/blank-document.svg -------------------------------------------------------------------------------- /public/business-letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/business-letter.svg -------------------------------------------------------------------------------- /public/cover-letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/cover-letter.svg -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/letter.svg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/project-proposal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/project-proposal.svg -------------------------------------------------------------------------------- /public/resume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/resume.svg -------------------------------------------------------------------------------- /public/software-proposal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/software-proposal.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/public/window.svg -------------------------------------------------------------------------------- /src/app/(home)/document-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/(home)/document-menu.tsx -------------------------------------------------------------------------------- /src/app/(home)/document-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/(home)/document-row.tsx -------------------------------------------------------------------------------- /src/app/(home)/documents-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/(home)/documents-table.tsx -------------------------------------------------------------------------------- /src/app/(home)/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/(home)/navbar.tsx -------------------------------------------------------------------------------- /src/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/(home)/page.tsx -------------------------------------------------------------------------------- /src/app/(home)/search-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/(home)/search-input.tsx -------------------------------------------------------------------------------- /src/app/(home)/templates-gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/(home)/templates-gallery.tsx -------------------------------------------------------------------------------- /src/app/api/liveblocks-auth/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/api/liveblocks-auth/route.ts -------------------------------------------------------------------------------- /src/app/documents/[documentId]/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/action.ts -------------------------------------------------------------------------------- /src/app/documents/[documentId]/avatars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/avatars.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/document-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/document-input.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/document.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/editor.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/inbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/inbox.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/loading.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/navbar.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/page.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/room.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/room.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/ruler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/ruler.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/threads.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/threads.tsx -------------------------------------------------------------------------------- /src/app/documents/[documentId]/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/[documentId]/toolbar.tsx -------------------------------------------------------------------------------- /src/app/documents/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/documents/page.tsx -------------------------------------------------------------------------------- /src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/error.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/components/convex-client-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/convex-client-provider.tsx -------------------------------------------------------------------------------- /src/components/fullscreen-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/fullscreen-loader.tsx -------------------------------------------------------------------------------- /src/components/remove-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/remove-dialog.tsx -------------------------------------------------------------------------------- /src/components/rename-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/rename-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/constants/margins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/constants/margins.ts -------------------------------------------------------------------------------- /src/constants/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/constants/templates.ts -------------------------------------------------------------------------------- /src/extensions/font-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/extensions/font-size.ts -------------------------------------------------------------------------------- /src/extensions/line-height.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/extensions/line-height.ts -------------------------------------------------------------------------------- /src/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/hooks/use-debounce.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-search-param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/hooks/use-search-param.ts -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/store/use-editor-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/src/store/use-editor-store.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davronov-Alimardon/google-docs/HEAD/tsconfig.json --------------------------------------------------------------------------------