@fuma-content/studio 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.d.mts +1 -0
- package/dist/bin.mjs +90 -0
- package/dist/index.d.mts +13 -0
- package/dist/index.mjs +66 -0
- package/dist/mdx/actions.mjs +34 -0
- package/dist/mdx/client.mjs +167 -0
- package/dist/package.mjs +6 -0
- package/dist/src/components/code-editor/mdx.lazy.mjs +19 -0
- package/dist/src/components/code-editor/mdx.mjs +44 -0
- package/dist/src/components/code-editor/yaml.lazy.mjs +22 -0
- package/dist/src/components/code-editor/yaml.mjs +63 -0
- package/dist/src/components/editor/editor-base-kit.mjs +41 -0
- package/dist/src/components/editor/editor-kit.mjs +73 -0
- package/dist/src/components/editor/md.mjs +42 -0
- package/dist/src/components/editor/plugins/ai-kit.mjs +68 -0
- package/dist/src/components/editor/plugins/align-base-kit.mjs +28 -0
- package/dist/src/components/editor/plugins/align-kit.mjs +30 -0
- package/dist/src/components/editor/plugins/autoformat-kit.mjs +214 -0
- package/dist/src/components/editor/plugins/basic-blocks-base-kit.mjs +22 -0
- package/dist/src/components/editor/plugins/basic-blocks-kit.mjs +51 -0
- package/dist/src/components/editor/plugins/basic-marks-base-kit.mjs +20 -0
- package/dist/src/components/editor/plugins/basic-marks-kit.mjs +28 -0
- package/dist/src/components/editor/plugins/block-menu-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/block-placeholder-kit.mjs +14 -0
- package/dist/src/components/editor/plugins/block-selection-kit.mjs +48 -0
- package/dist/src/components/editor/plugins/callout-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/callout-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/code-block-base-kit.mjs +16 -0
- package/dist/src/components/editor/plugins/code-block-kit.mjs +19 -0
- package/dist/src/components/editor/plugins/column-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/column-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/comment-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/comment-kit.mjs +53 -0
- package/dist/src/components/editor/plugins/copilot-kit.mjs +49 -0
- package/dist/src/components/editor/plugins/cursor-overlay-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/date-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/date-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/discussion-kit.mjs +94 -0
- package/dist/src/components/editor/plugins/dnd-kit.mjs +31 -0
- package/dist/src/components/editor/plugins/emoji-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/exit-break-kit.mjs +12 -0
- package/dist/src/components/editor/plugins/fixed-toolbar-kit.mjs +15 -0
- package/dist/src/components/editor/plugins/floating-toolbar-kit.mjs +15 -0
- package/dist/src/components/editor/plugins/font-base-kit.mjs +14 -0
- package/dist/src/components/editor/plugins/font-kit.mjs +19 -0
- package/dist/src/components/editor/plugins/indent-base-kit.mjs +17 -0
- package/dist/src/components/editor/plugins/indent-kit.mjs +20 -0
- package/dist/src/components/editor/plugins/line-height-base-kit.mjs +20 -0
- package/dist/src/components/editor/plugins/line-height-kit.mjs +22 -0
- package/dist/src/components/editor/plugins/link-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/link-kit.mjs +15 -0
- package/dist/src/components/editor/plugins/list-base-kit.mjs +19 -0
- package/dist/src/components/editor/plugins/list-kit.mjs +22 -0
- package/dist/src/components/editor/plugins/markdown-kit.mjs +17 -0
- package/dist/src/components/editor/plugins/math-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/math-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/media-base-kit.mjs +23 -0
- package/dist/src/components/editor/plugins/media-kit.mjs +37 -0
- package/dist/src/components/editor/plugins/slash-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/suggestion-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/suggestion-kit.mjs +50 -0
- package/dist/src/components/editor/plugins/table-base-kit.mjs +13 -0
- package/dist/src/components/editor/plugins/table-kit.mjs +15 -0
- package/dist/src/components/editor/transforms.mjs +125 -0
- package/dist/src/components/editor/ui/ai-chat-editor.mjs +21 -0
- package/dist/src/components/editor/ui/ai-menu.mjs +488 -0
- package/dist/src/components/editor/ui/ai-node.mjs +24 -0
- package/dist/src/components/editor/ui/ai-toolbar-button.mjs +23 -0
- package/dist/src/components/editor/ui/align-toolbar-button.mjs +71 -0
- package/dist/src/components/editor/ui/block-context-menu.mjs +130 -0
- package/dist/src/components/editor/ui/block-discussion.mjs +200 -0
- package/dist/src/components/editor/ui/block-draggable.mjs +265 -0
- package/dist/src/components/editor/ui/block-list-static.mjs +48 -0
- package/dist/src/components/editor/ui/block-list.mjs +47 -0
- package/dist/src/components/editor/ui/block-selection.mjs +28 -0
- package/dist/src/components/editor/ui/block-suggestion.mjs +319 -0
- package/dist/src/components/editor/ui/blockquote-node-static.mjs +14 -0
- package/dist/src/components/editor/ui/blockquote-node.mjs +16 -0
- package/dist/src/components/editor/ui/callout-node-static.mjs +29 -0
- package/dist/src/components/editor/ui/callout-node.mjs +50 -0
- package/dist/src/components/editor/ui/caption.mjs +39 -0
- package/dist/src/components/editor/ui/code-block-node-static.mjs +30 -0
- package/dist/src/components/editor/ui/code-block-node.mjs +121 -0
- package/dist/src/components/editor/ui/code-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/code-node.mjs +17 -0
- package/dist/src/components/editor/ui/column-node-static.mjs +32 -0
- package/dist/src/components/editor/ui/column-node.mjs +229 -0
- package/dist/src/components/editor/ui/comment-node-static.mjs +14 -0
- package/dist/src/components/editor/ui/comment-node.mjs +33 -0
- package/dist/src/components/editor/ui/comment-toolbar-button.mjs +23 -0
- package/dist/src/components/editor/ui/comment.mjs +422 -0
- package/dist/src/components/editor/ui/cursor-overlay.mjs +36 -0
- package/dist/src/components/editor/ui/date-node-static.mjs +32 -0
- package/dist/src/components/editor/ui/date-node.mjs +60 -0
- package/dist/src/components/editor/ui/editor-static.mjs +31 -0
- package/dist/src/components/editor/ui/editor.mjs +60 -0
- package/dist/src/components/editor/ui/emoji-node.mjs +46 -0
- package/dist/src/components/editor/ui/emoji-toolbar-button.mjs +415 -0
- package/dist/src/components/editor/ui/equation-node-static.mjs +65 -0
- package/dist/src/components/editor/ui/equation-node.mjs +159 -0
- package/dist/src/components/editor/ui/equation-toolbar-button.mjs +23 -0
- package/dist/src/components/editor/ui/fixed-toolbar-buttons.mjs +109 -0
- package/dist/src/components/editor/ui/fixed-toolbar.mjs +16 -0
- package/dist/src/components/editor/ui/floating-toolbar-buttons.mjs +54 -0
- package/dist/src/components/editor/ui/floating-toolbar.mjs +51 -0
- package/dist/src/components/editor/ui/font-color-toolbar-button.mjs +637 -0
- package/dist/src/components/editor/ui/font-size-toolbar-button.mjs +83 -0
- package/dist/src/components/editor/ui/ghost-text.mjs +22 -0
- package/dist/src/components/editor/ui/heading-node-static.mjs +60 -0
- package/dist/src/components/editor/ui/heading-node.mjs +62 -0
- package/dist/src/components/editor/ui/highlight-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/highlight-node.mjs +17 -0
- package/dist/src/components/editor/ui/history-toolbar-button.mjs +35 -0
- package/dist/src/components/editor/ui/hr-node-static.mjs +18 -0
- package/dist/src/components/editor/ui/hr-node.mjs +23 -0
- package/dist/src/components/editor/ui/indent-toolbar-button.mjs +29 -0
- package/dist/src/components/editor/ui/inline-combobox.mjs +148 -0
- package/dist/src/components/editor/ui/insert-toolbar-button.mjs +199 -0
- package/dist/src/components/editor/ui/kbd-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/kbd-node.mjs +17 -0
- package/dist/src/components/editor/ui/line-height-toolbar-button.mjs +56 -0
- package/dist/src/components/editor/ui/link-node-static.mjs +20 -0
- package/dist/src/components/editor/ui/link-node.mjs +28 -0
- package/dist/src/components/editor/ui/link-toolbar-button.mjs +21 -0
- package/dist/src/components/editor/ui/link-toolbar.mjs +141 -0
- package/dist/src/components/editor/ui/list-toolbar-button.mjs +131 -0
- package/dist/src/components/editor/ui/mark-toolbar-button.mjs +20 -0
- package/dist/src/components/editor/ui/media-image-node-static.mjs +32 -0
- package/dist/src/components/editor/ui/media-image-node.mjs +64 -0
- package/dist/src/components/editor/ui/media-placeholder-node.mjs +184 -0
- package/dist/src/components/editor/ui/media-preview-dialog.mjs +113 -0
- package/dist/src/components/editor/ui/media-toolbar-button.mjs +156 -0
- package/dist/src/components/editor/ui/media-toolbar.mjs +80 -0
- package/dist/src/components/editor/ui/media-upload-toast.mjs +39 -0
- package/dist/src/components/editor/ui/media-video-node-static.mjs +27 -0
- package/dist/src/components/editor/ui/mode-toolbar-button.mjs +112 -0
- package/dist/src/components/editor/ui/paragraph-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/paragraph-node.mjs +17 -0
- package/dist/src/components/editor/ui/resize-handle.mjs +43 -0
- package/dist/src/components/editor/ui/slash-node.mjs +228 -0
- package/dist/src/components/editor/ui/suggestion-node-static.mjs +24 -0
- package/dist/src/components/editor/ui/suggestion-node.mjs +111 -0
- package/dist/src/components/editor/ui/suggestion-toolbar-button.mjs +24 -0
- package/dist/src/components/editor/ui/table-icons.mjs +1310 -0
- package/dist/src/components/editor/ui/table-node-static.mjs +68 -0
- package/dist/src/components/editor/ui/table-node.mjs +375 -0
- package/dist/src/components/editor/ui/table-toolbar-button.mjs +190 -0
- package/dist/src/components/editor/ui/turn-into-toolbar-button.mjs +168 -0
- package/dist/src/components/editor/use-chat.mjs +80 -0
- package/dist/src/components/json-schema-editor/client.mjs +46 -0
- package/dist/src/components/json-schema-editor/components/inputs.mjs +438 -0
- package/dist/src/components/json-schema-editor/get-default-values.mjs +23 -0
- package/dist/src/components/json-schema-editor/schema.mjs +131 -0
- package/dist/src/components/json-schema-editor/utils/merge-schema.mjs +134 -0
- package/dist/src/components/json-schema-editor/utils/schema-to-string.mjs +53 -0
- package/dist/src/components/ui/alert-dialog.mjs +90 -0
- package/dist/src/components/ui/avatar.mjs +32 -0
- package/dist/src/components/ui/button.mjs +48 -0
- package/dist/src/components/ui/calendar.mjs +108 -0
- package/dist/src/components/ui/checkbox.mjs +23 -0
- package/dist/src/components/ui/combobox.mjs +53 -0
- package/dist/src/components/ui/command.mjs +42 -0
- package/dist/src/components/ui/context-menu.mjs +67 -0
- package/dist/src/components/ui/dialog.mjs +9 -0
- package/dist/src/components/ui/dropdown-menu.mjs +122 -0
- package/dist/src/components/ui/input-group.mjs +31 -0
- package/dist/src/components/ui/input.mjs +15 -0
- package/dist/src/components/ui/label.mjs +19 -0
- package/dist/src/components/ui/popover.mjs +37 -0
- package/dist/src/components/ui/select.mjs +80 -0
- package/dist/src/components/ui/separator.mjs +19 -0
- package/dist/src/components/ui/spinner.mjs +16 -0
- package/dist/src/components/ui/tabs.mjs +39 -0
- package/dist/src/components/ui/textarea.mjs +14 -0
- package/dist/src/components/ui/toolbar.mjs +183 -0
- package/dist/src/components/ui/tooltip.mjs +38 -0
- package/dist/src/hooks/editor/use-is-creator.mjs +19 -0
- package/dist/src/hooks/use-upload-file.mjs +73 -0
- package/dist/src/lib/config.mjs +38 -0
- package/dist/src/lib/data/store.d.mts +15 -0
- package/dist/src/lib/lowlight.mjs +7 -0
- package/dist/src/lib/utils/deep-equal.mjs +18 -0
- package/dist/src/lib/utils/remove-undefined.mjs +18 -0
- package/dist/src/lib/utils.mjs +10 -0
- package/dist/types.d.mts +50 -0
- package/next.config.ts +23 -0
- package/package.json +131 -0
- package/postcss.config.mjs +7 -0
- package/src/app/(dashboard)/collection/[name]/[...slug]/page.client.tsx +26 -0
- package/src/app/(dashboard)/collection/[name]/[...slug]/page.tsx +17 -0
- package/src/app/(dashboard)/collection/[name]/page.client.tsx +82 -0
- package/src/app/(dashboard)/collection/[name]/page.tsx +11 -0
- package/src/app/(dashboard)/layout.tsx +34 -0
- package/src/app/(dashboard)/page.tsx +38 -0
- package/src/app/api/ai/command/prompts.ts +313 -0
- package/src/app/api/ai/command/route.ts +203 -0
- package/src/app/api/ai/command/utils.ts +242 -0
- package/src/app/api/ai/copilot/route.ts +33 -0
- package/src/app/api/uploadthing/route.ts +5 -0
- package/src/app/codeblock/LICENSE +21 -0
- package/src/app/codeblock/styles.css +289 -0
- package/src/app/favicon.ico +0 -0
- package/src/app/globals.css +223 -0
- package/src/app/layout.client.tsx +15 -0
- package/src/app/layout.tsx +30 -0
- package/src/components/app-sidebar.tsx +162 -0
- package/src/components/code-editor/mdx.lazy.tsx +18 -0
- package/src/components/code-editor/mdx.tsx +48 -0
- package/src/components/code-editor/yaml.lazy.tsx +20 -0
- package/src/components/code-editor/yaml.tsx +71 -0
- package/src/components/collection/actions.tsx +41 -0
- package/src/components/collection/client.tsx +63 -0
- package/src/components/collection/context.tsx +24 -0
- package/src/components/collection/document/actions.tsx +83 -0
- package/src/components/editor/editor-base-kit.tsx +37 -0
- package/src/components/editor/editor-kit.tsx +87 -0
- package/src/components/editor/md.tsx +60 -0
- package/src/components/editor/plugins/ai-kit.tsx +102 -0
- package/src/components/editor/plugins/align-base-kit.tsx +16 -0
- package/src/components/editor/plugins/align-kit.tsx +18 -0
- package/src/components/editor/plugins/autoformat-kit.tsx +236 -0
- package/src/components/editor/plugins/basic-blocks-base-kit.tsx +34 -0
- package/src/components/editor/plugins/basic-blocks-kit.tsx +87 -0
- package/src/components/editor/plugins/basic-marks-base-kit.tsx +26 -0
- package/src/components/editor/plugins/basic-marks-kit.tsx +40 -0
- package/src/components/editor/plugins/basic-nodes-kit.tsx +6 -0
- package/src/components/editor/plugins/block-menu-kit.tsx +14 -0
- package/src/components/editor/plugins/block-placeholder-kit.tsx +17 -0
- package/src/components/editor/plugins/block-selection-kit.tsx +54 -0
- package/src/components/editor/plugins/callout-base-kit.tsx +5 -0
- package/src/components/editor/plugins/callout-kit.tsx +7 -0
- package/src/components/editor/plugins/code-block-base-kit.tsx +16 -0
- package/src/components/editor/plugins/code-block-kit.tsx +19 -0
- package/src/components/editor/plugins/column-base-kit.tsx +11 -0
- package/src/components/editor/plugins/column-kit.tsx +10 -0
- package/src/components/editor/plugins/comment-base-kit.tsx +5 -0
- package/src/components/editor/plugins/comment-kit.tsx +92 -0
- package/src/components/editor/plugins/copilot-kit.tsx +70 -0
- package/src/components/editor/plugins/cursor-overlay-kit.tsx +13 -0
- package/src/components/editor/plugins/date-base-kit.tsx +5 -0
- package/src/components/editor/plugins/date-kit.tsx +7 -0
- package/src/components/editor/plugins/discussion-kit.tsx +142 -0
- package/src/components/editor/plugins/dnd-kit.tsx +25 -0
- package/src/components/editor/plugins/emoji-kit.tsx +13 -0
- package/src/components/editor/plugins/exit-break-kit.tsx +12 -0
- package/src/components/editor/plugins/fixed-toolbar-kit.tsx +19 -0
- package/src/components/editor/plugins/floating-toolbar-kit.tsx +19 -0
- package/src/components/editor/plugins/font-base-kit.tsx +20 -0
- package/src/components/editor/plugins/font-kit.tsx +29 -0
- package/src/components/editor/plugins/indent-base-kit.tsx +13 -0
- package/src/components/editor/plugins/indent-kit.tsx +22 -0
- package/src/components/editor/plugins/line-height-base-kit.tsx +14 -0
- package/src/components/editor/plugins/line-height-kit.tsx +16 -0
- package/src/components/editor/plugins/link-base-kit.tsx +5 -0
- package/src/components/editor/plugins/link-kit.tsx +15 -0
- package/src/components/editor/plugins/list-base-kit.tsx +17 -0
- package/src/components/editor/plugins/list-kit.tsx +26 -0
- package/src/components/editor/plugins/markdown-kit.tsx +13 -0
- package/src/components/editor/plugins/math-base-kit.tsx +11 -0
- package/src/components/editor/plugins/math-kit.tsx +10 -0
- package/src/components/editor/plugins/media-base-kit.tsx +25 -0
- package/src/components/editor/plugins/media-kit.tsx +28 -0
- package/src/components/editor/plugins/slash-kit.tsx +18 -0
- package/src/components/editor/plugins/suggestion-base-kit.tsx +5 -0
- package/src/components/editor/plugins/suggestion-kit.tsx +83 -0
- package/src/components/editor/plugins/table-base-kit.tsx +20 -0
- package/src/components/editor/plugins/table-kit.tsx +22 -0
- package/src/components/editor/settings-dialog.tsx +418 -0
- package/src/components/editor/transforms.ts +193 -0
- package/src/components/editor/types.ts +149 -0
- package/src/components/editor/ui/ai-chat-editor.tsx +20 -0
- package/src/components/editor/ui/ai-menu.tsx +663 -0
- package/src/components/editor/ui/ai-node.tsx +40 -0
- package/src/components/editor/ui/ai-toolbar-button.tsx +23 -0
- package/src/components/editor/ui/align-toolbar-button.tsx +78 -0
- package/src/components/editor/ui/block-context-menu.tsx +154 -0
- package/src/components/editor/ui/block-discussion.tsx +318 -0
- package/src/components/editor/ui/block-draggable.tsx +464 -0
- package/src/components/editor/ui/block-list-static.tsx +75 -0
- package/src/components/editor/ui/block-list.tsx +72 -0
- package/src/components/editor/ui/block-selection.tsx +37 -0
- package/src/components/editor/ui/block-suggestion.tsx +438 -0
- package/src/components/editor/ui/blockquote-node-static.tsx +5 -0
- package/src/components/editor/ui/blockquote-node.tsx +7 -0
- package/src/components/editor/ui/callout-node-static.tsx +30 -0
- package/src/components/editor/ui/callout-node.tsx +64 -0
- package/src/components/editor/ui/caption.tsx +55 -0
- package/src/components/editor/ui/code-block-node-static.tsx +33 -0
- package/src/components/editor/ui/code-block-node.tsx +161 -0
- package/src/components/editor/ui/code-node-static.tsx +15 -0
- package/src/components/editor/ui/code-node.tsx +17 -0
- package/src/components/editor/ui/column-node-static.tsx +27 -0
- package/src/components/editor/ui/column-node.tsx +285 -0
- package/src/components/editor/ui/comment-node-static.tsx +12 -0
- package/src/components/editor/ui/comment-node.tsx +43 -0
- package/src/components/editor/ui/comment-toolbar-button.tsx +24 -0
- package/src/components/editor/ui/comment.tsx +577 -0
- package/src/components/editor/ui/cursor-overlay.tsx +66 -0
- package/src/components/editor/ui/date-node-static.tsx +45 -0
- package/src/components/editor/ui/date-node.tsx +86 -0
- package/src/components/editor/ui/editor-static.tsx +47 -0
- package/src/components/editor/ui/editor.tsx +120 -0
- package/src/components/editor/ui/emoji-node.tsx +65 -0
- package/src/components/editor/ui/emoji-toolbar-button.tsx +582 -0
- package/src/components/editor/ui/equation-node-static.tsx +94 -0
- package/src/components/editor/ui/equation-node.tsx +218 -0
- package/src/components/editor/ui/equation-toolbar-button.tsx +24 -0
- package/src/components/editor/ui/fixed-toolbar-buttons.tsx +135 -0
- package/src/components/editor/ui/fixed-toolbar.tsx +17 -0
- package/src/components/editor/ui/floating-toolbar-buttons.tsx +72 -0
- package/src/components/editor/ui/floating-toolbar.tsx +76 -0
- package/src/components/editor/ui/font-color-toolbar-button.tsx +804 -0
- package/src/components/editor/ui/font-size-toolbar-button.tsx +102 -0
- package/src/components/editor/ui/ghost-text.tsx +27 -0
- package/src/components/editor/ui/heading-node-static.tsx +54 -0
- package/src/components/editor/ui/heading-node.tsx +54 -0
- package/src/components/editor/ui/highlight-node-static.tsx +11 -0
- package/src/components/editor/ui/highlight-node.tsx +13 -0
- package/src/components/editor/ui/history-toolbar-button.tsx +41 -0
- package/src/components/editor/ui/hr-node-static.tsx +16 -0
- package/src/components/editor/ui/hr-node.tsx +28 -0
- package/src/components/editor/ui/indent-toolbar-button.tsx +27 -0
- package/src/components/editor/ui/inline-combobox.tsx +251 -0
- package/src/components/editor/ui/insert-toolbar-button.tsx +242 -0
- package/src/components/editor/ui/kbd-node-static.tsx +15 -0
- package/src/components/editor/ui/kbd-node.tsx +17 -0
- package/src/components/editor/ui/line-height-toolbar-button.tsx +66 -0
- package/src/components/editor/ui/link-node-static.tsx +21 -0
- package/src/components/editor/ui/link-node.tsx +37 -0
- package/src/components/editor/ui/link-toolbar-button.tsx +18 -0
- package/src/components/editor/ui/link-toolbar.tsx +196 -0
- package/src/components/editor/ui/list-toolbar-button.tsx +195 -0
- package/src/components/editor/ui/mark-toolbar-button.tsx +20 -0
- package/src/components/editor/ui/media-image-node-static.tsx +33 -0
- package/src/components/editor/ui/media-image-node.tsx +75 -0
- package/src/components/editor/ui/media-placeholder-node.tsx +235 -0
- package/src/components/editor/ui/media-preview-dialog.tsx +145 -0
- package/src/components/editor/ui/media-toolbar-button.tsx +202 -0
- package/src/components/editor/ui/media-toolbar.tsx +100 -0
- package/src/components/editor/ui/media-upload-toast.tsx +59 -0
- package/src/components/editor/ui/media-video-node-static.tsx +23 -0
- package/src/components/editor/ui/mode-toolbar-button.tsx +121 -0
- package/src/components/editor/ui/paragraph-node-static.tsx +13 -0
- package/src/components/editor/ui/paragraph-node.tsx +15 -0
- package/src/components/editor/ui/resize-handle.tsx +79 -0
- package/src/components/editor/ui/slash-node.tsx +274 -0
- package/src/components/editor/ui/suggestion-node-static.tsx +30 -0
- package/src/components/editor/ui/suggestion-node.tsx +157 -0
- package/src/components/editor/ui/suggestion-toolbar-button.tsx +25 -0
- package/src/components/editor/ui/table-icons.tsx +685 -0
- package/src/components/editor/ui/table-node-static.tsx +86 -0
- package/src/components/editor/ui/table-node.tsx +569 -0
- package/src/components/editor/ui/table-toolbar-button.tsx +260 -0
- package/src/components/editor/ui/turn-into-toolbar-button.tsx +176 -0
- package/src/components/editor/use-chat.ts +120 -0
- package/src/components/icons/logo.tsx +37 -0
- package/src/components/json-schema-editor/client.tsx +55 -0
- package/src/components/json-schema-editor/components/inputs.tsx +612 -0
- package/src/components/json-schema-editor/get-default-values.ts +29 -0
- package/src/components/json-schema-editor/schema.tsx +206 -0
- package/src/components/json-schema-editor/utils/merge-schema.ts +167 -0
- package/src/components/json-schema-editor/utils/schema-to-string.ts +87 -0
- package/src/components/nav-user.tsx +102 -0
- package/src/components/site-header.tsx +13 -0
- package/src/components/ui/alert-dialog.tsx +182 -0
- package/src/components/ui/avatar.tsx +96 -0
- package/src/components/ui/badge.tsx +46 -0
- package/src/components/ui/button.tsx +65 -0
- package/src/components/ui/calendar.tsx +186 -0
- package/src/components/ui/checkbox.tsx +29 -0
- package/src/components/ui/combobox.tsx +267 -0
- package/src/components/ui/command.tsx +180 -0
- package/src/components/ui/context-menu.tsx +161 -0
- package/src/components/ui/dialog.tsx +142 -0
- package/src/components/ui/drawer.tsx +120 -0
- package/src/components/ui/dropdown-menu.tsx +239 -0
- package/src/components/ui/field.tsx +224 -0
- package/src/components/ui/input-group.tsx +144 -0
- package/src/components/ui/input.tsx +19 -0
- package/src/components/ui/label.tsx +18 -0
- package/src/components/ui/popover.tsx +76 -0
- package/src/components/ui/select.tsx +182 -0
- package/src/components/ui/separator.tsx +28 -0
- package/src/components/ui/sheet.tsx +130 -0
- package/src/components/ui/sidebar.tsx +608 -0
- package/src/components/ui/sonner.tsx +45 -0
- package/src/components/ui/spinner.tsx +15 -0
- package/src/components/ui/table.tsx +89 -0
- package/src/components/ui/tabs.tsx +60 -0
- package/src/components/ui/textarea.tsx +18 -0
- package/src/components/ui/toggle-group.tsx +86 -0
- package/src/components/ui/toggle.tsx +45 -0
- package/src/components/ui/toolbar.tsx +365 -0
- package/src/components/ui/tooltip.tsx +57 -0
- package/src/hooks/editor/use-is-creator.ts +21 -0
- package/src/hooks/use-mobile.ts +19 -0
- package/src/hooks/use-mounted.ts +11 -0
- package/src/hooks/use-upload-file.ts +121 -0
- package/src/lib/ai/markdown-joiner-transform.ts +235 -0
- package/src/lib/config.ts +60 -0
- package/src/lib/data/actions.ts +51 -0
- package/src/lib/data/boundary.client.tsx +22 -0
- package/src/lib/data/boundary.tsx +22 -0
- package/src/lib/data/query.ts +9 -0
- package/src/lib/data/store.ts +52 -0
- package/src/lib/lowlight.ts +3 -0
- package/src/lib/uploadthing.ts +19 -0
- package/src/lib/utils/deep-equal.ts +37 -0
- package/src/lib/utils/remove-undefined.ts +21 -0
- package/src/lib/utils/urls.ts +6 -0
- package/src/lib/utils.ts +6 -0
- package/tsconfig.build.json +24 -0
- package/tsconfig.json +37 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import type * as React from "react";
|
|
4
|
+
import { AlertDialog as AlertDialogPrimitive } from "radix-ui";
|
|
5
|
+
|
|
6
|
+
import { cn } from "@/lib/utils";
|
|
7
|
+
import { Button } from "@/components/ui/button";
|
|
8
|
+
|
|
9
|
+
function AlertDialog({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Root>) {
|
|
10
|
+
return <AlertDialogPrimitive.Root data-slot="alert-dialog" {...props} />;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function AlertDialogTrigger({
|
|
14
|
+
...props
|
|
15
|
+
}: React.ComponentProps<typeof AlertDialogPrimitive.Trigger>) {
|
|
16
|
+
return <AlertDialogPrimitive.Trigger data-slot="alert-dialog-trigger" {...props} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function AlertDialogPortal({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Portal>) {
|
|
20
|
+
return <AlertDialogPrimitive.Portal data-slot="alert-dialog-portal" {...props} />;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function AlertDialogOverlay({
|
|
24
|
+
className,
|
|
25
|
+
...props
|
|
26
|
+
}: React.ComponentProps<typeof AlertDialogPrimitive.Overlay>) {
|
|
27
|
+
return (
|
|
28
|
+
<AlertDialogPrimitive.Overlay
|
|
29
|
+
data-slot="alert-dialog-overlay"
|
|
30
|
+
className={cn(
|
|
31
|
+
"data-closed:fade-out-0 data-open:fade-in-0 fixed inset-0 z-50 bg-black/80 duration-100 data-closed:animate-out data-open:animate-in supports-backdrop-filter:backdrop-blur-xs",
|
|
32
|
+
className,
|
|
33
|
+
)}
|
|
34
|
+
{...props}
|
|
35
|
+
/>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function AlertDialogContent({
|
|
40
|
+
className,
|
|
41
|
+
size = "default",
|
|
42
|
+
...props
|
|
43
|
+
}: React.ComponentProps<typeof AlertDialogPrimitive.Content> & {
|
|
44
|
+
size?: "default" | "sm";
|
|
45
|
+
}) {
|
|
46
|
+
return (
|
|
47
|
+
<AlertDialogPortal>
|
|
48
|
+
<AlertDialogOverlay />
|
|
49
|
+
<AlertDialogPrimitive.Content
|
|
50
|
+
data-slot="alert-dialog-content"
|
|
51
|
+
data-size={size}
|
|
52
|
+
className={cn(
|
|
53
|
+
"data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 group/alert-dialog-content fixed top-1/2 left-1/2 z-50 grid w-full -translate-x-1/2 -translate-y-1/2 gap-6 rounded-4xl bg-background p-6 outline-none ring-1 ring-foreground/5 duration-100 data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-closed:animate-out data-open:animate-in data-[size=default]:sm:max-w-md",
|
|
54
|
+
className,
|
|
55
|
+
)}
|
|
56
|
+
{...props}
|
|
57
|
+
/>
|
|
58
|
+
</AlertDialogPortal>
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">) {
|
|
63
|
+
return (
|
|
64
|
+
<div
|
|
65
|
+
data-slot="alert-dialog-header"
|
|
66
|
+
className={cn(
|
|
67
|
+
"grid grid-rows-[auto_1fr] place-items-center gap-1.5 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-6 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]",
|
|
68
|
+
className,
|
|
69
|
+
)}
|
|
70
|
+
{...props}
|
|
71
|
+
/>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">) {
|
|
76
|
+
return (
|
|
77
|
+
<div
|
|
78
|
+
data-slot="alert-dialog-footer"
|
|
79
|
+
className={cn(
|
|
80
|
+
"flex flex-col-reverse gap-2 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end",
|
|
81
|
+
className,
|
|
82
|
+
)}
|
|
83
|
+
{...props}
|
|
84
|
+
/>
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
function AlertDialogMedia({ className, ...props }: React.ComponentProps<"div">) {
|
|
89
|
+
return (
|
|
90
|
+
<div
|
|
91
|
+
data-slot="alert-dialog-media"
|
|
92
|
+
className={cn(
|
|
93
|
+
"mb-2 inline-flex size-16 items-center justify-center rounded-full bg-muted sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-8",
|
|
94
|
+
className,
|
|
95
|
+
)}
|
|
96
|
+
{...props}
|
|
97
|
+
/>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function AlertDialogTitle({
|
|
102
|
+
className,
|
|
103
|
+
...props
|
|
104
|
+
}: React.ComponentProps<typeof AlertDialogPrimitive.Title>) {
|
|
105
|
+
return (
|
|
106
|
+
<AlertDialogPrimitive.Title
|
|
107
|
+
data-slot="alert-dialog-title"
|
|
108
|
+
className={cn(
|
|
109
|
+
"font-medium text-lg sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2",
|
|
110
|
+
className,
|
|
111
|
+
)}
|
|
112
|
+
{...props}
|
|
113
|
+
/>
|
|
114
|
+
);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
function AlertDialogDescription({
|
|
118
|
+
className,
|
|
119
|
+
...props
|
|
120
|
+
}: React.ComponentProps<typeof AlertDialogPrimitive.Description>) {
|
|
121
|
+
return (
|
|
122
|
+
<AlertDialogPrimitive.Description
|
|
123
|
+
data-slot="alert-dialog-description"
|
|
124
|
+
className={cn(
|
|
125
|
+
"text-balance text-muted-foreground text-sm md:text-pretty *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground",
|
|
126
|
+
className,
|
|
127
|
+
)}
|
|
128
|
+
{...props}
|
|
129
|
+
/>
|
|
130
|
+
);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
function AlertDialogAction({
|
|
134
|
+
className,
|
|
135
|
+
variant = "default",
|
|
136
|
+
size = "default",
|
|
137
|
+
...props
|
|
138
|
+
}: React.ComponentProps<typeof AlertDialogPrimitive.Action> &
|
|
139
|
+
Pick<React.ComponentProps<typeof Button>, "variant" | "size">) {
|
|
140
|
+
return (
|
|
141
|
+
<Button variant={variant} size={size} asChild>
|
|
142
|
+
<AlertDialogPrimitive.Action
|
|
143
|
+
data-slot="alert-dialog-action"
|
|
144
|
+
className={cn(className)}
|
|
145
|
+
{...props}
|
|
146
|
+
/>
|
|
147
|
+
</Button>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
function AlertDialogCancel({
|
|
152
|
+
className,
|
|
153
|
+
variant = "outline",
|
|
154
|
+
size = "default",
|
|
155
|
+
...props
|
|
156
|
+
}: React.ComponentProps<typeof AlertDialogPrimitive.Cancel> &
|
|
157
|
+
Pick<React.ComponentProps<typeof Button>, "variant" | "size">) {
|
|
158
|
+
return (
|
|
159
|
+
<Button variant={variant} size={size} asChild>
|
|
160
|
+
<AlertDialogPrimitive.Cancel
|
|
161
|
+
data-slot="alert-dialog-cancel"
|
|
162
|
+
className={cn(className)}
|
|
163
|
+
{...props}
|
|
164
|
+
/>
|
|
165
|
+
</Button>
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export {
|
|
170
|
+
AlertDialog,
|
|
171
|
+
AlertDialogAction,
|
|
172
|
+
AlertDialogCancel,
|
|
173
|
+
AlertDialogContent,
|
|
174
|
+
AlertDialogDescription,
|
|
175
|
+
AlertDialogFooter,
|
|
176
|
+
AlertDialogHeader,
|
|
177
|
+
AlertDialogMedia,
|
|
178
|
+
AlertDialogOverlay,
|
|
179
|
+
AlertDialogPortal,
|
|
180
|
+
AlertDialogTitle,
|
|
181
|
+
AlertDialogTrigger,
|
|
182
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import type * as React from "react";
|
|
4
|
+
import { Avatar as AvatarPrimitive } from "radix-ui";
|
|
5
|
+
|
|
6
|
+
import { cn } from "@/lib/utils";
|
|
7
|
+
|
|
8
|
+
function Avatar({
|
|
9
|
+
className,
|
|
10
|
+
size = "default",
|
|
11
|
+
...props
|
|
12
|
+
}: React.ComponentProps<typeof AvatarPrimitive.Root> & {
|
|
13
|
+
size?: "default" | "sm" | "lg";
|
|
14
|
+
}) {
|
|
15
|
+
return (
|
|
16
|
+
<AvatarPrimitive.Root
|
|
17
|
+
data-slot="avatar"
|
|
18
|
+
data-size={size}
|
|
19
|
+
className={cn(
|
|
20
|
+
"group/avatar relative flex size-8 shrink-0 select-none rounded-full after:absolute after:inset-0 after:rounded-full after:border after:border-border after:mix-blend-darken data-[size=lg]:size-10 data-[size=sm]:size-6 dark:after:mix-blend-lighten",
|
|
21
|
+
className,
|
|
22
|
+
)}
|
|
23
|
+
{...props}
|
|
24
|
+
/>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function AvatarImage({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Image>) {
|
|
29
|
+
return (
|
|
30
|
+
<AvatarPrimitive.Image
|
|
31
|
+
data-slot="avatar-image"
|
|
32
|
+
className={cn("aspect-square size-full rounded-full object-cover", className)}
|
|
33
|
+
{...props}
|
|
34
|
+
/>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function AvatarFallback({
|
|
39
|
+
className,
|
|
40
|
+
...props
|
|
41
|
+
}: React.ComponentProps<typeof AvatarPrimitive.Fallback>) {
|
|
42
|
+
return (
|
|
43
|
+
<AvatarPrimitive.Fallback
|
|
44
|
+
data-slot="avatar-fallback"
|
|
45
|
+
className={cn(
|
|
46
|
+
"flex size-full items-center justify-center rounded-full bg-muted text-muted-foreground text-sm group-data-[size=sm]/avatar:text-xs",
|
|
47
|
+
className,
|
|
48
|
+
)}
|
|
49
|
+
{...props}
|
|
50
|
+
/>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function AvatarBadge({ className, ...props }: React.ComponentProps<"span">) {
|
|
55
|
+
return (
|
|
56
|
+
<span
|
|
57
|
+
data-slot="avatar-badge"
|
|
58
|
+
className={cn(
|
|
59
|
+
"absolute right-0 bottom-0 z-10 inline-flex select-none items-center justify-center rounded-full bg-primary text-primary-foreground bg-blend-color ring-2 ring-background",
|
|
60
|
+
"group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden",
|
|
61
|
+
"group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2",
|
|
62
|
+
"group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2",
|
|
63
|
+
className,
|
|
64
|
+
)}
|
|
65
|
+
{...props}
|
|
66
|
+
/>
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
function AvatarGroup({ className, ...props }: React.ComponentProps<"div">) {
|
|
71
|
+
return (
|
|
72
|
+
<div
|
|
73
|
+
data-slot="avatar-group"
|
|
74
|
+
className={cn(
|
|
75
|
+
"group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2 *:data-[slot=avatar]:ring-background",
|
|
76
|
+
className,
|
|
77
|
+
)}
|
|
78
|
+
{...props}
|
|
79
|
+
/>
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function AvatarGroupCount({ className, ...props }: React.ComponentProps<"div">) {
|
|
84
|
+
return (
|
|
85
|
+
<div
|
|
86
|
+
data-slot="avatar-group-count"
|
|
87
|
+
className={cn(
|
|
88
|
+
"relative flex size-8 shrink-0 items-center justify-center rounded-full bg-muted text-muted-foreground text-sm ring-2 ring-background group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",
|
|
89
|
+
className,
|
|
90
|
+
)}
|
|
91
|
+
{...props}
|
|
92
|
+
/>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export { Avatar, AvatarImage, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarBadge };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type * as React from "react";
|
|
2
|
+
import { cva, type VariantProps } from "class-variance-authority";
|
|
3
|
+
import { Slot } from "radix-ui";
|
|
4
|
+
|
|
5
|
+
import { cn } from "@/lib/utils";
|
|
6
|
+
|
|
7
|
+
const badgeVariants = cva(
|
|
8
|
+
"h-5 gap-1 rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium transition-all has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&>svg]:size-3! inline-flex items-center justify-center w-fit whitespace-nowrap shrink-0 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-colors overflow-hidden group/badge",
|
|
9
|
+
{
|
|
10
|
+
variants: {
|
|
11
|
+
variant: {
|
|
12
|
+
default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80",
|
|
13
|
+
secondary: "bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",
|
|
14
|
+
destructive:
|
|
15
|
+
"bg-destructive/10 [a]:hover:bg-destructive/20 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 text-destructive dark:bg-destructive/20",
|
|
16
|
+
outline:
|
|
17
|
+
"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground bg-input/30",
|
|
18
|
+
ghost: "hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",
|
|
19
|
+
link: "text-primary underline-offset-4 hover:underline",
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
defaultVariants: {
|
|
23
|
+
variant: "default",
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
function Badge({
|
|
29
|
+
className,
|
|
30
|
+
variant = "default",
|
|
31
|
+
asChild = false,
|
|
32
|
+
...props
|
|
33
|
+
}: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & { asChild?: boolean }) {
|
|
34
|
+
const Comp = asChild ? Slot.Root : "span";
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<Comp
|
|
38
|
+
data-slot="badge"
|
|
39
|
+
data-variant={variant}
|
|
40
|
+
className={cn(badgeVariants({ variant }), className)}
|
|
41
|
+
{...props}
|
|
42
|
+
/>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export { Badge, badgeVariants };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import type * as React from "react";
|
|
2
|
+
import { cva, type VariantProps } from "class-variance-authority";
|
|
3
|
+
import { Slot } from "radix-ui";
|
|
4
|
+
|
|
5
|
+
import { cn } from "@/lib/utils";
|
|
6
|
+
|
|
7
|
+
const buttonVariants = cva(
|
|
8
|
+
"focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 rounded-4xl border border-transparent bg-clip-padding text-sm font-medium focus-visible:ring-[3px] aria-invalid:ring-[3px] [&_svg]:size-4 inline-flex items-center justify-center whitespace-nowrap transition-all disabled:pointer-events-none disabled:opacity-50 shrink-0 [&_svg]:shrink-0 outline-none group/button select-none",
|
|
9
|
+
{
|
|
10
|
+
variants: {
|
|
11
|
+
variant: {
|
|
12
|
+
default: "bg-primary text-primary-foreground hover:bg-primary/80",
|
|
13
|
+
outline:
|
|
14
|
+
"border-border bg-input/30 hover:bg-input/50 hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground",
|
|
15
|
+
secondary:
|
|
16
|
+
"bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground",
|
|
17
|
+
ghost:
|
|
18
|
+
"hover:bg-muted hover:text-foreground dark:hover:bg-muted/50 aria-expanded:bg-muted aria-expanded:text-foreground",
|
|
19
|
+
destructive:
|
|
20
|
+
"bg-destructive/10 hover:bg-destructive/20 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/20 text-destructive focus-visible:border-destructive/40 dark:hover:bg-destructive/30",
|
|
21
|
+
link: "text-primary underline-offset-4 hover:underline",
|
|
22
|
+
},
|
|
23
|
+
size: {
|
|
24
|
+
default:
|
|
25
|
+
"h-9 gap-1.5 px-3 has-data-[icon=inline-end]:pr-2.5 has-data-[icon=inline-start]:pl-2.5",
|
|
26
|
+
xs: "h-6 gap-1 px-2.5 text-xs has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 [&_svg:not([class*='size-'])]:size-3",
|
|
27
|
+
sm: "h-8 gap-1 px-3 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",
|
|
28
|
+
lg: "h-10 gap-1.5 px-4 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3",
|
|
29
|
+
icon: "size-9",
|
|
30
|
+
"icon-xs": "size-6 [&_svg:not([class*='size-'])]:size-3",
|
|
31
|
+
"icon-sm": "size-8",
|
|
32
|
+
"icon-lg": "size-10",
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
defaultVariants: {
|
|
36
|
+
variant: "default",
|
|
37
|
+
size: "default",
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
function Button({
|
|
43
|
+
className,
|
|
44
|
+
variant = "default",
|
|
45
|
+
size = "default",
|
|
46
|
+
asChild = false,
|
|
47
|
+
...props
|
|
48
|
+
}: React.ComponentProps<"button"> &
|
|
49
|
+
VariantProps<typeof buttonVariants> & {
|
|
50
|
+
asChild?: boolean;
|
|
51
|
+
}) {
|
|
52
|
+
const Comp = asChild ? Slot.Root : "button";
|
|
53
|
+
|
|
54
|
+
return (
|
|
55
|
+
<Comp
|
|
56
|
+
data-slot="button"
|
|
57
|
+
data-variant={variant}
|
|
58
|
+
data-size={size}
|
|
59
|
+
className={cn(buttonVariants({ variant, size, className }))}
|
|
60
|
+
{...props}
|
|
61
|
+
/>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export { Button, buttonVariants };
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { DayPicker, getDefaultClassNames, type DayButton } from "react-day-picker";
|
|
5
|
+
|
|
6
|
+
import { cn } from "@/lib/utils";
|
|
7
|
+
import { Button, buttonVariants } from "@/components/ui/button";
|
|
8
|
+
import { ChevronLeftIcon, ChevronRightIcon, ChevronDownIcon } from "lucide-react";
|
|
9
|
+
|
|
10
|
+
function Calendar({
|
|
11
|
+
className,
|
|
12
|
+
classNames,
|
|
13
|
+
showOutsideDays = true,
|
|
14
|
+
captionLayout = "label",
|
|
15
|
+
buttonVariant = "ghost",
|
|
16
|
+
formatters,
|
|
17
|
+
components,
|
|
18
|
+
...props
|
|
19
|
+
}: React.ComponentProps<typeof DayPicker> & {
|
|
20
|
+
buttonVariant?: React.ComponentProps<typeof Button>["variant"];
|
|
21
|
+
}) {
|
|
22
|
+
const defaultClassNames = getDefaultClassNames();
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<DayPicker
|
|
26
|
+
showOutsideDays={showOutsideDays}
|
|
27
|
+
className={cn(
|
|
28
|
+
"p-3 [--cell-radius:var(--radius-4xl)] [--cell-size:--spacing(8)] bg-background group/calendar in-data-[slot=card-content]:bg-transparent in-data-[slot=popover-content]:bg-transparent",
|
|
29
|
+
String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,
|
|
30
|
+
String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,
|
|
31
|
+
className,
|
|
32
|
+
)}
|
|
33
|
+
captionLayout={captionLayout}
|
|
34
|
+
formatters={{
|
|
35
|
+
formatMonthDropdown: (date) => date.toLocaleString("default", { month: "short" }),
|
|
36
|
+
...formatters,
|
|
37
|
+
}}
|
|
38
|
+
classNames={{
|
|
39
|
+
root: cn("w-fit", defaultClassNames.root),
|
|
40
|
+
months: cn("flex gap-4 flex-col md:flex-row relative", defaultClassNames.months),
|
|
41
|
+
month: cn("flex flex-col w-full gap-4", defaultClassNames.month),
|
|
42
|
+
nav: cn(
|
|
43
|
+
"flex items-center gap-1 w-full absolute top-0 inset-x-0 justify-between",
|
|
44
|
+
defaultClassNames.nav,
|
|
45
|
+
),
|
|
46
|
+
button_previous: cn(
|
|
47
|
+
buttonVariants({ variant: buttonVariant }),
|
|
48
|
+
"size-(--cell-size) aria-disabled:opacity-50 p-0 select-none",
|
|
49
|
+
defaultClassNames.button_previous,
|
|
50
|
+
),
|
|
51
|
+
button_next: cn(
|
|
52
|
+
buttonVariants({ variant: buttonVariant }),
|
|
53
|
+
"size-(--cell-size) aria-disabled:opacity-50 p-0 select-none",
|
|
54
|
+
defaultClassNames.button_next,
|
|
55
|
+
),
|
|
56
|
+
month_caption: cn(
|
|
57
|
+
"flex items-center justify-center h-(--cell-size) w-full px-(--cell-size)",
|
|
58
|
+
defaultClassNames.month_caption,
|
|
59
|
+
),
|
|
60
|
+
dropdowns: cn(
|
|
61
|
+
"w-full flex items-center text-sm font-medium justify-center h-(--cell-size) gap-1.5",
|
|
62
|
+
defaultClassNames.dropdowns,
|
|
63
|
+
),
|
|
64
|
+
dropdown_root: cn(
|
|
65
|
+
"relative cn-calendar-dropdown-root rounded-(--cell-radius)",
|
|
66
|
+
defaultClassNames.dropdown_root,
|
|
67
|
+
),
|
|
68
|
+
dropdown: cn("absolute bg-popover inset-0 opacity-0", defaultClassNames.dropdown),
|
|
69
|
+
caption_label: cn(
|
|
70
|
+
"select-none font-medium",
|
|
71
|
+
captionLayout === "label"
|
|
72
|
+
? "text-sm"
|
|
73
|
+
: "cn-calendar-caption-label rounded-(--cell-radius) flex items-center gap-1 text-sm [&>svg]:text-muted-foreground [&>svg]:size-3.5",
|
|
74
|
+
defaultClassNames.caption_label,
|
|
75
|
+
),
|
|
76
|
+
table: "w-full border-collapse",
|
|
77
|
+
weekdays: cn("flex", defaultClassNames.weekdays),
|
|
78
|
+
weekday: cn(
|
|
79
|
+
"text-muted-foreground rounded-(--cell-radius) flex-1 font-normal text-[0.8rem] select-none",
|
|
80
|
+
defaultClassNames.weekday,
|
|
81
|
+
),
|
|
82
|
+
week: cn("flex w-full mt-2", defaultClassNames.week),
|
|
83
|
+
week_number_header: cn("select-none w-(--cell-size)", defaultClassNames.week_number_header),
|
|
84
|
+
week_number: cn(
|
|
85
|
+
"text-[0.8rem] select-none text-muted-foreground",
|
|
86
|
+
defaultClassNames.week_number,
|
|
87
|
+
),
|
|
88
|
+
day: cn(
|
|
89
|
+
"relative w-full rounded-(--cell-radius) h-full p-0 text-center [&:last-child[data-selected=true]_button]:rounded-r-(--cell-radius) group/day aspect-square select-none",
|
|
90
|
+
props.showWeekNumber
|
|
91
|
+
? "[&:nth-child(2)[data-selected=true]_button]:rounded-l-(--cell-radius)"
|
|
92
|
+
: "[&:first-child[data-selected=true]_button]:rounded-l-(--cell-radius)",
|
|
93
|
+
defaultClassNames.day,
|
|
94
|
+
),
|
|
95
|
+
range_start: cn(
|
|
96
|
+
"rounded-l-(--cell-radius) bg-muted elative after:bg-muted after:absolute after:inset-y-0 after:w-4 after:right-0 -z-0 isolate",
|
|
97
|
+
defaultClassNames.range_start,
|
|
98
|
+
),
|
|
99
|
+
range_middle: cn("rounded-none", defaultClassNames.range_middle),
|
|
100
|
+
range_end: cn(
|
|
101
|
+
"rounded-r-(--cell-radius) bg-muted relative after:bg-muted-200 after:absolute after:inset-y-0 after:w-4 after:left-0 -z-0 isolate",
|
|
102
|
+
defaultClassNames.range_end,
|
|
103
|
+
),
|
|
104
|
+
today: cn(
|
|
105
|
+
"bg-muted text-foreground rounded-(--cell-radius) data-[selected=true]:rounded-none",
|
|
106
|
+
defaultClassNames.today,
|
|
107
|
+
),
|
|
108
|
+
outside: cn(
|
|
109
|
+
"text-muted-foreground aria-selected:text-muted-foreground",
|
|
110
|
+
defaultClassNames.outside,
|
|
111
|
+
),
|
|
112
|
+
disabled: cn("text-muted-foreground opacity-50", defaultClassNames.disabled),
|
|
113
|
+
hidden: cn("invisible", defaultClassNames.hidden),
|
|
114
|
+
...classNames,
|
|
115
|
+
}}
|
|
116
|
+
components={{
|
|
117
|
+
Root: ({ className, rootRef, ...props }) => {
|
|
118
|
+
return <div data-slot="calendar" ref={rootRef} className={cn(className)} {...props} />;
|
|
119
|
+
},
|
|
120
|
+
Chevron: ({ className, orientation, ...props }) => {
|
|
121
|
+
if (orientation === "left") {
|
|
122
|
+
return <ChevronLeftIcon className={cn("size-4", className)} {...props} />;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if (orientation === "right") {
|
|
126
|
+
return <ChevronRightIcon className={cn("size-4", className)} {...props} />;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
return <ChevronDownIcon className={cn("size-4", className)} {...props} />;
|
|
130
|
+
},
|
|
131
|
+
DayButton: CalendarDayButton,
|
|
132
|
+
WeekNumber: ({ children, ...props }) => {
|
|
133
|
+
return (
|
|
134
|
+
<td {...props}>
|
|
135
|
+
<div className="flex size-(--cell-size) items-center justify-center text-center">
|
|
136
|
+
{children}
|
|
137
|
+
</div>
|
|
138
|
+
</td>
|
|
139
|
+
);
|
|
140
|
+
},
|
|
141
|
+
...components,
|
|
142
|
+
}}
|
|
143
|
+
{...props}
|
|
144
|
+
/>
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
function CalendarDayButton({
|
|
149
|
+
className,
|
|
150
|
+
day,
|
|
151
|
+
modifiers,
|
|
152
|
+
...props
|
|
153
|
+
}: React.ComponentProps<typeof DayButton>) {
|
|
154
|
+
const defaultClassNames = getDefaultClassNames();
|
|
155
|
+
|
|
156
|
+
const ref = React.useRef<HTMLButtonElement>(null);
|
|
157
|
+
React.useEffect(() => {
|
|
158
|
+
if (modifiers.focused) ref.current?.focus();
|
|
159
|
+
}, [modifiers.focused]);
|
|
160
|
+
|
|
161
|
+
return (
|
|
162
|
+
<Button
|
|
163
|
+
ref={ref}
|
|
164
|
+
variant="ghost"
|
|
165
|
+
size="icon"
|
|
166
|
+
data-day={day.date.toLocaleDateString()}
|
|
167
|
+
data-selected-single={
|
|
168
|
+
modifiers.selected &&
|
|
169
|
+
!modifiers.range_start &&
|
|
170
|
+
!modifiers.range_end &&
|
|
171
|
+
!modifiers.range_middle
|
|
172
|
+
}
|
|
173
|
+
data-range-start={modifiers.range_start}
|
|
174
|
+
data-range-end={modifiers.range_end}
|
|
175
|
+
data-range-middle={modifiers.range_middle}
|
|
176
|
+
className={cn(
|
|
177
|
+
"data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-muted data-[range-middle=true]:text-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 dark:hover:text-foreground relative isolate z-10 flex aspect-square size-auto w-full min-w-(--cell-size) flex-col gap-1 border-0 leading-none font-normal group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] data-[range-end=true]:rounded-(--cell-radius) data-[range-end=true]:rounded-r-(--cell-radius) data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-(--cell-radius) data-[range-start=true]:rounded-l-(--cell-radius) [&>span]:text-xs [&>span]:opacity-70",
|
|
178
|
+
defaultClassNames.day,
|
|
179
|
+
className,
|
|
180
|
+
)}
|
|
181
|
+
{...props}
|
|
182
|
+
/>
|
|
183
|
+
);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export { Calendar, CalendarDayButton };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import type * as React from "react";
|
|
4
|
+
import { Checkbox as CheckboxPrimitive } from "radix-ui";
|
|
5
|
+
|
|
6
|
+
import { cn } from "@/lib/utils";
|
|
7
|
+
import { CheckIcon } from "lucide-react";
|
|
8
|
+
|
|
9
|
+
function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>) {
|
|
10
|
+
return (
|
|
11
|
+
<CheckboxPrimitive.Root
|
|
12
|
+
data-slot="checkbox"
|
|
13
|
+
className={cn(
|
|
14
|
+
"peer relative flex size-4 shrink-0 items-center justify-center rounded-[6px] border border-input outline-none transition-shadow after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 group-has-disabled/field:opacity-50 aria-invalid:border-destructive aria-invalid:ring-[3px] aria-invalid:ring-destructive/20 aria-invalid:aria-checked:border-primary data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground dark:bg-input/30 dark:data-checked:bg-primary dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",
|
|
15
|
+
className,
|
|
16
|
+
)}
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<CheckboxPrimitive.Indicator
|
|
20
|
+
data-slot="checkbox-indicator"
|
|
21
|
+
className="grid place-content-center text-current transition-none [&>svg]:size-3.5"
|
|
22
|
+
>
|
|
23
|
+
<CheckIcon />
|
|
24
|
+
</CheckboxPrimitive.Indicator>
|
|
25
|
+
</CheckboxPrimitive.Root>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export { Checkbox };
|