@agent-native/core 0.103.0 → 0.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +36 -0
- package/corpus/core/package.json +9 -2
- package/corpus/core/src/agent/engine/credential-errors.ts +2 -2
- package/corpus/core/src/agent/production-agent.ts +30 -0
- package/corpus/core/src/agent/run-store.ts +12 -2
- package/corpus/core/src/cli/create.ts +1 -0
- package/corpus/core/src/cli/skills-content/visual-plan-skill.ts +30 -11
- package/corpus/core/src/cli/templates-meta.ts +4 -3
- package/corpus/core/src/client/AgentAskPopover.tsx +89 -0
- package/corpus/core/src/client/AgentChatHome.tsx +4 -0
- package/corpus/core/src/client/AgentPanel.tsx +321 -223
- package/corpus/core/src/client/AssistantChat.tsx +6 -10
- package/corpus/core/src/client/MultiTabAssistantChat.tsx +53 -372
- package/corpus/core/src/client/agent-chat-adapter.ts +13 -1
- package/corpus/core/src/client/agent-page/AgentContextTab.tsx +133 -149
- package/corpus/core/src/client/agent-page/AgentEmptyState.tsx +44 -0
- package/corpus/core/src/client/agent-page/AgentJobsTab.tsx +153 -82
- package/corpus/core/src/client/agent-page/AgentTabFrame.tsx +39 -0
- package/corpus/core/src/client/agent-page/AgentTabsPage.tsx +368 -356
- package/corpus/core/src/client/agent-page/types.ts +1 -1
- package/corpus/core/src/client/analytics.ts +51 -5
- package/corpus/core/src/client/chat/run-recovery.tsx +12 -4
- package/corpus/core/src/client/composer/PromptComposer.tsx +5 -15
- package/corpus/core/src/client/composer/TiptapComposer.tsx +32 -3
- package/corpus/core/src/client/dynamic-suggestions.ts +3 -3
- package/corpus/core/src/client/index.ts +16 -1
- package/corpus/core/src/client/resources/ResourceTree.tsx +249 -38
- package/corpus/core/src/client/resources/ResourcesPanel.tsx +307 -140
- package/corpus/core/src/client/session-replay.ts +158 -5
- package/corpus/core/src/client/settings/AutomationsSection.tsx +30 -10
- package/corpus/core/src/client/settings/SettingsPanel.tsx +3 -2
- package/corpus/core/src/client/settings/SettingsTabsPage.tsx +2 -0
- package/corpus/core/src/client/settings/agent-settings-search.ts +2 -2
- package/corpus/core/src/client/use-chat-threads.ts +2 -0
- package/corpus/core/src/connections/catalog.ts +49 -7
- package/corpus/core/src/db/index.ts +6 -1
- package/corpus/core/src/extensions/actions.ts +106 -16
- package/corpus/core/src/extensions/content-patch.ts +22 -0
- package/corpus/core/src/extensions/routes.ts +18 -0
- package/corpus/core/src/extensions/store.ts +8 -0
- package/corpus/core/src/index.ts +3 -0
- package/corpus/core/src/ingestion/docx.ts +158 -0
- package/corpus/core/src/ingestion/figma-node-to-html.ts +1860 -0
- package/corpus/core/src/ingestion/figma.ts +548 -0
- package/corpus/core/src/ingestion/index.ts +107 -0
- package/corpus/core/src/ingestion/media.ts +264 -0
- package/corpus/core/src/ingestion/notion.ts +121 -0
- package/corpus/core/src/ingestion/office.ts +214 -0
- package/corpus/core/src/ingestion/orchestration.ts +160 -0
- package/corpus/core/src/ingestion/pptx.ts +333 -0
- package/corpus/core/src/ingestion/selection.ts +81 -0
- package/corpus/core/src/ingestion/website.ts +151 -0
- package/corpus/core/src/integrations/plugin.ts +45 -37
- package/corpus/core/src/localization/default-messages.ts +35 -12
- package/corpus/core/src/observability/hosted-model-experiment.ts +118 -0
- package/corpus/core/src/observability/traces.ts +5 -3
- package/corpus/core/src/provider-api/index.ts +452 -8
- package/corpus/core/src/scripts/agent-engines/list-agent-engines.ts +18 -1
- package/corpus/core/src/search-utils/index.ts +112 -0
- package/corpus/core/src/secrets/register-framework-secrets.ts +61 -0
- package/corpus/core/src/server/action-discovery.ts +33 -8
- package/corpus/core/src/server/agent-chat/framework-prompts.ts +2 -2
- package/corpus/core/src/server/agent-chat/prompt-resources.ts +144 -0
- package/corpus/core/src/server/agent-chat-plugin.ts +6 -0
- package/corpus/core/src/server/core-routes-plugin.ts +12 -0
- package/corpus/core/src/server/index.ts +30 -0
- package/corpus/core/src/server/workspace-provider-oauth.ts +583 -0
- package/corpus/core/src/styles/agent-native.css +9 -0
- package/corpus/core/src/templates/default/app/i18n/en-US.ts +3 -3
- package/corpus/core/src/templates/workspace-core/.agents/skills/extensions/SKILL.md +14 -5
- package/corpus/core/src/templates/workspace-root/.env.example +12 -0
- package/corpus/core/src/vite/client.ts +2 -0
- package/corpus/core/src/workspace-connections/index.ts +6 -0
- package/corpus/core/src/workspace-connections/lifecycle.ts +43 -0
- package/corpus/core/src/workspace-connections/store.ts +16 -0
- package/corpus/templates/analytics/.agents/skills/dashboard-management/SKILL.md +46 -3
- package/corpus/templates/analytics/AGENTS.md +9 -0
- package/corpus/templates/analytics/actions/dashboard-mutation-api.ts +120 -6
- package/corpus/templates/analytics/actions/mutate-dashboard.ts +92 -30
- package/corpus/templates/analytics/actions/update-dashboard.ts +5 -5
- package/corpus/templates/analytics/app/components/dashboard/SqlChart.tsx +313 -220
- package/corpus/templates/analytics/app/components/layout/CommandPalette.tsx +2 -2
- package/corpus/templates/analytics/app/components/layout/Layout.tsx +9 -6
- package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +90 -64
- package/corpus/templates/analytics/app/i18n-data.ts +3 -3
- package/corpus/templates/analytics/app/lib/dashboard-list-loading.ts +25 -0
- package/corpus/templates/analytics/app/lib/item-popularity.ts +13 -4
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/DashboardFilterBar.tsx +1 -1
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/pivot.ts +8 -3
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/types.ts +1 -0
- package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +15 -3
- package/corpus/templates/analytics/changelog/2026-07-16-dashboard-filter-defaults-can-now-be-changed-reliably-withou.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-16-dashboard-lists-load-in-one-stable-order-without-popping-bet.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-16-fixed-dashboard-filter-dropdown-text-alignment.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-16-recurring-signed-in-users-can-now-be-viewed-as-weekly-bars-b.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-16-the-analytics-agent-can-now-duplicate-a-chart-and-place-the-.md +6 -0
- package/corpus/templates/analytics/seeds/dashboards/agent-native-templates-first-party.json +41 -1
- package/corpus/templates/analytics/server/lib/dashboard-catalog.ts +1 -1
- package/corpus/templates/analytics/server/lib/first-party-metric-catalog.ts +47 -1
- package/corpus/templates/analytics/server/lib/session-replay.ts +68 -0
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +1 -0
- package/corpus/templates/analytics/server/routes/sessions/lookup.get.ts +47 -0
- package/corpus/templates/assets/.agents/skills/asset-generation/SKILL.md +16 -9
- package/corpus/templates/assets/.agents/skills/creative-context/SKILL.md +86 -0
- package/corpus/templates/assets/AGENTS.md +10 -0
- package/corpus/templates/assets/actions/create-generation-session.ts +59 -1
- package/corpus/templates/assets/actions/edit-image.ts +2 -0
- package/corpus/templates/assets/actions/generate-asset.ts +52 -0
- package/corpus/templates/assets/actions/generate-image-batch.ts +55 -0
- package/corpus/templates/assets/actions/generate-image.ts +219 -1
- package/corpus/templates/assets/actions/open-asset-picker.ts +14 -0
- package/corpus/templates/assets/actions/refine-image.ts +3 -0
- package/corpus/templates/assets/actions/restyle-image.ts +2 -0
- package/corpus/templates/assets/agent-native.app-skill.json +4 -0
- package/corpus/templates/assets/app/components/layout/Layout.tsx +2 -0
- package/corpus/templates/assets/app/i18n/zh-TW.ts +3 -0
- package/corpus/templates/assets/app/i18n-data.ts +29 -13
- package/corpus/templates/assets/app/routes/agent.tsx +7 -1
- package/corpus/templates/assets/app/routes/library.tsx +9 -0
- package/corpus/templates/assets/app/routes/settings.tsx +3 -0
- package/corpus/templates/assets/changelog/2026-07-16-creative-context-library.md +6 -0
- package/corpus/templates/assets/package.json +1 -0
- package/corpus/templates/assets/server/lib/image-processing.ts +1 -22
- package/corpus/templates/assets/server/plugins/creative-context.ts +205 -0
- package/corpus/templates/brain/app/i18n-data.ts +3 -3
- package/corpus/templates/brain/app/lib/brain.ts +1 -1
- package/corpus/templates/brain/server/lib/search.ts +17 -67
- package/corpus/templates/calendar/app/i18n-data.ts +3 -3
- package/corpus/templates/calendar/app/pages/BookingLinksPage.tsx +19 -18
- package/corpus/templates/chat/app/i18n/en-US.ts +3 -3
- package/corpus/templates/chat/app/lib/agent-page.tsx +10 -1
- package/corpus/templates/clips/.agents/skills/meetings/SKILL.md +1 -1
- package/corpus/templates/clips/AGENTS.md +4 -0
- package/corpus/templates/clips/actions/cleanup-transcript.ts +35 -4
- package/corpus/templates/clips/actions/create-meeting.ts +6 -2
- package/corpus/templates/clips/actions/create-organization.ts +3 -2
- package/corpus/templates/clips/actions/create-recording.ts +4 -1
- package/corpus/templates/clips/actions/finalize-recording.ts +44 -7
- package/corpus/templates/clips/actions/import-loom-recording.ts +4 -1
- package/corpus/templates/clips/actions/lib/create-recording-schema.ts +2 -2
- package/corpus/templates/clips/actions/list-meetings.ts +23 -5
- package/corpus/templates/clips/actions/list-organization-state.ts +1 -1
- package/corpus/templates/clips/actions/remove-silences.ts +10 -1
- package/corpus/templates/clips/actions/request-transcript.ts +53 -11
- package/corpus/templates/clips/actions/search-recordings-utils.ts +7 -0
- package/corpus/templates/clips/actions/search-recordings.ts +5 -8
- package/corpus/templates/clips/actions/set-organization-branding.ts +2 -2
- package/corpus/templates/clips/actions/stitch-recordings.ts +10 -5
- package/corpus/templates/clips/actions/update-ai-request-status.ts +38 -0
- package/corpus/templates/clips/app/components/editor/editor-layout.tsx +3 -4
- package/corpus/templates/clips/app/components/editor/editor-selection.ts +19 -0
- package/corpus/templates/clips/app/components/editor/stitch-manager.tsx +10 -10
- package/corpus/templates/clips/app/components/library/bulk-action-toolbar.tsx +1 -2
- package/corpus/templates/clips/app/components/library/library-grid.tsx +101 -93
- package/corpus/templates/clips/app/components/player/video-player.tsx +11 -0
- package/corpus/templates/clips/app/components/workspace/branding-editor.tsx +53 -1
- package/corpus/templates/clips/app/i18n/ar-SA.ts +7 -1
- package/corpus/templates/clips/app/i18n/de-DE.ts +7 -1
- package/corpus/templates/clips/app/i18n/en-US.ts +10 -4
- package/corpus/templates/clips/app/i18n/es-ES.ts +7 -1
- package/corpus/templates/clips/app/i18n/fr-FR.ts +7 -1
- package/corpus/templates/clips/app/i18n/hi-IN.ts +7 -1
- package/corpus/templates/clips/app/i18n/ja-JP.ts +7 -1
- package/corpus/templates/clips/app/i18n/ko-KR.ts +7 -1
- package/corpus/templates/clips/app/i18n/pt-BR.ts +7 -1
- package/corpus/templates/clips/app/i18n/zh-CN.ts +6 -1
- package/corpus/templates/clips/app/i18n/zh-TW.ts +6 -1
- package/corpus/templates/clips/app/routes/_app.settings._index.tsx +5 -9
- package/corpus/templates/clips/app/routes/_app.settings.organization.tsx +6 -2
- package/corpus/templates/clips/app/routes/r.$recordingId.tsx +129 -27
- package/corpus/templates/clips/app/routes/record.tsx +23 -2
- package/corpus/templates/clips/app/routes/share.$shareId.tsx +6 -2
- package/corpus/templates/clips/changelog/2026-07-16-authorized-viewers-can-open-shared-private-clips-without-a-m.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-camera-bubble-hover-controls-appear-above-the-face.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-chrome-extension-recovers-stale-recorder-state.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-clips-agent-chat-no-longer-shows-a-separate-workspace-header.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-clips-search-now-matches-recording-content-without-requiring.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-declined-meetings-no-longer-show-desktop-reminders.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-failed-desktop-saves-now-show-their-local-recovery-copy.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-long-desktop-clips-now-preserve-complete-playback-synced-aud.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-long-recording-lists-keep-stitch-and-library-actions-visible.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-organization-admins-can-choose-new-recording-visibility.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-remove-silences-now-shows-queued-active-completed-and-failed.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-settings-no-longer-repeats-the-builder-connection-status-in-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-16-transcripts-now-appear-from-native-browser-speech-sooner-wit.md +6 -0
- package/corpus/templates/clips/chrome-extension/public/manifest.json +1 -1
- package/corpus/templates/clips/chrome-extension/src/background.ts +73 -1
- package/corpus/templates/clips/chrome-extension/src/native-recording-state.ts +32 -0
- package/corpus/templates/clips/chrome-extension/src/native-transcription.ts +248 -0
- package/corpus/templates/clips/chrome-extension/src/offscreen.ts +106 -0
- package/corpus/templates/clips/desktop/src/app.tsx +66 -28
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +335 -285
- package/corpus/templates/clips/desktop/src/lib/single-flight.ts +7 -0
- package/corpus/templates/clips/desktop/src/lib/upload-verification.ts +51 -0
- package/corpus/templates/clips/desktop/src/overlays/bubble.tsx +2 -2
- package/corpus/templates/clips/desktop/src/overlays/finalizing.tsx +10 -2
- package/corpus/templates/clips/desktop/src/styles.css +13 -11
- package/corpus/templates/clips/desktop/src-tauri/src/clips/mod.rs +8 -9
- package/corpus/templates/clips/desktop/src-tauri/src/meetings_watcher.rs +1 -0
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen/custom_capture.rs +88 -13
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen/live_upload.rs +13 -2
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +241 -6
- package/corpus/templates/clips/server/db/schema.ts +2 -2
- package/corpus/templates/clips/server/lib/builder-media-compression.ts +64 -67
- package/corpus/templates/clips/server/lib/calendar-event-classification.ts +19 -0
- package/corpus/templates/clips/server/lib/google-calendar-client.ts +1 -0
- package/corpus/templates/clips/server/lib/recordings.ts +40 -1
- package/corpus/templates/clips/server/plugins/agent-chat.ts +1 -0
- package/corpus/templates/clips/server/plugins/db.ts +2 -2
- package/corpus/templates/clips/server/routes/api/auth/google-calendar.get.ts +1 -1
- package/corpus/templates/clips/server/routes/api/public-recording.get.ts +14 -5
- package/corpus/templates/clips/server/routes/api/uploads/[recordingId]/chunk.post.ts +51 -1
- package/corpus/templates/clips/server/routes/api/video/[recordingId].get.ts +1 -64
- package/corpus/templates/clips/shared/media-worker-contract.ts +32 -15
- package/corpus/templates/content/.agents/skills/content/SKILL.md +16 -0
- package/corpus/templates/content/.agents/skills/creative-context/SKILL.md +85 -0
- package/corpus/templates/content/.agents/skills/notion-integration/SKILL.md +8 -0
- package/corpus/templates/content/AGENTS.md +9 -0
- package/corpus/templates/content/actions/create-document.ts +94 -0
- package/corpus/templates/content/actions/edit-document.ts +144 -4
- package/corpus/templates/content/actions/update-document.ts +138 -0
- package/corpus/templates/content/agent-native.app-skill.json +4 -0
- package/corpus/templates/content/app/components/layout/Layout.tsx +2 -0
- package/corpus/templates/content/app/i18n/zh-TW.ts +3 -0
- package/corpus/templates/content/app/i18n-data.ts +13 -4
- package/corpus/templates/content/app/routes/_app.agent.tsx +2 -1
- package/corpus/templates/content/app/routes/_app.settings.tsx +3 -0
- package/corpus/templates/content/changelog/2026-07-16-creative-context-library.md +6 -0
- package/corpus/templates/content/package.json +1 -0
- package/corpus/templates/content/server/plugins/creative-context.ts +31 -0
- package/corpus/templates/design/.agents/skills/creative-context/SKILL.md +116 -0
- package/corpus/templates/design/.agents/skills/design-generation/SKILL.md +16 -0
- package/corpus/templates/design/.agents/skills/design-systems/SKILL.md +8 -0
- package/corpus/templates/design/AGENTS.md +6 -0
- package/corpus/templates/design/actions/clone-creative-context-design.ts +176 -0
- package/corpus/templates/design/actions/edit-design.ts +128 -0
- package/corpus/templates/design/actions/generate-design.ts +278 -14
- package/corpus/templates/design/actions/generate-screens.ts +42 -1
- package/corpus/templates/design/agent-native.app-skill.json +4 -0
- package/corpus/templates/design/app/components/layout/Layout.tsx +7 -3
- package/corpus/templates/design/app/i18n/zh-TW.ts +3 -0
- package/corpus/templates/design/app/i18n-data.ts +10 -4
- package/corpus/templates/design/app/routes/agent.tsx +2 -1
- package/corpus/templates/design/app/routes/settings.tsx +3 -0
- package/corpus/templates/design/changelog/2026-07-16-creative-context-library.md +6 -0
- package/corpus/templates/design/changelog/2026-07-16-design-agent-chat-no-longer-shows-a-separate-workspace-header.md +6 -0
- package/corpus/templates/design/package.json +1 -0
- package/corpus/templates/design/server/lib/figma-design-context.ts +5 -335
- package/corpus/templates/design/server/lib/figma-node-to-html.ts +1 -1859
- package/corpus/templates/design/server/lib/import-design-files.ts +6 -8
- package/corpus/templates/design/server/plugins/creative-context.ts +31 -0
- package/corpus/templates/design/shared/generation-session.ts +7 -0
- package/corpus/templates/dispatch/app/i18n-data.ts +3 -3
- package/corpus/templates/forms/app/i18n/en-US.ts +3 -3
- package/corpus/templates/macros/app/i18n/en-US.ts +3 -3
- package/corpus/templates/mail/app/components/email/EmailThread.tsx +35 -5
- package/corpus/templates/mail/app/i18n/en-US.ts +3 -3
- package/corpus/templates/mail/changelog/2026-07-16-mail-previews-now-expand-to-show-the-full-message-without-an.md +6 -0
- package/corpus/templates/plan/.agents/skills/visual-plan/SKILL.md +30 -11
- package/corpus/templates/plan/AGENTS.md +21 -1
- package/corpus/templates/plan/actions/get-visual-plan.ts +1 -1
- package/corpus/templates/plan/actions/patch-visual-plan-source.ts +161 -0
- package/corpus/templates/plan/actions/read-visual-plan-source.ts +1 -1
- package/corpus/templates/plan/actions/update-visual-plan.ts +126 -10
- package/corpus/templates/plan/app/hooks/use-plans.ts +2 -0
- package/corpus/templates/plan/app/i18n/en-US.ts +3 -3
- package/corpus/templates/plan/app/pages/PlansPage.tsx +65 -62
- package/corpus/templates/plan/changelog/2026-07-16-local-plan-previews-now-load-annotations-containing-html-lik.md +6 -0
- package/corpus/templates/plan/changelog/2026-07-16-plan-agents-now-prevent-stale-edits-from-overwriting-newer-p.md +6 -0
- package/corpus/templates/plan/server/plan-mdx.ts +75 -2
- package/corpus/templates/slides/.agents/skills/create-deck/SKILL.md +21 -4
- package/corpus/templates/slides/.agents/skills/creative-context/SKILL.md +122 -0
- package/corpus/templates/slides/.agents/skills/design-systems/SKILL.md +11 -0
- package/corpus/templates/slides/.agents/skills/slide-editing/SKILL.md +12 -3
- package/corpus/templates/slides/AGENTS.md +6 -0
- package/corpus/templates/slides/actions/add-slide.ts +230 -14
- package/corpus/templates/slides/actions/clone-context-slide.ts +302 -0
- package/corpus/templates/slides/actions/create-deck.ts +130 -0
- package/corpus/templates/slides/actions/extract-pdf.ts +6 -2
- package/corpus/templates/slides/actions/import-file.ts +5 -4
- package/corpus/templates/slides/actions/patch-deck.ts +200 -10
- package/corpus/templates/slides/actions/update-slide.ts +208 -15
- package/corpus/templates/slides/app/components/layout/Layout.tsx +2 -0
- package/corpus/templates/slides/app/components/visual-editor/CanvasCommentPins.tsx +16 -1
- package/corpus/templates/slides/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/slides/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/slides/app/i18n/en-US.ts +6 -3
- package/corpus/templates/slides/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/slides/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/slides/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/slides/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/slides/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/slides/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/slides/app/i18n/zh-CN.ts +3 -0
- package/corpus/templates/slides/app/i18n/zh-TW.ts +3 -0
- package/corpus/templates/slides/app/lib/validate-native-slide-html.ts +176 -0
- package/corpus/templates/slides/app/routes/agent.tsx +7 -1
- package/corpus/templates/slides/app/routes/settings.tsx +3 -0
- package/corpus/templates/slides/changelog/2026-07-16-creative-context-library.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-16-google-slides-native-cloning.md +6 -0
- package/corpus/templates/slides/package.json +1 -0
- package/corpus/templates/slides/server/handlers/import/docx-parser.ts +4 -85
- package/corpus/templates/slides/server/handlers/import/pptx-parser.ts +7 -421
- package/corpus/templates/slides/server/plugins/creative-context.ts +166 -0
- package/dist/agent/engine/credential-errors.d.ts +1 -1
- package/dist/agent/engine/credential-errors.d.ts.map +1 -1
- package/dist/agent/engine/credential-errors.js +2 -2
- package/dist/agent/engine/credential-errors.js.map +1 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +25 -0
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-store.d.ts.map +1 -1
- package/dist/agent/run-store.js +12 -2
- package/dist/agent/run-store.js.map +1 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +1 -0
- package/dist/cli/create.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 +30 -11
- package/dist/cli/skills-content/visual-plan-skill.js.map +1 -1
- package/dist/cli/templates-meta.d.ts.map +1 -1
- package/dist/cli/templates-meta.js +4 -3
- package/dist/cli/templates-meta.js.map +1 -1
- package/dist/client/AgentAskPopover.d.ts +11 -0
- package/dist/client/AgentAskPopover.d.ts.map +1 -0
- package/dist/client/AgentAskPopover.js +30 -0
- package/dist/client/AgentAskPopover.js.map +1 -0
- package/dist/client/AgentChatHome.d.ts +1 -1
- package/dist/client/AgentChatHome.d.ts.map +1 -1
- package/dist/client/AgentChatHome.js +2 -2
- package/dist/client/AgentChatHome.js.map +1 -1
- package/dist/client/AgentPanel.d.ts +9 -19
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +119 -80
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +4 -4
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/MultiTabAssistantChat.d.ts +3 -9
- package/dist/client/MultiTabAssistantChat.d.ts.map +1 -1
- package/dist/client/MultiTabAssistantChat.js +49 -189
- package/dist/client/MultiTabAssistantChat.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +12 -1
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/agent-page/AgentContextTab.d.ts.map +1 -1
- package/dist/client/agent-page/AgentContextTab.js +26 -28
- package/dist/client/agent-page/AgentContextTab.js.map +1 -1
- package/dist/client/agent-page/AgentEmptyState.d.ts +13 -0
- package/dist/client/agent-page/AgentEmptyState.d.ts.map +1 -0
- package/dist/client/agent-page/AgentEmptyState.js +6 -0
- package/dist/client/agent-page/AgentEmptyState.js.map +1 -0
- package/dist/client/agent-page/AgentJobsTab.d.ts +1 -1
- package/dist/client/agent-page/AgentJobsTab.d.ts.map +1 -1
- package/dist/client/agent-page/AgentJobsTab.js +90 -58
- package/dist/client/agent-page/AgentJobsTab.js.map +1 -1
- package/dist/client/agent-page/AgentTabFrame.d.ts +12 -0
- package/dist/client/agent-page/AgentTabFrame.d.ts.map +1 -0
- package/dist/client/agent-page/AgentTabFrame.js +7 -0
- package/dist/client/agent-page/AgentTabFrame.js.map +1 -0
- package/dist/client/agent-page/AgentTabsPage.d.ts +9 -1
- package/dist/client/agent-page/AgentTabsPage.d.ts.map +1 -1
- package/dist/client/agent-page/AgentTabsPage.js +135 -99
- package/dist/client/agent-page/AgentTabsPage.js.map +1 -1
- package/dist/client/agent-page/types.d.ts +1 -1
- package/dist/client/agent-page/types.d.ts.map +1 -1
- package/dist/client/agent-page/types.js.map +1 -1
- package/dist/client/analytics.d.ts +10 -3
- package/dist/client/analytics.d.ts.map +1 -1
- package/dist/client/analytics.js +37 -2
- package/dist/client/analytics.js.map +1 -1
- package/dist/client/chat/run-recovery.d.ts.map +1 -1
- package/dist/client/chat/run-recovery.js +10 -3
- package/dist/client/chat/run-recovery.js.map +1 -1
- package/dist/client/composer/PromptComposer.d.ts.map +1 -1
- package/dist/client/composer/PromptComposer.js +2 -2
- package/dist/client/composer/PromptComposer.js.map +1 -1
- package/dist/client/composer/TiptapComposer.d.ts.map +1 -1
- package/dist/client/composer/TiptapComposer.js +15 -3
- package/dist/client/composer/TiptapComposer.js.map +1 -1
- package/dist/client/dynamic-suggestions.js +3 -3
- package/dist/client/dynamic-suggestions.js.map +1 -1
- package/dist/client/index.d.ts +4 -3
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +3 -2
- package/dist/client/index.js.map +1 -1
- package/dist/client/resources/ResourceTree.d.ts +5 -1
- package/dist/client/resources/ResourceTree.d.ts.map +1 -1
- package/dist/client/resources/ResourceTree.js +74 -5
- package/dist/client/resources/ResourceTree.js.map +1 -1
- package/dist/client/resources/ResourcesPanel.d.ts +11 -2
- package/dist/client/resources/ResourcesPanel.d.ts.map +1 -1
- package/dist/client/resources/ResourcesPanel.js +105 -31
- package/dist/client/resources/ResourcesPanel.js.map +1 -1
- package/dist/client/session-replay.d.ts +28 -0
- package/dist/client/session-replay.d.ts.map +1 -1
- package/dist/client/session-replay.js +122 -8
- package/dist/client/session-replay.js.map +1 -1
- package/dist/client/settings/AutomationsSection.d.ts +3 -1
- package/dist/client/settings/AutomationsSection.d.ts.map +1 -1
- package/dist/client/settings/AutomationsSection.js +16 -6
- package/dist/client/settings/AutomationsSection.js.map +1 -1
- package/dist/client/settings/SettingsPanel.d.ts.map +1 -1
- package/dist/client/settings/SettingsPanel.js +3 -3
- package/dist/client/settings/SettingsPanel.js.map +1 -1
- package/dist/client/settings/SettingsTabsPage.d.ts +2 -0
- package/dist/client/settings/SettingsTabsPage.d.ts.map +1 -1
- package/dist/client/settings/SettingsTabsPage.js.map +1 -1
- package/dist/client/settings/agent-settings-search.js +2 -2
- package/dist/client/settings/agent-settings-search.js.map +1 -1
- package/dist/client/use-chat-threads.d.ts +2 -0
- package/dist/client/use-chat-threads.d.ts.map +1 -1
- package/dist/client/use-chat-threads.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/connections/catalog.d.ts +41 -7
- package/dist/connections/catalog.d.ts.map +1 -1
- package/dist/connections/catalog.js +40 -7
- package/dist/connections/catalog.js.map +1 -1
- package/dist/db/index.d.ts +2 -2
- package/dist/db/index.d.ts.map +1 -1
- package/dist/db/index.js +2 -2
- package/dist/db/index.js.map +1 -1
- package/dist/extensions/actions.d.ts.map +1 -1
- package/dist/extensions/actions.js +85 -15
- package/dist/extensions/actions.js.map +1 -1
- package/dist/extensions/content-patch.d.ts +4 -0
- package/dist/extensions/content-patch.d.ts.map +1 -1
- package/dist/extensions/content-patch.js +18 -0
- package/dist/extensions/content-patch.js.map +1 -1
- package/dist/extensions/routes.d.ts.map +1 -1
- package/dist/extensions/routes.js +14 -0
- package/dist/extensions/routes.js.map +1 -1
- package/dist/extensions/store.d.ts +1 -0
- package/dist/extensions/store.d.ts.map +1 -1
- package/dist/extensions/store.js +4 -1
- package/dist/extensions/store.js.map +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/ingestion/docx.d.ts +16 -0
- package/dist/ingestion/docx.d.ts.map +1 -0
- package/dist/ingestion/docx.js +129 -0
- package/dist/ingestion/docx.js.map +1 -0
- package/dist/ingestion/figma-node-to-html.d.ts +304 -0
- package/dist/ingestion/figma-node-to-html.d.ts.map +1 -0
- package/dist/ingestion/figma-node-to-html.js +1292 -0
- package/dist/ingestion/figma-node-to-html.js.map +1 -0
- package/dist/ingestion/figma.d.ts +115 -0
- package/dist/ingestion/figma.d.ts.map +1 -0
- package/dist/ingestion/figma.js +399 -0
- package/dist/ingestion/figma.js.map +1 -0
- package/dist/ingestion/index.d.ts +11 -0
- package/dist/ingestion/index.d.ts.map +1 -0
- package/dist/ingestion/index.js +11 -0
- package/dist/ingestion/index.js.map +1 -0
- package/dist/ingestion/media.d.ts +36 -0
- package/dist/ingestion/media.d.ts.map +1 -0
- package/dist/ingestion/media.js +178 -0
- package/dist/ingestion/media.js.map +1 -0
- package/dist/ingestion/notion.d.ts +12 -0
- package/dist/ingestion/notion.d.ts.map +1 -0
- package/dist/ingestion/notion.js +104 -0
- package/dist/ingestion/notion.js.map +1 -0
- package/dist/ingestion/office.d.ts +45 -0
- package/dist/ingestion/office.d.ts.map +1 -0
- package/dist/ingestion/office.js +141 -0
- package/dist/ingestion/office.js.map +1 -0
- package/dist/ingestion/orchestration.d.ts +52 -0
- package/dist/ingestion/orchestration.d.ts.map +1 -0
- package/dist/ingestion/orchestration.js +89 -0
- package/dist/ingestion/orchestration.js.map +1 -0
- package/dist/ingestion/pptx.d.ts +28 -0
- package/dist/ingestion/pptx.d.ts.map +1 -0
- package/dist/ingestion/pptx.js +255 -0
- package/dist/ingestion/pptx.js.map +1 -0
- package/dist/ingestion/selection.d.ts +20 -0
- package/dist/ingestion/selection.d.ts.map +1 -0
- package/dist/ingestion/selection.js +52 -0
- package/dist/ingestion/selection.js.map +1 -0
- package/dist/ingestion/website.d.ts +27 -0
- package/dist/ingestion/website.d.ts.map +1 -0
- package/dist/ingestion/website.js +100 -0
- package/dist/ingestion/website.js.map +1 -0
- package/dist/integrations/plugin.d.ts.map +1 -1
- package/dist/integrations/plugin.js +32 -27
- package/dist/integrations/plugin.js.map +1 -1
- package/dist/localization/default-messages.d.ts +22 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +31 -9
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/observability/hosted-model-experiment.d.ts +39 -0
- package/dist/observability/hosted-model-experiment.d.ts.map +1 -0
- package/dist/observability/hosted-model-experiment.js +90 -0
- package/dist/observability/hosted-model-experiment.js.map +1 -0
- package/dist/observability/routes.d.ts +5 -5
- package/dist/observability/traces.d.ts.map +1 -1
- package/dist/observability/traces.js +5 -3
- package/dist/observability/traces.js.map +1 -1
- package/dist/progress/routes.d.ts +1 -1
- package/dist/provider-api/index.d.ts +35 -4
- package/dist/provider-api/index.d.ts.map +1 -1
- package/dist/provider-api/index.js +339 -8
- package/dist/provider-api/index.js.map +1 -1
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/scripts/agent-engines/list-agent-engines.d.ts.map +1 -1
- package/dist/scripts/agent-engines/list-agent-engines.js +18 -1
- package/dist/scripts/agent-engines/list-agent-engines.js.map +1 -1
- package/dist/search-utils/index.d.ts +12 -0
- package/dist/search-utils/index.d.ts.map +1 -0
- package/dist/search-utils/index.js +95 -0
- package/dist/search-utils/index.js.map +1 -0
- package/dist/secrets/register-framework-secrets.d.ts.map +1 -1
- package/dist/secrets/register-framework-secrets.js +57 -0
- package/dist/secrets/register-framework-secrets.js.map +1 -1
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/action-discovery.d.ts +8 -0
- package/dist/server/action-discovery.d.ts.map +1 -1
- package/dist/server/action-discovery.js +26 -9
- package/dist/server/action-discovery.js.map +1 -1
- package/dist/server/agent-chat/framework-prompts.js +2 -2
- package/dist/server/agent-chat/framework-prompts.js.map +1 -1
- package/dist/server/agent-chat/prompt-resources.d.ts +19 -0
- package/dist/server/agent-chat/prompt-resources.d.ts.map +1 -1
- package/dist/server/agent-chat/prompt-resources.js +95 -0
- package/dist/server/agent-chat/prompt-resources.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +7 -0
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +5 -0
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/index.d.ts +5 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +5 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/workspace-provider-oauth.d.ts +48 -0
- package/dist/server/workspace-provider-oauth.d.ts.map +1 -0
- package/dist/server/workspace-provider-oauth.js +415 -0
- package/dist/server/workspace-provider-oauth.js.map +1 -0
- package/dist/styles/agent-native.css +9 -0
- package/dist/templates/chat/app/i18n/en-US.ts +3 -3
- package/dist/templates/chat/app/lib/agent-page.tsx +10 -1
- package/dist/templates/default/app/i18n/en-US.ts +3 -3
- package/dist/templates/workspace-core/.agents/skills/extensions/SKILL.md +14 -5
- package/dist/templates/workspace-root/.env.example +12 -0
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +2 -0
- package/dist/vite/client.js.map +1 -1
- package/dist/workspace-connections/index.d.ts +1 -0
- package/dist/workspace-connections/index.d.ts.map +1 -1
- package/dist/workspace-connections/index.js +1 -0
- package/dist/workspace-connections/index.js.map +1 -1
- package/dist/workspace-connections/lifecycle.d.ts +16 -0
- package/dist/workspace-connections/lifecycle.d.ts.map +1 -0
- package/dist/workspace-connections/lifecycle.js +14 -0
- package/dist/workspace-connections/lifecycle.js.map +1 -0
- package/dist/workspace-connections/store.d.ts.map +1 -1
- package/dist/workspace-connections/store.js +16 -0
- package/dist/workspace-connections/store.js.map +1 -1
- package/package.json +10 -3
- package/src/templates/chat/app/i18n/en-US.ts +3 -3
- package/src/templates/chat/app/lib/agent-page.spec.tsx +10 -1
- package/src/templates/chat/app/lib/agent-page.tsx +10 -1
- package/src/templates/default/app/i18n/en-US.ts +3 -3
- package/src/templates/workspace-core/.agents/skills/extensions/SKILL.md +14 -5
- package/src/templates/workspace-root/.env.example +12 -0
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
export async function parseDocxDocument(data) {
|
|
2
|
+
const mammoth = await loadMammoth();
|
|
3
|
+
const buffer = Buffer.from(data);
|
|
4
|
+
const [htmlResult, textResult] = await Promise.all([
|
|
5
|
+
mammoth.convertToHtml({ buffer }),
|
|
6
|
+
mammoth.extractRawText({ buffer }),
|
|
7
|
+
]);
|
|
8
|
+
const html = sanitizeInertDocumentHtml(htmlResult.value);
|
|
9
|
+
const text = textResult.value;
|
|
10
|
+
const sections = extractDocxSections(html);
|
|
11
|
+
const firstLine = text.split("\n").find((line) => line.trim());
|
|
12
|
+
return {
|
|
13
|
+
title: sections.find((section) => section.heading)?.heading ??
|
|
14
|
+
(firstLine && firstLine.length < 200
|
|
15
|
+
? firstLine.trim()
|
|
16
|
+
: "Imported Document"),
|
|
17
|
+
html,
|
|
18
|
+
text,
|
|
19
|
+
sections,
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
export function extractDocxSections(html) {
|
|
23
|
+
html = sanitizeInertDocumentHtml(html);
|
|
24
|
+
const sections = [];
|
|
25
|
+
for (const part of html.split(/(?=<h[1-3][^>]*>)/i)) {
|
|
26
|
+
const trimmed = part.trim();
|
|
27
|
+
if (!trimmed)
|
|
28
|
+
continue;
|
|
29
|
+
const heading = trimmed.match(/^<h[1-3][^>]*>(.*?)<\/h[1-3]>/is);
|
|
30
|
+
if (heading) {
|
|
31
|
+
const sectionHtml = trimmed.slice(heading[0].length).trim();
|
|
32
|
+
sections.push({
|
|
33
|
+
heading: stripHtml(heading[1]).trim(),
|
|
34
|
+
content: sectionHtml,
|
|
35
|
+
html: sectionHtml,
|
|
36
|
+
text: stripHtml(sectionHtml),
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
else if (sections.length === 0) {
|
|
40
|
+
sections.push({
|
|
41
|
+
heading: "",
|
|
42
|
+
content: trimmed,
|
|
43
|
+
html: trimmed,
|
|
44
|
+
text: stripHtml(trimmed),
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
const previous = sections.at(-1);
|
|
49
|
+
previous.html += `\n${trimmed}`;
|
|
50
|
+
previous.content = previous.html;
|
|
51
|
+
previous.text = stripHtml(previous.html);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
return sections.length > 0
|
|
55
|
+
? sections
|
|
56
|
+
: html.trim()
|
|
57
|
+
? [{ heading: "", content: html, html, text: stripHtml(html) }]
|
|
58
|
+
: [];
|
|
59
|
+
}
|
|
60
|
+
const SAFE_DOCUMENT_TAGS = new Set([
|
|
61
|
+
"p",
|
|
62
|
+
"br",
|
|
63
|
+
"h1",
|
|
64
|
+
"h2",
|
|
65
|
+
"h3",
|
|
66
|
+
"h4",
|
|
67
|
+
"h5",
|
|
68
|
+
"h6",
|
|
69
|
+
"ul",
|
|
70
|
+
"ol",
|
|
71
|
+
"li",
|
|
72
|
+
"strong",
|
|
73
|
+
"b",
|
|
74
|
+
"em",
|
|
75
|
+
"i",
|
|
76
|
+
"u",
|
|
77
|
+
"s",
|
|
78
|
+
"blockquote",
|
|
79
|
+
"pre",
|
|
80
|
+
"code",
|
|
81
|
+
"table",
|
|
82
|
+
"thead",
|
|
83
|
+
"tbody",
|
|
84
|
+
"tfoot",
|
|
85
|
+
"tr",
|
|
86
|
+
"th",
|
|
87
|
+
"td",
|
|
88
|
+
"hr",
|
|
89
|
+
"sup",
|
|
90
|
+
"sub",
|
|
91
|
+
]);
|
|
92
|
+
export function sanitizeInertDocumentHtml(value) {
|
|
93
|
+
return value
|
|
94
|
+
.replace(/<!--[^]*?-->/g, "")
|
|
95
|
+
.replace(/<!\s*(?:doctype|entity)[^>]*>/gi, "")
|
|
96
|
+
.replace(/<\?[^>]*>/g, "")
|
|
97
|
+
.replace(/<\s*(script|style|iframe|object|embed|svg|math|template|noscript|form)\b[^>]*>[^]*?<\s*\/\s*\1\s*>/gi, "")
|
|
98
|
+
.replace(/<\s*\/?\s*([a-z][a-z0-9:-]*)\b[^>]*>/gi, (tag, rawName) => {
|
|
99
|
+
const name = rawName.toLowerCase();
|
|
100
|
+
if (!SAFE_DOCUMENT_TAGS.has(name))
|
|
101
|
+
return "";
|
|
102
|
+
const closing = /^<\s*\//.test(tag);
|
|
103
|
+
if (closing && (name === "br" || name === "hr"))
|
|
104
|
+
return "";
|
|
105
|
+
return closing ? `</${name}>` : `<${name}>`;
|
|
106
|
+
})
|
|
107
|
+
.trim();
|
|
108
|
+
}
|
|
109
|
+
function stripHtml(value) {
|
|
110
|
+
return value
|
|
111
|
+
.replace(/<br\s*\/?\s*>/gi, "\n")
|
|
112
|
+
.replace(/<\/p>/gi, "\n")
|
|
113
|
+
.replace(/<[^>]+>/g, "")
|
|
114
|
+
.replace(/ /gi, " ")
|
|
115
|
+
.replace(/&/gi, "&")
|
|
116
|
+
.replace(/</gi, "<")
|
|
117
|
+
.replace(/>/gi, ">")
|
|
118
|
+
.trim();
|
|
119
|
+
}
|
|
120
|
+
async function loadMammoth() {
|
|
121
|
+
const moduleName = "mammoth";
|
|
122
|
+
try {
|
|
123
|
+
return (await import(moduleName));
|
|
124
|
+
}
|
|
125
|
+
catch {
|
|
126
|
+
throw new Error("Structured DOCX parsing requires the optional mammoth dependency.");
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
//# sourceMappingURL=docx.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"docx.js","sourceRoot":"","sources":["../../src/ingestion/docx.ts"],"names":[],"mappings":"AAcA,MAAM,CAAC,KAAK,UAAU,iBAAiB,CACrC,IAAgB;IAEhB,MAAM,OAAO,GAAG,MAAM,WAAW,EAAE,CAAC;IACpC,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACjC,MAAM,CAAC,UAAU,EAAE,UAAU,CAAC,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC;QACjD,OAAO,CAAC,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;QACjC,OAAO,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;KACnC,CAAC,CAAC;IACH,MAAM,IAAI,GAAG,yBAAyB,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;IACzD,MAAM,IAAI,GAAG,UAAU,CAAC,KAAK,CAAC;IAC9B,MAAM,QAAQ,GAAG,mBAAmB,CAAC,IAAI,CAAC,CAAC;IAC3C,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;IAC/D,OAAO;QACL,KAAK,EACH,QAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,OAAO;YACpD,CAAC,SAAS,IAAI,SAAS,CAAC,MAAM,GAAG,GAAG;gBAClC,CAAC,CAAC,SAAS,CAAC,IAAI,EAAE;gBAClB,CAAC,CAAC,mBAAmB,CAAC;QAC1B,IAAI;QACJ,IAAI;QACJ,QAAQ;KACT,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,IAAY;IAC9C,IAAI,GAAG,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACvC,MAAM,QAAQ,GAAwB,EAAE,CAAC;IACzC,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,EAAE,CAAC;QACpD,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC;QAC5B,IAAI,CAAC,OAAO;YAAE,SAAS;QACvB,MAAM,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,iCAAiC,CAAC,CAAC;QACjE,IAAI,OAAO,EAAE,CAAC;YACZ,MAAM,WAAW,GAAG,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC;YAC5D,QAAQ,CAAC,IAAI,CAAC;gBACZ,OAAO,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;gBACrC,OAAO,EAAE,WAAW;gBACpB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS,CAAC,WAAW,CAAC;aAC7B,CAAC,CAAC;QACL,CAAC;aAAM,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACjC,QAAQ,CAAC,IAAI,CAAC;gBACZ,OAAO,EAAE,EAAE;gBACX,OAAO,EAAE,OAAO;gBAChB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS,CAAC,OAAO,CAAC;aACzB,CAAC,CAAC;QACL,CAAC;aAAM,CAAC;YACN,MAAM,QAAQ,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,CAAE,CAAC;YAClC,QAAQ,CAAC,IAAI,IAAI,KAAK,OAAO,EAAE,CAAC;YAChC,QAAQ,CAAC,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC;YACjC,QAAQ,CAAC,IAAI,GAAG,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAC3C,CAAC;IACH,CAAC;IACD,OAAO,QAAQ,CAAC,MAAM,GAAG,CAAC;QACxB,CAAC,CAAC,QAAQ;QACV,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE;YACX,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;YAC/D,CAAC,CAAC,EAAE,CAAC;AACX,CAAC;AAED,MAAM,kBAAkB,GAAG,IAAI,GAAG,CAAC;IACjC,GAAG;IACH,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,QAAQ;IACR,GAAG;IACH,IAAI;IACJ,GAAG;IACH,GAAG;IACH,GAAG;IACH,YAAY;IACZ,KAAK;IACL,MAAM;IACN,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,KAAK;IACL,KAAK;CACN,CAAC,CAAC;AAEH,MAAM,UAAU,yBAAyB,CAAC,KAAa;IACrD,OAAO,KAAK;SACT,OAAO,CAAC,eAAe,EAAE,EAAE,CAAC;SAC5B,OAAO,CAAC,iCAAiC,EAAE,EAAE,CAAC;SAC9C,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC;SACzB,OAAO,CACN,sGAAsG,EACtG,EAAE,CACH;SACA,OAAO,CACN,wCAAwC,EACxC,CAAC,GAAG,EAAE,OAAe,EAAE,EAAE;QACvB,MAAM,IAAI,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;QACnC,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC;YAAE,OAAO,EAAE,CAAC;QAC7C,MAAM,OAAO,GAAG,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACpC,IAAI,OAAO,IAAI,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,IAAI,CAAC;YAAE,OAAO,EAAE,CAAC;QAC3D,OAAO,OAAO,CAAC,CAAC,CAAC,KAAK,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,GAAG,CAAC;IAC9C,CAAC,CACF;SACA,IAAI,EAAE,CAAC;AACZ,CAAC;AAED,SAAS,SAAS,CAAC,KAAa;IAC9B,OAAO,KAAK;SACT,OAAO,CAAC,iBAAiB,EAAE,IAAI,CAAC;SAChC,OAAO,CAAC,SAAS,EAAE,IAAI,CAAC;SACxB,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC;SACvB,OAAO,CAAC,UAAU,EAAE,GAAG,CAAC;SACxB,OAAO,CAAC,SAAS,EAAE,GAAG,CAAC;SACvB,OAAO,CAAC,QAAQ,EAAE,GAAG,CAAC;SACtB,OAAO,CAAC,QAAQ,EAAE,GAAG,CAAC;SACtB,IAAI,EAAE,CAAC;AACZ,CAAC;AAED,KAAK,UAAU,WAAW;IAIxB,MAAM,UAAU,GAAG,SAAS,CAAC;IAC7B,IAAI,CAAC;QACH,OAAO,CAAC,MAAM,MAAM,CAAC,UAAU,CAAC,CAG/B,CAAC;IACJ,CAAC;IAAC,MAAM,CAAC;QACP,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;IACJ,CAAC;AACH,CAAC","sourcesContent":["export interface ParsedDocxSection {\n heading: string;\n content: string;\n html: string;\n text: string;\n}\n\nexport interface ParsedDocxDocument {\n title: string;\n html: string;\n text: string;\n sections: ParsedDocxSection[];\n}\n\nexport async function parseDocxDocument(\n data: Uint8Array,\n): Promise<ParsedDocxDocument> {\n const mammoth = await loadMammoth();\n const buffer = Buffer.from(data);\n const [htmlResult, textResult] = await Promise.all([\n mammoth.convertToHtml({ buffer }),\n mammoth.extractRawText({ buffer }),\n ]);\n const html = sanitizeInertDocumentHtml(htmlResult.value);\n const text = textResult.value;\n const sections = extractDocxSections(html);\n const firstLine = text.split(\"\\n\").find((line) => line.trim());\n return {\n title:\n sections.find((section) => section.heading)?.heading ??\n (firstLine && firstLine.length < 200\n ? firstLine.trim()\n : \"Imported Document\"),\n html,\n text,\n sections,\n };\n}\n\nexport function extractDocxSections(html: string): ParsedDocxSection[] {\n html = sanitizeInertDocumentHtml(html);\n const sections: ParsedDocxSection[] = [];\n for (const part of html.split(/(?=<h[1-3][^>]*>)/i)) {\n const trimmed = part.trim();\n if (!trimmed) continue;\n const heading = trimmed.match(/^<h[1-3][^>]*>(.*?)<\\/h[1-3]>/is);\n if (heading) {\n const sectionHtml = trimmed.slice(heading[0].length).trim();\n sections.push({\n heading: stripHtml(heading[1]).trim(),\n content: sectionHtml,\n html: sectionHtml,\n text: stripHtml(sectionHtml),\n });\n } else if (sections.length === 0) {\n sections.push({\n heading: \"\",\n content: trimmed,\n html: trimmed,\n text: stripHtml(trimmed),\n });\n } else {\n const previous = sections.at(-1)!;\n previous.html += `\\n${trimmed}`;\n previous.content = previous.html;\n previous.text = stripHtml(previous.html);\n }\n }\n return sections.length > 0\n ? sections\n : html.trim()\n ? [{ heading: \"\", content: html, html, text: stripHtml(html) }]\n : [];\n}\n\nconst SAFE_DOCUMENT_TAGS = new Set([\n \"p\",\n \"br\",\n \"h1\",\n \"h2\",\n \"h3\",\n \"h4\",\n \"h5\",\n \"h6\",\n \"ul\",\n \"ol\",\n \"li\",\n \"strong\",\n \"b\",\n \"em\",\n \"i\",\n \"u\",\n \"s\",\n \"blockquote\",\n \"pre\",\n \"code\",\n \"table\",\n \"thead\",\n \"tbody\",\n \"tfoot\",\n \"tr\",\n \"th\",\n \"td\",\n \"hr\",\n \"sup\",\n \"sub\",\n]);\n\nexport function sanitizeInertDocumentHtml(value: string): string {\n return value\n .replace(/<!--[^]*?-->/g, \"\")\n .replace(/<!\\s*(?:doctype|entity)[^>]*>/gi, \"\")\n .replace(/<\\?[^>]*>/g, \"\")\n .replace(\n /<\\s*(script|style|iframe|object|embed|svg|math|template|noscript|form)\\b[^>]*>[^]*?<\\s*\\/\\s*\\1\\s*>/gi,\n \"\",\n )\n .replace(\n /<\\s*\\/?\\s*([a-z][a-z0-9:-]*)\\b[^>]*>/gi,\n (tag, rawName: string) => {\n const name = rawName.toLowerCase();\n if (!SAFE_DOCUMENT_TAGS.has(name)) return \"\";\n const closing = /^<\\s*\\//.test(tag);\n if (closing && (name === \"br\" || name === \"hr\")) return \"\";\n return closing ? `</${name}>` : `<${name}>`;\n },\n )\n .trim();\n}\n\nfunction stripHtml(value: string): string {\n return value\n .replace(/<br\\s*\\/?\\s*>/gi, \"\\n\")\n .replace(/<\\/p>/gi, \"\\n\")\n .replace(/<[^>]+>/g, \"\")\n .replace(/ /gi, \" \")\n .replace(/&/gi, \"&\")\n .replace(/</gi, \"<\")\n .replace(/>/gi, \">\")\n .trim();\n}\n\nasync function loadMammoth(): Promise<{\n convertToHtml(input: { buffer: Buffer }): Promise<{ value: string }>;\n extractRawText(input: { buffer: Buffer }): Promise<{ value: string }>;\n}> {\n const moduleName = \"mammoth\";\n try {\n return (await import(moduleName)) as {\n convertToHtml(input: { buffer: Buffer }): Promise<{ value: string }>;\n extractRawText(input: { buffer: Buffer }): Promise<{ value: string }>;\n };\n } catch {\n throw new Error(\n \"Structured DOCX parsing requires the optional mammoth dependency.\",\n );\n }\n}\n"]}
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Figma node JSON -> HTML mapper.
|
|
3
|
+
*
|
|
4
|
+
* Input is the `document` subtree returned by
|
|
5
|
+
* `GET /v1/files/:fileKey/nodes?ids=...&geometry=paths` (or the file's root
|
|
6
|
+
* `document` node). Output is a self-contained HTML fragment using absolute
|
|
7
|
+
* positioning + inline styles, matching Figma's own canvas model 1:1 rather
|
|
8
|
+
* than reconstructing a semantic/Tailwind layout — the goal is pixel fidelity
|
|
9
|
+
* for an imported snapshot, not idiomatic hand-authored markup.
|
|
10
|
+
*
|
|
11
|
+
* This module is pure and synchronous: it never calls the network. The
|
|
12
|
+
* caller (an action) is responsible for:
|
|
13
|
+
* 1. Fetching the node JSON from the Figma REST API.
|
|
14
|
+
* 2. Calling `collectFallbackNodeIds` / `collectImageFillRefs` to find out
|
|
15
|
+
* which nodes need a rendered PNG fallback and which image fills need
|
|
16
|
+
* resolved URLs.
|
|
17
|
+
* 3. Fetching those via `/v1/images/:fileKey` (fallback renders) and
|
|
18
|
+
* `/v1/files/:fileKey/images` (fill ref -> URL map).
|
|
19
|
+
* 4. Calling `mapFigmaNodeToHtml` with the resulting maps.
|
|
20
|
+
*
|
|
21
|
+
* ## Pixel-perfect property coverage
|
|
22
|
+
*
|
|
23
|
+
* | Property | Fidelity | Notes |
|
|
24
|
+
* | ------------------------------------------- | ------------- | ----- |
|
|
25
|
+
* | Position/size (absoluteBoundingBox) | exact | frame-relative |
|
|
26
|
+
* | Auto-layout (flex*) | exact | Figma auto-layout IS flexbox |
|
|
27
|
+
* | Text font/size/weight/case/decoration/align | exact | |
|
|
28
|
+
* | Line-height (px vs percent-of-font-size) | exact | resolved to px |
|
|
29
|
+
* | Letter-spacing | exact | already px in REST API |
|
|
30
|
+
* | Solid fills | exact | |
|
|
31
|
+
* | Gradient fills (angle/position) | exact (linear)/approximated (radial/angular/diamond) | derived from gradientHandlePositions, not a default angle |
|
|
32
|
+
* | Multiple fills (layering) | exact | reversed to match CSS background-image stacking |
|
|
33
|
+
* | Image fills (scale modes) | exact (FILL/FIT/TILE/STRETCH-axis-aligned) / approximated (skewed imageTransform) | |
|
|
34
|
+
* | Strokes (uniform, align) | exact | CENTER via outline+negative offset, INSIDE via inset box-shadow, OUTSIDE via outline |
|
|
35
|
+
* | Strokes (per-side weights) | approximated | CSS has no per-side outline; falls back to per-side `border` (inside-only) |
|
|
36
|
+
* | Corner radii (uniform + per-corner) | exact | |
|
|
37
|
+
* | Effects: drop/inner shadow | exact | |
|
|
38
|
+
* | Effects: layer/background blur | approximated | Figma <-> CSS blur radius scale is not publicly specified as 1:1 |
|
|
39
|
+
* | Opacity | exact | |
|
|
40
|
+
* | Blend modes (CSS-supported) | exact | |
|
|
41
|
+
* | Blend modes (Figma-only: LINEAR_BURN/DODGE/LIGHTER/DARKER) | approximated | mapped to closest CSS equivalent |
|
|
42
|
+
* | clipsContent | exact | overflow: hidden |
|
|
43
|
+
* | Rotation | approximated | pivots about the bounding-box center (see below) |
|
|
44
|
+
* | Vector networks / boolean ops / unsupported types | image fallback | never approximated structurally |
|
|
45
|
+
*
|
|
46
|
+
* ### Rotation caveat
|
|
47
|
+
* The REST API docs describe `rotation` as being in degrees, but the field
|
|
48
|
+
* is empirically returned in RADIANS (verified against known authored
|
|
49
|
+
* rotations via the Plugin API); this mapper converts it to degrees before
|
|
50
|
+
* use. `absoluteBoundingBox` is the *already-rotated* axis-aligned bounding
|
|
51
|
+
* box —
|
|
52
|
+
* Figma does not expose the pre-rotation box directly. We reconstruct the
|
|
53
|
+
* unrotated box by treating the AABB's center as invariant under rotation
|
|
54
|
+
* (true for a shape rotated about its own center) and rotate the CSS element
|
|
55
|
+
* about `transform-origin: center` by `-rotation` degrees (Figma's rotation
|
|
56
|
+
* is clockwise-negative relative to CSS's clockwise-positive convention).
|
|
57
|
+
* This is exact when Figma pivots rotation about the shape's center and only
|
|
58
|
+
* approximated if Figma's internal pivot differs (rare in practice; visually
|
|
59
|
+
* indistinguishable in the overwhelming majority of designs). A fully exact
|
|
60
|
+
* alternative would consume `relativeTransform` as a CSS `matrix()` directly,
|
|
61
|
+
* which is a documented follow-up if a specific design surfaces a visible
|
|
62
|
+
* mismatch.
|
|
63
|
+
*/
|
|
64
|
+
export interface FigmaColor {
|
|
65
|
+
r: number;
|
|
66
|
+
g: number;
|
|
67
|
+
b: number;
|
|
68
|
+
a?: number;
|
|
69
|
+
}
|
|
70
|
+
export interface FigmaColorStop {
|
|
71
|
+
position: number;
|
|
72
|
+
color: FigmaColor;
|
|
73
|
+
}
|
|
74
|
+
export interface FigmaImageFilter {
|
|
75
|
+
exposure?: number;
|
|
76
|
+
contrast?: number;
|
|
77
|
+
saturation?: number;
|
|
78
|
+
temperature?: number;
|
|
79
|
+
tint?: number;
|
|
80
|
+
highlights?: number;
|
|
81
|
+
shadows?: number;
|
|
82
|
+
}
|
|
83
|
+
export interface FigmaPaint {
|
|
84
|
+
type: "SOLID" | "GRADIENT_LINEAR" | "GRADIENT_RADIAL" | "GRADIENT_ANGULAR" | "GRADIENT_DIAMOND" | "IMAGE" | "EMOJI" | "VIDEO";
|
|
85
|
+
visible?: boolean;
|
|
86
|
+
opacity?: number;
|
|
87
|
+
color?: FigmaColor;
|
|
88
|
+
gradientHandlePositions?: Array<{
|
|
89
|
+
x: number;
|
|
90
|
+
y: number;
|
|
91
|
+
}>;
|
|
92
|
+
gradientStops?: FigmaColorStop[];
|
|
93
|
+
imageRef?: string;
|
|
94
|
+
scaleMode?: "FILL" | "FIT" | "TILE" | "STRETCH";
|
|
95
|
+
imageTransform?: [[number, number, number], [number, number, number]];
|
|
96
|
+
filters?: FigmaImageFilter;
|
|
97
|
+
blendMode?: string;
|
|
98
|
+
}
|
|
99
|
+
export interface FigmaEffect {
|
|
100
|
+
type: "DROP_SHADOW" | "INNER_SHADOW" | "LAYER_BLUR" | "BACKGROUND_BLUR";
|
|
101
|
+
visible?: boolean;
|
|
102
|
+
radius?: number;
|
|
103
|
+
spread?: number;
|
|
104
|
+
color?: FigmaColor;
|
|
105
|
+
offset?: {
|
|
106
|
+
x: number;
|
|
107
|
+
y: number;
|
|
108
|
+
};
|
|
109
|
+
blendMode?: string;
|
|
110
|
+
}
|
|
111
|
+
export interface FigmaTypeStyle {
|
|
112
|
+
fontFamily?: string;
|
|
113
|
+
fontPostScriptName?: string;
|
|
114
|
+
fontWeight?: number;
|
|
115
|
+
fontSize?: number;
|
|
116
|
+
italic?: boolean;
|
|
117
|
+
letterSpacing?: number;
|
|
118
|
+
lineHeightPx?: number;
|
|
119
|
+
lineHeightPercent?: number;
|
|
120
|
+
lineHeightPercentFontSize?: number;
|
|
121
|
+
lineHeightUnit?: "PIXELS" | "FONT_SIZE_%" | "INTRINSIC_%";
|
|
122
|
+
textCase?: "ORIGINAL" | "UPPER" | "LOWER" | "TITLE";
|
|
123
|
+
textDecoration?: "NONE" | "UNDERLINE" | "STRIKETHROUGH";
|
|
124
|
+
textAlignHorizontal?: "LEFT" | "RIGHT" | "CENTER" | "JUSTIFIED";
|
|
125
|
+
textAlignVertical?: "TOP" | "CENTER" | "BOTTOM";
|
|
126
|
+
textAutoResize?: "NONE" | "WIDTH_AND_HEIGHT" | "HEIGHT" | "TRUNCATE";
|
|
127
|
+
paragraphSpacing?: number;
|
|
128
|
+
paragraphIndent?: number;
|
|
129
|
+
listSpacing?: number;
|
|
130
|
+
hangingPunctuation?: boolean;
|
|
131
|
+
hangingList?: boolean;
|
|
132
|
+
opentypeFlags?: Record<string, number>;
|
|
133
|
+
hyperlink?: unknown;
|
|
134
|
+
fills?: FigmaPaint[];
|
|
135
|
+
}
|
|
136
|
+
export interface FigmaIndividualStrokeWeights {
|
|
137
|
+
top?: number;
|
|
138
|
+
right?: number;
|
|
139
|
+
bottom?: number;
|
|
140
|
+
left?: number;
|
|
141
|
+
}
|
|
142
|
+
export interface FigmaBoundingBox {
|
|
143
|
+
x: number;
|
|
144
|
+
y: number;
|
|
145
|
+
width: number;
|
|
146
|
+
height: number;
|
|
147
|
+
}
|
|
148
|
+
export interface FigmaNode {
|
|
149
|
+
id: string;
|
|
150
|
+
name?: string;
|
|
151
|
+
type: string;
|
|
152
|
+
visible?: boolean;
|
|
153
|
+
opacity?: number;
|
|
154
|
+
blendMode?: string;
|
|
155
|
+
rotation?: number;
|
|
156
|
+
absoluteBoundingBox?: FigmaBoundingBox;
|
|
157
|
+
relativeTransform?: [[number, number, number], [number, number, number]];
|
|
158
|
+
/**
|
|
159
|
+
* The node's actual visual extent, INCLUDING stroke/effect overflow --
|
|
160
|
+
* e.g. an OUTSIDE-aligned stroke or a drop shadow makes this larger than
|
|
161
|
+
* `absoluteBoundingBox` (the purely geometric fill bounds). Figma's own
|
|
162
|
+
* `/v1/images` renders for a node are cropped to this box, not to
|
|
163
|
+
* `absoluteBoundingBox` -- sizing an image-fallback `<img>` using the
|
|
164
|
+
* geometric box instead squishes/crops the rendered PNG to the wrong
|
|
165
|
+
* aspect ratio whenever a fallback node has stroke/effect overflow.
|
|
166
|
+
*/
|
|
167
|
+
absoluteRenderBounds?: FigmaBoundingBox;
|
|
168
|
+
size?: {
|
|
169
|
+
x: number;
|
|
170
|
+
y: number;
|
|
171
|
+
};
|
|
172
|
+
clipsContent?: boolean;
|
|
173
|
+
isMask?: boolean;
|
|
174
|
+
maskType?: "ALPHA" | "VECTOR" | "LUMINANCE";
|
|
175
|
+
arcData?: {
|
|
176
|
+
startingAngle?: number;
|
|
177
|
+
endingAngle?: number;
|
|
178
|
+
innerRadius?: number;
|
|
179
|
+
};
|
|
180
|
+
characters?: string;
|
|
181
|
+
style?: FigmaTypeStyle;
|
|
182
|
+
characterStyleOverrides?: number[];
|
|
183
|
+
styleOverrideTable?: Record<string, FigmaTypeStyle>;
|
|
184
|
+
lineTypes?: string[];
|
|
185
|
+
lineIndentations?: number[];
|
|
186
|
+
fills?: FigmaPaint[];
|
|
187
|
+
strokes?: FigmaPaint[];
|
|
188
|
+
strokeWeight?: number;
|
|
189
|
+
strokeAlign?: "INSIDE" | "OUTSIDE" | "CENTER";
|
|
190
|
+
individualStrokeWeights?: FigmaIndividualStrokeWeights;
|
|
191
|
+
strokeDashes?: number[];
|
|
192
|
+
cornerRadius?: number;
|
|
193
|
+
rectangleCornerRadii?: [number, number, number, number];
|
|
194
|
+
effects?: FigmaEffect[];
|
|
195
|
+
layoutMode?: "NONE" | "HORIZONTAL" | "VERTICAL" | "GRID";
|
|
196
|
+
layoutPositioning?: "AUTO" | "ABSOLUTE";
|
|
197
|
+
primaryAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "SPACE_BETWEEN";
|
|
198
|
+
counterAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "BASELINE";
|
|
199
|
+
layoutSizingHorizontal?: "FIXED" | "HUG" | "FILL";
|
|
200
|
+
layoutSizingVertical?: "FIXED" | "HUG" | "FILL";
|
|
201
|
+
layoutWrap?: "NO_WRAP" | "WRAP";
|
|
202
|
+
itemSpacing?: number;
|
|
203
|
+
counterAxisSpacing?: number;
|
|
204
|
+
paddingLeft?: number;
|
|
205
|
+
paddingRight?: number;
|
|
206
|
+
paddingTop?: number;
|
|
207
|
+
paddingBottom?: number;
|
|
208
|
+
minWidth?: number | null;
|
|
209
|
+
maxWidth?: number | null;
|
|
210
|
+
minHeight?: number | null;
|
|
211
|
+
maxHeight?: number | null;
|
|
212
|
+
componentId?: string;
|
|
213
|
+
componentProperties?: Record<string, unknown>;
|
|
214
|
+
boundVariables?: Record<string, unknown>;
|
|
215
|
+
interactions?: unknown[];
|
|
216
|
+
children?: FigmaNode[];
|
|
217
|
+
}
|
|
218
|
+
export type FidelityLevel = "exact" | "approximated" | "image-fallback";
|
|
219
|
+
export interface FidelityEntry {
|
|
220
|
+
nodeId: string;
|
|
221
|
+
nodeName: string;
|
|
222
|
+
nodeType: string;
|
|
223
|
+
level: FidelityLevel;
|
|
224
|
+
notes: string[];
|
|
225
|
+
}
|
|
226
|
+
export interface FidelityReport {
|
|
227
|
+
entries: FidelityEntry[];
|
|
228
|
+
summary: {
|
|
229
|
+
exact: number;
|
|
230
|
+
approximated: number;
|
|
231
|
+
imageFallback: number;
|
|
232
|
+
};
|
|
233
|
+
}
|
|
234
|
+
export interface MapFigmaNodeOptions {
|
|
235
|
+
/** imageRef hash -> resolved public URL, from `/v1/files/:key/images`. */
|
|
236
|
+
imageFillUrls?: Record<string, string>;
|
|
237
|
+
/** nodeId -> rendered PNG URL, from `/v1/images/:key` for fallback subtrees. */
|
|
238
|
+
fallbackImageUrls?: Record<string, string>;
|
|
239
|
+
/** Node ids that should be rendered as an image regardless of type. */
|
|
240
|
+
forceImageFallbackNodeIds?: Set<string>;
|
|
241
|
+
}
|
|
242
|
+
export interface MapFigmaNodeResult {
|
|
243
|
+
html: string;
|
|
244
|
+
fidelity: FidelityReport;
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* Derive a CSS `linear-gradient()` angle (degrees) from Figma's normalized
|
|
248
|
+
* `gradientHandlePositions`. Handle positions are normalized independently in
|
|
249
|
+
* x and y (0..1 relative to the node's bounding box), so the angle must be
|
|
250
|
+
* computed in actual pixel space using the node's real width/height —
|
|
251
|
+
* otherwise a non-square box silently distorts the angle.
|
|
252
|
+
*
|
|
253
|
+
* Verified against Figma's documented identity handles
|
|
254
|
+
* (start=(0,0.5), end=(1,0.5), width=(1,0), i.e. a plain left-to-right
|
|
255
|
+
* gradient) which must resolve to CSS `90deg` ("to right"):
|
|
256
|
+
* dx = 1*w, dy = 0 -> atan2(0, dx) = 0deg -> +90 = 90deg. Matches.
|
|
257
|
+
* And a top-to-bottom gradient (start=(0.5,0), end=(0.5,1)) must resolve to
|
|
258
|
+
* CSS `180deg` ("to bottom"):
|
|
259
|
+
* dx = 0, dy = 1*h -> atan2(dy, 0) = 90deg -> +90 = 180deg. Matches.
|
|
260
|
+
*/
|
|
261
|
+
export declare function gradientAngleDegrees(paint: FigmaPaint, box: {
|
|
262
|
+
width: number;
|
|
263
|
+
height: number;
|
|
264
|
+
}): number | null;
|
|
265
|
+
/** Fail clearly before recursive rendering can overflow or lock the worker. */
|
|
266
|
+
export declare function assertFigmaNodeTreeComplexity(node: FigmaNode): void;
|
|
267
|
+
/**
|
|
268
|
+
* Walk a node tree and return the ids of every subtree that will render as a
|
|
269
|
+
* PNG image fallback (vector networks, boolean ops, and any node type this
|
|
270
|
+
* mapper does not model structurally). Call this before fetching node data
|
|
271
|
+
* so the caller can request rendered images for exactly these ids via
|
|
272
|
+
* `GET /v1/images/:fileKey?ids=...&scale=2`.
|
|
273
|
+
*/
|
|
274
|
+
export declare function collectFallbackNodeIds(node: FigmaNode, options?: MapFigmaNodeOptions): string[];
|
|
275
|
+
/**
|
|
276
|
+
* Walk a node tree and return every distinct `imageRef` used by IMAGE fills
|
|
277
|
+
* (on fills or strokes) so the caller can resolve them to URLs via
|
|
278
|
+
* `GET /v1/files/:fileKey/images` before mapping.
|
|
279
|
+
*/
|
|
280
|
+
export declare function collectImageFillRefs(node: FigmaNode, options?: MapFigmaNodeOptions): string[];
|
|
281
|
+
export interface FigmaFontUsage {
|
|
282
|
+
family: string;
|
|
283
|
+
weight: number;
|
|
284
|
+
italic: boolean;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* Walk a node tree and return every distinct (font family, weight, italic)
|
|
288
|
+
* combination used by TEXT nodes -- including per-run character style
|
|
289
|
+
* overrides -- so the caller can request the actual web font (e.g. from
|
|
290
|
+
* Google Fonts) before the imported HTML is saved. Without this, an imported
|
|
291
|
+
* screen's CSS correctly names the intended font-family, but the browser has
|
|
292
|
+
* no way to load it and silently falls back to a generic sans-serif with
|
|
293
|
+
* different glyph advance widths -- individually invisible per character but
|
|
294
|
+
* compounding into a growing horizontal drift across any wrapped or
|
|
295
|
+
* multi-word line, worst on text-dense imports.
|
|
296
|
+
*/
|
|
297
|
+
export declare function collectFontUsage(node: FigmaNode): FigmaFontUsage[];
|
|
298
|
+
/**
|
|
299
|
+
* Map a Figma node (and its subtree) to an HTML fragment plus a fidelity
|
|
300
|
+
* report describing which properties were exact, approximated, or rendered
|
|
301
|
+
* as an image fallback.
|
|
302
|
+
*/
|
|
303
|
+
export declare function mapFigmaNodeToHtml(node: FigmaNode, options?: MapFigmaNodeOptions): MapFigmaNodeResult;
|
|
304
|
+
//# sourceMappingURL=figma-node-to-html.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"figma-node-to-html.d.ts","sourceRoot":"","sources":["../../src/ingestion/figma-node-to-html.ts"],"names":[],"mappings":"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"}
|