tavotto 0.8.0__tar.gz
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.
- tavotto-0.8.0/.gitignore +71 -0
- tavotto-0.8.0/LICENSE +661 -0
- tavotto-0.8.0/PKG-INFO +359 -0
- tavotto-0.8.0/README.md +326 -0
- tavotto-0.8.0/pyproject.toml +85 -0
- tavotto-0.8.0/pytest.ini +6 -0
- tavotto-0.8.0/src/tavotto/__init__.py +8 -0
- tavotto-0.8.0/src/tavotto/__main__.py +9 -0
- tavotto-0.8.0/src/tavotto/app.py +3030 -0
- tavotto-0.8.0/src/tavotto/cli_entry.py +33 -0
- tavotto-0.8.0/src/tavotto/desktop.py +345 -0
- tavotto-0.8.0/src/tavotto/engine/__init__.py +4 -0
- tavotto-0.8.0/src/tavotto/engine/ai_bridge.py +780 -0
- tavotto-0.8.0/src/tavotto/engine/ai_history.py +156 -0
- tavotto-0.8.0/src/tavotto/engine/ai_providers.py +249 -0
- tavotto-0.8.0/src/tavotto/engine/bootstrap.py +246 -0
- tavotto-0.8.0/src/tavotto/engine/brand.py +24 -0
- tavotto-0.8.0/src/tavotto/engine/cli.py +170 -0
- tavotto-0.8.0/src/tavotto/engine/config.py +288 -0
- tavotto-0.8.0/src/tavotto/engine/diagnostics.py +206 -0
- tavotto-0.8.0/src/tavotto/engine/discover.py +825 -0
- tavotto-0.8.0/src/tavotto/engine/handoff.py +470 -0
- tavotto-0.8.0/src/tavotto/engine/locate.py +462 -0
- tavotto-0.8.0/src/tavotto/engine/manifest.py +1081 -0
- tavotto-0.8.0/src/tavotto/engine/overrides.py +2357 -0
- tavotto-0.8.0/src/tavotto/engine/patchspec.py +163 -0
- tavotto-0.8.0/src/tavotto/engine/pathgeom.py +375 -0
- tavotto-0.8.0/src/tavotto/engine/pool.py +1463 -0
- tavotto-0.8.0/src/tavotto/engine/preflight.py +603 -0
- tavotto-0.8.0/src/tavotto/engine/probe.py +106 -0
- tavotto-0.8.0/src/tavotto/engine/profiles.py +178 -0
- tavotto-0.8.0/src/tavotto/engine/registry.py +191 -0
- tavotto-0.8.0/src/tavotto/engine/runtime.py +514 -0
- tavotto-0.8.0/src/tavotto/engine/updater.py +228 -0
- tavotto-0.8.0/src/tavotto/engine/worker.py +671 -0
- tavotto-0.8.0/src/tavotto/engine/workerd_client.py +398 -0
- tavotto-0.8.0/src/tavotto/pdfbackend/__init__.py +43 -0
- tavotto-0.8.0/src/tavotto/pdfbackend/pymupdf_backend.py +574 -0
- tavotto-0.8.0/src/tavotto/profiles/publication.json +189 -0
- tavotto-0.8.0/src/tavotto/richtext.py +103 -0
- tavotto-0.8.0/src/tavotto/web/assets/core-Cb7zNXui.js +1 -0
- tavotto-0.8.0/src/tavotto/web/assets/dist-js-BsNZfC3f.js +1 -0
- tavotto-0.8.0/src/tavotto/web/assets/dist-js-DYF-JYs1.js +1 -0
- tavotto-0.8.0/src/tavotto/web/assets/dist-js-SK22j9uE.js +1 -0
- tavotto-0.8.0/src/tavotto/web/assets/event-BUd3TQ2S.js +1 -0
- tavotto-0.8.0/src/tavotto/web/assets/index-B7bEtc7a.js +90 -0
- tavotto-0.8.0/src/tavotto/web/assets/index-C9Q0qg2F.css +1 -0
- tavotto-0.8.0/src/tavotto/web/index.html +14 -0
- tavotto-0.8.0/tests/conftest.py +31 -0
- tavotto-0.8.0/tests/golden/patch_vectors.json +550 -0
- tavotto-0.8.0/tests/golden/preflight_vectors.json +6894 -0
- tavotto-0.8.0/tests/test_ai_capabilities.py +100 -0
- tavotto-0.8.0/tests/test_ai_history.py +215 -0
- tavotto-0.8.0/tests/test_annotate_asset.py +60 -0
- tavotto-0.8.0/tests/test_autosave.py +120 -0
- tavotto-0.8.0/tests/test_axes_ticks_scale.py +481 -0
- tavotto-0.8.0/tests/test_bootstrap.py +219 -0
- tavotto-0.8.0/tests/test_bundled_runtime.py +840 -0
- tavotto-0.8.0/tests/test_codex_plugin.py +853 -0
- tavotto-0.8.0/tests/test_colorbar_orientation.py +513 -0
- tavotto-0.8.0/tests/test_compose_annotations.py +202 -0
- tavotto-0.8.0/tests/test_compose_arrow.py +83 -0
- tavotto-0.8.0/tests/test_compose_text.py +277 -0
- tavotto-0.8.0/tests/test_desktop_i18n.py +194 -0
- tavotto-0.8.0/tests/test_desktop_sidecar.py +381 -0
- tavotto-0.8.0/tests/test_discover.py +295 -0
- tavotto-0.8.0/tests/test_engine_cache_prune.py +163 -0
- tavotto-0.8.0/tests/test_engine_variants.py +184 -0
- tavotto-0.8.0/tests/test_equivalence_matrix.py +851 -0
- tavotto-0.8.0/tests/test_error_codes.py +86 -0
- tavotto-0.8.0/tests/test_export_endpoint.py +151 -0
- tavotto-0.8.0/tests/test_governance.py +62 -0
- tavotto-0.8.0/tests/test_handoff.py +589 -0
- tavotto-0.8.0/tests/test_install_locate.py +763 -0
- tavotto-0.8.0/tests/test_legend_text.py +186 -0
- tavotto-0.8.0/tests/test_manifest_geometry.py +280 -0
- tavotto-0.8.0/tests/test_mcp_roundtrip.py +328 -0
- tavotto-0.8.0/tests/test_mcp_server.py +649 -0
- tavotto-0.8.0/tests/test_nsis_template.py +486 -0
- tavotto-0.8.0/tests/test_package.py +168 -0
- tavotto-0.8.0/tests/test_patchspec.py +186 -0
- tavotto-0.8.0/tests/test_paths_and_baked.py +251 -0
- tavotto-0.8.0/tests/test_plugin_update_check.py +450 -0
- tavotto-0.8.0/tests/test_preflight.py +279 -0
- tavotto-0.8.0/tests/test_projects.py +600 -0
- tavotto-0.8.0/tests/test_registry.py +79 -0
- tavotto-0.8.0/tests/test_render_cache.py +233 -0
- tavotto-0.8.0/tests/test_runtime_build.py +785 -0
- tavotto-0.8.0/tests/test_source_hygiene.py +61 -0
- tavotto-0.8.0/tests/test_sync_mapping.py +70 -0
- tavotto-0.8.0/tests/test_updater.py +180 -0
- tavotto-0.8.0/tests/test_updater_manifest.py +117 -0
- tavotto-0.8.0/tests/test_versions.py +109 -0
- tavotto-0.8.0/tests/test_windows_regressions.py +1064 -0
- tavotto-0.8.0/tests/test_worker_protocol.py +295 -0
- tavotto-0.8.0/tests/test_worker_roundtrip.py +1824 -0
- tavotto-0.8.0/tests/test_workerd_client.py +298 -0
- tavotto-0.8.0/tests/test_workerd_packaging.py +126 -0
- tavotto-0.8.0/tests/test_workerd_pool.py +395 -0
- tavotto-0.8.0/tests/test_write_back.py +538 -0
- tavotto-0.8.0/web/README.md +87 -0
- tavotto-0.8.0/web/package.json +66 -0
- tavotto-0.8.0/web/pnpm-lock.yaml +4798 -0
- tavotto-0.8.0/web/src/App.tsx +279 -0
- tavotto-0.8.0/web/src/canvas/ArrowView.tsx +112 -0
- tavotto-0.8.0/web/src/canvas/CanvasStage.tsx +331 -0
- tavotto-0.8.0/web/src/canvas/ObjectView.tsx +129 -0
- tavotto-0.8.0/web/src/canvas/OverlaySvg.tsx +844 -0
- tavotto-0.8.0/web/src/canvas/PageSheet.tsx +67 -0
- tavotto-0.8.0/web/src/canvas/PanelView.tsx +578 -0
- tavotto-0.8.0/web/src/canvas/QuickEdit.tsx +493 -0
- tavotto-0.8.0/web/src/canvas/Rulers.tsx +166 -0
- tavotto-0.8.0/web/src/canvas/ShapeView.tsx +152 -0
- tavotto-0.8.0/web/src/canvas/TextView.tsx +163 -0
- tavotto-0.8.0/web/src/canvas/axesCompanionDrag.test.tsx +373 -0
- tavotto-0.8.0/web/src/canvas/elementArrowEditing.test.tsx +364 -0
- tavotto-0.8.0/web/src/canvas/elementPathSelection.test.tsx +358 -0
- tavotto-0.8.0/web/src/canvas/elementPreview.ts +54 -0
- tavotto-0.8.0/web/src/canvas/fakeRealtimeDrag.test.tsx +468 -0
- tavotto-0.8.0/web/src/canvas/groupLockDrag.test.ts +170 -0
- tavotto-0.8.0/web/src/canvas/hitTest.test.tsx +260 -0
- tavotto-0.8.0/web/src/canvas/interactions.ts +1342 -0
- tavotto-0.8.0/web/src/canvas/lineEndpoints.test.tsx +267 -0
- tavotto-0.8.0/web/src/canvas/panelCrossfade.test.tsx +139 -0
- tavotto-0.8.0/web/src/canvas/panelVariantDisplay.test.tsx +135 -0
- tavotto-0.8.0/web/src/canvas/quickEditStore.ts +32 -0
- tavotto-0.8.0/web/src/canvas/rotatedObjects.test.tsx +402 -0
- tavotto-0.8.0/web/src/canvas/shapeOutline.test.tsx +197 -0
- tavotto-0.8.0/web/src/canvas/shiftConstraints.test.tsx +200 -0
- tavotto-0.8.0/web/src/canvas/wheelInput.test.tsx +141 -0
- tavotto-0.8.0/web/src/components/CanvasTabs.tsx +257 -0
- tavotto-0.8.0/web/src/components/CommandPalette.tsx +231 -0
- tavotto-0.8.0/web/src/components/ConfirmDialog.tsx +46 -0
- tavotto-0.8.0/web/src/components/EngineEnvironmentCard.tsx +231 -0
- tavotto-0.8.0/web/src/components/ErrorBoundary.tsx +64 -0
- tavotto-0.8.0/web/src/components/ExportDialog.test.tsx +243 -0
- tavotto-0.8.0/web/src/components/ExportDialog.tsx +790 -0
- tavotto-0.8.0/web/src/components/LayoutDialog.tsx +164 -0
- tavotto-0.8.0/web/src/components/PresetsDialog.tsx +62 -0
- tavotto-0.8.0/web/src/components/ProjectPicker.tsx +418 -0
- tavotto-0.8.0/web/src/components/ProjectSwitcher.tsx +158 -0
- tavotto-0.8.0/web/src/components/RegistryDialog.tsx +309 -0
- tavotto-0.8.0/web/src/components/RelinkDialog.tsx +106 -0
- tavotto-0.8.0/web/src/components/SettingsDialog.tsx +1130 -0
- tavotto-0.8.0/web/src/components/ShortcutHelp.tsx +106 -0
- tavotto-0.8.0/web/src/components/StatusBar.tsx +123 -0
- tavotto-0.8.0/web/src/components/StyleDialog.tsx +601 -0
- tavotto-0.8.0/web/src/components/TopBar.tsx +535 -0
- tavotto-0.8.0/web/src/components/UpdateBanner.tsx +26 -0
- tavotto-0.8.0/web/src/components/VersionDialog.tsx +636 -0
- tavotto-0.8.0/web/src/components/ai/AiPanel.tsx +981 -0
- tavotto-0.8.0/web/src/components/ai/DiffView.tsx +92 -0
- tavotto-0.8.0/web/src/components/ai/Markdown.tsx +107 -0
- tavotto-0.8.0/web/src/components/inspector/ArrangeSection.tsx +493 -0
- tavotto-0.8.0/web/src/components/inspector/CanvasPage.tsx +322 -0
- tavotto-0.8.0/web/src/components/inspector/ElementInspector.tsx +1364 -0
- tavotto-0.8.0/web/src/components/inspector/HistoryPanel.tsx +253 -0
- tavotto-0.8.0/web/src/components/inspector/Inspector.tsx +411 -0
- tavotto-0.8.0/web/src/components/inspector/MmField.tsx +43 -0
- tavotto-0.8.0/web/src/components/inspector/PanelSection.tsx +697 -0
- tavotto-0.8.0/web/src/components/inspector/StrokeSection.tsx +236 -0
- tavotto-0.8.0/web/src/components/inspector/SyncOverridesButton.tsx +314 -0
- tavotto-0.8.0/web/src/components/inspector/TextActions.tsx +112 -0
- tavotto-0.8.0/web/src/components/inspector/TextSection.test.tsx +226 -0
- tavotto-0.8.0/web/src/components/inspector/TextSection.tsx +418 -0
- tavotto-0.8.0/web/src/components/inspector/TextStyleBar.tsx +396 -0
- tavotto-0.8.0/web/src/components/inspector/TransformSection.tsx +115 -0
- tavotto-0.8.0/web/src/components/inspector/UpdateSourceButton.tsx +451 -0
- tavotto-0.8.0/web/src/components/inspector/WriteBackDialog.test.tsx +221 -0
- tavotto-0.8.0/web/src/components/inspector/common.ts +19 -0
- tavotto-0.8.0/web/src/components/inspector/elementStylePreview.test.tsx +534 -0
- tavotto-0.8.0/web/src/components/inspector/elementWrite.ts +145 -0
- tavotto-0.8.0/web/src/components/inspector/roles/registry.test.ts +173 -0
- tavotto-0.8.0/web/src/components/inspector/roles/registry.ts +251 -0
- tavotto-0.8.0/web/src/components/inspector/textStyleBar.test.tsx +332 -0
- tavotto-0.8.0/web/src/components/inspector/tickValuesSnapshot.test.tsx +187 -0
- tavotto-0.8.0/web/src/components/left/AssetBrowser.tsx +601 -0
- tavotto-0.8.0/web/src/components/left/CanvasList.tsx +273 -0
- tavotto-0.8.0/web/src/components/left/ElementTree.tsx +664 -0
- tavotto-0.8.0/web/src/components/left/LayerTree.tsx +425 -0
- tavotto-0.8.0/web/src/components/left/LeftPanel.tsx +136 -0
- tavotto-0.8.0/web/src/components/left/LeftRail.tsx +77 -0
- tavotto-0.8.0/web/src/components/ui/BrandMark.tsx +106 -0
- tavotto-0.8.0/web/src/components/ui/Button.tsx +136 -0
- tavotto-0.8.0/web/src/components/ui/Dialog.tsx +94 -0
- tavotto-0.8.0/web/src/components/ui/EmptyState.tsx +31 -0
- tavotto-0.8.0/web/src/components/ui/Field.tsx +106 -0
- tavotto-0.8.0/web/src/components/ui/Input.tsx +260 -0
- tavotto-0.8.0/web/src/components/ui/Menu.tsx +103 -0
- tavotto-0.8.0/web/src/components/ui/Popover.tsx +45 -0
- tavotto-0.8.0/web/src/components/ui/Segmented.tsx +80 -0
- tavotto-0.8.0/web/src/components/ui/Select.tsx +80 -0
- tavotto-0.8.0/web/src/components/ui/Toggle.tsx +39 -0
- tavotto-0.8.0/web/src/components/ui/Tooltip.tsx +44 -0
- tavotto-0.8.0/web/src/hooks/useBuildVersion.ts +50 -0
- tavotto-0.8.0/web/src/hooks/useEngineSync.test.ts +319 -0
- tavotto-0.8.0/web/src/hooks/useEngineSync.ts +224 -0
- tavotto-0.8.0/web/src/hooks/useKeyboard.test.ts +145 -0
- tavotto-0.8.0/web/src/hooks/useKeyboard.ts +266 -0
- tavotto-0.8.0/web/src/hooks/usePruneSelection.ts +22 -0
- tavotto-0.8.0/web/src/hooks/useServerEvents.ts +130 -0
- tavotto-0.8.0/web/src/hooks/useVersionCheckpoints.ts +42 -0
- tavotto-0.8.0/web/src/hooks/useWorkspaceLayout.ts +19 -0
- tavotto-0.8.0/web/src/i18n/format.ts +43 -0
- tavotto-0.8.0/web/src/i18n/index.ts +159 -0
- tavotto-0.8.0/web/src/i18n/locale.test.ts +202 -0
- tavotto-0.8.0/web/src/i18n/locale.ts +104 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/ai.json +119 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/common.json +51 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/dialogs.json +622 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/errors.json +117 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/inspector.json +957 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/project.json +58 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/shortcuts.json +42 -0
- tavotto-0.8.0/web/src/i18n/locales/en-US/workspace.json +443 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/ai.json +117 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/common.json +50 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/dialogs.json +609 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/errors.json +117 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/inspector.json +933 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/project.json +57 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/shortcuts.json +42 -0
- tavotto-0.8.0/web/src/i18n/locales/zh-CN/workspace.json +412 -0
- tavotto-0.8.0/web/src/i18n/message.ts +48 -0
- tavotto-0.8.0/web/src/i18n/overflow.test.tsx +174 -0
- tavotto-0.8.0/web/src/i18n/react.ts +22 -0
- tavotto-0.8.0/web/src/i18n/render.test.tsx +204 -0
- tavotto-0.8.0/web/src/i18n/resources.d.ts +2340 -0
- tavotto-0.8.0/web/src/i18n/resources.test.ts +231 -0
- tavotto-0.8.0/web/src/index.css +314 -0
- tavotto-0.8.0/web/src/lib/__fixtures__/matplotlibSvg.ts +520 -0
- tavotto-0.8.0/web/src/lib/annotations.test.ts +73 -0
- tavotto-0.8.0/web/src/lib/api.ts +1349 -0
- tavotto-0.8.0/web/src/lib/axesLayout.ts +175 -0
- tavotto-0.8.0/web/src/lib/backendError.test.ts +67 -0
- tavotto-0.8.0/web/src/lib/brand.ts +16 -0
- tavotto-0.8.0/web/src/lib/clipboard.test.ts +155 -0
- tavotto-0.8.0/web/src/lib/clipboard.ts +385 -0
- tavotto-0.8.0/web/src/lib/clipboardEvents.test.ts +116 -0
- tavotto-0.8.0/web/src/lib/clipboardFormat.test.ts +29 -0
- tavotto-0.8.0/web/src/lib/desktop.test.ts +100 -0
- tavotto-0.8.0/web/src/lib/desktop.ts +221 -0
- tavotto-0.8.0/web/src/lib/docPresence.test.ts +119 -0
- tavotto-0.8.0/web/src/lib/docPresence.ts +86 -0
- tavotto-0.8.0/web/src/lib/elementGeom.ts +433 -0
- tavotto-0.8.0/web/src/lib/engineTransport.ts +62 -0
- tavotto-0.8.0/web/src/lib/exportDefaults.ts +52 -0
- tavotto-0.8.0/web/src/lib/exportPayload.ts +88 -0
- tavotto-0.8.0/web/src/lib/fitGuard.test.ts +39 -0
- tavotto-0.8.0/web/src/lib/fitGuard.ts +27 -0
- tavotto-0.8.0/web/src/lib/flip.test.tsx +259 -0
- tavotto-0.8.0/web/src/lib/geometry.ts +320 -0
- tavotto-0.8.0/web/src/lib/id.ts +8 -0
- tavotto-0.8.0/web/src/lib/layoutGroups.ts +163 -0
- tavotto-0.8.0/web/src/lib/migrate.ts +102 -0
- tavotto-0.8.0/web/src/lib/mixedAlignWriteBack.test.ts +135 -0
- tavotto-0.8.0/web/src/lib/modKey.test.ts +125 -0
- tavotto-0.8.0/web/src/lib/motion.test.tsx +204 -0
- tavotto-0.8.0/web/src/lib/motion.ts +268 -0
- tavotto-0.8.0/web/src/lib/numberList.test.ts +33 -0
- tavotto-0.8.0/web/src/lib/numberList.ts +19 -0
- tavotto-0.8.0/web/src/lib/openRequest.test.ts +164 -0
- tavotto-0.8.0/web/src/lib/openRequest.ts +133 -0
- tavotto-0.8.0/web/src/lib/pathGeom.test.ts +284 -0
- tavotto-0.8.0/web/src/lib/pathGeom.ts +308 -0
- tavotto-0.8.0/web/src/lib/preflight.golden.test.ts +56 -0
- tavotto-0.8.0/web/src/lib/preflight.ts +881 -0
- tavotto-0.8.0/web/src/lib/presets.ts +228 -0
- tavotto-0.8.0/web/src/lib/previewTrace.ts +118 -0
- tavotto-0.8.0/web/src/lib/profile.test.ts +119 -0
- tavotto-0.8.0/web/src/lib/profile.ts +194 -0
- tavotto-0.8.0/web/src/lib/richText.test.ts +136 -0
- tavotto-0.8.0/web/src/lib/richText.ts +216 -0
- tavotto-0.8.0/web/src/lib/session.test.ts +53 -0
- tavotto-0.8.0/web/src/lib/session.ts +67 -0
- tavotto-0.8.0/web/src/lib/shapeGeometry.ts +150 -0
- tavotto-0.8.0/web/src/lib/stylePresets.ts +220 -0
- tavotto-0.8.0/web/src/lib/svgStyle.test.ts +473 -0
- tavotto-0.8.0/web/src/lib/svgStyle.ts +331 -0
- tavotto-0.8.0/web/src/lib/units.ts +38 -0
- tavotto-0.8.0/web/src/lib/utils.ts +36 -0
- tavotto-0.8.0/web/src/lib/wheel.test.ts +69 -0
- tavotto-0.8.0/web/src/lib/wheel.ts +57 -0
- tavotto-0.8.0/web/src/lib/writeBackAnnotations.ts +109 -0
- tavotto-0.8.0/web/src/main.tsx +48 -0
- tavotto-0.8.0/web/src/mcp/McpApp.tsx +423 -0
- tavotto-0.8.0/web/src/mcp/appsBridge.ts +236 -0
- tavotto-0.8.0/web/src/mcp/main.tsx +123 -0
- tavotto-0.8.0/web/src/mcp/session.test.ts +245 -0
- tavotto-0.8.0/web/src/mcp/session.ts +230 -0
- tavotto-0.8.0/web/src/store/actions.test.ts +108 -0
- tavotto-0.8.0/web/src/store/actions.ts +1435 -0
- tavotto-0.8.0/web/src/store/aiStore.test.ts +77 -0
- tavotto-0.8.0/web/src/store/aiStore.ts +302 -0
- tavotto-0.8.0/web/src/store/assetStore.ts +82 -0
- tavotto-0.8.0/web/src/store/canvasSession.ts +105 -0
- tavotto-0.8.0/web/src/store/documentStore.test.ts +672 -0
- tavotto-0.8.0/web/src/store/documentStore.ts +851 -0
- tavotto-0.8.0/web/src/store/envStore.test.ts +141 -0
- tavotto-0.8.0/web/src/store/envStore.ts +73 -0
- tavotto-0.8.0/web/src/store/interactionStore.ts +104 -0
- tavotto-0.8.0/web/src/store/projectStore.test.ts +184 -0
- tavotto-0.8.0/web/src/store/projectStore.ts +151 -0
- tavotto-0.8.0/web/src/store/renderStore.test.ts +148 -0
- tavotto-0.8.0/web/src/store/renderStore.ts +419 -0
- tavotto-0.8.0/web/src/store/selectionStore.ts +37 -0
- tavotto-0.8.0/web/src/store/svgPreviewStore.test.ts +361 -0
- tavotto-0.8.0/web/src/store/svgPreviewStore.ts +465 -0
- tavotto-0.8.0/web/src/store/uiStore.test.ts +63 -0
- tavotto-0.8.0/web/src/store/uiStore.ts +399 -0
- tavotto-0.8.0/web/src/store/updateStore.ts +170 -0
- tavotto-0.8.0/web/src/store/viewportStore.test.ts +148 -0
- tavotto-0.8.0/web/src/store/viewportStore.ts +253 -0
- tavotto-0.8.0/web/src/test/setup.ts +39 -0
- tavotto-0.8.0/web/src/types/document.test.ts +72 -0
- tavotto-0.8.0/web/src/types/document.ts +444 -0
tavotto-0.8.0/.gitignore
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
.venv/
|
|
3
|
+
__pycache__/
|
|
4
|
+
*.pyc
|
|
5
|
+
|
|
6
|
+
# 打包产物
|
|
7
|
+
/dist/
|
|
8
|
+
/build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
|
|
11
|
+
# Windows 桌面版的内置渲染 runtime(scripts/build_worker_runtime.py 生成):
|
|
12
|
+
# 200 MiB 上下的二进制,随安装包分发但**绝不进 Git**。
|
|
13
|
+
# 版本锁在 packaging/runtime-lock.json 里,那个才是要提交的东西。
|
|
14
|
+
/runtime/
|
|
15
|
+
|
|
16
|
+
# 前端构建产物(scripts/build_frontend.py 生成,随 wheel 分发但不进仓库)
|
|
17
|
+
/src/tavotto/web/
|
|
18
|
+
web/node_modules/
|
|
19
|
+
web/dist/
|
|
20
|
+
web/test-results/
|
|
21
|
+
web/playwright-report/
|
|
22
|
+
# 从仓库根跑 `npx playwright test` 时产物落在根上,同样挡住
|
|
23
|
+
# (曾被 `git add -A` 顺手收进一次提交)
|
|
24
|
+
test-results/
|
|
25
|
+
playwright-report/
|
|
26
|
+
|
|
27
|
+
# 运行时数据:装成包后一律落在用户数据目录
|
|
28
|
+
# (macOS ~/Library/Application Support/Tavotto、Linux ~/.local/share/tavotto、
|
|
29
|
+
# Windows %LOCALAPPDATA%\Tavotto)。下面几个是旧版本在仓库里留下的残余。
|
|
30
|
+
/cache/
|
|
31
|
+
/exports/
|
|
32
|
+
/layouts/
|
|
33
|
+
/baked_overrides.json
|
|
34
|
+
*.log
|
|
35
|
+
.pytest_cache/
|
|
36
|
+
|
|
37
|
+
# Tauri 桌面壳(src-tauri/ 源码进仓库;构建产物与 CLI 生成的 schema 不进)
|
|
38
|
+
src-tauri/target/
|
|
39
|
+
src-tauri/gen/
|
|
40
|
+
|
|
41
|
+
# Rust supervisor tavotto-workerd(workerd/ 源码进仓库;构建产物不进)
|
|
42
|
+
workerd/target/
|
|
43
|
+
|
|
44
|
+
# 工具与系统
|
|
45
|
+
.gstack/
|
|
46
|
+
.DS_Store
|
|
47
|
+
|
|
48
|
+
# 开发期界面验证截图:含真实研究图,不进公开仓
|
|
49
|
+
/docs/verify/
|
|
50
|
+
|
|
51
|
+
# 内部执行清单 / 路线图,不进公开仓。
|
|
52
|
+
# 旧名一并保留:这两条挡的是工作副本里的真实文件,改名不等于用户本机的文件也改了名。
|
|
53
|
+
/docs/MAGPLOT_RENAME_AND_MATURITY_PLAN.md
|
|
54
|
+
/docs/TAVOTTO_RENAME_AND_MATURITY_PLAN.md
|
|
55
|
+
.impeccable/
|
|
56
|
+
|
|
57
|
+
# CodeGraph 本地索引(可再生)
|
|
58
|
+
.codegraph/
|
|
59
|
+
|
|
60
|
+
# 品牌源文件(设计稿,随手放在工作副本里;产物由 scripts/build_brand_assets.py 生成)
|
|
61
|
+
/logo.ai
|
|
62
|
+
/logo.pdf
|
|
63
|
+
/Magplot Brand System.html
|
|
64
|
+
/Tavotto Brand System.html
|
|
65
|
+
|
|
66
|
+
# MCP App 画布的中间产物(最终单文件在 codex-plugin/mcp/widget/canvas.html,那个进 git)
|
|
67
|
+
web/dist-mcp/
|
|
68
|
+
|
|
69
|
+
# 冒烟 / 手工跑示例项目时,导出与画布布局落在项目自己的 tavottofile/ 里
|
|
70
|
+
# (engine/config.project_export_dir)。`git add -A` 会顺手把它收进提交。
|
|
71
|
+
/examples/*/tavottofile/
|