├── .claude ├── AGENTS.md ├── prompt.json ├── rules │ ├── 1-app-design-document.mdc │ ├── 2-tech-stack.mdc │ ├── 3-project-status.mdc │ ├── components.mdc │ └── react.mdc ├── scripts │ ├── post-compact.sh │ ├── session-start.sh │ └── user-prompt-submit.sh ├── settings.json └── skiller.toml ├── .env.example ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── biome.jsonc ├── bun.lock ├── components.json ├── eslint.config.mjs ├── lefthook.yml ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── src ├── app │ ├── api │ │ ├── ai │ │ │ ├── command │ │ │ │ ├── prompts.ts │ │ │ │ ├── route.ts │ │ │ │ └── utils.ts │ │ │ └── copilot │ │ │ │ └── route.ts │ │ └── uploadthing │ │ │ └── route.ts │ ├── editor │ │ └── page.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── editor │ │ ├── editor-base-kit.tsx │ │ ├── editor-kit.tsx │ │ ├── plate-editor.tsx │ │ ├── plate-types.ts │ │ ├── plugins │ │ │ ├── ai-kit.tsx │ │ │ ├── align-base-kit.tsx │ │ │ ├── align-kit.tsx │ │ │ ├── autoformat-kit.tsx │ │ │ ├── basic-blocks-base-kit.tsx │ │ │ ├── basic-blocks-kit.tsx │ │ │ ├── basic-marks-base-kit.tsx │ │ │ ├── basic-marks-kit.tsx │ │ │ ├── basic-nodes-kit.tsx │ │ │ ├── block-menu-kit.tsx │ │ │ ├── block-placeholder-kit.tsx │ │ │ ├── block-selection-kit.tsx │ │ │ ├── callout-base-kit.tsx │ │ │ ├── callout-kit.tsx │ │ │ ├── code-block-base-kit.tsx │ │ │ ├── code-block-kit.tsx │ │ │ ├── column-base-kit.tsx │ │ │ ├── column-kit.tsx │ │ │ ├── comment-base-kit.tsx │ │ │ ├── comment-kit.tsx │ │ │ ├── copilot-kit.tsx │ │ │ ├── cursor-overlay-kit.tsx │ │ │ ├── date-base-kit.tsx │ │ │ ├── date-kit.tsx │ │ │ ├── discussion-kit.tsx │ │ │ ├── dnd-kit.tsx │ │ │ ├── docx-kit.tsx │ │ │ ├── emoji-kit.tsx │ │ │ ├── exit-break-kit.tsx │ │ │ ├── fixed-toolbar-kit.tsx │ │ │ ├── floating-toolbar-kit.tsx │ │ │ ├── font-base-kit.tsx │ │ │ ├── font-kit.tsx │ │ │ ├── indent-base-kit.tsx │ │ │ ├── indent-kit.tsx │ │ │ ├── line-height-base-kit.tsx │ │ │ ├── line-height-kit.tsx │ │ │ ├── link-base-kit.tsx │ │ │ ├── link-kit.tsx │ │ │ ├── list-base-kit.tsx │ │ │ ├── list-kit.tsx │ │ │ ├── markdown-kit.tsx │ │ │ ├── math-base-kit.tsx │ │ │ ├── math-kit.tsx │ │ │ ├── media-base-kit.tsx │ │ │ ├── media-kit.tsx │ │ │ ├── mention-base-kit.tsx │ │ │ ├── mention-kit.tsx │ │ │ ├── slash-kit.tsx │ │ │ ├── suggestion-base-kit.tsx │ │ │ ├── suggestion-kit.tsx │ │ │ ├── table-base-kit.tsx │ │ │ ├── table-kit.tsx │ │ │ ├── toc-base-kit.tsx │ │ │ ├── toc-kit.tsx │ │ │ ├── toggle-base-kit.tsx │ │ │ └── toggle-kit.tsx │ │ ├── settings-dialog.tsx │ │ ├── transforms.ts │ │ └── use-chat.ts │ └── ui │ │ ├── ai-chat-editor.tsx │ │ ├── ai-menu.tsx │ │ ├── ai-node.tsx │ │ ├── ai-toolbar-button.tsx │ │ ├── alert-dialog.tsx │ │ ├── align-toolbar-button.tsx │ │ ├── avatar.tsx │ │ ├── block-context-menu.tsx │ │ ├── block-discussion.tsx │ │ ├── block-draggable.tsx │ │ ├── block-list-static.tsx │ │ ├── block-list.tsx │ │ ├── block-selection.tsx │ │ ├── block-suggestion.tsx │ │ ├── blockquote-node-static.tsx │ │ ├── blockquote-node.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── callout-node-static.tsx │ │ ├── callout-node.tsx │ │ ├── caption.tsx │ │ ├── checkbox.tsx │ │ ├── code-block-node-static.tsx │ │ ├── code-block-node.tsx │ │ ├── code-node-static.tsx │ │ ├── code-node.tsx │ │ ├── column-node-static.tsx │ │ ├── column-node.tsx │ │ ├── command.tsx │ │ ├── comment-node-static.tsx │ │ ├── comment-node.tsx │ │ ├── comment-toolbar-button.tsx │ │ ├── comment.tsx │ │ ├── context-menu.tsx │ │ ├── cursor-overlay.tsx │ │ ├── date-node-static.tsx │ │ ├── date-node.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── editor-static.tsx │ │ ├── editor.tsx │ │ ├── emoji-node.tsx │ │ ├── emoji-toolbar-button.tsx │ │ ├── equation-node-static.tsx │ │ ├── equation-node.tsx │ │ ├── equation-toolbar-button.tsx │ │ ├── export-toolbar-button.tsx │ │ ├── fixed-toolbar-buttons.tsx │ │ ├── fixed-toolbar.tsx │ │ ├── floating-toolbar-buttons.tsx │ │ ├── floating-toolbar.tsx │ │ ├── font-color-toolbar-button.tsx │ │ ├── font-size-toolbar-button.tsx │ │ ├── ghost-text.tsx │ │ ├── heading-node-static.tsx │ │ ├── heading-node.tsx │ │ ├── highlight-node-static.tsx │ │ ├── highlight-node.tsx │ │ ├── history-toolbar-button.tsx │ │ ├── hr-node-static.tsx │ │ ├── hr-node.tsx │ │ ├── import-toolbar-button.tsx │ │ ├── indent-toolbar-button.tsx │ │ ├── inline-combobox.tsx │ │ ├── input.tsx │ │ ├── insert-toolbar-button.tsx │ │ ├── kbd-node-static.tsx │ │ ├── kbd-node.tsx │ │ ├── line-height-toolbar-button.tsx │ │ ├── link-node-static.tsx │ │ ├── link-node.tsx │ │ ├── link-toolbar-button.tsx │ │ ├── link-toolbar.tsx │ │ ├── list-toolbar-button.tsx │ │ ├── mark-toolbar-button.tsx │ │ ├── media-audio-node-static.tsx │ │ ├── media-audio-node.tsx │ │ ├── media-embed-node.tsx │ │ ├── media-file-node-static.tsx │ │ ├── media-file-node.tsx │ │ ├── media-image-node-static.tsx │ │ ├── media-image-node.tsx │ │ ├── media-placeholder-node.tsx │ │ ├── media-preview-dialog.tsx │ │ ├── media-toolbar-button.tsx │ │ ├── media-toolbar.tsx │ │ ├── media-upload-toast.tsx │ │ ├── media-video-node-static.tsx │ │ ├── media-video-node.tsx │ │ ├── mention-node-static.tsx │ │ ├── mention-node.tsx │ │ ├── mode-toolbar-button.tsx │ │ ├── more-toolbar-button.tsx │ │ ├── paragraph-node-static.tsx │ │ ├── paragraph-node.tsx │ │ ├── popover.tsx │ │ ├── resize-handle.tsx │ │ ├── separator.tsx │ │ ├── slash-node.tsx │ │ ├── suggestion-node-static.tsx │ │ ├── suggestion-node.tsx │ │ ├── suggestion-toolbar-button.tsx │ │ ├── table-icons.tsx │ │ ├── table-node-static.tsx │ │ ├── table-node.tsx │ │ ├── table-toolbar-button.tsx │ │ ├── toc-node-static.tsx │ │ ├── toc-node.tsx │ │ ├── toggle-node-static.tsx │ │ ├── toggle-node.tsx │ │ ├── toggle-toolbar-button.tsx │ │ ├── toolbar.tsx │ │ ├── tooltip.tsx │ │ └── turn-into-toolbar-button.tsx ├── hooks │ ├── use-debounce.ts │ ├── use-is-touch-device.ts │ ├── use-mounted.ts │ └── use-upload-file.ts └── lib │ ├── markdown-joiner-transform.ts │ ├── uploadthing.ts │ └── utils.ts └── tsconfig.json /.claude/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/AGENTS.md -------------------------------------------------------------------------------- /.claude/prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/prompt.json -------------------------------------------------------------------------------- /.claude/rules/1-app-design-document.mdc: -------------------------------------------------------------------------------- 1 | --- 2 | alwaysApply: true 3 | --- 4 | -------------------------------------------------------------------------------- /.claude/rules/2-tech-stack.mdc: -------------------------------------------------------------------------------- 1 | --- 2 | alwaysApply: true 3 | --- 4 | -------------------------------------------------------------------------------- /.claude/rules/3-project-status.mdc: -------------------------------------------------------------------------------- 1 | --- 2 | alwaysApply: true 3 | --- 4 | -------------------------------------------------------------------------------- /.claude/rules/components.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/rules/components.mdc -------------------------------------------------------------------------------- /.claude/rules/react.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/rules/react.mdc -------------------------------------------------------------------------------- /.claude/scripts/post-compact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/scripts/post-compact.sh -------------------------------------------------------------------------------- /.claude/scripts/session-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/scripts/session-start.sh -------------------------------------------------------------------------------- /.claude/scripts/user-prompt-submit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/scripts/user-prompt-submit.sh -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.claude/skiller.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.claude/skiller.toml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | AI_GATEWAY_API_KEY= 2 | UPLOADTHING_TOKEN= -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/README.md -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/biome.jsonc -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/lefthook.yml -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /src/app/api/ai/command/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/api/ai/command/prompts.ts -------------------------------------------------------------------------------- /src/app/api/ai/command/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/api/ai/command/route.ts -------------------------------------------------------------------------------- /src/app/api/ai/command/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/api/ai/command/utils.ts -------------------------------------------------------------------------------- /src/app/api/ai/copilot/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/api/ai/copilot/route.ts -------------------------------------------------------------------------------- /src/app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /src/app/editor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/editor/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/editor/editor-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/editor-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/editor-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/editor-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plate-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plate-editor.tsx -------------------------------------------------------------------------------- /src/components/editor/plate-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plate-types.ts -------------------------------------------------------------------------------- /src/components/editor/plugins/ai-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/ai-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/align-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/align-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/align-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/align-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/autoformat-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/autoformat-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/basic-blocks-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/basic-blocks-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/basic-blocks-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/basic-blocks-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/basic-marks-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/basic-marks-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/basic-marks-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/basic-marks-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/basic-nodes-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/basic-nodes-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/block-menu-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/block-menu-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/block-placeholder-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/block-placeholder-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/block-selection-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/block-selection-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/callout-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/callout-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/callout-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/callout-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/code-block-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/code-block-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/code-block-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/code-block-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/column-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/column-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/column-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/column-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/comment-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/comment-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/comment-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/comment-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/copilot-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/copilot-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/cursor-overlay-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/cursor-overlay-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/date-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/date-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/date-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/date-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/discussion-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/discussion-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/dnd-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/dnd-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/docx-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/docx-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/emoji-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/emoji-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/exit-break-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/exit-break-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/fixed-toolbar-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/fixed-toolbar-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/floating-toolbar-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/floating-toolbar-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/font-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/font-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/font-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/font-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/indent-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/indent-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/indent-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/indent-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/line-height-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/line-height-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/line-height-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/line-height-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/link-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/link-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/link-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/link-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/list-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/list-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/list-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/list-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/markdown-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/markdown-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/math-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/math-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/math-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/math-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/media-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/media-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/media-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/media-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/mention-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/mention-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/mention-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/mention-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/slash-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/slash-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/suggestion-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/suggestion-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/suggestion-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/suggestion-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/table-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/table-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/table-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/table-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/toc-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/toc-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/toc-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/toc-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/toggle-base-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/toggle-base-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/plugins/toggle-kit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/plugins/toggle-kit.tsx -------------------------------------------------------------------------------- /src/components/editor/settings-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/settings-dialog.tsx -------------------------------------------------------------------------------- /src/components/editor/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/transforms.ts -------------------------------------------------------------------------------- /src/components/editor/use-chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/editor/use-chat.ts -------------------------------------------------------------------------------- /src/components/ui/ai-chat-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/ai-chat-editor.tsx -------------------------------------------------------------------------------- /src/components/ui/ai-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/ai-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/ai-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/ai-node.tsx -------------------------------------------------------------------------------- /src/components/ui/ai-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/ai-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/align-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/align-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/block-context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/block-context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/block-discussion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/block-discussion.tsx -------------------------------------------------------------------------------- /src/components/ui/block-draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/block-draggable.tsx -------------------------------------------------------------------------------- /src/components/ui/block-list-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/block-list-static.tsx -------------------------------------------------------------------------------- /src/components/ui/block-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/block-list.tsx -------------------------------------------------------------------------------- /src/components/ui/block-selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/block-selection.tsx -------------------------------------------------------------------------------- /src/components/ui/block-suggestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/block-suggestion.tsx -------------------------------------------------------------------------------- /src/components/ui/blockquote-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/blockquote-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/blockquote-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/blockquote-node.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/callout-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/callout-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/callout-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/callout-node.tsx -------------------------------------------------------------------------------- /src/components/ui/caption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/caption.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/code-block-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/code-block-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/code-block-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/code-block-node.tsx -------------------------------------------------------------------------------- /src/components/ui/code-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/code-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/code-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/code-node.tsx -------------------------------------------------------------------------------- /src/components/ui/column-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/column-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/column-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/column-node.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/comment-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/comment-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/comment-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/comment-node.tsx -------------------------------------------------------------------------------- /src/components/ui/comment-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/comment-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/comment.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/cursor-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/cursor-overlay.tsx -------------------------------------------------------------------------------- /src/components/ui/date-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/date-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/date-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/date-node.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/editor-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/editor-static.tsx -------------------------------------------------------------------------------- /src/components/ui/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/editor.tsx -------------------------------------------------------------------------------- /src/components/ui/emoji-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/emoji-node.tsx -------------------------------------------------------------------------------- /src/components/ui/emoji-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/emoji-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/equation-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/equation-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/equation-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/equation-node.tsx -------------------------------------------------------------------------------- /src/components/ui/equation-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/equation-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/export-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/export-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/fixed-toolbar-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/fixed-toolbar-buttons.tsx -------------------------------------------------------------------------------- /src/components/ui/fixed-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/fixed-toolbar.tsx -------------------------------------------------------------------------------- /src/components/ui/floating-toolbar-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/floating-toolbar-buttons.tsx -------------------------------------------------------------------------------- /src/components/ui/floating-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/floating-toolbar.tsx -------------------------------------------------------------------------------- /src/components/ui/font-color-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/font-color-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/font-size-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/font-size-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/ghost-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/ghost-text.tsx -------------------------------------------------------------------------------- /src/components/ui/heading-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/heading-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/heading-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/heading-node.tsx -------------------------------------------------------------------------------- /src/components/ui/highlight-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/highlight-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/highlight-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/highlight-node.tsx -------------------------------------------------------------------------------- /src/components/ui/history-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/history-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/hr-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/hr-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/hr-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/hr-node.tsx -------------------------------------------------------------------------------- /src/components/ui/import-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/import-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/indent-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/indent-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/inline-combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/inline-combobox.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/insert-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/insert-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/kbd-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/kbd-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/kbd-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/kbd-node.tsx -------------------------------------------------------------------------------- /src/components/ui/line-height-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/line-height-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/link-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/link-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/link-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/link-node.tsx -------------------------------------------------------------------------------- /src/components/ui/link-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/link-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/link-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/link-toolbar.tsx -------------------------------------------------------------------------------- /src/components/ui/list-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/list-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/mark-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/mark-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/media-audio-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-audio-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/media-audio-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-audio-node.tsx -------------------------------------------------------------------------------- /src/components/ui/media-embed-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-embed-node.tsx -------------------------------------------------------------------------------- /src/components/ui/media-file-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-file-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/media-file-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-file-node.tsx -------------------------------------------------------------------------------- /src/components/ui/media-image-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-image-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/media-image-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-image-node.tsx -------------------------------------------------------------------------------- /src/components/ui/media-placeholder-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-placeholder-node.tsx -------------------------------------------------------------------------------- /src/components/ui/media-preview-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-preview-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/media-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/media-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-toolbar.tsx -------------------------------------------------------------------------------- /src/components/ui/media-upload-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-upload-toast.tsx -------------------------------------------------------------------------------- /src/components/ui/media-video-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-video-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/media-video-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/media-video-node.tsx -------------------------------------------------------------------------------- /src/components/ui/mention-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/mention-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/mention-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/mention-node.tsx -------------------------------------------------------------------------------- /src/components/ui/mode-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/mode-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/more-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/more-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/paragraph-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/paragraph-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/paragraph-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/paragraph-node.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/resize-handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/resize-handle.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/slash-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/slash-node.tsx -------------------------------------------------------------------------------- /src/components/ui/suggestion-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/suggestion-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/suggestion-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/suggestion-node.tsx -------------------------------------------------------------------------------- /src/components/ui/suggestion-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/suggestion-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/table-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/table-icons.tsx -------------------------------------------------------------------------------- /src/components/ui/table-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/table-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/table-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/table-node.tsx -------------------------------------------------------------------------------- /src/components/ui/table-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/table-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/toc-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/toc-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/toc-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/toc-node.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-node-static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/toggle-node-static.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/toggle-node.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/toggle-toolbar-button.tsx -------------------------------------------------------------------------------- /src/components/ui/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/toolbar.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/turn-into-toolbar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/components/ui/turn-into-toolbar-button.tsx -------------------------------------------------------------------------------- /src/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/hooks/use-debounce.ts -------------------------------------------------------------------------------- /src/hooks/use-is-touch-device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/hooks/use-is-touch-device.ts -------------------------------------------------------------------------------- /src/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/hooks/use-mounted.ts -------------------------------------------------------------------------------- /src/hooks/use-upload-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/hooks/use-upload-file.ts -------------------------------------------------------------------------------- /src/lib/markdown-joiner-transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/lib/markdown-joiner-transform.ts -------------------------------------------------------------------------------- /src/lib/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/lib/uploadthing.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udecode/plate-playground-template/HEAD/tsconfig.json --------------------------------------------------------------------------------