@agent-native/core 0.109.2 → 0.109.4
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/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +16 -0
- package/corpus/core/docs/content/agent-native-toolkit.mdx +46 -13
- package/corpus/core/docs/content/locales/ar-SA/agent-native-toolkit.mdx +79 -55
- package/corpus/core/docs/content/locales/ar-SA/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/ar-SA/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/ar-SA/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/de-DE/agent-native-toolkit.mdx +82 -54
- package/corpus/core/docs/content/locales/de-DE/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/de-DE/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/de-DE/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/es-ES/agent-native-toolkit.mdx +81 -52
- package/corpus/core/docs/content/locales/es-ES/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/es-ES/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/es-ES/toolkit-editors-canvases.mdx +21 -0
- package/corpus/core/docs/content/locales/fr-FR/agent-native-toolkit.mdx +84 -54
- package/corpus/core/docs/content/locales/fr-FR/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/fr-FR/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/fr-FR/toolkit-editors-canvases.mdx +21 -0
- package/corpus/core/docs/content/locales/hi-IN/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/hi-IN/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/hi-IN/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/hi-IN/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/ja-JP/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/ja-JP/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/ja-JP/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/ja-JP/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/ko-KR/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/ko-KR/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/ko-KR/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/ko-KR/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/pt-BR/agent-native-toolkit.mdx +82 -54
- package/corpus/core/docs/content/locales/pt-BR/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/pt-BR/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/pt-BR/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/zh-CN/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/zh-CN/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/zh-CN/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/zh-CN/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/zh-TW/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/zh-TW/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/zh-TW/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/zh-TW/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/toolkit-capability-packages.mdx +52 -0
- package/corpus/core/docs/content/toolkit-context-knowledge.mdx +46 -0
- package/corpus/core/docs/content/toolkit-editors-canvases.mdx +55 -0
- package/corpus/core/package.json +35 -34
- package/corpus/core/src/cli/create.ts +57 -15
- package/corpus/core/src/cli/package-lifecycle.ts +2 -0
- package/corpus/core/src/cli/skills-content/visual-plan-skill.ts +2 -0
- package/corpus/core/src/client/context-xray/ContextMeter.tsx +31 -111
- package/corpus/core/src/client/context-xray/ContextSegmentRow.tsx +8 -111
- package/corpus/core/src/client/context-xray/ContextTreemap.tsx +6 -111
- package/corpus/core/src/client/context-xray/ContextXRayPanel.tsx +31 -391
- package/corpus/core/src/client/context-xray/SegmentProvenancePopover.tsx +4 -52
- package/corpus/core/src/client/context-xray/format.ts +0 -33
- package/corpus/core/src/client/require-session.tsx +19 -3
- package/corpus/core/src/client/rich-markdown-editor/index.ts +42 -57
- package/corpus/core/src/client/rich-markdown-editor/uploadEditorImage.ts +2 -1
- package/corpus/core/src/client/use-action.ts +145 -2
- package/corpus/core/src/client/use-session.ts +79 -48
- package/corpus/core/src/client/visual-style-controls.tsx +1 -1088
- package/corpus/core/src/collab/agent-identity.ts +5 -22
- package/corpus/core/src/collab/client.ts +1 -53
- package/corpus/core/src/db/client.ts +13 -7
- package/corpus/core/src/db/create-get-db.ts +20 -13
- package/corpus/core/src/db/request-telemetry.ts +154 -0
- package/corpus/core/src/integrations/index.ts +1 -0
- package/corpus/core/src/integrations/plugin.ts +9 -3
- package/corpus/core/src/integrations/remote-push-delivery-job.ts +48 -0
- package/corpus/core/src/integrations/remote-push-delivery.ts +370 -0
- package/corpus/core/src/integrations/remote-push-store.ts +275 -26
- package/corpus/core/src/server/better-auth-instance.ts +11 -3
- package/corpus/core/src/server/core-routes-plugin.ts +36 -14
- package/corpus/core/src/server/framework-request-handler.ts +11 -1
- package/corpus/core/src/server/http-response-telemetry.ts +233 -31
- package/corpus/core/src/styles/rich-markdown-editor.css +1 -510
- package/corpus/core/src/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
- package/corpus/core/src/testing.ts +1 -1
- package/corpus/core/src/vite/client.ts +3 -0
- package/corpus/templates/clips/actions/finalize-recording.ts +3 -1
- package/corpus/templates/clips/actions/set-mobile-capture-state.ts +4 -1
- package/corpus/templates/clips/app/components/library/library-layout.tsx +1 -6
- package/corpus/templates/clips/changelog/2026-07-18-new-recording-is-now-emphasized-as-the-primary-action-in-the.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-18-recordings-now-remain-safely-recoverable-until-the-stored-me.md +6 -0
- package/corpus/templates/content/app/components/editor/VisualEditor.tsx +5 -3
- package/corpus/templates/content/app/components/editor/extensions/DragHandle.tsx +4 -4
- package/corpus/templates/content/package.json +25 -25
- package/corpus/templates/design/app/components/design/TweaksPanel.tsx +2 -1
- package/corpus/templates/design/package.json +1 -1
- package/corpus/templates/mail/package.json +9 -9
- package/corpus/templates/plan/.agents/skills/visual-plan/SKILL.md +2 -0
- package/corpus/templates/plan/app/components/editor/PlanDocumentEditor.tsx +8 -8
- package/corpus/templates/plan/app/components/editor/planSlashCommands.ts +6 -6
- package/corpus/templates/plan/app/components/plan/PlanImageNode.tsx +4 -7
- package/corpus/templates/plan/app/components/plan/PlanMarkdownEditor.tsx +6 -4
- package/corpus/templates/plan/app/components/plan/PlanVisualSurface.tsx +1 -1
- package/corpus/templates/plan/changelog/2026-07-18-visual-plans-now-open-on-wireframes-by-default-when-a-protot.md +6 -0
- package/corpus/templates/plan/package.json +3 -3
- package/corpus/templates/slides/app/components/editor/SlideStyleInspector.tsx +2 -2
- package/corpus/templates/slides/app/components/editor/TweaksPanel.tsx +2 -2
- package/corpus/templates/slides/package.json +13 -13
- package/corpus/templates/tasks/AGENTS.md +3 -0
- package/corpus/templates/tasks/actions/render-task-list-inline.ts +202 -0
- package/corpus/templates/tasks/changelog/2026-07-18-task-lists-can-now-appear-as-interactive-widgets-inline-in-c.md +6 -0
- package/corpus/templates/tasks/docs/features/f8-chat.mdx +2 -0
- package/corpus/templates/tasks/server/plugins/agent-chat.ts +2 -0
- package/dist/catalog.json +39 -1
- package/dist/cli/create.d.ts +10 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +49 -16
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/package-lifecycle.d.ts.map +1 -1
- package/dist/cli/package-lifecycle.js +2 -0
- package/dist/cli/package-lifecycle.js.map +1 -1
- package/dist/cli/skills-content/visual-plan-skill.d.ts +1 -1
- package/dist/cli/skills-content/visual-plan-skill.d.ts.map +1 -1
- package/dist/cli/skills-content/visual-plan-skill.js +2 -0
- package/dist/cli/skills-content/visual-plan-skill.js.map +1 -1
- package/dist/client/context-xray/ContextMeter.d.ts.map +1 -1
- package/dist/client/context-xray/ContextMeter.js +8 -23
- package/dist/client/context-xray/ContextMeter.js.map +1 -1
- package/dist/client/context-xray/ContextSegmentRow.d.ts.map +1 -1
- package/dist/client/context-xray/ContextSegmentRow.js +3 -19
- package/dist/client/context-xray/ContextSegmentRow.js.map +1 -1
- package/dist/client/context-xray/ContextTreemap.d.ts.map +1 -1
- package/dist/client/context-xray/ContextTreemap.js +3 -54
- package/dist/client/context-xray/ContextTreemap.js.map +1 -1
- package/dist/client/context-xray/ContextXRayPanel.d.ts.map +1 -1
- package/dist/client/context-xray/ContextXRayPanel.js +21 -163
- package/dist/client/context-xray/ContextXRayPanel.js.map +1 -1
- package/dist/client/context-xray/SegmentProvenancePopover.d.ts.map +1 -1
- package/dist/client/context-xray/SegmentProvenancePopover.js +3 -4
- package/dist/client/context-xray/SegmentProvenancePopover.js.map +1 -1
- package/dist/client/context-xray/format.d.ts +0 -4
- package/dist/client/context-xray/format.d.ts.map +1 -1
- package/dist/client/context-xray/format.js +0 -49
- package/dist/client/context-xray/format.js.map +1 -1
- package/dist/client/require-session.d.ts.map +1 -1
- package/dist/client/require-session.js +6 -3
- package/dist/client/require-session.js.map +1 -1
- package/dist/client/rich-markdown-editor/index.d.ts +1 -12
- package/dist/client/rich-markdown-editor/index.d.ts.map +1 -1
- package/dist/client/rich-markdown-editor/index.js +1 -12
- package/dist/client/rich-markdown-editor/index.js.map +1 -1
- package/dist/client/rich-markdown-editor/uploadEditorImage.d.ts +1 -1
- package/dist/client/rich-markdown-editor/uploadEditorImage.d.ts.map +1 -1
- package/dist/client/rich-markdown-editor/uploadEditorImage.js.map +1 -1
- package/dist/client/use-action.d.ts.map +1 -1
- package/dist/client/use-action.js +117 -1
- package/dist/client/use-action.js.map +1 -1
- package/dist/client/use-session.d.ts.map +1 -1
- package/dist/client/use-session.js +72 -50
- package/dist/client/use-session.js.map +1 -1
- package/dist/client/visual-style-controls.d.ts +1 -89
- package/dist/client/visual-style-controls.d.ts.map +1 -1
- package/dist/client/visual-style-controls.js +1 -498
- package/dist/client/visual-style-controls.js.map +1 -1
- package/dist/collab/agent-identity.d.ts +1 -14
- package/dist/collab/agent-identity.d.ts.map +1 -1
- package/dist/collab/agent-identity.js +1 -13
- package/dist/collab/agent-identity.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/client.d.ts +1 -19
- package/dist/collab/client.d.ts.map +1 -1
- package/dist/collab/client.js +1 -53
- package/dist/collab/client.js.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/db/client.d.ts.map +1 -1
- package/dist/db/client.js +7 -1
- package/dist/db/client.js.map +1 -1
- package/dist/db/create-get-db.d.ts +3 -6
- package/dist/db/create-get-db.d.ts.map +1 -1
- package/dist/db/create-get-db.js +9 -2
- package/dist/db/create-get-db.js.map +1 -1
- package/dist/db/request-telemetry.d.ts +23 -0
- package/dist/db/request-telemetry.d.ts.map +1 -0
- package/dist/db/request-telemetry.js +95 -0
- package/dist/db/request-telemetry.js.map +1 -0
- package/dist/integrations/index.d.ts +1 -0
- package/dist/integrations/index.d.ts.map +1 -1
- package/dist/integrations/index.js +1 -0
- package/dist/integrations/index.js.map +1 -1
- package/dist/integrations/plugin.d.ts.map +1 -1
- package/dist/integrations/plugin.js +8 -3
- package/dist/integrations/plugin.js.map +1 -1
- package/dist/integrations/remote-push-delivery-job.d.ts +4 -0
- package/dist/integrations/remote-push-delivery-job.d.ts.map +1 -0
- package/dist/integrations/remote-push-delivery-job.js +44 -0
- package/dist/integrations/remote-push-delivery-job.js.map +1 -0
- package/dist/integrations/remote-push-delivery.d.ts +11 -0
- package/dist/integrations/remote-push-delivery.d.ts.map +1 -0
- package/dist/integrations/remote-push-delivery.js +265 -0
- package/dist/integrations/remote-push-delivery.js.map +1 -0
- package/dist/integrations/remote-push-store.d.ts +33 -0
- package/dist/integrations/remote-push-store.d.ts.map +1 -1
- package/dist/integrations/remote-push-store.js +195 -26
- package/dist/integrations/remote-push-store.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/progress/routes.d.ts +1 -1
- package/dist/provider-api/corpus-jobs.d.ts +2 -2
- package/dist/resources/handlers.d.ts +3 -3
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/better-auth-instance.js +7 -3
- package/dist/server/better-auth-instance.js.map +1 -1
- package/dist/server/core-routes-plugin.d.ts +8 -0
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +23 -8
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/framework-request-handler.d.ts.map +1 -1
- package/dist/server/framework-request-handler.js +9 -1
- package/dist/server/framework-request-handler.js.map +1 -1
- package/dist/server/http-response-telemetry.d.ts +3 -2
- package/dist/server/http-response-telemetry.d.ts.map +1 -1
- package/dist/server/http-response-telemetry.js +160 -27
- package/dist/server/http-response-telemetry.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/styles/rich-markdown-editor.css +1 -510
- package/dist/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
- package/dist/testing.d.ts +1 -1
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +1 -1
- package/dist/testing.js.map +1 -1
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +3 -0
- package/dist/vite/client.js.map +1 -1
- package/docs/content/agent-native-toolkit.mdx +46 -13
- package/docs/content/locales/ar-SA/agent-native-toolkit.mdx +79 -55
- package/docs/content/locales/ar-SA/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/ar-SA/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/ar-SA/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/de-DE/agent-native-toolkit.mdx +82 -54
- package/docs/content/locales/de-DE/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/de-DE/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/de-DE/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/es-ES/agent-native-toolkit.mdx +81 -52
- package/docs/content/locales/es-ES/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/es-ES/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/es-ES/toolkit-editors-canvases.mdx +21 -0
- package/docs/content/locales/fr-FR/agent-native-toolkit.mdx +84 -54
- package/docs/content/locales/fr-FR/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/fr-FR/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/fr-FR/toolkit-editors-canvases.mdx +21 -0
- package/docs/content/locales/hi-IN/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/hi-IN/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/hi-IN/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/hi-IN/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/ja-JP/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/ja-JP/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/ja-JP/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/ja-JP/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/ko-KR/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/ko-KR/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/ko-KR/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/ko-KR/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/pt-BR/agent-native-toolkit.mdx +82 -54
- package/docs/content/locales/pt-BR/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/pt-BR/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/pt-BR/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/zh-CN/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/zh-CN/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/zh-CN/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/zh-CN/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/zh-TW/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/zh-TW/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/zh-TW/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/zh-TW/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/toolkit-capability-packages.mdx +52 -0
- package/docs/content/toolkit-context-knowledge.mdx +46 -0
- package/docs/content/toolkit-editors-canvases.mdx +55 -0
- package/package.json +27 -26
- package/src/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
- package/corpus/core/src/client/rich-markdown-editor/BubbleToolbar.tsx +0 -253
- package/corpus/core/src/client/rich-markdown-editor/CodeBlockNode.tsx +0 -258
- package/corpus/core/src/client/rich-markdown-editor/DragHandle.ts +0 -1437
- package/corpus/core/src/client/rich-markdown-editor/ImageExtension.ts +0 -306
- package/corpus/core/src/client/rich-markdown-editor/RichMarkdownEditor.tsx +0 -80
- package/corpus/core/src/client/rich-markdown-editor/RunId.ts +0 -61
- package/corpus/core/src/client/rich-markdown-editor/SharedRichEditor.tsx +0 -321
- package/corpus/core/src/client/rich-markdown-editor/SlashCommandMenu.tsx +0 -310
- package/corpus/core/src/client/rich-markdown-editor/extensions.ts +0 -402
- package/corpus/core/src/client/rich-markdown-editor/gfmDoc.ts +0 -92
- package/corpus/core/src/client/rich-markdown-editor/surgical-apply.ts +0 -192
- package/corpus/core/src/client/rich-markdown-editor/useCollabReconcile.ts +0 -590
- package/dist/client/rich-markdown-editor/BubbleToolbar.d.ts +0 -37
- package/dist/client/rich-markdown-editor/BubbleToolbar.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/BubbleToolbar.js +0 -171
- package/dist/client/rich-markdown-editor/BubbleToolbar.js.map +0 -1
- package/dist/client/rich-markdown-editor/CodeBlockNode.d.ts +0 -49
- package/dist/client/rich-markdown-editor/CodeBlockNode.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/CodeBlockNode.js +0 -127
- package/dist/client/rich-markdown-editor/CodeBlockNode.js.map +0 -1
- package/dist/client/rich-markdown-editor/DragHandle.d.ts +0 -97
- package/dist/client/rich-markdown-editor/DragHandle.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/DragHandle.js +0 -1066
- package/dist/client/rich-markdown-editor/DragHandle.js.map +0 -1
- package/dist/client/rich-markdown-editor/ImageExtension.d.ts +0 -63
- package/dist/client/rich-markdown-editor/ImageExtension.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/ImageExtension.js +0 -243
- package/dist/client/rich-markdown-editor/ImageExtension.js.map +0 -1
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.d.ts +0 -51
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.js +0 -37
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.js.map +0 -1
- package/dist/client/rich-markdown-editor/RunId.d.ts +0 -28
- package/dist/client/rich-markdown-editor/RunId.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/RunId.js +0 -60
- package/dist/client/rich-markdown-editor/RunId.js.map +0 -1
- package/dist/client/rich-markdown-editor/SharedRichEditor.d.ts +0 -110
- package/dist/client/rich-markdown-editor/SharedRichEditor.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/SharedRichEditor.js +0 -144
- package/dist/client/rich-markdown-editor/SharedRichEditor.js.map +0 -1
- package/dist/client/rich-markdown-editor/SlashCommandMenu.d.ts +0 -41
- package/dist/client/rich-markdown-editor/SlashCommandMenu.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/SlashCommandMenu.js +0 -221
- package/dist/client/rich-markdown-editor/SlashCommandMenu.js.map +0 -1
- package/dist/client/rich-markdown-editor/extensions.d.ts +0 -178
- package/dist/client/rich-markdown-editor/extensions.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/extensions.js +0 -224
- package/dist/client/rich-markdown-editor/extensions.js.map +0 -1
- package/dist/client/rich-markdown-editor/gfmDoc.d.ts +0 -24
- package/dist/client/rich-markdown-editor/gfmDoc.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/gfmDoc.js +0 -83
- package/dist/client/rich-markdown-editor/gfmDoc.js.map +0 -1
- package/dist/client/rich-markdown-editor/surgical-apply.d.ts +0 -66
- package/dist/client/rich-markdown-editor/surgical-apply.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/surgical-apply.js +0 -147
- package/dist/client/rich-markdown-editor/surgical-apply.js.map +0 -1
- package/dist/client/rich-markdown-editor/useCollabReconcile.d.ts +0 -110
- package/dist/client/rich-markdown-editor/useCollabReconcile.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/useCollabReconcile.js +0 -441
- package/dist/client/rich-markdown-editor/useCollabReconcile.js.map +0 -1
|
@@ -1,499 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import { IconColorPicker } from "@tabler/icons-react";
|
|
3
|
-
import { useEffect, useId, useRef, useState, } from "react";
|
|
4
|
-
import { Popover, PopoverContent, PopoverTrigger, } from "./components/ui/popover.js";
|
|
5
|
-
import { cn } from "./utils.js";
|
|
6
|
-
function clampNumber(value, min, max) {
|
|
7
|
-
let next = value;
|
|
8
|
-
if (typeof min === "number")
|
|
9
|
-
next = Math.max(min, next);
|
|
10
|
-
if (typeof max === "number")
|
|
11
|
-
next = Math.min(max, next);
|
|
12
|
-
return next;
|
|
13
|
-
}
|
|
14
|
-
function formatNumber(value, unit) {
|
|
15
|
-
const rounded = Number.isInteger(value) ? value : Number(value.toFixed(2));
|
|
16
|
-
return unit ? `${rounded}${unit}` : String(rounded);
|
|
17
|
-
}
|
|
18
|
-
function parseDraftNumber(value, fallback) {
|
|
19
|
-
const match = value.trim().match(/-?\d+(?:\.\d+)?/);
|
|
20
|
-
if (!match)
|
|
21
|
-
return fallback;
|
|
22
|
-
const next = Number(match[0]);
|
|
23
|
-
return Number.isFinite(next) ? next : fallback;
|
|
24
|
-
}
|
|
25
|
-
const CHECKERBOARD_IMAGE = "linear-gradient(45deg, #d4d4d4 25%, transparent 25%), linear-gradient(-45deg, #d4d4d4 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #d4d4d4 75%), linear-gradient(-45deg, transparent 75%, #d4d4d4 75%)";
|
|
26
|
-
const FALLBACK_RGBA = { r: 0, g: 0, b: 0, a: 1 };
|
|
27
|
-
function normalizeRgba(color) {
|
|
28
|
-
return {
|
|
29
|
-
r: clamp(color.r, 0, 255),
|
|
30
|
-
g: clamp(color.g, 0, 255),
|
|
31
|
-
b: clamp(color.b, 0, 255),
|
|
32
|
-
a: clampFloat(color.a, 0, 1),
|
|
33
|
-
};
|
|
34
|
-
}
|
|
35
|
-
function normalizeHexColor(value) {
|
|
36
|
-
const trimmed = value.trim();
|
|
37
|
-
if (/^#[0-9a-f]{6}$/i.test(trimmed))
|
|
38
|
-
return trimmed.toUpperCase();
|
|
39
|
-
if (/^[0-9a-f]{6}$/i.test(trimmed))
|
|
40
|
-
return `#${trimmed}`.toUpperCase();
|
|
41
|
-
if (/^#[0-9a-f]{3}$/i.test(trimmed)) {
|
|
42
|
-
return `#${trimmed
|
|
43
|
-
.slice(1)
|
|
44
|
-
.split("")
|
|
45
|
-
.map((char) => char + char)
|
|
46
|
-
.join("")}`.toUpperCase();
|
|
47
|
-
}
|
|
48
|
-
if (/^[0-9a-f]{3}$/i.test(trimmed)) {
|
|
49
|
-
return `#${trimmed
|
|
50
|
-
.split("")
|
|
51
|
-
.map((char) => char + char)
|
|
52
|
-
.join("")}`.toUpperCase();
|
|
53
|
-
}
|
|
54
|
-
return null;
|
|
55
|
-
}
|
|
56
|
-
function parseCssColor(value) {
|
|
57
|
-
const trimmed = value.trim();
|
|
58
|
-
if (!trimmed)
|
|
59
|
-
return null;
|
|
60
|
-
const normalizedHex = normalizeHexColor(trimmed);
|
|
61
|
-
if (normalizedHex) {
|
|
62
|
-
return normalizeRgba({
|
|
63
|
-
r: Number.parseInt(normalizedHex.slice(1, 3), 16),
|
|
64
|
-
g: Number.parseInt(normalizedHex.slice(3, 5), 16),
|
|
65
|
-
b: Number.parseInt(normalizedHex.slice(5, 7), 16),
|
|
66
|
-
a: 1,
|
|
67
|
-
});
|
|
68
|
-
}
|
|
69
|
-
const rgb = trimmed.match(/^rgba?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)(?:\s*,\s*([0-9.]+%?))?/i);
|
|
70
|
-
if (rgb) {
|
|
71
|
-
return normalizeRgba({
|
|
72
|
-
r: Number(rgb[1]),
|
|
73
|
-
g: Number(rgb[2]),
|
|
74
|
-
b: Number(rgb[3]),
|
|
75
|
-
a: parseAlpha(rgb[4]),
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
const lower = trimmed.toLowerCase();
|
|
79
|
-
if (lower === "transparent" || lower === "rgba(0, 0, 0, 0)") {
|
|
80
|
-
return { r: 0, g: 0, b: 0, a: 0 };
|
|
81
|
-
}
|
|
82
|
-
return null;
|
|
83
|
-
}
|
|
84
|
-
function channelToHex(value) {
|
|
85
|
-
return clamp(value, 0, 255).toString(16).padStart(2, "0");
|
|
86
|
-
}
|
|
87
|
-
function rgbaToHex(color) {
|
|
88
|
-
const normalized = normalizeRgba(color);
|
|
89
|
-
return `#${channelToHex(normalized.r)}${channelToHex(normalized.g)}${channelToHex(normalized.b)}`.toUpperCase();
|
|
90
|
-
}
|
|
91
|
-
function rgbaToCss(color) {
|
|
92
|
-
const normalized = normalizeRgba(color);
|
|
93
|
-
if (normalized.a >= 1)
|
|
94
|
-
return rgbaToHex(normalized);
|
|
95
|
-
return `rgba(${normalized.r}, ${normalized.g}, ${normalized.b}, ${trimNumber(normalized.a)})`;
|
|
96
|
-
}
|
|
97
|
-
function parseAlpha(value) {
|
|
98
|
-
if (!value)
|
|
99
|
-
return 1;
|
|
100
|
-
if (value.endsWith("%"))
|
|
101
|
-
return Number(value.slice(0, -1)) / 100;
|
|
102
|
-
return Number(value);
|
|
103
|
-
}
|
|
104
|
-
function trimNumber(value) {
|
|
105
|
-
return Number(value.toFixed(2)).toString();
|
|
106
|
-
}
|
|
107
|
-
function rgbaToHsv(color) {
|
|
108
|
-
const normalized = normalizeRgba(color);
|
|
109
|
-
const r = normalized.r / 255;
|
|
110
|
-
const g = normalized.g / 255;
|
|
111
|
-
const b = normalized.b / 255;
|
|
112
|
-
const max = Math.max(r, g, b);
|
|
113
|
-
const min = Math.min(r, g, b);
|
|
114
|
-
const delta = max - min;
|
|
115
|
-
let h = 0;
|
|
116
|
-
if (delta !== 0) {
|
|
117
|
-
if (max === r)
|
|
118
|
-
h = ((g - b) / delta) % 6;
|
|
119
|
-
else if (max === g)
|
|
120
|
-
h = (b - r) / delta + 2;
|
|
121
|
-
else
|
|
122
|
-
h = (r - g) / delta + 4;
|
|
123
|
-
h *= 60;
|
|
124
|
-
if (h < 0)
|
|
125
|
-
h += 360;
|
|
126
|
-
}
|
|
127
|
-
return {
|
|
128
|
-
h: Math.round(h),
|
|
129
|
-
s: max === 0 ? 0 : Math.round((delta / max) * 100),
|
|
130
|
-
v: Math.round(max * 100),
|
|
131
|
-
a: normalized.a,
|
|
132
|
-
};
|
|
133
|
-
}
|
|
134
|
-
function hsvToRgba(color) {
|
|
135
|
-
const h = ((color.h % 360) + 360) % 360;
|
|
136
|
-
const s = clampFloat(color.s, 0, 100) / 100;
|
|
137
|
-
const v = clampFloat(color.v, 0, 100) / 100;
|
|
138
|
-
const chroma = v * s;
|
|
139
|
-
const x = chroma * (1 - Math.abs(((h / 60) % 2) - 1));
|
|
140
|
-
const m = v - chroma;
|
|
141
|
-
let r = 0;
|
|
142
|
-
let g = 0;
|
|
143
|
-
let b = 0;
|
|
144
|
-
if (h < 60)
|
|
145
|
-
[r, g, b] = [chroma, x, 0];
|
|
146
|
-
else if (h < 120)
|
|
147
|
-
[r, g, b] = [x, chroma, 0];
|
|
148
|
-
else if (h < 180)
|
|
149
|
-
[r, g, b] = [0, chroma, x];
|
|
150
|
-
else if (h < 240)
|
|
151
|
-
[r, g, b] = [0, x, chroma];
|
|
152
|
-
else if (h < 300)
|
|
153
|
-
[r, g, b] = [x, 0, chroma];
|
|
154
|
-
else
|
|
155
|
-
[r, g, b] = [chroma, 0, x];
|
|
156
|
-
return normalizeRgba({
|
|
157
|
-
r: Math.round((r + m) * 255),
|
|
158
|
-
g: Math.round((g + m) * 255),
|
|
159
|
-
b: Math.round((b + m) * 255),
|
|
160
|
-
a: clampFloat(color.a, 0, 1),
|
|
161
|
-
});
|
|
162
|
-
}
|
|
163
|
-
function clamp(value, min, max) {
|
|
164
|
-
if (!Number.isFinite(value))
|
|
165
|
-
return min;
|
|
166
|
-
return Math.max(min, Math.min(max, Math.round(value)));
|
|
167
|
-
}
|
|
168
|
-
function clampFloat(value, min, max) {
|
|
169
|
-
if (!Number.isFinite(value))
|
|
170
|
-
return min;
|
|
171
|
-
return Math.max(min, Math.min(max, value));
|
|
172
|
-
}
|
|
173
|
-
function swatchBackground(value) {
|
|
174
|
-
if (value === "transparent" || value === "rgba(0, 0, 0, 0)") {
|
|
175
|
-
return {
|
|
176
|
-
background: CHECKERBOARD_IMAGE,
|
|
177
|
-
backgroundPosition: "0 0, 0 4px, 4px -4px, -4px 0",
|
|
178
|
-
backgroundSize: "8px 8px",
|
|
179
|
-
};
|
|
180
|
-
}
|
|
181
|
-
return { background: value };
|
|
182
|
-
}
|
|
183
|
-
export function VisualInspectorPanel({ title, subtitle, children, className, headerAction, }) {
|
|
184
|
-
return (_jsxs("aside", { className: cn("w-64 overflow-hidden rounded-xl border border-border bg-card/95 text-card-foreground shadow-2xl shadow-black/35 backdrop-blur", className), children: [_jsxs("div", { className: "flex min-h-10 items-start justify-between gap-2 border-b border-border/70 px-3 py-2.5", children: [_jsxs("div", { className: "min-w-0", children: [_jsx("div", { className: "truncate text-[11px] font-semibold uppercase tracking-wide text-muted-foreground", children: title }), subtitle && (_jsx("div", { className: "mt-0.5 truncate text-[12px] text-foreground", children: subtitle }))] }), headerAction] }), _jsx("div", { className: "max-h-[min(680px,calc(100vh-7rem))] overflow-y-auto p-2", children: children })] }));
|
|
185
|
-
}
|
|
186
|
-
export function VisualInspectorSection({ title, children, className, }) {
|
|
187
|
-
return (_jsxs("section", { className: cn("rounded-lg px-1.5 py-2", className), children: [_jsx("div", { className: "mb-2 px-1 text-[10px] font-semibold uppercase tracking-wide text-muted-foreground/75", children: title }), _jsx("div", { className: "space-y-2", children: children })] }));
|
|
188
|
-
}
|
|
189
|
-
export function VisualControlRow({ label, children, className, }) {
|
|
190
|
-
return (_jsxs("div", { className: cn("grid gap-1", className), children: [_jsx("span", { className: "text-[11px] text-muted-foreground", children: label }), children] }));
|
|
191
|
-
}
|
|
192
|
-
export function VisualSwatchControl({ options, value, onChange, columns = 8, className, }) {
|
|
193
|
-
return (_jsx("div", { className: cn("grid gap-1.5", className), style: { gridTemplateColumns: `repeat(${columns}, minmax(0, 1fr))` }, children: options.map((option) => {
|
|
194
|
-
const swatch = option.color ?? option.value;
|
|
195
|
-
const isTransparent = swatch === "transparent";
|
|
196
|
-
return (_jsx("button", { type: "button", title: option.label, "aria-label": option.label, onClick: () => onChange(option.value), className: cn("size-5 cursor-pointer rounded-md border border-border/70 transition-[transform,border-color] hover:scale-105 hover:border-foreground/40 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", value === option.value &&
|
|
197
|
-
"border-foreground/70 ring-2 ring-foreground/40 ring-offset-1 ring-offset-card"), style: {
|
|
198
|
-
background: isTransparent
|
|
199
|
-
? "linear-gradient(45deg, hsl(var(--muted)) 25%, transparent 25%), linear-gradient(-45deg, hsl(var(--muted)) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, hsl(var(--muted)) 75%), linear-gradient(-45deg, transparent 75%, hsl(var(--muted)) 75%)"
|
|
200
|
-
: swatch,
|
|
201
|
-
backgroundPosition: isTransparent
|
|
202
|
-
? "0 0, 0 4px, 4px -4px, -4px 0"
|
|
203
|
-
: undefined,
|
|
204
|
-
backgroundSize: isTransparent ? "8px 8px" : undefined,
|
|
205
|
-
} }, `${option.value}-${option.label}`));
|
|
206
|
-
}) }));
|
|
207
|
-
}
|
|
208
|
-
export function VisualColorPicker({ label, value, onChange, documentColors = [], allowTransparent = false, hexLabel = "Hex", documentColorsLabel = "Document colors", transparentLabel = "Transparent", className, }) {
|
|
209
|
-
const [open, setOpen] = useState(false);
|
|
210
|
-
const color = parseCssColor(value) ?? FALLBACK_RGBA;
|
|
211
|
-
const colorHex = rgbaToHex(color);
|
|
212
|
-
const [draft, setDraft] = useState(colorHex.replace(/^#/, ""));
|
|
213
|
-
const [picking, setPicking] = useState(false);
|
|
214
|
-
const hasEyeDropper = typeof window !== "undefined" && "EyeDropper" in window;
|
|
215
|
-
useEffect(() => {
|
|
216
|
-
if (!open)
|
|
217
|
-
setDraft(colorHex.replace(/^#/, ""));
|
|
218
|
-
}, [colorHex, open]);
|
|
219
|
-
const commitDraft = (nextDraft = draft) => {
|
|
220
|
-
const normalized = normalizeHexColor(nextDraft);
|
|
221
|
-
if (!normalized) {
|
|
222
|
-
setDraft(colorHex.replace(/^#/, ""));
|
|
223
|
-
return;
|
|
224
|
-
}
|
|
225
|
-
setDraft(normalized.replace(/^#/, ""));
|
|
226
|
-
onChange(normalized);
|
|
227
|
-
};
|
|
228
|
-
const emitHsv = (nextHsv) => {
|
|
229
|
-
const nextColor = hsvToRgba({ ...nextHsv, a: color.a });
|
|
230
|
-
const nextValue = rgbaToCss(nextColor);
|
|
231
|
-
setDraft(rgbaToHex(nextColor).replace(/^#/, ""));
|
|
232
|
-
onChange(nextValue);
|
|
233
|
-
};
|
|
234
|
-
const pickScreenColor = async () => {
|
|
235
|
-
if (!hasEyeDropper || picking)
|
|
236
|
-
return;
|
|
237
|
-
try {
|
|
238
|
-
setPicking(true);
|
|
239
|
-
const EyeDropperCtor = window.EyeDropper;
|
|
240
|
-
if (!EyeDropperCtor)
|
|
241
|
-
return;
|
|
242
|
-
const result = await new EyeDropperCtor().open();
|
|
243
|
-
if (result?.sRGBHex) {
|
|
244
|
-
const next = normalizeHexColor(result.sRGBHex);
|
|
245
|
-
if (next) {
|
|
246
|
-
setDraft(next.replace(/^#/, ""));
|
|
247
|
-
onChange(next);
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
finally {
|
|
252
|
-
setPicking(false);
|
|
253
|
-
}
|
|
254
|
-
};
|
|
255
|
-
const uniqueDocumentColors = Array.from(new Set(documentColors
|
|
256
|
-
.map((color) => color === "transparent" ? color : normalizeHexColor(color))
|
|
257
|
-
.filter(Boolean))).slice(0, 16);
|
|
258
|
-
const displayValue = value === "transparent" || color.a === 0
|
|
259
|
-
? transparentLabel
|
|
260
|
-
: colorHex.replace(/^#/, "");
|
|
261
|
-
const hsv = rgbaToHsv(color);
|
|
262
|
-
return (_jsxs(Popover, { open: open, onOpenChange: setOpen, children: [_jsx(PopoverTrigger, { asChild: true, children: _jsxs("button", { type: "button", "aria-label": label, className: cn("flex h-7 w-full cursor-pointer items-center gap-1.5 rounded-md border border-border bg-background/70 px-2 text-[11px] shadow-none transition-colors hover:bg-accent/60 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", className), children: [_jsx("span", { className: "size-4 shrink-0 rounded-[3px] border border-border/70", style: swatchBackground(value) }), _jsx("span", { className: "min-w-0 flex-1 truncate text-left font-medium tabular-nums text-foreground", children: displayValue }), _jsx("span", { "aria-hidden": "true", className: "size-0 border-x-[4px] border-t-[5px] border-x-transparent border-t-muted-foreground/70" })] }) }), _jsx(PopoverContent, { side: "left", align: "start", sideOffset: 8, className: "z-[10000] w-[252px] p-0 text-[11px] shadow-xl", onFocusOutside: (event) => event.preventDefault(), children: _jsxs("div", { className: "rounded-md bg-popover text-popover-foreground", children: [_jsx(VisualSaturationBrightnessField, { hsv: hsv, label: label, onChange: emitHsv }), _jsx("div", { className: "mt-2.5 px-3", children: _jsxs("div", { className: "grid grid-cols-[1.5rem_1fr] items-center gap-x-2", children: [_jsx("div", { className: "flex items-center justify-center", children: _jsx("button", { type: "button", "aria-label": label, disabled: !hasEyeDropper || picking, onClick: () => void pickScreenColor(), className: cn("flex size-6 cursor-pointer items-center justify-center rounded-sm text-muted-foreground transition-colors hover:bg-accent hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", (!hasEyeDropper || picking) &&
|
|
263
|
-
"pointer-events-none opacity-40", picking &&
|
|
264
|
-
"bg-primary/10 text-primary ring-1 ring-primary/50"), children: _jsx(IconColorPicker, { className: "size-4" }) }) }), _jsx(VisualColorTrack, { label: label, value: hsv.h, min: 0, max: 360, backgroundImage: "linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000)", onChange: (nextHue) => emitHsv({ ...hsv, h: nextHue === 360 ? 0 : nextHue }) }), _jsx("span", { className: "mt-2 size-[18px] shrink-0 rounded-[3px] border border-border/60", style: swatchBackground(rgbaToCss(color)) }), _jsx(VisualColorTrack, { label: transparentLabel, value: Math.round(color.a * 100), min: 0, max: 100, backgroundImage: `${CHECKERBOARD_IMAGE}, linear-gradient(90deg, rgba(${color.r}, ${color.g}, ${color.b}, 0), rgba(${color.r}, ${color.g}, ${color.b}, 1))`, backgroundSize: "8px 8px, 8px 8px, 8px 8px, 8px 8px, 100% 100%", backgroundPosition: "0 0, 0 4px, 4px -4px, -4px 0, 0 0", onChange: (nextOpacity) => {
|
|
265
|
-
const nextColor = normalizeRgba({
|
|
266
|
-
...color,
|
|
267
|
-
a: nextOpacity / 100,
|
|
268
|
-
});
|
|
269
|
-
const nextValue = rgbaToCss(nextColor);
|
|
270
|
-
setDraft(rgbaToHex(nextColor).replace(/^#/, ""));
|
|
271
|
-
onChange(nextValue);
|
|
272
|
-
} })] }) }), _jsxs("div", { className: "mt-2.5 grid grid-cols-[4.5rem_1fr] items-center gap-1 border-b border-border/70 px-3 pb-3", children: [_jsx("span", { className: "text-[11px] font-medium text-muted-foreground", children: hexLabel }), _jsx("input", { value: draft, spellCheck: false, onChange: (event) => setDraft(event.currentTarget.value), onFocus: (event) => event.currentTarget.select(), onBlur: () => commitDraft(), onKeyDown: (event) => {
|
|
273
|
-
if (event.key === "Enter") {
|
|
274
|
-
event.preventDefault();
|
|
275
|
-
commitDraft();
|
|
276
|
-
event.currentTarget.blur();
|
|
277
|
-
}
|
|
278
|
-
if (event.key === "Escape") {
|
|
279
|
-
event.preventDefault();
|
|
280
|
-
setDraft(colorHex.replace(/^#/, ""));
|
|
281
|
-
event.currentTarget.blur();
|
|
282
|
-
}
|
|
283
|
-
}, className: "h-6 min-w-0 rounded-md border border-input bg-background/70 px-2 text-right text-[11px] uppercase tabular-nums outline-none transition-colors focus:border-ring focus:ring-1 focus:ring-ring" })] }), (allowTransparent || uniqueDocumentColors.length > 0) && (_jsxs("div", { className: "px-3 py-2.5", children: [_jsx("div", { className: "mb-2 flex h-5 items-center justify-between text-[11px] text-muted-foreground", children: _jsx("span", { children: documentColorsLabel }) }), _jsxs("div", { className: "grid grid-cols-8 gap-1", children: [allowTransparent && (_jsx("button", { type: "button", "aria-label": transparentLabel, "aria-pressed": value === "transparent", className: cn("size-5 cursor-pointer rounded-sm border transition-transform hover:scale-110 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", value === "transparent" || color.a === 0
|
|
284
|
-
? "border-primary ring-1 ring-primary"
|
|
285
|
-
: "border-border/60"), style: swatchBackground("transparent"), onClick: () => {
|
|
286
|
-
setDraft(colorHex.replace(/^#/, ""));
|
|
287
|
-
onChange("transparent");
|
|
288
|
-
} })), uniqueDocumentColors.map((color) => (_jsx("button", { type: "button", title: color, "aria-label": color, "aria-pressed": colorHex === color, className: cn("size-5 cursor-pointer rounded-sm border transition-transform hover:scale-110 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", colorHex === color
|
|
289
|
-
? "border-primary ring-1 ring-primary"
|
|
290
|
-
: "border-border/60"), style: swatchBackground(color), onClick: () => {
|
|
291
|
-
setDraft(color);
|
|
292
|
-
onChange(color);
|
|
293
|
-
} }, color)))] })] }))] }) })] }));
|
|
294
|
-
}
|
|
295
|
-
function VisualSaturationBrightnessField({ hsv, label, onChange, }) {
|
|
296
|
-
const fieldRef = useRef(null);
|
|
297
|
-
const draggingRef = useRef(false);
|
|
298
|
-
const hueColor = rgbaToCss(hsvToRgba({ h: hsv.h, s: 100, v: 100, a: 1 }));
|
|
299
|
-
const updateFromPointer = (event) => {
|
|
300
|
-
const rect = fieldRef.current?.getBoundingClientRect();
|
|
301
|
-
if (!rect)
|
|
302
|
-
return;
|
|
303
|
-
onChange({
|
|
304
|
-
...hsv,
|
|
305
|
-
s: clamp(((event.clientX - rect.left) / rect.width) * 100, 0, 100),
|
|
306
|
-
v: clamp(100 - ((event.clientY - rect.top) / rect.height) * 100, 0, 100),
|
|
307
|
-
});
|
|
308
|
-
};
|
|
309
|
-
const stepWithKeyboard = (event) => {
|
|
310
|
-
const step = event.shiftKey ? 10 : 1;
|
|
311
|
-
if (event.key === "ArrowRight") {
|
|
312
|
-
event.preventDefault();
|
|
313
|
-
onChange({ ...hsv, s: clamp(hsv.s + step, 0, 100) });
|
|
314
|
-
}
|
|
315
|
-
if (event.key === "ArrowLeft") {
|
|
316
|
-
event.preventDefault();
|
|
317
|
-
onChange({ ...hsv, s: clamp(hsv.s - step, 0, 100) });
|
|
318
|
-
}
|
|
319
|
-
if (event.key === "ArrowUp") {
|
|
320
|
-
event.preventDefault();
|
|
321
|
-
onChange({ ...hsv, v: clamp(hsv.v + step, 0, 100) });
|
|
322
|
-
}
|
|
323
|
-
if (event.key === "ArrowDown") {
|
|
324
|
-
event.preventDefault();
|
|
325
|
-
onChange({ ...hsv, v: clamp(hsv.v - step, 0, 100) });
|
|
326
|
-
}
|
|
327
|
-
};
|
|
328
|
-
return (_jsx("div", { ref: fieldRef, tabIndex: 0, "aria-label": label, onPointerDown: (event) => {
|
|
329
|
-
draggingRef.current = true;
|
|
330
|
-
event.currentTarget.setPointerCapture(event.pointerId);
|
|
331
|
-
updateFromPointer(event);
|
|
332
|
-
}, onPointerMove: (event) => {
|
|
333
|
-
if (!draggingRef.current)
|
|
334
|
-
return;
|
|
335
|
-
updateFromPointer(event);
|
|
336
|
-
}, onPointerUp: (event) => {
|
|
337
|
-
draggingRef.current = false;
|
|
338
|
-
if (event.currentTarget.hasPointerCapture(event.pointerId)) {
|
|
339
|
-
event.currentTarget.releasePointerCapture(event.pointerId);
|
|
340
|
-
}
|
|
341
|
-
}, onPointerCancel: () => {
|
|
342
|
-
draggingRef.current = false;
|
|
343
|
-
}, onKeyDown: stepWithKeyboard, className: "relative h-40 w-full cursor-crosshair overflow-hidden rounded-t-md outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-inset active:cursor-grabbing", style: {
|
|
344
|
-
backgroundImage: `linear-gradient(to top, #000 0%, transparent 100%), linear-gradient(to right, #fff 0%, ${hueColor} 100%)`,
|
|
345
|
-
}, children: _jsx("span", { className: "pointer-events-none absolute size-4 -translate-x-1/2 -translate-y-1/2 rounded-full border-2 border-white shadow-[0_0_0_1px_hsl(var(--foreground)/0.6)]", style: {
|
|
346
|
-
left: `${hsv.s}%`,
|
|
347
|
-
top: `${100 - hsv.v}%`,
|
|
348
|
-
} }) }));
|
|
349
|
-
}
|
|
350
|
-
function VisualColorTrack({ label, value, min, max, backgroundImage, backgroundSize, backgroundPosition, onChange, }) {
|
|
351
|
-
const trackRef = useRef(null);
|
|
352
|
-
const draggingRef = useRef(false);
|
|
353
|
-
const percent = ((value - min) / (max - min)) * 100;
|
|
354
|
-
const updateFromPointer = (event) => {
|
|
355
|
-
const rect = trackRef.current?.getBoundingClientRect();
|
|
356
|
-
if (!rect)
|
|
357
|
-
return;
|
|
358
|
-
const next = min + ((event.clientX - rect.left) / rect.width) * (max - min);
|
|
359
|
-
onChange(clamp(next, min, max));
|
|
360
|
-
};
|
|
361
|
-
const stepWithKeyboard = (event) => {
|
|
362
|
-
const step = event.shiftKey ? 10 : 1;
|
|
363
|
-
if (event.key === "ArrowRight" || event.key === "ArrowUp") {
|
|
364
|
-
event.preventDefault();
|
|
365
|
-
onChange(clamp(value + step, min, max));
|
|
366
|
-
}
|
|
367
|
-
if (event.key === "ArrowLeft" || event.key === "ArrowDown") {
|
|
368
|
-
event.preventDefault();
|
|
369
|
-
onChange(clamp(value - step, min, max));
|
|
370
|
-
}
|
|
371
|
-
if (event.key === "Home") {
|
|
372
|
-
event.preventDefault();
|
|
373
|
-
onChange(min);
|
|
374
|
-
}
|
|
375
|
-
if (event.key === "End") {
|
|
376
|
-
event.preventDefault();
|
|
377
|
-
onChange(max);
|
|
378
|
-
}
|
|
379
|
-
};
|
|
380
|
-
return (_jsx("div", { ref: trackRef, role: "slider", tabIndex: 0, "aria-label": label, "aria-valuemin": min, "aria-valuemax": max, "aria-valuenow": Math.round(value), onKeyDown: stepWithKeyboard, onPointerDown: (event) => {
|
|
381
|
-
draggingRef.current = true;
|
|
382
|
-
event.currentTarget.setPointerCapture(event.pointerId);
|
|
383
|
-
updateFromPointer(event);
|
|
384
|
-
}, onPointerMove: (event) => {
|
|
385
|
-
if (!draggingRef.current)
|
|
386
|
-
return;
|
|
387
|
-
updateFromPointer(event);
|
|
388
|
-
}, onPointerUp: (event) => {
|
|
389
|
-
draggingRef.current = false;
|
|
390
|
-
if (event.currentTarget.hasPointerCapture(event.pointerId)) {
|
|
391
|
-
event.currentTarget.releasePointerCapture(event.pointerId);
|
|
392
|
-
}
|
|
393
|
-
}, onPointerCancel: () => {
|
|
394
|
-
draggingRef.current = false;
|
|
395
|
-
}, className: "relative h-3.5 cursor-pointer rounded-full border border-border/60 outline-none ring-offset-background focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 active:cursor-grabbing", style: { backgroundImage, backgroundSize, backgroundPosition }, children: _jsx("span", { className: "pointer-events-none absolute top-1/2 size-4 -translate-x-1/2 -translate-y-1/2 rounded-full border-2 border-white shadow-[0_0_0_1px_hsl(var(--foreground)/0.6)]", style: { left: `${clamp(percent, 0, 100)}%` } }) }));
|
|
396
|
-
}
|
|
397
|
-
export function VisualSegmentedControl({ options, value, onChange, className, }) {
|
|
398
|
-
return (_jsx("div", { className: cn("flex min-h-7 overflow-hidden rounded-md border border-border bg-background/60", className), children: options.map((option) => (_jsx("button", { type: "button", onClick: () => onChange(option.value), className: cn("min-w-0 flex-1 cursor-pointer px-2 text-[11px] font-medium text-muted-foreground transition-colors hover:bg-accent/70 hover:text-foreground", value === option.value && "bg-accent text-foreground"), children: _jsx("span", { className: "truncate", children: option.label }) }, option.value))) }));
|
|
399
|
-
}
|
|
400
|
-
export function VisualToggleControl({ checked, onChange, label, }) {
|
|
401
|
-
return (_jsx("button", { type: "button", "aria-pressed": checked, "aria-label": label, onClick: () => onChange(!checked), className: cn("relative h-5 w-9 cursor-pointer rounded-full border border-border transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", checked ? "bg-primary/35" : "bg-muted"), children: _jsx("span", { className: cn("absolute top-1/2 size-3.5 -translate-y-1/2 rounded-full bg-foreground shadow transition-transform", checked ? "translate-x-[18px]" : "translate-x-[3px]") }) }));
|
|
402
|
-
}
|
|
403
|
-
export function VisualSliderControl({ value, onChange, min = 0, max = 100, step = 1, unit, }) {
|
|
404
|
-
const safeValue = clampNumber(Number.isFinite(value) ? value : min, min, max);
|
|
405
|
-
return (_jsxs("div", { className: "flex h-7 items-center gap-2", children: [_jsx("input", { type: "range", min: min, max: max, step: step, value: safeValue, onChange: (event) => onChange(Number(event.currentTarget.value)), className: "min-w-0 flex-1 cursor-pointer accent-foreground" }), _jsx("span", { className: "w-9 text-right text-[11px] tabular-nums text-muted-foreground", children: formatNumber(safeValue, unit) })] }));
|
|
406
|
-
}
|
|
407
|
-
export function VisualScrubInput({ label, value, onChange, min, max, step = 1, unit, disabled = false, }) {
|
|
408
|
-
const id = useId();
|
|
409
|
-
const [draft, setDraft] = useState(() => formatNumber(value, unit));
|
|
410
|
-
const [focused, setFocused] = useState(false);
|
|
411
|
-
const dragRef = useRef(null);
|
|
412
|
-
useEffect(() => {
|
|
413
|
-
if (!focused)
|
|
414
|
-
setDraft(formatNumber(value, unit));
|
|
415
|
-
}, [focused, unit, value]);
|
|
416
|
-
const commit = (nextDraft = draft) => {
|
|
417
|
-
const parsed = parseDraftNumber(nextDraft, value);
|
|
418
|
-
const next = clampNumber(parsed, min, max);
|
|
419
|
-
onChange(next);
|
|
420
|
-
setDraft(formatNumber(next, unit));
|
|
421
|
-
};
|
|
422
|
-
const setNext = (next) => {
|
|
423
|
-
const clamped = clampNumber(next, min, max);
|
|
424
|
-
onChange(clamped);
|
|
425
|
-
setDraft(formatNumber(clamped, unit));
|
|
426
|
-
};
|
|
427
|
-
const onKeyDown = (event) => {
|
|
428
|
-
if (event.key === "Enter") {
|
|
429
|
-
event.preventDefault();
|
|
430
|
-
commit();
|
|
431
|
-
event.currentTarget.blur();
|
|
432
|
-
return;
|
|
433
|
-
}
|
|
434
|
-
if (event.key === "Escape") {
|
|
435
|
-
event.preventDefault();
|
|
436
|
-
setDraft(formatNumber(value, unit));
|
|
437
|
-
event.currentTarget.blur();
|
|
438
|
-
return;
|
|
439
|
-
}
|
|
440
|
-
if (event.key === "ArrowUp" || event.key === "ArrowDown") {
|
|
441
|
-
event.preventDefault();
|
|
442
|
-
const mult = event.shiftKey || event.metaKey ? 10 : event.altKey ? 0.1 : 1;
|
|
443
|
-
const direction = event.key === "ArrowUp" ? 1 : -1;
|
|
444
|
-
const base = parseDraftNumber(draft, value);
|
|
445
|
-
setNext(base + direction * step * mult);
|
|
446
|
-
}
|
|
447
|
-
};
|
|
448
|
-
const onPointerDown = (event) => {
|
|
449
|
-
if (disabled || event.button !== 0)
|
|
450
|
-
return;
|
|
451
|
-
event.preventDefault();
|
|
452
|
-
dragRef.current = {
|
|
453
|
-
pointerId: event.pointerId,
|
|
454
|
-
prevX: event.clientX,
|
|
455
|
-
dragged: false,
|
|
456
|
-
};
|
|
457
|
-
event.currentTarget.setPointerCapture(event.pointerId);
|
|
458
|
-
};
|
|
459
|
-
const onPointerMove = (event) => {
|
|
460
|
-
const drag = dragRef.current;
|
|
461
|
-
if (!drag || drag.pointerId !== event.pointerId)
|
|
462
|
-
return;
|
|
463
|
-
const delta = event.clientX - drag.prevX;
|
|
464
|
-
if (delta === 0)
|
|
465
|
-
return;
|
|
466
|
-
drag.prevX = event.clientX;
|
|
467
|
-
drag.dragged = true;
|
|
468
|
-
const mult = event.shiftKey || event.metaKey ? 10 : event.altKey ? 0.1 : 1;
|
|
469
|
-
setNext(value + delta * step * mult);
|
|
470
|
-
};
|
|
471
|
-
const onPointerUp = (event) => {
|
|
472
|
-
const drag = dragRef.current;
|
|
473
|
-
if (!drag || drag.pointerId !== event.pointerId)
|
|
474
|
-
return;
|
|
475
|
-
event.currentTarget.releasePointerCapture(event.pointerId);
|
|
476
|
-
dragRef.current = null;
|
|
477
|
-
if (!drag.dragged) {
|
|
478
|
-
document.getElementById(id)?.focus();
|
|
479
|
-
}
|
|
480
|
-
};
|
|
481
|
-
return (_jsxs("div", { className: "flex items-center gap-1.5", children: [_jsx("label", { htmlFor: id, onPointerDown: onPointerDown, onPointerMove: onPointerMove, onPointerUp: onPointerUp, className: cn("flex w-8 shrink-0 cursor-ew-resize select-none items-center justify-center rounded border border-transparent px-1 text-[10px] font-semibold text-muted-foreground hover:border-border hover:bg-accent/60", disabled && "cursor-not-allowed opacity-50"), children: label }), _jsx("input", { id: id, value: draft, disabled: disabled, onFocus: () => setFocused(true), onBlur: () => {
|
|
482
|
-
setFocused(false);
|
|
483
|
-
commit();
|
|
484
|
-
}, onChange: (event) => setDraft(event.currentTarget.value), onKeyDown: onKeyDown, className: "h-7 min-w-0 flex-1 rounded-md border border-input bg-background/70 px-2 text-right text-[11px] tabular-nums text-foreground outline-none transition-colors focus:border-ring focus:ring-1 focus:ring-ring disabled:opacity-50" })] }));
|
|
485
|
-
}
|
|
486
|
-
export function VisualTweakControl({ tweak, value, onChange, className, }) {
|
|
487
|
-
if (tweak.type === "toggle") {
|
|
488
|
-
return (_jsxs("div", { className: cn("flex h-7 items-center justify-between gap-2", className), children: [_jsx("span", { className: "truncate text-[11px] text-muted-foreground", children: tweak.label }), _jsx(VisualToggleControl, { checked: Boolean(value), onChange: onChange, label: tweak.label })] }));
|
|
489
|
-
}
|
|
490
|
-
const numericValue = typeof value === "number"
|
|
491
|
-
? value
|
|
492
|
-
: typeof value === "string"
|
|
493
|
-
? Number(value)
|
|
494
|
-
: Number(tweak.defaultValue);
|
|
495
|
-
return (_jsxs(VisualControlRow, { label: tweak.label, className: className, children: [(tweak.type === "color-swatch" ||
|
|
496
|
-
tweak.type === "color-swatches") && (_jsx(VisualColorPicker, { label: tweak.label, value: String(value), documentColors: (tweak.options ?? []).map((option) => option.color ?? option.value), onChange: onChange })), tweak.type === "segment" && (_jsx(VisualSegmentedControl, { options: tweak.options ?? [], value: String(value), onChange: onChange })), tweak.type === "slider" && (_jsx(VisualSliderControl, { min: tweak.min ?? 0, max: tweak.max ?? 100, step: tweak.step ?? 1, unit: tweak.unit ??
|
|
497
|
-
(tweak.cssVar?.toLowerCase().includes("radius") ? "px" : undefined), value: Number.isFinite(numericValue) ? numericValue : 0, onChange: onChange }))] }));
|
|
498
|
-
}
|
|
1
|
+
export * from "@agent-native/toolkit/design-tweaks";
|
|
499
2
|
//# sourceMappingURL=visual-style-controls.js.map
|