@agent-native/core 0.129.1 → 0.130.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 +78 -0
- package/corpus/core/docs/content/cloneable-saas.mdx +114 -0
- package/corpus/core/docs/content/creating-templates.mdx +28 -2
- package/corpus/core/docs/content/syncing-template-changes.mdx +7 -0
- package/corpus/core/docs/content/template-clips-developers.mdx +12 -5
- package/corpus/core/docs/content/template-dispatch-developers.mdx +1 -1
- package/corpus/core/docs/content/template-dispatch.mdx +1 -1
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/action-ui.ts +1 -0
- package/corpus/core/src/action.ts +5 -1
- package/corpus/core/src/agent/engine/ai-sdk-engine.ts +15 -5
- package/corpus/core/src/agent/harness/runner.ts +5 -0
- package/corpus/core/src/agent/production-agent.ts +33 -0
- package/corpus/core/src/agent/run-loop-with-resume.ts +5 -0
- package/corpus/core/src/agent/run-manager.ts +126 -1
- package/corpus/core/src/agent/thread-data-builder.ts +47 -2
- package/corpus/core/src/agent/types.ts +2 -0
- package/corpus/core/src/chat-threads/store.ts +4 -5
- package/corpus/core/src/cli/create.ts +1139 -65
- package/corpus/core/src/cli/design-connect.ts +3 -7
- package/corpus/core/src/cli/index.ts +5 -3
- package/corpus/core/src/cli/skills-content/design-visual-edit-skill.ts +83 -47
- package/corpus/core/src/client/AssistantChat.tsx +27 -16
- package/corpus/core/src/client/agent-chat-adapter.ts +24 -0
- package/corpus/core/src/client/blocks/library/wireframe-kit.tsx +17 -2
- package/corpus/core/src/client/chat/index.ts +1 -0
- package/corpus/core/src/client/chat/message-components.tsx +104 -1
- package/corpus/core/src/client/chat/run-recovery.tsx +15 -3
- package/corpus/core/src/client/chat/widgets/DataTableWidget.tsx +10 -29
- package/corpus/core/src/client/chat/widgets/WorkspaceFileWidget.tsx +71 -0
- package/corpus/core/src/client/chat/widgets/builtin-tool-renderers.tsx +22 -0
- package/corpus/core/src/client/chat/widgets/workspace-file-result.ts +49 -0
- package/corpus/core/src/client/embed-auth.ts +2 -0
- package/corpus/core/src/client/org/InvitationBanner.tsx +14 -1
- package/corpus/core/src/client/org/OrgSwitcher.tsx +23 -0
- package/corpus/core/src/client/org/TeamPage.tsx +130 -0
- package/corpus/core/src/client/org/WorkspaceNotice.tsx +85 -0
- package/corpus/core/src/client/org/hooks.ts +14 -0
- package/corpus/core/src/client/org/index.ts +2 -0
- package/corpus/core/src/client/resources/McpIntegrationDialog.tsx +27 -40
- package/corpus/core/src/client/resources/ResourcesPanel.tsx +134 -51
- package/corpus/core/src/client/resources/mcp-integration-catalog.ts +7 -0
- package/corpus/core/src/client/resources/use-resources.ts +6 -0
- package/corpus/core/src/client/use-action.ts +3 -1
- package/corpus/core/src/client/widgets/index.ts +1 -0
- package/corpus/core/src/coding-tools/run-code.ts +2 -1
- package/corpus/core/src/db/client.ts +28 -4
- package/corpus/core/src/deploy/build.ts +31 -3
- package/corpus/core/src/eject/remote-mcp-presets.ts +1 -1
- package/corpus/core/src/index.browser.ts +1 -0
- package/corpus/core/src/index.ts +1 -0
- package/corpus/core/src/integrations/google-docs-poller.ts +3 -0
- package/corpus/core/src/integrations/webhook-handler.ts +28 -11
- package/corpus/core/src/jobs/scheduler.ts +4 -0
- package/corpus/core/src/localization/default-messages.ts +3 -2
- package/corpus/core/src/mcp/build-server.ts +20 -2
- package/corpus/core/src/observability/traces.ts +48 -12
- package/corpus/core/src/org/handlers.ts +52 -1
- package/corpus/core/src/org/migrations.ts +4 -0
- package/corpus/core/src/org/plugin.ts +14 -0
- package/corpus/core/src/org/schema.ts +1 -0
- package/corpus/core/src/org/types.ts +8 -0
- package/corpus/core/src/org/workspace-url.ts +74 -0
- package/corpus/core/src/resources/handlers.ts +35 -5
- package/corpus/core/src/scripts/runner.ts +183 -5
- package/corpus/core/src/server/action-routes.ts +32 -2
- package/corpus/core/src/server/agent-chat-plugin.ts +29 -0
- package/corpus/core/src/server/agent-teams.ts +10 -1
- package/corpus/core/src/server/auth.ts +33 -7
- package/corpus/core/src/server/embed-route.ts +9 -0
- package/corpus/core/src/server/embed-session.ts +62 -3
- package/corpus/core/src/server/open-route.ts +20 -6
- package/corpus/core/src/server/prompts/framework-core-compact.ts +1 -1
- package/corpus/core/src/server/prompts/framework-core.ts +1 -0
- package/corpus/core/src/server/request-context.ts +36 -1
- package/corpus/core/src/shared/embed-auth.ts +1 -0
- package/corpus/core/src/shared/html-document.ts +115 -0
- package/corpus/core/src/shared/index.ts +1 -0
- package/corpus/core/src/sharing/access.ts +8 -1
- package/corpus/core/src/sharing/registry.ts +11 -2
- package/corpus/core/src/workspace-files/actions.ts +100 -0
- package/corpus/core/src/workspace-files/tool.ts +4 -0
- package/corpus/templates/analytics/.agents/skills/analysis-workspace/SKILL.md +4 -0
- package/corpus/templates/analytics/.agents/skills/hubspot/SKILL.md +9 -1
- package/corpus/templates/analytics/AGENTS.md +17 -24
- package/corpus/templates/analytics/actions/data-source-status.ts +11 -1
- package/corpus/templates/analytics/app/i18n-data.ts +34 -0
- package/corpus/templates/analytics/app/lib/data-source-status.ts +86 -0
- package/corpus/templates/analytics/app/lib/native-mcp-exclusions.ts +9 -0
- package/corpus/templates/analytics/app/pages/DataSources.tsx +184 -20
- package/corpus/templates/analytics/changelog/2026-07-28-native-analytics-data-sources-no-longer-show-duplicate-mc.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-29-exports-now-appear-in-chat-with-a-direct-download-instead-of.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-29-queued-chat-prompts-no-longer-resend-after-analytics-navigat.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-29-scheduled-dashboard-emails-load-every-panel-reliably-without.md +6 -0
- package/corpus/templates/analytics/scripts/emit-netlify-dashboard-report-cron.ts +6 -3
- package/corpus/templates/analytics/server/lib/credential-keys.ts +1 -1
- package/corpus/templates/analytics/server/lib/hubspot.ts +1 -1
- package/corpus/templates/analytics/server/lib/provider-credentials.ts +55 -1
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +123 -27
- package/corpus/templates/analytics/server/routes/[...page].get.ts +2 -7
- package/corpus/templates/analytics/vite.config.ts +7 -0
- package/corpus/templates/brain/actions/list-connection-providers.ts +100 -2
- package/corpus/templates/brain/app/lib/brain.ts +10 -0
- package/corpus/templates/brain/app/routes/sources.tsx +15 -4
- package/corpus/templates/brain/changelog/2026-07-29-brain-automatically-retries-failed-source-syncs-and-guides-y.md +6 -0
- package/corpus/templates/brain/jobs/process-ingest-queue.ts +13 -0
- package/corpus/templates/brain/server/jobs/sync-sources.ts +27 -22
- package/corpus/templates/brain/server/plugins/agent-chat.ts +2 -1
- package/corpus/templates/brain/server/routes/api/brain/queue/run.post.ts +7 -1
- package/corpus/templates/clips/AGENTS.md +1 -1
- package/corpus/templates/clips/actions/create-recording-agent-link.ts +11 -1
- package/corpus/templates/clips/actions/update-comment.ts +68 -0
- package/corpus/templates/clips/app/components/editor/editor-layout.tsx +0 -1
- package/corpus/templates/clips/app/components/player/comments-panel.tsx +221 -65
- package/corpus/templates/clips/app/components/player/video-player.tsx +101 -27
- package/corpus/templates/clips/app/i18n/en-US.ts +2 -1
- package/corpus/templates/clips/app/routes/bug-report.done.tsx +48 -27
- package/corpus/templates/clips/app/routes/bug-report.tsx +43 -4
- package/corpus/templates/clips/app/routes/record.tsx +2 -0
- package/corpus/templates/clips/changelog/2026-07-29-clip-playback-now-recovers-instead-of-getting-stuck-when-a-b.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-29-comments-can-now-be-edited-after-posting.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-29-download-actions-now-use-a-shorter-clearer-label.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-29-embedded-bug-reports-now-return-a-temporary-agent-readable.md +6 -0
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +1 -1
- package/corpus/templates/clips/desktop/src-tauri/src/system_audio.rs +21 -1
- package/corpus/templates/clips/shared/bug-report.ts +99 -0
- package/corpus/templates/content/actions/_content-database-personal-view.ts +7 -1
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +5 -2
- package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +20 -8
- package/corpus/templates/content/changelog/2026-07-29-missing-databases-no-longer-trigger-repeated-personal-view-e.md +6 -0
- package/corpus/templates/design/.agents/skills/visual-edit/SKILL.md +83 -47
- package/corpus/templates/design/.generated/bridge/editor-chrome.generated.ts +474 -55
- package/corpus/templates/design/.generated/bridge/embedded-wheel.generated.ts +3 -0
- package/corpus/templates/design/.generated/bridge/hit-test.generated.ts +18 -1
- package/corpus/templates/design/.generated/bridge/source-location.generated.ts +348 -0
- package/corpus/templates/design/actions/add-localhost-screens.ts +2 -7
- package/corpus/templates/design/actions/apply-visual-edit.ts +7 -1
- package/corpus/templates/design/actions/connect-localhost.ts +5 -9
- package/corpus/templates/design/actions/create-component.ts +16 -13
- package/corpus/templates/design/actions/grant-localhost-write-consent.ts +2 -7
- package/corpus/templates/design/actions/list-design-source-capabilities.ts +4 -7
- package/corpus/templates/design/actions/list-local-files.ts +26 -50
- package/corpus/templates/design/actions/list-localhost-connections.ts +2 -7
- package/corpus/templates/design/actions/migrate-board-objects-to-file.ts +2 -2
- package/corpus/templates/design/actions/open-visual-edit.ts +234 -135
- package/corpus/templates/design/actions/read-local-file.ts +26 -50
- package/corpus/templates/design/actions/request-localhost-write-consent.ts +2 -7
- package/corpus/templates/design/actions/write-local-file.ts +31 -73
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +307 -133
- package/corpus/templates/design/app/components/design/EditPanel.tsx +94 -22
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +137 -60
- package/corpus/templates/design/app/components/design/ResponsiveInteractBar.tsx +75 -14
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +755 -97
- package/corpus/templates/design/app/components/design/bridge/embedded-wheel.bridge.ts +8 -0
- package/corpus/templates/design/app/components/design/bridge/hit-test.bridge.ts +24 -1
- package/corpus/templates/design/app/components/design/bridge/source-location.bridge.ts +530 -0
- package/corpus/templates/design/app/components/design/code-workbench/CodeWorkbenchLoader.tsx +278 -0
- package/corpus/templates/design/app/components/design/code-workbench/editor/MonacoHost.tsx +32 -12
- package/corpus/templates/design/app/components/design/code-workbench/editor/monaco-setup.ts +14 -3
- package/corpus/templates/design/app/components/design/code-workbench/explorer/ExplorerView.tsx +87 -24
- package/corpus/templates/design/app/components/design/code-workbench/explorer/FileTree.tsx +36 -0
- package/corpus/templates/design/app/components/design/code-workbench/store.tsx +2 -1
- package/corpus/templates/design/app/components/design/code-workbench/workspace/localhost-provider.ts +48 -8
- package/corpus/templates/design/app/components/design/design-canvas/content-size-report.ts +3 -13
- package/corpus/templates/design/app/components/design/design-canvas/embedded-frame.ts +4 -2
- package/corpus/templates/design/app/components/design/design-canvas/hit-test.ts +3 -13
- package/corpus/templates/design/app/components/design/edit-panel/element-classification.ts +3 -1
- package/corpus/templates/design/app/components/design/edit-panel/inspect-code-source.ts +93 -0
- package/corpus/templates/design/app/components/design/multi-screen/board-surface-html.ts +4 -2
- package/corpus/templates/design/app/components/design/multi-screen/cross-screen-drop.ts +35 -0
- package/corpus/templates/design/app/components/design/multi-screen/iframe-targeting.ts +24 -0
- package/corpus/templates/design/app/components/design/multi-screen/types.ts +9 -0
- package/corpus/templates/design/app/components/design/types.ts +29 -0
- package/corpus/templates/design/app/components/layout/Layout.tsx +7 -4
- package/corpus/templates/design/app/hooks/use-navigation-state.ts +3 -0
- package/corpus/templates/design/app/i18n-data.ts +153 -46
- package/corpus/templates/design/app/i18n-responsive-interact.ts +12 -12
- package/corpus/templates/design/app/lib/design-editor-route.ts +23 -0
- package/corpus/templates/design/app/pages/VisualEdit.tsx +19 -6
- package/corpus/templates/design/app/pages/design-editor/action-error.ts +19 -0
- package/corpus/templates/design/app/pages/design-editor/canvas-primitive-insert.ts +29 -0
- package/corpus/templates/design/app/pages/design-editor/clone-and-pen-edit.ts +6 -0
- package/corpus/templates/design/app/pages/design-editor/code-layer-state.ts +277 -15
- package/corpus/templates/design/app/pages/design-editor/editor-state.ts +75 -9
- package/corpus/templates/design/app/pages/design-editor/layer-state-scope.ts +28 -0
- package/corpus/templates/design/app/pages/design-editor/live-screen-layer-drop.ts +41 -0
- package/corpus/templates/design/app/pages/design-editor/pending-edits.ts +496 -41
- package/corpus/templates/design/app/pages/design-editor/pending-live-edit-unload-guard.ts +27 -0
- package/corpus/templates/design/app/pages/design-editor/pending-structure-verification.ts +10 -0
- package/corpus/templates/design/app/pages/design-editor/react-semantic-handoff.ts +168 -9
- package/corpus/templates/design/app/pages/design-editor/responsive-interact.ts +41 -3
- package/corpus/templates/design/app/pages/design-editor/screen-command-utils.ts +5 -0
- package/corpus/templates/design/app/pages/design-editor/selection-state.ts +42 -13
- package/corpus/templates/design/app/pages/design-editor/source-location.ts +180 -0
- package/corpus/templates/design/app/pages/design-editor/tool-state.ts +17 -0
- package/corpus/templates/design/app/public-routes.ts +1 -0
- package/corpus/templates/design/app/routes/visual-edit.$id.tsx +15 -0
- package/corpus/templates/design/changelog/2026-06-29-screen-overview-is-easier-to-find-and-named-screens-open-dir.md +1 -1
- package/corpus/templates/design/changelog/2026-07-28-deleting-a-selected-element-now-removes-it-from-the-live-pre.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-deleting-an-element-on-a-connected-localhost-screen-now-queu.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-interact-mode-now-shows-a-responsive-device-preview-with-pre.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-layer-hide-and-lock-now-apply-to-the-live-preview-instead-of.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-layers-panel-selections-on-a-connected-localhost-screen-can-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-locked-layers-now-show-a-subtle-dashed-outline-in-the-live-p.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-the-apply-design-updates-button-now-counts-pending-live-text.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-the-design-canvas-no-longer-stalls-on-a-render-loop-while-a-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-visual-edit-on-a-local-dev-server-no-longer-requires-signing.md +6 -0
- package/corpus/templates/design/changelog/2026-07-28-visual-edits-on-a-react-19-app-no-longer-report-a-source-lin.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-an-edit-that-cannot-be-written-to-source-now-names-the-reaso.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-applying-a-primitive-dropped-onto-a-connected-localhost-scre.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-changing-a-style-in-the-inspector-now-updates-a-connected-lo.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-choosing-edit-or-annotate-from-a-focused-screen-now-returns-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-concurrent-source-edits-now-return-a-clear-conflict-response.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-creating-a-component-from-an-element-that-repeats-in-the-sou.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-deleting-an-element-you-just-dropped-onto-a-live-screen-no-l.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-dragging-a-layer-across-screens-no-longer-dies-when-the-poin.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-dragging-an-element-from-a-stored-screen-into-a-live-localho.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-drawing-a-box-on-the-canvas-and-dragging-it-into-a-connected.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-fixed-a-loading-screen-flicker-when-reopening-designs-with-a.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-interact-mode-has-edit-and-annotate-buttons-again-so-you-can.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-layer-groups-can-be-dropped-onto-live-localhost-screens.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-localhost-source-errors-now-say-what-actually-went-wrong-whi.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-opening-or-refreshing-a-live-localhost-screen-in-single-scre.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-redo-after-undoing-a-drop-onto-a-live-screen-puts-the-elemen.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-shapes-can-be-drawn-directly-onto-live-localhost-screens.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-shapes-drawn-on-the-canvas-board-now-appear-immediately-inst.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-style-edits-on-a-running-localhost-screen-now-preview-live-a.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-the-apply-design-updates-control-now-appears-as-a-clean-conn.md +6 -0
- package/corpus/templates/design/changelog/2026-07-29-visual-edits-on-a-mapped-component-instance-now-tell-the-age.md +6 -0
- package/corpus/templates/design/server/lib/design-data-access.ts +21 -7
- package/corpus/templates/design/server/lib/localhost-connection.ts +240 -0
- package/corpus/templates/design/server/routes/[...page].get.ts +2 -5
- package/corpus/templates/design/server/source-workspace.ts +2 -0
- package/corpus/templates/design/shared/code-layer.ts +43 -0
- package/corpus/templates/design/shared/html-content.ts +26 -0
- package/corpus/templates/design/shared/html-integrity.ts +21 -1
- package/corpus/templates/design/shared/local-jsx-visual-edit.ts +15 -0
- package/corpus/templates/design/shared/source-mode.ts +76 -0
- package/corpus/templates/dispatch/changelog/2026-07-29-workspace-members-without-admin-access-now-see-a-clear-permi.md +6 -0
- package/corpus/templates/dispatch/server/lib/usage-metrics.ts +2 -1
- package/corpus/templates/plan/app/lib/plan-annotation-runtime.ts +3 -4
- package/corpus/templates/plan/server/routes/[...page].get.ts +2 -5
- package/corpus/templates/slides/actions/patch-deck.ts +29 -17
- package/corpus/toolkit/CHANGELOG.md +6 -0
- package/corpus/toolkit/package.json +1 -1
- package/corpus/toolkit/src/composer/ComposerPlusMenu.tsx +3 -2
- package/dist/action-ui.d.ts +1 -0
- package/dist/action-ui.d.ts.map +1 -1
- package/dist/action-ui.js +1 -0
- package/dist/action-ui.js.map +1 -1
- package/dist/action.d.ts +5 -1
- package/dist/action.d.ts.map +1 -1
- package/dist/action.js.map +1 -1
- package/dist/agent/engine/ai-sdk-engine.d.ts.map +1 -1
- package/dist/agent/engine/ai-sdk-engine.js +13 -5
- package/dist/agent/engine/ai-sdk-engine.js.map +1 -1
- package/dist/agent/harness/runner.d.ts.map +1 -1
- package/dist/agent/harness/runner.js +5 -0
- package/dist/agent/harness/runner.js.map +1 -1
- package/dist/agent/production-agent.d.ts +16 -0
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +18 -1
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-loop-with-resume.d.ts.map +1 -1
- package/dist/agent/run-loop-with-resume.js +6 -0
- package/dist/agent/run-loop-with-resume.js.map +1 -1
- package/dist/agent/run-manager.d.ts +14 -0
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +91 -1
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/thread-data-builder.d.ts +3 -0
- package/dist/agent/thread-data-builder.d.ts.map +1 -1
- package/dist/agent/thread-data-builder.js +35 -3
- package/dist/agent/thread-data-builder.js.map +1 -1
- package/dist/agent/types.d.ts +2 -0
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/chat-threads/store.d.ts.map +1 -1
- package/dist/chat-threads/store.js +4 -6
- package/dist/chat-threads/store.js.map +1 -1
- package/dist/cli/create.d.ts +66 -6
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +765 -66
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/design-connect.d.ts.map +1 -1
- package/dist/cli/design-connect.js +2 -7
- package/dist/cli/design-connect.js.map +1 -1
- package/dist/cli/index.js +5 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/skills-content/design-visual-edit-skill.d.ts +1 -1
- package/dist/cli/skills-content/design-visual-edit-skill.d.ts.map +1 -1
- package/dist/cli/skills-content/design-visual-edit-skill.js +83 -47
- package/dist/cli/skills-content/design-visual-edit-skill.js.map +1 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +16 -9
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +21 -0
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/blocks/library/wireframe-kit.d.ts +2 -0
- package/dist/client/blocks/library/wireframe-kit.d.ts.map +1 -1
- package/dist/client/blocks/library/wireframe-kit.js +8 -2
- package/dist/client/blocks/library/wireframe-kit.js.map +1 -1
- package/dist/client/chat/index.d.ts +1 -1
- package/dist/client/chat/index.d.ts.map +1 -1
- package/dist/client/chat/index.js +1 -1
- package/dist/client/chat/index.js.map +1 -1
- package/dist/client/chat/message-components.d.ts +17 -0
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +24 -2
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/run-recovery.d.ts +6 -0
- package/dist/client/chat/run-recovery.d.ts.map +1 -1
- package/dist/client/chat/run-recovery.js +13 -3
- package/dist/client/chat/run-recovery.js.map +1 -1
- package/dist/client/chat/widgets/DataTableWidget.d.ts.map +1 -1
- package/dist/client/chat/widgets/DataTableWidget.js +2 -3
- package/dist/client/chat/widgets/DataTableWidget.js.map +1 -1
- package/dist/client/chat/widgets/WorkspaceFileWidget.d.ts +5 -0
- package/dist/client/chat/widgets/WorkspaceFileWidget.d.ts.map +1 -0
- package/dist/client/chat/widgets/WorkspaceFileWidget.js +34 -0
- package/dist/client/chat/widgets/WorkspaceFileWidget.js.map +1 -0
- package/dist/client/chat/widgets/builtin-tool-renderers.d.ts.map +1 -1
- package/dist/client/chat/widgets/builtin-tool-renderers.js +13 -1
- package/dist/client/chat/widgets/builtin-tool-renderers.js.map +1 -1
- package/dist/client/chat/widgets/workspace-file-result.d.ts +12 -0
- package/dist/client/chat/widgets/workspace-file-result.d.ts.map +1 -0
- package/dist/client/chat/widgets/workspace-file-result.js +34 -0
- package/dist/client/chat/widgets/workspace-file-result.js.map +1 -0
- package/dist/client/embed-auth.d.ts.map +1 -1
- package/dist/client/embed-auth.js +2 -1
- package/dist/client/embed-auth.js.map +1 -1
- package/dist/client/org/InvitationBanner.d.ts +5 -2
- package/dist/client/org/InvitationBanner.d.ts.map +1 -1
- package/dist/client/org/InvitationBanner.js +9 -2
- package/dist/client/org/InvitationBanner.js.map +1 -1
- package/dist/client/org/OrgSwitcher.d.ts.map +1 -1
- package/dist/client/org/OrgSwitcher.js +3 -2
- package/dist/client/org/OrgSwitcher.js.map +1 -1
- package/dist/client/org/TeamPage.d.ts.map +1 -1
- package/dist/client/org/TeamPage.js +27 -3
- package/dist/client/org/TeamPage.js.map +1 -1
- package/dist/client/org/WorkspaceNotice.d.ts +18 -0
- package/dist/client/org/WorkspaceNotice.d.ts.map +1 -0
- package/dist/client/org/WorkspaceNotice.js +56 -0
- package/dist/client/org/WorkspaceNotice.js.map +1 -0
- package/dist/client/org/hooks.d.ts +1 -0
- package/dist/client/org/hooks.d.ts.map +1 -1
- package/dist/client/org/hooks.js +12 -0
- package/dist/client/org/hooks.js.map +1 -1
- package/dist/client/org/index.d.ts +2 -1
- package/dist/client/org/index.d.ts.map +1 -1
- package/dist/client/org/index.js +2 -1
- package/dist/client/org/index.js.map +1 -1
- package/dist/client/resources/McpIntegrationDialog.d.ts.map +1 -1
- package/dist/client/resources/McpIntegrationDialog.js +8 -12
- package/dist/client/resources/McpIntegrationDialog.js.map +1 -1
- package/dist/client/resources/ResourcesPanel.d.ts +3 -0
- package/dist/client/resources/ResourcesPanel.d.ts.map +1 -1
- package/dist/client/resources/ResourcesPanel.js +49 -20
- package/dist/client/resources/ResourcesPanel.js.map +1 -1
- package/dist/client/resources/mcp-integration-catalog.d.ts +1 -0
- package/dist/client/resources/mcp-integration-catalog.d.ts.map +1 -1
- package/dist/client/resources/mcp-integration-catalog.js +3 -0
- package/dist/client/resources/mcp-integration-catalog.js.map +1 -1
- package/dist/client/resources/use-resources.d.ts +1 -0
- package/dist/client/resources/use-resources.d.ts.map +1 -1
- package/dist/client/resources/use-resources.js +3 -0
- package/dist/client/resources/use-resources.js.map +1 -1
- package/dist/client/use-action.d.ts +3 -1
- package/dist/client/use-action.d.ts.map +1 -1
- package/dist/client/use-action.js +3 -1
- package/dist/client/use-action.js.map +1 -1
- package/dist/client/widgets/index.d.ts +1 -1
- package/dist/client/widgets/index.d.ts.map +1 -1
- package/dist/client/widgets/index.js +1 -1
- package/dist/client/widgets/index.js.map +1 -1
- package/dist/coding-tools/run-code.js +2 -1
- package/dist/coding-tools/run-code.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/db/client.d.ts +1 -0
- package/dist/db/client.d.ts.map +1 -1
- package/dist/db/client.js +24 -3
- package/dist/db/client.js.map +1 -1
- package/dist/deploy/build.d.ts.map +1 -1
- package/dist/deploy/build.js +25 -3
- package/dist/deploy/build.js.map +1 -1
- package/dist/eject/remote-mcp-presets.js +1 -1
- package/dist/eject/remote-mcp-presets.js.map +1 -1
- package/dist/index.browser.d.ts +1 -1
- package/dist/index.browser.d.ts.map +1 -1
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +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/integrations/google-docs-poller.d.ts.map +1 -1
- package/dist/integrations/google-docs-poller.js +4 -1
- package/dist/integrations/google-docs-poller.js.map +1 -1
- package/dist/integrations/webhook-handler.d.ts.map +1 -1
- package/dist/integrations/webhook-handler.js +23 -11
- package/dist/integrations/webhook-handler.js.map +1 -1
- package/dist/jobs/scheduler.js +4 -0
- package/dist/jobs/scheduler.js.map +1 -1
- package/dist/localization/default-messages.d.ts +3 -2
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +3 -2
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/mcp/build-server.d.ts.map +1 -1
- package/dist/mcp/build-server.js +10 -1
- package/dist/mcp/build-server.js.map +1 -1
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/observability/traces.d.ts.map +1 -1
- package/dist/observability/traces.js +27 -7
- package/dist/observability/traces.js.map +1 -1
- package/dist/org/handlers.d.ts +15 -0
- package/dist/org/handlers.d.ts.map +1 -1
- package/dist/org/handlers.js +45 -1
- package/dist/org/handlers.js.map +1 -1
- package/dist/org/migrations.d.ts.map +1 -1
- package/dist/org/migrations.js +4 -0
- package/dist/org/migrations.js.map +1 -1
- package/dist/org/plugin.d.ts +1 -0
- package/dist/org/plugin.d.ts.map +1 -1
- package/dist/org/plugin.js +10 -1
- package/dist/org/plugin.js.map +1 -1
- package/dist/org/schema.d.ts +19 -0
- package/dist/org/schema.d.ts.map +1 -1
- package/dist/org/schema.js +1 -0
- package/dist/org/schema.js.map +1 -1
- package/dist/org/types.d.ts +8 -0
- package/dist/org/types.d.ts.map +1 -1
- package/dist/org/types.js.map +1 -1
- package/dist/org/workspace-url.d.ts +32 -0
- package/dist/org/workspace-url.d.ts.map +1 -0
- package/dist/org/workspace-url.js +63 -0
- package/dist/org/workspace-url.js.map +1 -0
- package/dist/progress/routes.d.ts +1 -1
- package/dist/provider-api/actions/custom-provider-registration.d.ts +11 -11
- package/dist/provider-api/actions/provider-api.d.ts +7 -7
- package/dist/resources/handlers.d.ts +2 -3
- package/dist/resources/handlers.d.ts.map +1 -1
- package/dist/resources/handlers.js +25 -5
- package/dist/resources/handlers.js.map +1 -1
- package/dist/scripts/runner.d.ts +17 -0
- package/dist/scripts/runner.d.ts.map +1 -1
- package/dist/scripts/runner.js +130 -5
- package/dist/scripts/runner.js.map +1 -1
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/action-routes.d.ts.map +1 -1
- package/dist/server/action-routes.js +24 -2
- package/dist/server/action-routes.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +26 -1
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/agent-teams.d.ts.map +1 -1
- package/dist/server/agent-teams.js +10 -1
- package/dist/server/agent-teams.js.map +1 -1
- package/dist/server/auth.d.ts +22 -0
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +33 -7
- package/dist/server/auth.js.map +1 -1
- package/dist/server/embed-route.d.ts.map +1 -1
- package/dist/server/embed-route.js +6 -1
- package/dist/server/embed-route.js.map +1 -1
- package/dist/server/embed-session.d.ts +7 -0
- package/dist/server/embed-session.d.ts.map +1 -1
- package/dist/server/embed-session.js +46 -4
- package/dist/server/embed-session.js.map +1 -1
- package/dist/server/open-route.d.ts.map +1 -1
- package/dist/server/open-route.js +17 -7
- package/dist/server/open-route.js.map +1 -1
- package/dist/server/prompts/framework-core-compact.js +1 -1
- package/dist/server/prompts/framework-core-compact.js.map +1 -1
- package/dist/server/prompts/framework-core.d.ts.map +1 -1
- package/dist/server/prompts/framework-core.js +1 -0
- package/dist/server/prompts/framework-core.js.map +1 -1
- package/dist/server/request-context.d.ts +26 -0
- package/dist/server/request-context.d.ts.map +1 -1
- package/dist/server/request-context.js +18 -1
- package/dist/server/request-context.js.map +1 -1
- package/dist/shared/embed-auth.d.ts +1 -0
- package/dist/shared/embed-auth.d.ts.map +1 -1
- package/dist/shared/embed-auth.js +1 -0
- package/dist/shared/embed-auth.js.map +1 -1
- package/dist/shared/html-document.d.ts +12 -0
- package/dist/shared/html-document.d.ts.map +1 -0
- package/dist/shared/html-document.js +92 -0
- package/dist/shared/html-document.js.map +1 -0
- package/dist/shared/index.d.ts +1 -0
- package/dist/shared/index.d.ts.map +1 -1
- package/dist/shared/index.js +1 -0
- package/dist/shared/index.js.map +1 -1
- package/dist/sharing/access.d.ts +1 -0
- package/dist/sharing/access.d.ts.map +1 -1
- package/dist/sharing/access.js +8 -2
- package/dist/sharing/access.js.map +1 -1
- package/dist/sharing/registry.d.ts +3 -0
- package/dist/sharing/registry.d.ts.map +1 -1
- package/dist/sharing/registry.js.map +1 -1
- package/dist/workspace-files/actions.d.ts +28 -0
- package/dist/workspace-files/actions.d.ts.map +1 -0
- package/dist/workspace-files/actions.js +75 -0
- package/dist/workspace-files/actions.js.map +1 -0
- package/dist/workspace-files/tool.d.ts.map +1 -1
- package/dist/workspace-files/tool.js +4 -0
- package/dist/workspace-files/tool.js.map +1 -1
- package/docs/content/cloneable-saas.mdx +114 -0
- package/docs/content/creating-templates.mdx +28 -2
- package/docs/content/syncing-template-changes.mdx +7 -0
- package/docs/content/template-clips-developers.mdx +12 -5
- package/docs/content/template-dispatch-developers.mdx +1 -1
- package/docs/content/template-dispatch.mdx +1 -1
- package/package.json +2 -2
- package/src/action-ui.ts +1 -0
- package/src/action.ts +5 -1
- package/src/agent/engine/ai-sdk-engine.ts +15 -5
- package/src/agent/harness/runner.ts +5 -0
- package/src/agent/production-agent.ts +33 -0
- package/src/agent/run-loop-with-resume.ts +5 -0
- package/src/agent/run-manager.ts +126 -1
- package/src/agent/thread-data-builder.ts +47 -2
- package/src/agent/types.ts +2 -0
- package/src/chat-threads/store.ts +4 -5
- package/src/cli/create.ts +1139 -65
- package/src/cli/design-connect.ts +3 -7
- package/src/cli/index.ts +5 -3
- package/src/cli/skills-content/design-visual-edit-skill.ts +83 -47
- package/src/client/AssistantChat.tsx +27 -16
- package/src/client/agent-chat-adapter.ts +24 -0
- package/src/client/blocks/library/wireframe-kit.tsx +17 -2
- package/src/client/chat/index.ts +1 -0
- package/src/client/chat/message-components.tsx +104 -1
- package/src/client/chat/run-recovery.tsx +15 -3
- package/src/client/chat/widgets/DataTableWidget.tsx +10 -29
- package/src/client/chat/widgets/WorkspaceFileWidget.tsx +71 -0
- package/src/client/chat/widgets/builtin-tool-renderers.tsx +22 -0
- package/src/client/chat/widgets/workspace-file-result.ts +49 -0
- package/src/client/embed-auth.ts +2 -0
- package/src/client/org/InvitationBanner.tsx +14 -1
- package/src/client/org/OrgSwitcher.tsx +23 -0
- package/src/client/org/TeamPage.tsx +130 -0
- package/src/client/org/WorkspaceNotice.tsx +85 -0
- package/src/client/org/hooks.ts +14 -0
- package/src/client/org/index.ts +2 -0
- package/src/client/resources/McpIntegrationDialog.tsx +27 -40
- package/src/client/resources/ResourcesPanel.tsx +134 -51
- package/src/client/resources/mcp-integration-catalog.ts +7 -0
- package/src/client/resources/use-resources.ts +6 -0
- package/src/client/use-action.ts +3 -1
- package/src/client/widgets/index.ts +1 -0
- package/src/coding-tools/run-code.ts +2 -1
- package/src/db/client.ts +28 -4
- package/src/deploy/build.ts +31 -3
- package/src/eject/remote-mcp-presets.ts +1 -1
- package/src/index.browser.ts +1 -0
- package/src/index.ts +1 -0
- package/src/integrations/google-docs-poller.ts +3 -0
- package/src/integrations/webhook-handler.ts +28 -11
- package/src/jobs/scheduler.ts +4 -0
- package/src/localization/default-messages.ts +3 -2
- package/src/mcp/build-server.ts +20 -2
- package/src/observability/traces.ts +48 -12
- package/src/org/handlers.ts +52 -1
- package/src/org/migrations.ts +4 -0
- package/src/org/plugin.ts +14 -0
- package/src/org/schema.ts +1 -0
- package/src/org/types.ts +8 -0
- package/src/org/workspace-url.ts +74 -0
- package/src/resources/handlers.ts +35 -5
- package/src/scripts/runner.ts +183 -5
- package/src/server/__snapshots__/agent-chat-plugin.surface.spec.ts.snap +2 -1
- package/src/server/action-routes.ts +32 -2
- package/src/server/agent-chat-plugin.ts +29 -0
- package/src/server/agent-teams.ts +10 -1
- package/src/server/auth.ts +33 -7
- package/src/server/embed-route.ts +9 -0
- package/src/server/embed-session.ts +62 -3
- package/src/server/open-route.ts +20 -6
- package/src/server/prompts/framework-core-compact.ts +1 -1
- package/src/server/prompts/framework-core.ts +1 -0
- package/src/server/request-context.ts +36 -1
- package/src/shared/embed-auth.ts +1 -0
- package/src/shared/html-document.ts +115 -0
- package/src/shared/index.ts +1 -0
- package/src/sharing/access.ts +8 -1
- package/src/sharing/registry.ts +11 -2
- package/src/workspace-files/actions.ts +100 -0
- package/src/workspace-files/tool.ts +4 -0
- package/corpus/templates/design/changelog/2026-07-28-interact-mode-can-preview-designs-in-responsive-device-sizes.md +0 -6
- package/corpus/templates/design/changelog/2026-07-28-interact-mode-now-opens-a-full-screen-responsive-preview-wit.md +0 -6
|
@@ -478,7 +478,7 @@ const enUS = {
|
|
|
478
478
|
zoomIn: "Zoom in",
|
|
479
479
|
zoomOut: "Zoom out",
|
|
480
480
|
zoomToPreset: "Zoom to {{percent}}%",
|
|
481
|
-
exit: "Exit
|
|
481
|
+
exit: "Exit responsive preview",
|
|
482
482
|
},
|
|
483
483
|
screenDeletion: {
|
|
484
484
|
titleOne: "Delete this screen?",
|
|
@@ -945,7 +945,14 @@ const enUS = {
|
|
|
945
945
|
verified: "Source write verified; rollback available",
|
|
946
946
|
rollback: "Rollback",
|
|
947
947
|
keep: "Keep",
|
|
948
|
-
selectorMissing:
|
|
948
|
+
selectorMissing:
|
|
949
|
+
"The selected element has no editable match in this screen's source. If a component renders it, apply the change through the agent.",
|
|
950
|
+
clientRenderedShell:
|
|
951
|
+
"This screen is client-rendered, so the HTML it serves contains no app markup to patch. Ask the agent to apply this change to the component source.",
|
|
952
|
+
snapshotNotLoaded:
|
|
953
|
+
"This screen's source has not loaded yet, so the edit was not written. Wait for the screen to finish loading and try again.",
|
|
954
|
+
selectorAmbiguous:
|
|
955
|
+
"This element is one of {{count}} identical instances in the source, so the change was not written. Ask the agent to scope it to this instance.",
|
|
949
956
|
status: {
|
|
950
957
|
runtime: "Runtime style applied",
|
|
951
958
|
queued: "Writing source patch",
|
|
@@ -958,7 +965,7 @@ const enUS = {
|
|
|
958
965
|
applyAria: "Apply design updates",
|
|
959
966
|
applyButton: "Apply styles",
|
|
960
967
|
previewLabel: "Pending visual preview",
|
|
961
|
-
applyDesignUpdates: "Apply design
|
|
968
|
+
applyDesignUpdates: "Apply design update",
|
|
962
969
|
verifying: "Verifying source and runtime…",
|
|
963
970
|
retryWithAgent: "Retry source verification",
|
|
964
971
|
copyPrompt: "Copy prompt to your agent",
|
|
@@ -976,11 +983,11 @@ const enUS = {
|
|
|
976
983
|
abortedToast: "Pending preview discarded",
|
|
977
984
|
interactBlocked:
|
|
978
985
|
"Apply or abort pending live edits before switching to Interact.",
|
|
979
|
-
leaveTitle: "Apply
|
|
986
|
+
leaveTitle: "Apply design updates before leaving?",
|
|
980
987
|
leaveDescriptionOne:
|
|
981
|
-
"You have {{count}}
|
|
988
|
+
"You have {{count}} session-only design update in the live preview. Leaving or reloading now will discard it.",
|
|
982
989
|
leaveDescriptionOther:
|
|
983
|
-
"You have {{count}}
|
|
990
|
+
"You have {{count}} session-only design updates in the live preview. Leaving or reloading now will discard them.",
|
|
984
991
|
stay: "Stay here",
|
|
985
992
|
leave: "Leave without applying",
|
|
986
993
|
},
|
|
@@ -1078,6 +1085,8 @@ const enUS = {
|
|
|
1078
1085
|
propsCopied: "Properties copied",
|
|
1079
1086
|
propsPasted: "Properties pasted",
|
|
1080
1087
|
primitiveInsertFailed: "Could not add that layer to the screen",
|
|
1088
|
+
designStateLiveScreen:
|
|
1089
|
+
"Design states can't preview on a live screen — its content is the running app, not a document.",
|
|
1081
1090
|
layerMoveFailed: "Could not move that layer",
|
|
1082
1091
|
layerMoveRedirected:
|
|
1083
1092
|
"Moved next to its original spot — the exact drop target isn't editable",
|
|
@@ -1095,7 +1104,9 @@ const enUS = {
|
|
|
1095
1104
|
redoSkippedConcurrentEdit: "Skipped a redo — someone else moved that",
|
|
1096
1105
|
autoLayoutScreensUnsupported: "Add auto layout doesn't apply to screens",
|
|
1097
1106
|
reactSourceAnchorsLoading:
|
|
1098
|
-
"
|
|
1107
|
+
"Can't locate this layer in the source. Try again once the app finishes loading, or ask the agent to make the change.",
|
|
1108
|
+
reactSourceAnchorsUnavailable:
|
|
1109
|
+
"This app doesn't expose source locations to the editor, so this layer can't be traced back to a line. Ask the agent to make the change.",
|
|
1099
1110
|
},
|
|
1100
1111
|
},
|
|
1101
1112
|
layersPanel: {
|
|
@@ -7853,6 +7864,12 @@ const designModeFeatureOverrides = {
|
|
|
7853
7864
|
rollback: "回復",
|
|
7854
7865
|
keep: "保留",
|
|
7855
7866
|
selectorMissing: "選取的元素已不在此畫面中。",
|
|
7867
|
+
clientRenderedShell:
|
|
7868
|
+
"此畫面由用戶端渲染,因此提供的 HTML 不包含可供修補的應用程式標記。請要求代理將此變更套用到元件原始碼。",
|
|
7869
|
+
snapshotNotLoaded:
|
|
7870
|
+
"此畫面的原始碼尚未載入,因此未寫入此編輯。請等待畫面完成載入後再試一次。",
|
|
7871
|
+
selectorAmbiguous:
|
|
7872
|
+
"此元素是原始碼中 {{count}} 個相同實例之一,因此未寫入此變更。請要求代理將範圍限定至此實例。",
|
|
7856
7873
|
status: {
|
|
7857
7874
|
runtime: "已套用即時樣式",
|
|
7858
7875
|
queued: "正在寫入來源補丁",
|
|
@@ -8017,6 +8034,12 @@ const designModeFeatureOverrides = {
|
|
|
8017
8034
|
rollback: "回滚",
|
|
8018
8035
|
keep: "保留",
|
|
8019
8036
|
selectorMissing: "选中的元素已不在此屏幕中。",
|
|
8037
|
+
clientRenderedShell:
|
|
8038
|
+
"此屏幕由客户端渲染,因此其提供的 HTML 不包含可修补的应用标记。请让代理将此更改应用到组件源码。",
|
|
8039
|
+
snapshotNotLoaded:
|
|
8040
|
+
"此屏幕的源码尚未加载,因此未写入此编辑。请等待屏幕完成加载后再试。",
|
|
8041
|
+
selectorAmbiguous:
|
|
8042
|
+
"此元素是源码中 {{count}} 个相同实例之一,因此未写入此更改。请让代理将范围限定到此实例。",
|
|
8020
8043
|
status: {
|
|
8021
8044
|
runtime: "已应用即时样式",
|
|
8022
8045
|
queued: "正在写入源码补丁",
|
|
@@ -8182,6 +8205,12 @@ const designModeFeatureOverrides = {
|
|
|
8182
8205
|
keep: "Conservar",
|
|
8183
8206
|
selectorMissing:
|
|
8184
8207
|
"El elemento seleccionado ya no existe en esta pantalla.",
|
|
8208
|
+
clientRenderedShell:
|
|
8209
|
+
"Esta pantalla se renderiza en el cliente, por lo que el HTML que entrega no contiene marcado de la aplicación que se pueda modificar. Pide al agente que aplique este cambio al código fuente del componente.",
|
|
8210
|
+
snapshotNotLoaded:
|
|
8211
|
+
"El código fuente de esta pantalla aún no se ha cargado, por lo que no se escribió la edición. Espera a que la pantalla termine de cargarse e inténtalo de nuevo.",
|
|
8212
|
+
selectorAmbiguous:
|
|
8213
|
+
"Este elemento es una de {{count}} instancias idénticas en el código fuente, por lo que no se escribió el cambio. Pide al agente que lo limite a esta instancia.",
|
|
8185
8214
|
status: {
|
|
8186
8215
|
runtime: "Estilo aplicado en runtime",
|
|
8187
8216
|
queued: "Escribiendo parche de origen",
|
|
@@ -8368,6 +8397,12 @@ const designModeFeatureOverrides = {
|
|
|
8368
8397
|
rollback: "Revenir",
|
|
8369
8398
|
keep: "Garder",
|
|
8370
8399
|
selectorMissing: "L’élément sélectionné n’existe plus dans cet écran.",
|
|
8400
|
+
clientRenderedShell:
|
|
8401
|
+
"Cet écran est rendu côté client ; le HTML qu’il fournit ne contient donc aucun balisage d’application à modifier. Demandez à l’agent d’appliquer cette modification au code source du composant.",
|
|
8402
|
+
snapshotNotLoaded:
|
|
8403
|
+
"Le code source de cet écran n’est pas encore chargé ; la modification n’a donc pas été écrite. Attendez la fin du chargement de l’écran, puis réessayez.",
|
|
8404
|
+
selectorAmbiguous:
|
|
8405
|
+
"Cet élément est l’une des {{count}} instances identiques dans le code source ; la modification n’a donc pas été écrite. Demandez à l’agent de la limiter à cette instance.",
|
|
8371
8406
|
status: {
|
|
8372
8407
|
runtime: "Style runtime appliqué",
|
|
8373
8408
|
queued: "Écriture du patch source",
|
|
@@ -8551,6 +8586,12 @@ const designModeFeatureOverrides = {
|
|
|
8551
8586
|
keep: "Behalten",
|
|
8552
8587
|
selectorMissing:
|
|
8553
8588
|
"Das ausgewählte Element existiert in diesem Screen nicht mehr.",
|
|
8589
|
+
clientRenderedShell:
|
|
8590
|
+
"Dieser Screen wird clientseitig gerendert. Daher enthält das bereitgestellte HTML kein App-Markup, das gepatcht werden kann. Bitte den Agenten, diese Änderung am Komponentenquellcode vorzunehmen.",
|
|
8591
|
+
snapshotNotLoaded:
|
|
8592
|
+
"Der Quellcode dieses Screens wurde noch nicht geladen, daher wurde die Änderung nicht geschrieben. Warte, bis der Screen vollständig geladen ist, und versuche es erneut.",
|
|
8593
|
+
selectorAmbiguous:
|
|
8594
|
+
"Dieses Element ist eine von {{count}} identischen Instanzen im Quellcode, daher wurde die Änderung nicht geschrieben. Bitte den Agenten, sie auf diese Instanz zu beschränken.",
|
|
8554
8595
|
status: {
|
|
8555
8596
|
runtime: "Runtime-Stil angewendet",
|
|
8556
8597
|
queued: "Quellpatch wird geschrieben",
|
|
@@ -8739,6 +8780,12 @@ const designModeFeatureOverrides = {
|
|
|
8739
8780
|
rollback: "戻す",
|
|
8740
8781
|
keep: "保持",
|
|
8741
8782
|
selectorMissing: "選択した要素はこの画面に存在しません。",
|
|
8783
|
+
clientRenderedShell:
|
|
8784
|
+
"この画面はクライアント側でレンダリングされるため、配信される HTML にはパッチ可能なアプリのマークアップが含まれていません。エージェントに、この変更をコンポーネントのソースへ適用するよう依頼してください。",
|
|
8785
|
+
snapshotNotLoaded:
|
|
8786
|
+
"この画面のソースはまだ読み込まれていないため、編集内容は書き込まれませんでした。画面の読み込みが完了してから、もう一度お試しください。",
|
|
8787
|
+
selectorAmbiguous:
|
|
8788
|
+
"この要素はソース内にある {{count}} 個の同一インスタンスの 1 つであるため、変更は書き込まれませんでした。エージェントに、このインスタンスだけを対象にするよう依頼してください。",
|
|
8742
8789
|
status: {
|
|
8743
8790
|
runtime: "ランタイムスタイル適用済み",
|
|
8744
8791
|
queued: "ソースパッチを書き込み中",
|
|
@@ -8922,6 +8969,12 @@ const designModeFeatureOverrides = {
|
|
|
8922
8969
|
rollback: "롤백",
|
|
8923
8970
|
keep: "유지",
|
|
8924
8971
|
selectorMissing: "선택한 요소가 이 화면에 더 이상 없습니다.",
|
|
8972
|
+
clientRenderedShell:
|
|
8973
|
+
"이 화면은 클라이언트에서 렌더링되므로 제공되는 HTML에 패치할 앱 마크업이 없습니다. 에이전트에게 이 변경 사항을 컴포넌트 소스에 적용하도록 요청하세요.",
|
|
8974
|
+
snapshotNotLoaded:
|
|
8975
|
+
"이 화면의 소스가 아직 로드되지 않아 편집 내용이 기록되지 않았습니다. 화면 로드가 끝난 뒤 다시 시도하세요.",
|
|
8976
|
+
selectorAmbiguous:
|
|
8977
|
+
"이 요소는 소스에 있는 동일한 인스턴스 {{count}}개 중 하나이므로 변경 사항이 기록되지 않았습니다. 에이전트에게 이 인스턴스로 범위를 한정하도록 요청하세요.",
|
|
8925
8978
|
status: {
|
|
8926
8979
|
runtime: "런타임 스타일 적용됨",
|
|
8927
8980
|
queued: "소스 패치 작성 중",
|
|
@@ -9102,6 +9155,12 @@ const designModeFeatureOverrides = {
|
|
|
9102
9155
|
rollback: "Reverter",
|
|
9103
9156
|
keep: "Manter",
|
|
9104
9157
|
selectorMissing: "O elemento selecionado não existe mais nesta tela.",
|
|
9158
|
+
clientRenderedShell:
|
|
9159
|
+
"Esta tela é renderizada no cliente, então o HTML fornecido não contém marcação do app que possa ser modificada. Peça ao agente para aplicar esta alteração ao código-fonte do componente.",
|
|
9160
|
+
snapshotNotLoaded:
|
|
9161
|
+
"O código-fonte desta tela ainda não foi carregado, por isso a edição não foi gravada. Aguarde o carregamento da tela e tente novamente.",
|
|
9162
|
+
selectorAmbiguous:
|
|
9163
|
+
"Este elemento é uma de {{count}} instâncias idênticas no código-fonte, por isso a alteração não foi gravada. Peça ao agente para restringi-la a esta instância.",
|
|
9105
9164
|
status: {
|
|
9106
9165
|
runtime: "Estilo em runtime aplicado",
|
|
9107
9166
|
queued: "Escrevendo patch de fonte",
|
|
@@ -9282,6 +9341,12 @@ const designModeFeatureOverrides = {
|
|
|
9282
9341
|
rollback: "वापस लें",
|
|
9283
9342
|
keep: "रखें",
|
|
9284
9343
|
selectorMissing: "चुना गया तत्व अब इस स्क्रीन में नहीं है।",
|
|
9344
|
+
clientRenderedShell:
|
|
9345
|
+
"यह स्क्रीन क्लाइंट पर रेंडर होती है, इसलिए इसके HTML में पैच करने योग्य ऐप मार्कअप नहीं है। एजेंट से इस बदलाव को कंपोनेंट सोर्स में लागू करने के लिए कहें।",
|
|
9346
|
+
snapshotNotLoaded:
|
|
9347
|
+
"इस स्क्रीन का सोर्स अभी लोड नहीं हुआ है, इसलिए संपादन लिखा नहीं गया। स्क्रीन के लोड होने की प्रतीक्षा करें और फिर से कोशिश करें।",
|
|
9348
|
+
selectorAmbiguous:
|
|
9349
|
+
"यह तत्व सोर्स में {{count}} समान इंस्टेंस में से एक है, इसलिए बदलाव लिखा नहीं गया। एजेंट से इसे इसी इंस्टेंस तक सीमित करने के लिए कहें।",
|
|
9285
9350
|
status: {
|
|
9286
9351
|
runtime: "रनटाइम स्टाइल लागू",
|
|
9287
9352
|
queued: "स्रोत पैच लिखा जा रहा है",
|
|
@@ -9462,6 +9527,12 @@ const designModeFeatureOverrides = {
|
|
|
9462
9527
|
rollback: "تراجع",
|
|
9463
9528
|
keep: "احتفاظ",
|
|
9464
9529
|
selectorMissing: "العنصر المحدد لم يعد موجوداً في هذه الشاشة.",
|
|
9530
|
+
clientRenderedShell:
|
|
9531
|
+
"يتم عرض هذه الشاشة من جهة العميل، لذلك لا يحتوي HTML الذي تقدمه على ترميز للتطبيق يمكن تعديله. اطلب من الوكيل تطبيق هذا التغيير على مصدر المكوّن.",
|
|
9532
|
+
snapshotNotLoaded:
|
|
9533
|
+
"لم يتم تحميل مصدر هذه الشاشة بعد، لذلك لم تتم كتابة التعديل. انتظر حتى يكتمل تحميل الشاشة ثم حاول مرة أخرى.",
|
|
9534
|
+
selectorAmbiguous:
|
|
9535
|
+
"هذا العنصر هو أحد {{count}} مثيلات متطابقة في المصدر، لذلك لم تتم كتابة التغيير. اطلب من الوكيل قصره على هذا المثيل.",
|
|
9465
9536
|
status: {
|
|
9466
9537
|
runtime: "تم تطبيق نمط التشغيل",
|
|
9467
9538
|
queued: "جارٍ كتابة تصحيح المصدر",
|
|
@@ -11166,11 +11237,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11166
11237
|
copiedToast: "樣式提示已複製",
|
|
11167
11238
|
abortedToast: "待處理的預覽已捨棄",
|
|
11168
11239
|
interactBlocked: "請先套用或中止待處理的即時編輯,再切換到互動模式。",
|
|
11169
|
-
leaveTitle: "
|
|
11240
|
+
leaveTitle: "離開前要套用設計更新嗎?",
|
|
11170
11241
|
leaveDescriptionOne:
|
|
11171
|
-
"即時預覽中有 {{count}}
|
|
11242
|
+
"即時預覽中有 {{count}} 個僅限此工作階段的設計更新。現在離開或重新載入會捨棄它。",
|
|
11172
11243
|
leaveDescriptionOther:
|
|
11173
|
-
"即時預覽中有 {{count}}
|
|
11244
|
+
"即時預覽中有 {{count}} 個僅限此工作階段的設計更新。現在離開或重新載入會捨棄它們。",
|
|
11174
11245
|
stay: "留在這裡",
|
|
11175
11246
|
leave: "不套用並離開",
|
|
11176
11247
|
},
|
|
@@ -11199,11 +11270,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11199
11270
|
copiedToast: "样式提示已复制",
|
|
11200
11271
|
abortedToast: "待处理的预览已丢弃",
|
|
11201
11272
|
interactBlocked: "请先应用或中止待处理的实时编辑,再切换到互动模式。",
|
|
11202
|
-
leaveTitle: "
|
|
11273
|
+
leaveTitle: "离开前应用设计更新?",
|
|
11203
11274
|
leaveDescriptionOne:
|
|
11204
|
-
"实时预览中有 {{count}}
|
|
11275
|
+
"实时预览中有 {{count}} 个仅限此会话的设计更新。现在离开或重新加载会将其丢弃。",
|
|
11205
11276
|
leaveDescriptionOther:
|
|
11206
|
-
"实时预览中有 {{count}}
|
|
11277
|
+
"实时预览中有 {{count}} 个仅限此会话的设计更新。现在离开或重新加载会将它们丢弃。",
|
|
11207
11278
|
stay: "留在这里",
|
|
11208
11279
|
leave: "不应用并离开",
|
|
11209
11280
|
},
|
|
@@ -11234,11 +11305,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11234
11305
|
abortedToast: "Vista previa pendiente descartada",
|
|
11235
11306
|
interactBlocked:
|
|
11236
11307
|
"Aplica o cancela las ediciones en vivo pendientes antes de cambiar a Interactuar.",
|
|
11237
|
-
leaveTitle: "¿Aplicar
|
|
11308
|
+
leaveTitle: "¿Aplicar las actualizaciones de diseño antes de salir?",
|
|
11238
11309
|
leaveDescriptionOne:
|
|
11239
|
-
"Tienes {{count}}
|
|
11310
|
+
"Tienes {{count}} actualización de diseño solo para esta sesión en la vista previa en vivo. Si sales o recargas ahora, se descartará.",
|
|
11240
11311
|
leaveDescriptionOther:
|
|
11241
|
-
"Tienes {{count}}
|
|
11312
|
+
"Tienes {{count}} actualizaciones de diseño solo para esta sesión en la vista previa en vivo. Si sales o recargas ahora, se descartarán.",
|
|
11242
11313
|
stay: "Quedarse aquí",
|
|
11243
11314
|
leave: "Salir sin aplicar",
|
|
11244
11315
|
},
|
|
@@ -11269,11 +11340,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11269
11340
|
abortedToast: "Aperçu en attente supprimé",
|
|
11270
11341
|
interactBlocked:
|
|
11271
11342
|
"Appliquez ou annulez les modifications en direct en attente avant de passer à Interagir.",
|
|
11272
|
-
leaveTitle: "Appliquer les
|
|
11343
|
+
leaveTitle: "Appliquer les mises à jour avant de quitter ?",
|
|
11273
11344
|
leaveDescriptionOne:
|
|
11274
|
-
"Vous avez {{count}}
|
|
11345
|
+
"Vous avez {{count}} mise à jour de design limitée à cette session dans l’aperçu en direct. Quitter ou recharger maintenant la supprimera.",
|
|
11275
11346
|
leaveDescriptionOther:
|
|
11276
|
-
"Vous avez {{count}}
|
|
11347
|
+
"Vous avez {{count}} mises à jour de design limitées à cette session dans l’aperçu en direct. Quitter ou recharger maintenant les supprimera.",
|
|
11277
11348
|
stay: "Rester ici",
|
|
11278
11349
|
leave: "Quitter sans appliquer",
|
|
11279
11350
|
},
|
|
@@ -11304,11 +11375,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11304
11375
|
abortedToast: "Ausstehende Vorschau verworfen",
|
|
11305
11376
|
interactBlocked:
|
|
11306
11377
|
"Wende ausstehende Live-Änderungen an oder brich sie ab, bevor du zu Interagieren wechselst.",
|
|
11307
|
-
leaveTitle: "
|
|
11378
|
+
leaveTitle: "Design-Updates vor dem Verlassen anwenden?",
|
|
11308
11379
|
leaveDescriptionOne:
|
|
11309
|
-
"In der Live-Vorschau gibt es {{count}}
|
|
11380
|
+
"In der Live-Vorschau gibt es {{count}} Design-Update nur für diese Sitzung. Verlassen oder Neuladen verwirft es.",
|
|
11310
11381
|
leaveDescriptionOther:
|
|
11311
|
-
"In der Live-Vorschau gibt es {{count}}
|
|
11382
|
+
"In der Live-Vorschau gibt es {{count}} Design-Updates nur für diese Sitzung. Verlassen oder Neuladen verwirft sie.",
|
|
11312
11383
|
stay: "Hier bleiben",
|
|
11313
11384
|
leave: "Ohne Anwenden verlassen",
|
|
11314
11385
|
},
|
|
@@ -11339,11 +11410,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11339
11410
|
abortedToast: "保留中のプレビューを破棄しました",
|
|
11340
11411
|
interactBlocked:
|
|
11341
11412
|
"操作モードに切り替える前に、保留中のライブ編集を適用するか中止してください。",
|
|
11342
|
-
leaveTitle: "
|
|
11413
|
+
leaveTitle: "離れる前にデザインの更新を適用しますか?",
|
|
11343
11414
|
leaveDescriptionOne:
|
|
11344
|
-
"
|
|
11415
|
+
"ライブプレビューにこのセッション限定のデザイン更新が {{count}} 件あります。今離れるか再読み込みすると破棄されます。",
|
|
11345
11416
|
leaveDescriptionOther:
|
|
11346
|
-
"
|
|
11417
|
+
"ライブプレビューにこのセッション限定のデザイン更新が {{count}} 件あります。今離れるか再読み込みすると破棄されます。",
|
|
11347
11418
|
stay: "ここに留まる",
|
|
11348
11419
|
leave: "適用せずに離れる",
|
|
11349
11420
|
},
|
|
@@ -11373,11 +11444,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11373
11444
|
abortedToast: "보류 중인 미리보기를 버렸습니다",
|
|
11374
11445
|
interactBlocked:
|
|
11375
11446
|
"상호작용 모드로 전환하기 전에 보류 중인 라이브 편집을 적용하거나 중단하세요.",
|
|
11376
|
-
leaveTitle: "나가기 전에
|
|
11447
|
+
leaveTitle: "나가기 전에 디자인 업데이트를 적용할까요?",
|
|
11377
11448
|
leaveDescriptionOne:
|
|
11378
|
-
"라이브 미리보기에
|
|
11449
|
+
"라이브 미리보기에 이 세션에서만 유지되는 디자인 업데이트가 {{count}}개 있습니다. 지금 나가거나 다시 로드하면 삭제됩니다.",
|
|
11379
11450
|
leaveDescriptionOther:
|
|
11380
|
-
"라이브 미리보기에
|
|
11451
|
+
"라이브 미리보기에 이 세션에서만 유지되는 디자인 업데이트가 {{count}}개 있습니다. 지금 나가거나 다시 로드하면 삭제됩니다.",
|
|
11381
11452
|
stay: "여기에 머물기",
|
|
11382
11453
|
leave: "적용하지 않고 나가기",
|
|
11383
11454
|
},
|
|
@@ -11408,11 +11479,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11408
11479
|
abortedToast: "Prévia pendente descartada",
|
|
11409
11480
|
interactBlocked:
|
|
11410
11481
|
"Aplique ou cancele as edições ao vivo pendentes antes de mudar para Interagir.",
|
|
11411
|
-
leaveTitle: "Aplicar
|
|
11482
|
+
leaveTitle: "Aplicar as atualizações de design antes de sair?",
|
|
11412
11483
|
leaveDescriptionOne:
|
|
11413
|
-
"Você tem {{count}}
|
|
11484
|
+
"Você tem {{count}} atualização de design somente desta sessão na prévia ao vivo. Sair ou recarregar agora a descartará.",
|
|
11414
11485
|
leaveDescriptionOther:
|
|
11415
|
-
"Você tem {{count}}
|
|
11486
|
+
"Você tem {{count}} atualizações de design somente desta sessão na prévia ao vivo. Sair ou recarregar agora as descartará.",
|
|
11416
11487
|
stay: "Ficar aqui",
|
|
11417
11488
|
leave: "Sair sem aplicar",
|
|
11418
11489
|
},
|
|
@@ -11441,11 +11512,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11441
11512
|
copiedToast: "Style prompt कॉपी हुआ",
|
|
11442
11513
|
abortedToast: "लंबित preview हटा दिया गया",
|
|
11443
11514
|
interactBlocked: "Interact पर जाने से पहले लंबित live edits लागू करें या रोकें।",
|
|
11444
|
-
leaveTitle: "छोड़ने से पहले
|
|
11515
|
+
leaveTitle: "छोड़ने से पहले design updates लागू करें?",
|
|
11445
11516
|
leaveDescriptionOne:
|
|
11446
|
-
"Live preview में {{count}}
|
|
11517
|
+
"Live preview में {{count}} design update केवल इस session के लिए है। अभी छोड़ने या reload करने पर यह हट जाएगा।",
|
|
11447
11518
|
leaveDescriptionOther:
|
|
11448
|
-
"Live preview में {{count}}
|
|
11519
|
+
"Live preview में {{count}} design updates केवल इस session के लिए हैं। अभी छोड़ने या reload करने पर ये हट जाएंगे।",
|
|
11449
11520
|
stay: "यहीं रहें",
|
|
11450
11521
|
leave: "बिना लागू किए छोड़ें",
|
|
11451
11522
|
},
|
|
@@ -11475,11 +11546,11 @@ const designPendingVisualStyleOverrides = {
|
|
|
11475
11546
|
abortedToast: "تم تجاهل المعاينة المعلقة",
|
|
11476
11547
|
interactBlocked:
|
|
11477
11548
|
"طبّق التعديلات المباشرة المعلقة أو ألغها قبل الانتقال إلى التفاعل.",
|
|
11478
|
-
leaveTitle: "تطبيق
|
|
11549
|
+
leaveTitle: "تطبيق تحديثات التصميم قبل المغادرة؟",
|
|
11479
11550
|
leaveDescriptionOne:
|
|
11480
|
-
"لديك {{count}}
|
|
11551
|
+
"لديك {{count}} تحديث تصميم خاص بهذه الجلسة في المعاينة المباشرة. ستؤدي المغادرة أو إعادة التحميل الآن إلى تجاهله.",
|
|
11481
11552
|
leaveDescriptionOther:
|
|
11482
|
-
"لديك {{count}}
|
|
11553
|
+
"لديك {{count}} تحديثات تصميم خاصة بهذه الجلسة في المعاينة المباشرة. ستؤدي المغادرة أو إعادة التحميل الآن إلى تجاهلها.",
|
|
11483
11554
|
stay: "البقاء هنا",
|
|
11484
11555
|
leave: "المغادرة دون تطبيق",
|
|
11485
11556
|
},
|
|
@@ -14430,7 +14501,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14430
14501
|
designEditor: {
|
|
14431
14502
|
toasts: {
|
|
14432
14503
|
reactSourceAnchorsLoading:
|
|
14433
|
-
"
|
|
14504
|
+
"无法在源码中定位该图层。请等应用加载完成后重试,或请代理帮你完成此更改。",
|
|
14505
|
+
reactSourceAnchorsUnavailable:
|
|
14506
|
+
"该应用未向编辑器提供源码位置,因此无法把该图层追溯到具体代码行。请让代理完成此更改。",
|
|
14507
|
+
designStateLiveScreen:
|
|
14508
|
+
"实时画面无法预览设计状态 — 它的内容是正在运行的应用,而不是文档。",
|
|
14434
14509
|
},
|
|
14435
14510
|
},
|
|
14436
14511
|
layersPanel: { dragGhostCount: "{{count}} 个图层" },
|
|
@@ -14456,7 +14531,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14456
14531
|
designEditor: {
|
|
14457
14532
|
toasts: {
|
|
14458
14533
|
reactSourceAnchorsLoading:
|
|
14459
|
-
"
|
|
14534
|
+
"No se puede localizar esta capa en el código fuente. Vuelve a intentarlo cuando la aplicación termine de cargar, o pide al agente que haga el cambio.",
|
|
14535
|
+
reactSourceAnchorsUnavailable:
|
|
14536
|
+
"Esta aplicación no expone ubicaciones de código al editor, así que esta capa no se puede rastrear hasta una línea. Pide al agente que haga el cambio.",
|
|
14537
|
+
designStateLiveScreen:
|
|
14538
|
+
"Los estados de diseño no se pueden previsualizar en una pantalla en vivo: su contenido es la app en ejecución, no un documento.",
|
|
14460
14539
|
},
|
|
14461
14540
|
},
|
|
14462
14541
|
layersPanel: { dragGhostCount: "{{count}} capas" },
|
|
@@ -14483,7 +14562,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14483
14562
|
designEditor: {
|
|
14484
14563
|
toasts: {
|
|
14485
14564
|
reactSourceAnchorsLoading:
|
|
14486
|
-
"
|
|
14565
|
+
"Impossible de localiser ce calque dans le code source. Réessayez une fois le chargement de l’application terminé, ou demandez à l’agent d’effectuer ce changement.",
|
|
14566
|
+
reactSourceAnchorsUnavailable:
|
|
14567
|
+
"Cette application n’expose pas les emplacements du code source à l’éditeur : ce calque ne peut donc pas être relié à une ligne. Demandez à l’agent d’effectuer ce changement.",
|
|
14568
|
+
designStateLiveScreen:
|
|
14569
|
+
"Les états de design ne peuvent pas être prévisualisés sur un écran en direct — son contenu est l'application en cours d'exécution, pas un document.",
|
|
14487
14570
|
},
|
|
14488
14571
|
},
|
|
14489
14572
|
layersPanel: { dragGhostCount: "{{count}} calques" },
|
|
@@ -14509,7 +14592,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14509
14592
|
designEditor: {
|
|
14510
14593
|
toasts: {
|
|
14511
14594
|
reactSourceAnchorsLoading:
|
|
14512
|
-
"
|
|
14595
|
+
"Diese Ebene lässt sich im Quellcode nicht finden. Versuche es erneut, sobald die App vollständig geladen ist, oder lass die Änderung vom Agenten vornehmen.",
|
|
14596
|
+
reactSourceAnchorsUnavailable:
|
|
14597
|
+
"Diese App stellt dem Editor keine Quellcode-Positionen bereit, daher lässt sich diese Ebene keiner Zeile zuordnen. Lass die Änderung vom Agenten vornehmen.",
|
|
14598
|
+
designStateLiveScreen:
|
|
14599
|
+
"Design-Zustände lassen sich in einem Live-Screen nicht vorschauen — sein Inhalt ist die laufende App, kein Dokument.",
|
|
14513
14600
|
},
|
|
14514
14601
|
},
|
|
14515
14602
|
layersPanel: { dragGhostCount: "{{count}} Ebenen" },
|
|
@@ -14536,7 +14623,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14536
14623
|
designEditor: {
|
|
14537
14624
|
toasts: {
|
|
14538
14625
|
reactSourceAnchorsLoading:
|
|
14539
|
-
"
|
|
14626
|
+
"このレイヤーのソースが見つかりません。アプリの読み込みが完了してから再度お試しいただくか、エージェントに変更を依頼してください。",
|
|
14627
|
+
reactSourceAnchorsUnavailable:
|
|
14628
|
+
"このアプリはエディターにソース位置を提供していないため、このレイヤーを行にひも付けできません。エージェントに変更を依頼してください。",
|
|
14629
|
+
designStateLiveScreen:
|
|
14630
|
+
"ライブ画面ではデザイン状態をプレビューできません。その内容はドキュメントではなく実行中のアプリです。",
|
|
14540
14631
|
},
|
|
14541
14632
|
},
|
|
14542
14633
|
layersPanel: { dragGhostCount: "{{count}} 個のレイヤー" },
|
|
@@ -14562,7 +14653,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14562
14653
|
designEditor: {
|
|
14563
14654
|
toasts: {
|
|
14564
14655
|
reactSourceAnchorsLoading:
|
|
14565
|
-
"
|
|
14656
|
+
"이 레이어를 소스에서 찾을 수 없습니다. 앱 로딩이 끝난 후 다시 시도하거나, 에이전트에게 변경을 요청하세요.",
|
|
14657
|
+
reactSourceAnchorsUnavailable:
|
|
14658
|
+
"이 앱은 편집기에 소스 위치를 제공하지 않아 이 레이어를 코드 줄과 연결할 수 없습니다. 에이전트에게 변경을 요청하세요.",
|
|
14659
|
+
designStateLiveScreen:
|
|
14660
|
+
"라이브 화면에서는 디자인 상태를 미리 볼 수 없습니다. 콘텐츠가 문서가 아니라 실행 중인 앱입니다.",
|
|
14566
14661
|
},
|
|
14567
14662
|
},
|
|
14568
14663
|
layersPanel: { dragGhostCount: "레이어 {{count}}개" },
|
|
@@ -14588,7 +14683,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14588
14683
|
designEditor: {
|
|
14589
14684
|
toasts: {
|
|
14590
14685
|
reactSourceAnchorsLoading:
|
|
14591
|
-
"
|
|
14686
|
+
"Não foi possível localizar esta camada no código-fonte. Tente novamente quando o app terminar de carregar, ou peça ao agente para fazer essa alteração.",
|
|
14687
|
+
reactSourceAnchorsUnavailable:
|
|
14688
|
+
"Este app não expõe localizações de código ao editor, então esta camada não pode ser associada a uma linha. Peça ao agente para fazer essa alteração.",
|
|
14689
|
+
designStateLiveScreen:
|
|
14690
|
+
"Estados de design não podem ser visualizados em uma tela ao vivo — o conteúdo dela é o app em execução, não um documento.",
|
|
14592
14691
|
},
|
|
14593
14692
|
},
|
|
14594
14693
|
layersPanel: { dragGhostCount: "{{count}} camadas" },
|
|
@@ -14615,7 +14714,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14615
14714
|
designEditor: {
|
|
14616
14715
|
toasts: {
|
|
14617
14716
|
reactSourceAnchorsLoading:
|
|
14618
|
-
"
|
|
14717
|
+
"यह लेयर सोर्स में नहीं मिली। ऐप लोड होने के बाद फिर से कोशिश करें, या एजेंट से यह बदलाव करने को कहें।",
|
|
14718
|
+
reactSourceAnchorsUnavailable:
|
|
14719
|
+
"यह ऐप एडिटर को सोर्स लोकेशन नहीं देता, इसलिए इस लेयर को किसी लाइन से नहीं जोड़ा जा सकता। यह बदलाव एजेंट से कराएँ।",
|
|
14720
|
+
designStateLiveScreen:
|
|
14721
|
+
"लाइव स्क्रीन पर डिज़ाइन स्टेट का पूर्वावलोकन नहीं हो सकता — इसकी सामग्री चल रहा ऐप है, दस्तावेज़ नहीं।",
|
|
14619
14722
|
},
|
|
14620
14723
|
},
|
|
14621
14724
|
layersPanel: { dragGhostCount: "{{count}} लेयर" },
|
|
@@ -14641,7 +14744,11 @@ const designRuntimeIdentityAndBridgeOverrides = {
|
|
|
14641
14744
|
designEditor: {
|
|
14642
14745
|
toasts: {
|
|
14643
14746
|
reactSourceAnchorsLoading:
|
|
14644
|
-
"
|
|
14747
|
+
"تعذر تحديد موقع هذه الطبقة في المصدر. أعد المحاولة بعد اكتمال تحميل التطبيق، أو اطلب من الوكيل إجراء هذا التغيير.",
|
|
14748
|
+
reactSourceAnchorsUnavailable:
|
|
14749
|
+
"لا يوفّر هذا التطبيق مواقع المصدر للمحرر، لذا لا يمكن ربط هذه الطبقة بسطر معيّن. اطلب من الوكيل إجراء هذا التغيير.",
|
|
14750
|
+
designStateLiveScreen:
|
|
14751
|
+
"لا يمكن معاينة حالات التصميم على شاشة حيّة — محتواها هو التطبيق قيد التشغيل، وليس مستندًا.",
|
|
14645
14752
|
},
|
|
14646
14753
|
},
|
|
14647
14754
|
layersPanel: { dragGhostCount: "{{count}} طبقات" },
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Localized strings for ResponsiveInteractBar — the
|
|
2
|
+
* Localized strings for ResponsiveInteractBar — the responsive Interact
|
|
3
3
|
* mode's device/zoom chrome bar.
|
|
4
4
|
* Used in: app/components/design/ResponsiveInteractBar.tsx.
|
|
5
5
|
*/
|
|
@@ -16,7 +16,7 @@ export const responsiveInteractOverrides = {
|
|
|
16
16
|
zoomIn: "Zoom in",
|
|
17
17
|
zoomOut: "Zoom out",
|
|
18
18
|
zoomToPreset: "Zoom to {{percent}}%",
|
|
19
|
-
exit: "Exit
|
|
19
|
+
exit: "Exit responsive preview",
|
|
20
20
|
},
|
|
21
21
|
},
|
|
22
22
|
},
|
|
@@ -32,7 +32,7 @@ export const responsiveInteractOverrides = {
|
|
|
32
32
|
zoomIn: "放大",
|
|
33
33
|
zoomOut: "缩小",
|
|
34
34
|
zoomToPreset: "缩放至 {{percent}}%",
|
|
35
|
-
exit: "
|
|
35
|
+
exit: "退出响应式预览",
|
|
36
36
|
},
|
|
37
37
|
},
|
|
38
38
|
},
|
|
@@ -48,7 +48,7 @@ export const responsiveInteractOverrides = {
|
|
|
48
48
|
zoomIn: "放大",
|
|
49
49
|
zoomOut: "縮小",
|
|
50
50
|
zoomToPreset: "縮放至 {{percent}}%",
|
|
51
|
-
exit: "
|
|
51
|
+
exit: "結束響應式預覽",
|
|
52
52
|
},
|
|
53
53
|
},
|
|
54
54
|
},
|
|
@@ -64,7 +64,7 @@ export const responsiveInteractOverrides = {
|
|
|
64
64
|
zoomIn: "Acercar",
|
|
65
65
|
zoomOut: "Alejar",
|
|
66
66
|
zoomToPreset: "Zoom al {{percent}}%",
|
|
67
|
-
exit: "Salir de la vista previa
|
|
67
|
+
exit: "Salir de la vista previa adaptable",
|
|
68
68
|
},
|
|
69
69
|
},
|
|
70
70
|
},
|
|
@@ -80,7 +80,7 @@ export const responsiveInteractOverrides = {
|
|
|
80
80
|
zoomIn: "Zoomer",
|
|
81
81
|
zoomOut: "Dézoomer",
|
|
82
82
|
zoomToPreset: "Zoom à {{percent}} %",
|
|
83
|
-
exit: "Quitter l'aperçu
|
|
83
|
+
exit: "Quitter l'aperçu adaptatif",
|
|
84
84
|
},
|
|
85
85
|
},
|
|
86
86
|
},
|
|
@@ -96,7 +96,7 @@ export const responsiveInteractOverrides = {
|
|
|
96
96
|
zoomIn: "Vergrößern",
|
|
97
97
|
zoomOut: "Verkleinern",
|
|
98
98
|
zoomToPreset: "Auf {{percent}}% zoomen",
|
|
99
|
-
exit: "
|
|
99
|
+
exit: "Responsive-Vorschau verlassen",
|
|
100
100
|
},
|
|
101
101
|
},
|
|
102
102
|
},
|
|
@@ -112,7 +112,7 @@ export const responsiveInteractOverrides = {
|
|
|
112
112
|
zoomIn: "拡大",
|
|
113
113
|
zoomOut: "縮小",
|
|
114
114
|
zoomToPreset: "{{percent}}% にズーム",
|
|
115
|
-
exit: "
|
|
115
|
+
exit: "レスポンシブプレビューを終了",
|
|
116
116
|
},
|
|
117
117
|
},
|
|
118
118
|
},
|
|
@@ -128,7 +128,7 @@ export const responsiveInteractOverrides = {
|
|
|
128
128
|
zoomIn: "확대",
|
|
129
129
|
zoomOut: "축소",
|
|
130
130
|
zoomToPreset: "{{percent}}%로 확대/축소",
|
|
131
|
-
exit: "
|
|
131
|
+
exit: "반응형 미리보기 종료",
|
|
132
132
|
},
|
|
133
133
|
},
|
|
134
134
|
},
|
|
@@ -144,7 +144,7 @@ export const responsiveInteractOverrides = {
|
|
|
144
144
|
zoomIn: "Aumentar zoom",
|
|
145
145
|
zoomOut: "Diminuir zoom",
|
|
146
146
|
zoomToPreset: "Zoom para {{percent}}%",
|
|
147
|
-
exit: "Sair da visualização
|
|
147
|
+
exit: "Sair da visualização responsiva",
|
|
148
148
|
},
|
|
149
149
|
},
|
|
150
150
|
},
|
|
@@ -160,7 +160,7 @@ export const responsiveInteractOverrides = {
|
|
|
160
160
|
zoomIn: "ज़ूम इन करें",
|
|
161
161
|
zoomOut: "ज़ूम आउट करें",
|
|
162
162
|
zoomToPreset: "{{percent}}% पर ज़ूम करें",
|
|
163
|
-
exit: "
|
|
163
|
+
exit: "रिस्पॉन्सिव पूर्वावलोकन से बाहर निकलें",
|
|
164
164
|
},
|
|
165
165
|
},
|
|
166
166
|
},
|
|
@@ -176,7 +176,7 @@ export const responsiveInteractOverrides = {
|
|
|
176
176
|
zoomIn: "تكبير",
|
|
177
177
|
zoomOut: "تصغير",
|
|
178
178
|
zoomToPreset: "تكبير إلى {{percent}}%",
|
|
179
|
-
exit: "الخروج من المعاينة
|
|
179
|
+
exit: "الخروج من المعاينة المتجاوبة",
|
|
180
180
|
},
|
|
181
181
|
},
|
|
182
182
|
},
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const DESIGN_EDITOR_ROUTE =
|
|
2
|
+
/^\/(?<surface>design|visual-edit)\/(?<designId>[^/?#]+)(?:\/|$)/;
|
|
3
|
+
|
|
4
|
+
export function designEditorRoute(pathname: string): {
|
|
5
|
+
designId: string;
|
|
6
|
+
surface: "design" | "visual-edit";
|
|
7
|
+
} | null {
|
|
8
|
+
const match = DESIGN_EDITOR_ROUTE.exec(pathname);
|
|
9
|
+
const designId = match?.groups?.designId;
|
|
10
|
+
const surface = match?.groups?.surface;
|
|
11
|
+
if (!designId || (surface !== "design" && surface !== "visual-edit")) {
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
try {
|
|
15
|
+
return { designId: decodeURIComponent(designId), surface };
|
|
16
|
+
} catch {
|
|
17
|
+
return null;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export function isDesignEditorRoute(pathname: string): boolean {
|
|
22
|
+
return designEditorRoute(pathname) !== null;
|
|
23
|
+
}
|