@usejarvis/brain 0.1.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/LICENSE +153 -0
- package/README.md +278 -0
- package/bin/jarvis.ts +413 -0
- package/package.json +74 -0
- package/scripts/ensure-bun.cjs +8 -0
- package/src/actions/README.md +421 -0
- package/src/actions/app-control/desktop-controller.test.ts +26 -0
- package/src/actions/app-control/desktop-controller.ts +438 -0
- package/src/actions/app-control/interface.ts +64 -0
- package/src/actions/app-control/linux.ts +273 -0
- package/src/actions/app-control/macos.ts +54 -0
- package/src/actions/app-control/sidecar-launcher.test.ts +23 -0
- package/src/actions/app-control/sidecar-launcher.ts +286 -0
- package/src/actions/app-control/windows.ts +44 -0
- package/src/actions/browser/cdp.ts +138 -0
- package/src/actions/browser/chrome-launcher.ts +252 -0
- package/src/actions/browser/session.ts +437 -0
- package/src/actions/browser/stealth.ts +49 -0
- package/src/actions/index.ts +20 -0
- package/src/actions/terminal/executor.ts +157 -0
- package/src/actions/terminal/wsl-bridge.ts +126 -0
- package/src/actions/test.ts +93 -0
- package/src/actions/tools/agents.ts +321 -0
- package/src/actions/tools/builtin.ts +846 -0
- package/src/actions/tools/commitments.ts +192 -0
- package/src/actions/tools/content.ts +217 -0
- package/src/actions/tools/delegate.ts +147 -0
- package/src/actions/tools/desktop.test.ts +55 -0
- package/src/actions/tools/desktop.ts +305 -0
- package/src/actions/tools/goals.ts +376 -0
- package/src/actions/tools/local-tools-guard.ts +20 -0
- package/src/actions/tools/registry.ts +171 -0
- package/src/actions/tools/research.ts +111 -0
- package/src/actions/tools/sidecar-list.ts +57 -0
- package/src/actions/tools/sidecar-route.ts +105 -0
- package/src/actions/tools/workflows.ts +216 -0
- package/src/agents/agent.ts +132 -0
- package/src/agents/delegation.ts +107 -0
- package/src/agents/hierarchy.ts +113 -0
- package/src/agents/index.ts +19 -0
- package/src/agents/messaging.ts +125 -0
- package/src/agents/orchestrator.ts +576 -0
- package/src/agents/role-discovery.ts +61 -0
- package/src/agents/sub-agent-runner.ts +307 -0
- package/src/agents/task-manager.ts +151 -0
- package/src/authority/approval-delivery.ts +59 -0
- package/src/authority/approval.ts +196 -0
- package/src/authority/audit.ts +158 -0
- package/src/authority/authority.test.ts +519 -0
- package/src/authority/deferred-executor.ts +103 -0
- package/src/authority/emergency.ts +66 -0
- package/src/authority/engine.ts +297 -0
- package/src/authority/index.ts +12 -0
- package/src/authority/learning.ts +111 -0
- package/src/authority/tool-action-map.ts +74 -0
- package/src/awareness/analytics.ts +466 -0
- package/src/awareness/awareness.test.ts +332 -0
- package/src/awareness/capture-engine.ts +305 -0
- package/src/awareness/context-graph.ts +130 -0
- package/src/awareness/context-tracker.ts +349 -0
- package/src/awareness/index.ts +25 -0
- package/src/awareness/intelligence.ts +321 -0
- package/src/awareness/ocr-engine.ts +88 -0
- package/src/awareness/service.ts +528 -0
- package/src/awareness/struggle-detector.ts +342 -0
- package/src/awareness/suggestion-engine.ts +476 -0
- package/src/awareness/types.ts +201 -0
- package/src/cli/autostart.ts +241 -0
- package/src/cli/deps.ts +449 -0
- package/src/cli/doctor.ts +230 -0
- package/src/cli/helpers.ts +401 -0
- package/src/cli/onboard.ts +580 -0
- package/src/comms/README.md +329 -0
- package/src/comms/auth-error.html +48 -0
- package/src/comms/channels/discord.ts +228 -0
- package/src/comms/channels/signal.ts +56 -0
- package/src/comms/channels/telegram.ts +316 -0
- package/src/comms/channels/whatsapp.ts +60 -0
- package/src/comms/channels.test.ts +173 -0
- package/src/comms/desktop-notify.ts +114 -0
- package/src/comms/example.ts +129 -0
- package/src/comms/index.ts +129 -0
- package/src/comms/streaming.ts +142 -0
- package/src/comms/voice.test.ts +152 -0
- package/src/comms/voice.ts +291 -0
- package/src/comms/websocket.test.ts +409 -0
- package/src/comms/websocket.ts +473 -0
- package/src/config/README.md +387 -0
- package/src/config/index.ts +6 -0
- package/src/config/loader.test.ts +137 -0
- package/src/config/loader.ts +142 -0
- package/src/config/types.ts +260 -0
- package/src/daemon/README.md +232 -0
- package/src/daemon/agent-service-interface.ts +9 -0
- package/src/daemon/agent-service.ts +600 -0
- package/src/daemon/api-routes.ts +2119 -0
- package/src/daemon/background-agent-service.ts +396 -0
- package/src/daemon/background-agent.test.ts +78 -0
- package/src/daemon/channel-service.ts +201 -0
- package/src/daemon/commitment-executor.ts +297 -0
- package/src/daemon/event-classifier.ts +239 -0
- package/src/daemon/event-coalescer.ts +123 -0
- package/src/daemon/event-reactor.ts +214 -0
- package/src/daemon/health.ts +220 -0
- package/src/daemon/index.ts +1004 -0
- package/src/daemon/llm-settings.ts +316 -0
- package/src/daemon/observer-service.ts +150 -0
- package/src/daemon/pid.ts +98 -0
- package/src/daemon/research-queue.ts +155 -0
- package/src/daemon/services.ts +175 -0
- package/src/daemon/ws-service.ts +788 -0
- package/src/goals/accountability.ts +240 -0
- package/src/goals/awareness-bridge.ts +185 -0
- package/src/goals/estimator.ts +185 -0
- package/src/goals/events.ts +28 -0
- package/src/goals/goals.test.ts +400 -0
- package/src/goals/integration.test.ts +329 -0
- package/src/goals/nl-builder.test.ts +220 -0
- package/src/goals/nl-builder.ts +256 -0
- package/src/goals/rhythm.test.ts +177 -0
- package/src/goals/rhythm.ts +275 -0
- package/src/goals/service.test.ts +135 -0
- package/src/goals/service.ts +348 -0
- package/src/goals/types.ts +106 -0
- package/src/goals/workflow-bridge.ts +96 -0
- package/src/integrations/google-api.ts +134 -0
- package/src/integrations/google-auth.ts +175 -0
- package/src/llm/README.md +291 -0
- package/src/llm/anthropic.ts +386 -0
- package/src/llm/gemini.ts +371 -0
- package/src/llm/index.ts +19 -0
- package/src/llm/manager.ts +153 -0
- package/src/llm/ollama.ts +307 -0
- package/src/llm/openai.ts +350 -0
- package/src/llm/provider.test.ts +231 -0
- package/src/llm/provider.ts +60 -0
- package/src/llm/test.ts +87 -0
- package/src/observers/README.md +278 -0
- package/src/observers/calendar.ts +113 -0
- package/src/observers/clipboard.ts +136 -0
- package/src/observers/email.ts +109 -0
- package/src/observers/example.ts +58 -0
- package/src/observers/file-watcher.ts +124 -0
- package/src/observers/index.ts +159 -0
- package/src/observers/notifications.ts +197 -0
- package/src/observers/observers.test.ts +203 -0
- package/src/observers/processes.ts +225 -0
- package/src/personality/README.md +61 -0
- package/src/personality/adapter.ts +196 -0
- package/src/personality/index.ts +20 -0
- package/src/personality/learner.ts +209 -0
- package/src/personality/model.ts +132 -0
- package/src/personality/personality.test.ts +236 -0
- package/src/roles/README.md +252 -0
- package/src/roles/authority.ts +119 -0
- package/src/roles/example-usage.ts +198 -0
- package/src/roles/index.ts +42 -0
- package/src/roles/loader.ts +143 -0
- package/src/roles/prompt-builder.ts +194 -0
- package/src/roles/test-multi.ts +102 -0
- package/src/roles/test-role.yaml +77 -0
- package/src/roles/test-utils.ts +93 -0
- package/src/roles/test.ts +106 -0
- package/src/roles/tool-guide.ts +190 -0
- package/src/roles/types.ts +36 -0
- package/src/roles/utils.ts +200 -0
- package/src/scripts/google-setup.ts +168 -0
- package/src/sidecar/connection.ts +179 -0
- package/src/sidecar/index.ts +6 -0
- package/src/sidecar/manager.ts +542 -0
- package/src/sidecar/protocol.ts +85 -0
- package/src/sidecar/rpc.ts +161 -0
- package/src/sidecar/scheduler.ts +136 -0
- package/src/sidecar/types.ts +112 -0
- package/src/sidecar/validator.ts +144 -0
- package/src/vault/README.md +110 -0
- package/src/vault/awareness.ts +341 -0
- package/src/vault/commitments.ts +299 -0
- package/src/vault/content-pipeline.ts +260 -0
- package/src/vault/conversations.ts +173 -0
- package/src/vault/entities.ts +180 -0
- package/src/vault/extractor.test.ts +356 -0
- package/src/vault/extractor.ts +345 -0
- package/src/vault/facts.ts +190 -0
- package/src/vault/goals.ts +477 -0
- package/src/vault/index.ts +87 -0
- package/src/vault/keychain.ts +99 -0
- package/src/vault/observations.ts +115 -0
- package/src/vault/relationships.ts +178 -0
- package/src/vault/retrieval.test.ts +126 -0
- package/src/vault/retrieval.ts +227 -0
- package/src/vault/schema.ts +658 -0
- package/src/vault/settings.ts +38 -0
- package/src/vault/vectors.ts +92 -0
- package/src/vault/workflows.ts +403 -0
- package/src/workflows/auto-suggest.ts +290 -0
- package/src/workflows/engine.ts +366 -0
- package/src/workflows/events.ts +24 -0
- package/src/workflows/executor.ts +207 -0
- package/src/workflows/nl-builder.ts +198 -0
- package/src/workflows/nodes/actions/agent-task.ts +73 -0
- package/src/workflows/nodes/actions/calendar-action.ts +85 -0
- package/src/workflows/nodes/actions/code-execution.ts +73 -0
- package/src/workflows/nodes/actions/discord.ts +77 -0
- package/src/workflows/nodes/actions/file-write.ts +73 -0
- package/src/workflows/nodes/actions/gmail.ts +69 -0
- package/src/workflows/nodes/actions/http-request.ts +117 -0
- package/src/workflows/nodes/actions/notification.ts +85 -0
- package/src/workflows/nodes/actions/run-tool.ts +55 -0
- package/src/workflows/nodes/actions/send-message.ts +82 -0
- package/src/workflows/nodes/actions/shell-command.ts +76 -0
- package/src/workflows/nodes/actions/telegram.ts +60 -0
- package/src/workflows/nodes/builtin.ts +119 -0
- package/src/workflows/nodes/error/error-handler.ts +37 -0
- package/src/workflows/nodes/error/fallback.ts +47 -0
- package/src/workflows/nodes/error/retry.ts +82 -0
- package/src/workflows/nodes/logic/delay.ts +42 -0
- package/src/workflows/nodes/logic/if-else.ts +41 -0
- package/src/workflows/nodes/logic/loop.ts +90 -0
- package/src/workflows/nodes/logic/merge.ts +38 -0
- package/src/workflows/nodes/logic/race.ts +40 -0
- package/src/workflows/nodes/logic/switch.ts +59 -0
- package/src/workflows/nodes/logic/template-render.ts +53 -0
- package/src/workflows/nodes/logic/variable-get.ts +37 -0
- package/src/workflows/nodes/logic/variable-set.ts +59 -0
- package/src/workflows/nodes/registry.ts +99 -0
- package/src/workflows/nodes/transform/aggregate.ts +99 -0
- package/src/workflows/nodes/transform/csv-parse.ts +70 -0
- package/src/workflows/nodes/transform/json-parse.ts +63 -0
- package/src/workflows/nodes/transform/map-filter.ts +84 -0
- package/src/workflows/nodes/transform/regex-match.ts +89 -0
- package/src/workflows/nodes/triggers/calendar.ts +33 -0
- package/src/workflows/nodes/triggers/clipboard.ts +32 -0
- package/src/workflows/nodes/triggers/cron.ts +40 -0
- package/src/workflows/nodes/triggers/email.ts +40 -0
- package/src/workflows/nodes/triggers/file-change.ts +45 -0
- package/src/workflows/nodes/triggers/git.ts +46 -0
- package/src/workflows/nodes/triggers/manual.ts +23 -0
- package/src/workflows/nodes/triggers/poll.ts +81 -0
- package/src/workflows/nodes/triggers/process.ts +44 -0
- package/src/workflows/nodes/triggers/screen-event.ts +37 -0
- package/src/workflows/nodes/triggers/webhook.ts +39 -0
- package/src/workflows/safe-eval.ts +139 -0
- package/src/workflows/template.ts +118 -0
- package/src/workflows/triggers/cron.ts +311 -0
- package/src/workflows/triggers/manager.ts +285 -0
- package/src/workflows/triggers/observer-bridge.ts +172 -0
- package/src/workflows/triggers/poller.ts +201 -0
- package/src/workflows/triggers/screen-condition.ts +218 -0
- package/src/workflows/triggers/triggers.test.ts +740 -0
- package/src/workflows/triggers/webhook.ts +191 -0
- package/src/workflows/types.ts +133 -0
- package/src/workflows/variables.ts +72 -0
- package/src/workflows/workflows.test.ts +383 -0
- package/src/workflows/yaml.ts +104 -0
- package/ui/dist/index-j75njzc1.css +1199 -0
- package/ui/dist/index-p2zh407q.js +80603 -0
- package/ui/dist/index.html +13 -0
- package/ui/public/openwakeword/models/embedding_model.onnx +0 -0
- package/ui/public/openwakeword/models/hey_jarvis_v0.1.onnx +0 -0
- package/ui/public/openwakeword/models/melspectrogram.onnx +0 -0
- package/ui/public/openwakeword/models/silero_vad.onnx +0 -0
- package/ui/public/ort/ort-wasm-simd-threaded.jsep.mjs +106 -0
- package/ui/public/ort/ort-wasm-simd-threaded.jsep.wasm +0 -0
- package/ui/public/ort/ort-wasm-simd-threaded.mjs +59 -0
- package/ui/public/ort/ort-wasm-simd-threaded.wasm +0 -0
|
@@ -0,0 +1,1199 @@
|
|
|
1
|
+
/* node_modules/tailwindcss/index.css */
|
|
2
|
+
@layer theme {
|
|
3
|
+
@theme default {
|
|
4
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; --color-red-50: oklch(97.1% .013 17.38); --color-red-100: oklch(93.6% .032 17.717); --color-red-200: oklch(88.5% .062 18.334); --color-red-300: oklch(80.8% .114 19.571); --color-red-400: oklch(70.4% .191 22.216); --color-red-500: oklch(63.7% .237 25.331); --color-red-600: oklch(57.7% .245 27.325); --color-red-700: oklch(50.5% .213 27.518); --color-red-800: oklch(44.4% .177 26.899); --color-red-900: oklch(39.6% .141 25.723); --color-red-950: oklch(25.8% .092 26.042); --color-orange-50: oklch(98% .016 73.684); --color-orange-100: oklch(95.4% .038 75.164); --color-orange-200: oklch(90.1% .076 70.697); --color-orange-300: oklch(83.7% .128 66.29); --color-orange-400: oklch(75% .183 55.934); --color-orange-500: oklch(70.5% .213 47.604); --color-orange-600: oklch(64.6% .222 41.116); --color-orange-700: oklch(55.3% .195 38.402); --color-orange-800: oklch(47% .157 37.304); --color-orange-900: oklch(40.8% .123 38.172); --color-orange-950: oklch(26.6% .079 36.259); --color-amber-50: oklch(98.7% .022 95.277); --color-amber-100: oklch(96.2% .059 95.617); --color-amber-200: oklch(92.4% .12 95.746); --color-amber-300: oklch(87.9% .169 91.605); --color-amber-400: oklch(82.8% .189 84.429); --color-amber-500: oklch(76.9% .188 70.08); --color-amber-600: oklch(66.6% .179 58.318); --color-amber-700: oklch(55.5% .163 48.998); --color-amber-800: oklch(47.3% .137 46.201); --color-amber-900: oklch(41.4% .112 45.904); --color-amber-950: oklch(27.9% .077 45.635); --color-yellow-50: oklch(98.7% .026 102.212); --color-yellow-100: oklch(97.3% .071 103.193); --color-yellow-200: oklch(94.5% .129 101.54); --color-yellow-300: oklch(90.5% .182 98.111); --color-yellow-400: oklch(85.2% .199 91.936); --color-yellow-500: oklch(79.5% .184 86.047); --color-yellow-600: oklch(68.1% .162 75.834); --color-yellow-700: oklch(55.4% .135 66.442); --color-yellow-800: oklch(47.6% .114 61.907); --color-yellow-900: oklch(42.1% .095 57.708); --color-yellow-950: oklch(28.6% .066 53.813); --color-lime-50: oklch(98.6% .031 120.757); --color-lime-100: oklch(96.7% .067 122.328); --color-lime-200: oklch(93.8% .127 124.321); --color-lime-300: oklch(89.7% .196 126.665); --color-lime-400: oklch(84.1% .238 128.85); --color-lime-500: oklch(76.8% .233 130.85); --color-lime-600: oklch(64.8% .2 131.684); --color-lime-700: oklch(53.2% .157 131.589); --color-lime-800: oklch(45.3% .124 130.933); --color-lime-900: oklch(40.5% .101 131.063); --color-lime-950: oklch(27.4% .072 132.109); --color-green-50: oklch(98.2% .018 155.826); --color-green-100: oklch(96.2% .044 156.743); --color-green-200: oklch(92.5% .084 155.995); --color-green-300: oklch(87.1% .15 154.449); --color-green-400: oklch(79.2% .209 151.711); --color-green-500: oklch(72.3% .219 149.579); --color-green-600: oklch(62.7% .194 149.214); --color-green-700: oklch(52.7% .154 150.069); --color-green-800: oklch(44.8% .119 151.328); --color-green-900: oklch(39.3% .095 152.535); --color-green-950: oklch(26.6% .065 152.934); --color-emerald-50: oklch(97.9% .021 166.113); --color-emerald-100: oklch(95% .052 163.051); --color-emerald-200: oklch(90.5% .093 164.15); --color-emerald-300: oklch(84.5% .143 164.978); --color-emerald-400: oklch(76.5% .177 163.223); --color-emerald-500: oklch(69.6% .17 162.48); --color-emerald-600: oklch(59.6% .145 163.225); --color-emerald-700: oklch(50.8% .118 165.612); --color-emerald-800: oklch(43.2% .095 166.913); --color-emerald-900: oklch(37.8% .077 168.94); --color-emerald-950: oklch(26.2% .051 172.552); --color-teal-50: oklch(98.4% .014 180.72); --color-teal-100: oklch(95.3% .051 180.801); --color-teal-200: oklch(91% .096 180.426); --color-teal-300: oklch(85.5% .138 181.071); --color-teal-400: oklch(77.7% .152 181.912); --color-teal-500: oklch(70.4% .14 182.503); --color-teal-600: oklch(60% .118 184.704); --color-teal-700: oklch(51.1% .096 186.391); --color-teal-800: oklch(43.7% .078 188.216); --color-teal-900: oklch(38.6% .063 188.416); --color-teal-950: oklch(27.7% .046 192.524); --color-cyan-50: oklch(98.4% .019 200.873); --color-cyan-100: oklch(95.6% .045 203.388); --color-cyan-200: oklch(91.7% .08 205.041); --color-cyan-300: oklch(86.5% .127 207.078); --color-cyan-400: oklch(78.9% .154 211.53); --color-cyan-500: oklch(71.5% .143 215.221); --color-cyan-600: oklch(60.9% .126 221.723); --color-cyan-700: oklch(52% .105 223.128); --color-cyan-800: oklch(45% .085 224.283); --color-cyan-900: oklch(39.8% .07 227.392); --color-cyan-950: oklch(30.2% .056 229.695); --color-sky-50: oklch(97.7% .013 236.62); --color-sky-100: oklch(95.1% .026 236.824); --color-sky-200: oklch(90.1% .058 230.902); --color-sky-300: oklch(82.8% .111 230.318); --color-sky-400: oklch(74.6% .16 232.661); --color-sky-500: oklch(68.5% .169 237.323); --color-sky-600: oklch(58.8% .158 241.966); --color-sky-700: oklch(50% .134 242.749); --color-sky-800: oklch(44.3% .11 240.79); --color-sky-900: oklch(39.1% .09 240.876); --color-sky-950: oklch(29.3% .066 243.157); --color-blue-50: oklch(97% .014 254.604); --color-blue-100: oklch(93.2% .032 255.585); --color-blue-200: oklch(88.2% .059 254.128); --color-blue-300: oklch(80.9% .105 251.813); --color-blue-400: oklch(70.7% .165 254.624); --color-blue-500: oklch(62.3% .214 259.815); --color-blue-600: oklch(54.6% .245 262.881); --color-blue-700: oklch(48.8% .243 264.376); --color-blue-800: oklch(42.4% .199 265.638); --color-blue-900: oklch(37.9% .146 265.522); --color-blue-950: oklch(28.2% .091 267.935); --color-indigo-50: oklch(96.2% .018 272.314); --color-indigo-100: oklch(93% .034 272.788); --color-indigo-200: oklch(87% .065 274.039); --color-indigo-300: oklch(78.5% .115 274.713); --color-indigo-400: oklch(67.3% .182 276.935); --color-indigo-500: oklch(58.5% .233 277.117); --color-indigo-600: oklch(51.1% .262 276.966); --color-indigo-700: oklch(45.7% .24 277.023); --color-indigo-800: oklch(39.8% .195 277.366); --color-indigo-900: oklch(35.9% .144 278.697); --color-indigo-950: oklch(25.7% .09 281.288); --color-violet-50: oklch(96.9% .016 293.756); --color-violet-100: oklch(94.3% .029 294.588); --color-violet-200: oklch(89.4% .057 293.283); --color-violet-300: oklch(81.1% .111 293.571); --color-violet-400: oklch(70.2% .183 293.541); --color-violet-500: oklch(60.6% .25 292.717); --color-violet-600: oklch(54.1% .281 293.009); --color-violet-700: oklch(49.1% .27 292.581); --color-violet-800: oklch(43.2% .232 292.759); --color-violet-900: oklch(38% .189 293.745); --color-violet-950: oklch(28.3% .141 291.089); --color-purple-50: oklch(97.7% .014 308.299); --color-purple-100: oklch(94.6% .033 307.174); --color-purple-200: oklch(90.2% .063 306.703); --color-purple-300: oklch(82.7% .119 306.383); --color-purple-400: oklch(71.4% .203 305.504); --color-purple-500: oklch(62.7% .265 303.9); --color-purple-600: oklch(55.8% .288 302.321); --color-purple-700: oklch(49.6% .265 301.924); --color-purple-800: oklch(43.8% .218 303.724); --color-purple-900: oklch(38.1% .176 304.987); --color-purple-950: oklch(29.1% .149 302.717); --color-fuchsia-50: oklch(97.7% .017 320.058); --color-fuchsia-100: oklch(95.2% .037 318.852); --color-fuchsia-200: oklch(90.3% .076 319.62); --color-fuchsia-300: oklch(83.3% .145 321.434); --color-fuchsia-400: oklch(74% .238 322.16); --color-fuchsia-500: oklch(66.7% .295 322.15); --color-fuchsia-600: oklch(59.1% .293 322.896); --color-fuchsia-700: oklch(51.8% .253 323.949); --color-fuchsia-800: oklch(45.2% .211 324.591); --color-fuchsia-900: oklch(40.1% .17 325.612); --color-fuchsia-950: oklch(29.3% .136 325.661); --color-pink-50: oklch(97.1% .014 343.198); --color-pink-100: oklch(94.8% .028 342.258); --color-pink-200: oklch(89.9% .061 343.231); --color-pink-300: oklch(82.3% .12 346.018); --color-pink-400: oklch(71.8% .202 349.761); --color-pink-500: oklch(65.6% .241 354.308); --color-pink-600: oklch(59.2% .249 .584); --color-pink-700: oklch(52.5% .223 3.958); --color-pink-800: oklch(45.9% .187 3.815); --color-pink-900: oklch(40.8% .153 2.432); --color-pink-950: oklch(28.4% .109 3.907); --color-rose-50: oklch(96.9% .015 12.422); --color-rose-100: oklch(94.1% .03 12.58); --color-rose-200: oklch(89.2% .058 10.001); --color-rose-300: oklch(81% .117 11.638); --color-rose-400: oklch(71.2% .194 13.428); --color-rose-500: oklch(64.5% .246 16.439); --color-rose-600: oklch(58.6% .253 17.585); --color-rose-700: oklch(51.4% .222 16.935); --color-rose-800: oklch(45.5% .188 13.697); --color-rose-900: oklch(41% .159 10.272); --color-rose-950: oklch(27.1% .105 12.094); --color-slate-50: oklch(98.4% .003 247.858); --color-slate-100: oklch(96.8% .007 247.896); --color-slate-200: oklch(92.9% .013 255.508); --color-slate-300: oklch(86.9% .022 252.894); --color-slate-400: oklch(70.4% .04 256.788); --color-slate-500: oklch(55.4% .046 257.417); --color-slate-600: oklch(44.6% .043 257.281); --color-slate-700: oklch(37.2% .044 257.287); --color-slate-800: oklch(27.9% .041 260.031); --color-slate-900: oklch(20.8% .042 265.755); --color-slate-950: oklch(12.9% .042 264.695); --color-gray-50: oklch(98.5% .002 247.839); --color-gray-100: oklch(96.7% .003 264.542); --color-gray-200: oklch(92.8% .006 264.531); --color-gray-300: oklch(87.2% .01 258.338); --color-gray-400: oklch(70.7% .022 261.325); --color-gray-500: oklch(55.1% .027 264.364); --color-gray-600: oklch(44.6% .03 256.802); --color-gray-700: oklch(37.3% .034 259.733); --color-gray-800: oklch(27.8% .033 256.848); --color-gray-900: oklch(21% .034 264.665); --color-gray-950: oklch(13% .028 261.692); --color-zinc-50: oklch(98.5% 0 0); --color-zinc-100: oklch(96.7% .001 286.375); --color-zinc-200: oklch(92% .004 286.32); --color-zinc-300: oklch(87.1% .006 286.286); --color-zinc-400: oklch(70.5% .015 286.067); --color-zinc-500: oklch(55.2% .016 285.938); --color-zinc-600: oklch(44.2% .017 285.786); --color-zinc-700: oklch(37% .013 285.805); --color-zinc-800: oklch(27.4% .006 286.033); --color-zinc-900: oklch(21% .006 285.885); --color-zinc-950: oklch(14.1% .005 285.823); --color-neutral-50: oklch(98.5% 0 0); --color-neutral-100: oklch(97% 0 0); --color-neutral-200: oklch(92.2% 0 0); --color-neutral-300: oklch(87% 0 0); --color-neutral-400: oklch(70.8% 0 0); --color-neutral-500: oklch(55.6% 0 0); --color-neutral-600: oklch(43.9% 0 0); --color-neutral-700: oklch(37.1% 0 0); --color-neutral-800: oklch(26.9% 0 0); --color-neutral-900: oklch(20.5% 0 0); --color-neutral-950: oklch(14.5% 0 0); --color-stone-50: oklch(98.5% .001 106.423); --color-stone-100: oklch(97% .001 106.424); --color-stone-200: oklch(92.3% .003 48.717); --color-stone-300: oklch(86.9% .005 56.366); --color-stone-400: oklch(70.9% .01 56.259); --color-stone-500: oklch(55.3% .013 58.071); --color-stone-600: oklch(44.4% .011 73.639); --color-stone-700: oklch(37.4% .01 67.558); --color-stone-800: oklch(26.8% .007 34.298); --color-stone-900: oklch(21.6% .006 56.043); --color-stone-950: oklch(14.7% .004 49.25); --color-mauve-50: oklch(98.5% 0 0); --color-mauve-100: oklch(96% .003 325.6); --color-mauve-200: oklch(92.2% .005 325.62); --color-mauve-300: oklch(86.5% .012 325.68); --color-mauve-400: oklch(71.1% .019 323.02); --color-mauve-500: oklch(54.2% .034 322.5); --color-mauve-600: oklch(43.5% .029 321.78); --color-mauve-700: oklch(36.4% .029 323.89); --color-mauve-800: oklch(26.3% .024 320.12); --color-mauve-900: oklch(21.2% .019 322.12); --color-mauve-950: oklch(14.5% .008 326); --color-olive-50: oklch(98.8% .003 106.5); --color-olive-100: oklch(96.6% .005 106.5); --color-olive-200: oklch(93% .007 106.5); --color-olive-300: oklch(88% .011 106.6); --color-olive-400: oklch(73.7% .021 106.9); --color-olive-500: oklch(58% .031 107.3); --color-olive-600: oklch(46.6% .025 107.3); --color-olive-700: oklch(39.4% .023 107.4); --color-olive-800: oklch(28.6% .016 107.4); --color-olive-900: oklch(22.8% .013 107.4); --color-olive-950: oklch(15.3% .006 107.1); --color-mist-50: oklch(98.7% .002 197.1); --color-mist-100: oklch(96.3% .002 197.1); --color-mist-200: oklch(92.5% .005 214.3); --color-mist-300: oklch(87.2% .007 219.6); --color-mist-400: oklch(72.3% .014 214.4); --color-mist-500: oklch(56% .021 213.5); --color-mist-600: oklch(45% .017 213.2); --color-mist-700: oklch(37.8% .015 216); --color-mist-800: oklch(27.5% .011 216.9); --color-mist-900: oklch(21.8% .008 223.9); --color-mist-950: oklch(14.8% .004 228.8); --color-taupe-50: oklch(98.6% .002 67.8); --color-taupe-100: oklch(96% .002 17.2); --color-taupe-200: oklch(92.2% .005 34.3); --color-taupe-300: oklch(86.8% .007 39.5); --color-taupe-400: oklch(71.4% .014 41.2); --color-taupe-500: oklch(54.7% .021 43.1); --color-taupe-600: oklch(43.8% .017 39.3); --color-taupe-700: oklch(36.7% .016 35.7); --color-taupe-800: oklch(26.8% .011 36.5); --color-taupe-900: oklch(21.4% .009 43.1); --color-taupe-950: oklch(14.7% .004 49.3); --color-black: #000; --color-white: #fff; --spacing: .25rem; --breakpoint-sm: 40rem; --breakpoint-md: 48rem; --breakpoint-lg: 64rem; --breakpoint-xl: 80rem; --breakpoint-2xl: 96rem; --container-3xs: 16rem; --container-2xs: 18rem; --container-xs: 20rem; --container-sm: 24rem; --container-md: 28rem; --container-lg: 32rem; --container-xl: 36rem; --container-2xl: 42rem; --container-3xl: 48rem; --container-4xl: 56rem; --container-5xl: 64rem; --container-6xl: 72rem; --container-7xl: 80rem; --text-xs: .75rem; --text-xs--line-height: calc(1 / .75) ; --text-sm: .875rem; --text-sm--line-height: calc(1.25 / .875) ; --text-base: 1rem; --text-base--line-height: calc(1.5 / 1) ; --text-lg: 1.125rem; --text-lg--line-height: calc(1.75 / 1.125) ; --text-xl: 1.25rem; --text-xl--line-height: calc(1.75 / 1.25) ; --text-2xl: 1.5rem; --text-2xl--line-height: calc(2 / 1.5) ; --text-3xl: 1.875rem; --text-3xl--line-height: calc(2.25 / 1.875) ; --text-4xl: 2.25rem; --text-4xl--line-height: calc(2.5 / 2.25) ; --text-5xl: 3rem; --text-5xl--line-height: 1; --text-6xl: 3.75rem; --text-6xl--line-height: 1; --text-7xl: 4.5rem; --text-7xl--line-height: 1; --text-8xl: 6rem; --text-8xl--line-height: 1; --text-9xl: 8rem; --text-9xl--line-height: 1; --font-weight-thin: 100; --font-weight-extralight: 200; --font-weight-light: 300; --font-weight-normal: 400; --font-weight-medium: 500; --font-weight-semibold: 600; --font-weight-bold: 700; --font-weight-extrabold: 800; --font-weight-black: 900; --tracking-tighter: -.05em; --tracking-tight: -.025em; --tracking-normal: 0em; --tracking-wide: .025em; --tracking-wider: .05em; --tracking-widest: .1em; --leading-tight: 1.25; --leading-snug: 1.375; --leading-normal: 1.5; --leading-relaxed: 1.625; --leading-loose: 2; --radius-xs: .125rem; --radius-sm: .25rem; --radius-md: .375rem; --radius-lg: .5rem; --radius-xl: .75rem; --radius-2xl: 1rem; --radius-3xl: 1.5rem; --radius-4xl: 2rem; --shadow-2xs: 0 1px #0000000d; --shadow-xs: 0 1px 2px 0 #0000000d; --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a; --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a; --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a; --shadow-xl: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a; --shadow-2xl: 0 25px 50px -12px #00000040; --inset-shadow-2xs: inset 0 1px #0000000d; --inset-shadow-xs: inset 0 1px 1px #0000000d; --inset-shadow-sm: inset 0 2px 4px #0000000d; --drop-shadow-xs: 0 1px 1px #0000000d; --drop-shadow-sm: 0 1px 2px #00000026; --drop-shadow-md: 0 3px 3px #0000001f; --drop-shadow-lg: 0 4px 4px #00000026; --drop-shadow-xl: 0 9px 7px #0000001a; --drop-shadow-2xl: 0 25px 25px #00000026; --text-shadow-2xs: 0px 1px 0px #00000026; --text-shadow-xs: 0px 1px 1px #0003; --text-shadow-sm: 0px 1px 0px #00000013, 0px 1px 1px #00000013, 0px 2px 2px #00000013; --text-shadow-md: 0px 1px 1px #0000001a, 0px 1px 2px #0000001a, 0px 2px 4px #0000001a; --text-shadow-lg: 0px 1px 2px #0000001a, 0px 3px 2px #0000001a, 0px 4px 8px #0000001a; --ease-in: cubic-bezier(.4, 0, 1, 1) ; --ease-out: cubic-bezier(0, 0, .2, 1) ; --ease-in-out: cubic-bezier(.4, 0, .2, 1) ; --animate-spin: spin 1s linear infinite; --animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite; --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite; --animate-bounce: bounce 1s infinite; @keyframes spin { to { transform: rotate(360deg) ; } } @keyframes ping { 75%, 100% { transform: scale(2) ; opacity: 0; } } @keyframes pulse { 50% { opacity: .5; } } @keyframes bounce { 0%, 100% { transform: translateY(-25%) ; animation-timing-function: cubic-bezier(.8, 0, 1, 1) ; } 50% { transform: none; animation-timing-function: cubic-bezier(0, 0, .2, 1) ; } } --blur-xs: 4px; --blur-sm: 8px; --blur-md: 12px; --blur-lg: 16px; --blur-xl: 24px; --blur-2xl: 40px; --blur-3xl: 64px; --perspective-dramatic: 100px; --perspective-near: 300px; --perspective-normal: 500px; --perspective-midrange: 800px; --perspective-distant: 1200px; --aspect-video: 16 / 9; --default-transition-duration: .15s; --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1) ; --default-font-family: --theme(--font-sans, initial) ; --default-font-feature-settings: --theme(--font-sans--font-feature-settings, initial) ; --default-font-variation-settings: --theme(--font-sans--font-variation-settings, initial) ; --default-mono-font-family: --theme(--font-mono, initial) ; --default-mono-font-feature-settings: --theme(--font-mono--font-feature-settings, initial) ; --default-mono-font-variation-settings: --theme(--font-mono--font-variation-settings, initial) ;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@theme default inline reference {
|
|
8
|
+
--blur: 8px; --shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a; --shadow-inner: inset 0 2px 4px 0 #0000000d; --drop-shadow: 0 1px 2px #0000001a, 0 1px 1px #0000000f; --radius: .25rem; --max-width-prose: 65ch;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@layer base {
|
|
13
|
+
*, :after, :before {
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
border: 0 solid;
|
|
16
|
+
margin: 0;
|
|
17
|
+
padding: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
::backdrop {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
border: 0 solid;
|
|
23
|
+
margin: 0;
|
|
24
|
+
padding: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
::-webkit-file-upload-button {
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
border: 0 solid;
|
|
30
|
+
margin: 0;
|
|
31
|
+
padding: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
::file-selector-button {
|
|
35
|
+
box-sizing: border-box;
|
|
36
|
+
border: 0 solid;
|
|
37
|
+
margin: 0;
|
|
38
|
+
padding: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
html, :host {
|
|
42
|
+
-webkit-text-size-adjust: 100%;
|
|
43
|
+
tab-size: 4;
|
|
44
|
+
line-height: 1.5;
|
|
45
|
+
font-family: --theme(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
46
|
+
font-feature-settings: --theme(--default-font-feature-settings, normal);
|
|
47
|
+
font-variation-settings: --theme(--default-font-variation-settings, normal);
|
|
48
|
+
-webkit-tap-highlight-color: transparent;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
hr {
|
|
52
|
+
color: inherit;
|
|
53
|
+
border-top-width: 1px;
|
|
54
|
+
height: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
abbr:where([title]) {
|
|
58
|
+
-webkit-text-decoration: underline dotted;
|
|
59
|
+
text-decoration: underline dotted;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
h1, h2, h3, h4, h5, h6 {
|
|
63
|
+
font-size: inherit;
|
|
64
|
+
font-weight: inherit;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
a {
|
|
68
|
+
color: inherit;
|
|
69
|
+
-webkit-text-decoration: inherit;
|
|
70
|
+
text-decoration: inherit;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
b, strong {
|
|
74
|
+
font-weight: bolder;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
code, kbd, samp, pre {
|
|
78
|
+
font-family: --theme(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
79
|
+
font-feature-settings: --theme(--default-mono-font-feature-settings, normal);
|
|
80
|
+
font-variation-settings: --theme(--default-mono-font-variation-settings, normal);
|
|
81
|
+
font-size: 1em;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
small {
|
|
85
|
+
font-size: 80%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
sub, sup {
|
|
89
|
+
position: relative;
|
|
90
|
+
vertical-align: baseline;
|
|
91
|
+
font-size: 75%;
|
|
92
|
+
line-height: 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
sub {
|
|
96
|
+
bottom: -.25em;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
sup {
|
|
100
|
+
top: -.5em;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
table {
|
|
104
|
+
text-indent: 0;
|
|
105
|
+
border-color: inherit;
|
|
106
|
+
border-collapse: collapse;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
:-moz-focusring {
|
|
110
|
+
outline: auto;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
progress {
|
|
114
|
+
vertical-align: baseline;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
summary {
|
|
118
|
+
display: list-item;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
ol, ul, menu {
|
|
122
|
+
list-style: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
126
|
+
display: block;
|
|
127
|
+
vertical-align: middle;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
img, video {
|
|
131
|
+
max-width: 100%;
|
|
132
|
+
height: auto;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
button, input, select, optgroup, textarea {
|
|
136
|
+
font: inherit;
|
|
137
|
+
font-feature-settings: inherit;
|
|
138
|
+
font-variation-settings: inherit;
|
|
139
|
+
letter-spacing: inherit;
|
|
140
|
+
color: inherit;
|
|
141
|
+
opacity: 1;
|
|
142
|
+
background-color: #0000;
|
|
143
|
+
border-radius: 0;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
::-webkit-file-upload-button {
|
|
147
|
+
font: inherit;
|
|
148
|
+
font-feature-settings: inherit;
|
|
149
|
+
font-variation-settings: inherit;
|
|
150
|
+
letter-spacing: inherit;
|
|
151
|
+
color: inherit;
|
|
152
|
+
opacity: 1;
|
|
153
|
+
background-color: #0000;
|
|
154
|
+
border-radius: 0;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
::file-selector-button {
|
|
158
|
+
font: inherit;
|
|
159
|
+
font-feature-settings: inherit;
|
|
160
|
+
font-variation-settings: inherit;
|
|
161
|
+
letter-spacing: inherit;
|
|
162
|
+
color: inherit;
|
|
163
|
+
opacity: 1;
|
|
164
|
+
background-color: #0000;
|
|
165
|
+
border-radius: 0;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
:where(select:-webkit-any([multiple], [size])) optgroup {
|
|
169
|
+
font-weight: bolder;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
:where(select:-moz-any([multiple], [size])) optgroup {
|
|
173
|
+
font-weight: bolder;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
177
|
+
font-weight: bolder;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
:where(select:-webkit-any([multiple], [size])) optgroup option {
|
|
181
|
+
padding-inline-start: 20px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
:where(select:-moz-any([multiple], [size])) optgroup option {
|
|
185
|
+
padding-inline-start: 20px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
189
|
+
padding-inline-start: 20px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
::-webkit-file-upload-button {
|
|
193
|
+
margin-inline-end: 4px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
::file-selector-button {
|
|
197
|
+
margin-inline-end: 4px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
::placeholder {
|
|
201
|
+
opacity: 1;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@supports ( not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
205
|
+
::placeholder {
|
|
206
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
textarea {
|
|
211
|
+
resize: vertical;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
::-webkit-search-decoration {
|
|
215
|
+
-webkit-appearance: none;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
::-webkit-date-and-time-value {
|
|
219
|
+
text-align: inherit;
|
|
220
|
+
min-height: 1lh;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
::-webkit-datetime-edit {
|
|
224
|
+
display: inline-flex;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
228
|
+
padding: 0;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
::-webkit-datetime-edit {
|
|
232
|
+
padding-block-start: 0;
|
|
233
|
+
padding-block-end: 0;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
::-webkit-datetime-edit-year-field {
|
|
237
|
+
padding-block-start: 0;
|
|
238
|
+
padding-block-end: 0;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
::-webkit-datetime-edit-month-field {
|
|
242
|
+
padding-block-start: 0;
|
|
243
|
+
padding-block-end: 0;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
::-webkit-datetime-edit-day-field {
|
|
247
|
+
padding-block-start: 0;
|
|
248
|
+
padding-block-end: 0;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
::-webkit-datetime-edit-hour-field {
|
|
252
|
+
padding-block-start: 0;
|
|
253
|
+
padding-block-end: 0;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
::-webkit-datetime-edit-minute-field {
|
|
257
|
+
padding-block-start: 0;
|
|
258
|
+
padding-block-end: 0;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
::-webkit-datetime-edit-second-field {
|
|
262
|
+
padding-block-start: 0;
|
|
263
|
+
padding-block-end: 0;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
::-webkit-datetime-edit-millisecond-field {
|
|
267
|
+
padding-block-start: 0;
|
|
268
|
+
padding-block-end: 0;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
::-webkit-datetime-edit-meridiem-field {
|
|
272
|
+
padding-block-start: 0;
|
|
273
|
+
padding-block-end: 0;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
::-webkit-calendar-picker-indicator {
|
|
277
|
+
line-height: 1;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
:-moz-ui-invalid {
|
|
281
|
+
box-shadow: none;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
button {
|
|
285
|
+
appearance: button;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
289
|
+
appearance: button;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
::-webkit-file-upload-button {
|
|
293
|
+
appearance: button;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
::file-selector-button {
|
|
297
|
+
appearance: button;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
::-webkit-inner-spin-button {
|
|
301
|
+
height: auto;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
::-webkit-outer-spin-button {
|
|
305
|
+
height: auto;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
309
|
+
display: none !important;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
@layer utilities {
|
|
314
|
+
@tailwind utilities;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
/* ui/src/styles/globals.css */
|
|
318
|
+
:root {
|
|
319
|
+
--j-bg: #0a0e17;
|
|
320
|
+
--j-surface: #111827;
|
|
321
|
+
--j-surface-hover: #1a2234;
|
|
322
|
+
--j-border: #1e293b;
|
|
323
|
+
--j-border-bright: #334155;
|
|
324
|
+
--j-accent: #00d4ff;
|
|
325
|
+
--j-accent-dim: #0891b2;
|
|
326
|
+
--j-accent2: #7c3aed;
|
|
327
|
+
--j-success: #10b981;
|
|
328
|
+
--j-warning: #f59e0b;
|
|
329
|
+
--j-error: #ef4444;
|
|
330
|
+
--j-text: #e2e8f0;
|
|
331
|
+
--j-text-dim: #94a3b8;
|
|
332
|
+
--j-text-muted: #64748b;
|
|
333
|
+
--j-glow: 0 0 20px #00d4ff26;
|
|
334
|
+
--j-glow-strong: 0 0 30px #00d4ff4d;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
* {
|
|
338
|
+
box-sizing: border-box;
|
|
339
|
+
margin: 0;
|
|
340
|
+
padding: 0;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
body {
|
|
344
|
+
background: var(--j-bg);
|
|
345
|
+
color: var(--j-text);
|
|
346
|
+
overflow: hidden;
|
|
347
|
+
min-height: 100vh;
|
|
348
|
+
font-family: Inter, SF Pro Display, -apple-system, BlinkMacSystemFont, system-ui, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
#root {
|
|
352
|
+
width: 100vw;
|
|
353
|
+
height: 100vh;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
::-webkit-scrollbar {
|
|
357
|
+
width: 6px;
|
|
358
|
+
height: 6px;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
::-webkit-scrollbar-track {
|
|
362
|
+
background: none;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
::-webkit-scrollbar-thumb {
|
|
366
|
+
background: var(--j-border-bright);
|
|
367
|
+
border-radius: 3px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
::-webkit-scrollbar-thumb:hover {
|
|
371
|
+
background: var(--j-text-muted);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
::selection {
|
|
375
|
+
color: #fff;
|
|
376
|
+
background: #00d4ff4d;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.markdown-content {
|
|
380
|
+
word-break: break-word;
|
|
381
|
+
line-height: 1.6;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.markdown-content > :first-child {
|
|
385
|
+
margin-top: 0;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.markdown-content > :last-child {
|
|
389
|
+
margin-bottom: 0;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content h5, .markdown-content h6 {
|
|
393
|
+
color: var(--j-text);
|
|
394
|
+
margin: 16px 0 8px;
|
|
395
|
+
font-weight: 600;
|
|
396
|
+
line-height: 1.3;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.markdown-content h1 {
|
|
400
|
+
border-bottom: 1px solid var(--j-border);
|
|
401
|
+
padding-bottom: 4px;
|
|
402
|
+
font-size: 1.4em;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.markdown-content h2 {
|
|
406
|
+
font-size: 1.25em;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.markdown-content h3 {
|
|
410
|
+
font-size: 1.1em;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.markdown-content h4 {
|
|
414
|
+
color: var(--j-text-dim);
|
|
415
|
+
font-size: 1em;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.markdown-content p {
|
|
419
|
+
margin: 6px 0;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.markdown-content ul, .markdown-content ol {
|
|
423
|
+
margin: 6px 0;
|
|
424
|
+
padding-left: 20px;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.markdown-content li, .markdown-content li > p {
|
|
428
|
+
margin: 2px 0;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.markdown-content li::marker {
|
|
432
|
+
color: var(--j-text-muted);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.markdown-content li:has( > input[type="checkbox"]) {
|
|
436
|
+
list-style: none;
|
|
437
|
+
margin-left: -20px;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.markdown-content strong {
|
|
441
|
+
color: var(--j-text);
|
|
442
|
+
font-weight: 600;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.markdown-content em {
|
|
446
|
+
color: var(--j-text-dim);
|
|
447
|
+
font-style: italic;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.markdown-content del {
|
|
451
|
+
color: var(--j-text-muted);
|
|
452
|
+
text-decoration: line-through;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.markdown-content a:hover {
|
|
456
|
+
border-bottom-color: var(--j-accent) !important;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.hljs {
|
|
460
|
+
color: var(--j-text);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.hljs-keyword, .hljs-selector-tag, .hljs-built_in, .hljs-name {
|
|
464
|
+
color: #c792ea;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.hljs-string, .hljs-attr, .hljs-template-tag, .hljs-template-variable {
|
|
468
|
+
color: #c3e88d;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.hljs-comment, .hljs-quote {
|
|
472
|
+
color: #546e7a;
|
|
473
|
+
font-style: italic;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.hljs-number, .hljs-literal, .hljs-boolean {
|
|
477
|
+
color: #f78c6c;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.hljs-function, .hljs-title {
|
|
481
|
+
color: #82aaff;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.hljs-type, .hljs-class .hljs-title {
|
|
485
|
+
color: #ffcb6b;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.hljs-variable, .hljs-params {
|
|
489
|
+
color: var(--j-text);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.hljs-regexp {
|
|
493
|
+
color: #89ddff;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.hljs-symbol, .hljs-bullet {
|
|
497
|
+
color: #f07178;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.hljs-meta {
|
|
501
|
+
color: #89ddff;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.hljs-addition {
|
|
505
|
+
color: #c3e88d;
|
|
506
|
+
background: #c3e88d14;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.hljs-deletion {
|
|
510
|
+
color: #f07178;
|
|
511
|
+
background: #f0717814;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.hljs-emphasis {
|
|
515
|
+
font-style: italic;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.hljs-strong {
|
|
519
|
+
font-weight: bold;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
@keyframes taskPulse {
|
|
523
|
+
0% {
|
|
524
|
+
box-shadow: 0 0 #00d4ff66;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
50% {
|
|
528
|
+
box-shadow: 0 0 16px 4px #00d4ff26;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
100% {
|
|
532
|
+
box-shadow: 0 0 #00d4ff00;
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
/* node_modules/@xyflow/react/dist/style.css */
|
|
537
|
+
.react-flow {
|
|
538
|
+
direction: ltr;
|
|
539
|
+
--xy-edge-stroke-default: #b1b1b7;
|
|
540
|
+
--xy-edge-stroke-width-default: 1;
|
|
541
|
+
--xy-edge-stroke-selected-default: #555;
|
|
542
|
+
--xy-connectionline-stroke-default: #b1b1b7;
|
|
543
|
+
--xy-connectionline-stroke-width-default: 1;
|
|
544
|
+
--xy-attribution-background-color-default: #ffffff80;
|
|
545
|
+
--xy-minimap-background-color-default: #fff;
|
|
546
|
+
--xy-minimap-mask-background-color-default: #f0f0f099;
|
|
547
|
+
--xy-minimap-mask-stroke-color-default: transparent;
|
|
548
|
+
--xy-minimap-mask-stroke-width-default: 1;
|
|
549
|
+
--xy-minimap-node-background-color-default: #e2e2e2;
|
|
550
|
+
--xy-minimap-node-stroke-color-default: transparent;
|
|
551
|
+
--xy-minimap-node-stroke-width-default: 2;
|
|
552
|
+
--xy-background-color-default: transparent;
|
|
553
|
+
--xy-background-pattern-dots-color-default: #91919a;
|
|
554
|
+
--xy-background-pattern-lines-color-default: #eee;
|
|
555
|
+
--xy-background-pattern-cross-color-default: #e2e2e2;
|
|
556
|
+
background-color: var(--xy-background-color, var(--xy-background-color-default));
|
|
557
|
+
--xy-node-color-default: inherit;
|
|
558
|
+
--xy-node-border-default: 1px solid #1a192b;
|
|
559
|
+
--xy-node-background-color-default: #fff;
|
|
560
|
+
--xy-node-group-background-color-default: #f0f0f040;
|
|
561
|
+
--xy-node-boxshadow-hover-default: 0 1px 4px 1px #00000014;
|
|
562
|
+
--xy-node-boxshadow-selected-default: 0 0 0 .5px #1a192b;
|
|
563
|
+
--xy-node-border-radius-default: 3px;
|
|
564
|
+
--xy-handle-background-color-default: #1a192b;
|
|
565
|
+
--xy-handle-border-color-default: #fff;
|
|
566
|
+
--xy-selection-background-color-default: #0059dc14;
|
|
567
|
+
--xy-selection-border-default: 1px dotted #0059dccc;
|
|
568
|
+
--xy-controls-button-background-color-default: #fefefe;
|
|
569
|
+
--xy-controls-button-background-color-hover-default: #f4f4f4;
|
|
570
|
+
--xy-controls-button-color-default: inherit;
|
|
571
|
+
--xy-controls-button-color-hover-default: inherit;
|
|
572
|
+
--xy-controls-button-border-color-default: #eee;
|
|
573
|
+
--xy-controls-box-shadow-default: 0 0 2px 1px #00000014;
|
|
574
|
+
--xy-edge-label-background-color-default: #fff;
|
|
575
|
+
--xy-edge-label-color-default: inherit;
|
|
576
|
+
--xy-resize-background-color-default: #3367d9;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.react-flow.dark {
|
|
580
|
+
--xy-edge-stroke-default: #3e3e3e;
|
|
581
|
+
--xy-edge-stroke-width-default: 1;
|
|
582
|
+
--xy-edge-stroke-selected-default: #727272;
|
|
583
|
+
--xy-connectionline-stroke-default: #b1b1b7;
|
|
584
|
+
--xy-connectionline-stroke-width-default: 1;
|
|
585
|
+
--xy-attribution-background-color-default: #96969640;
|
|
586
|
+
--xy-minimap-background-color-default: #141414;
|
|
587
|
+
--xy-minimap-mask-background-color-default: #3c3c3c99;
|
|
588
|
+
--xy-minimap-mask-stroke-color-default: transparent;
|
|
589
|
+
--xy-minimap-mask-stroke-width-default: 1;
|
|
590
|
+
--xy-minimap-node-background-color-default: #2b2b2b;
|
|
591
|
+
--xy-minimap-node-stroke-color-default: transparent;
|
|
592
|
+
--xy-minimap-node-stroke-width-default: 2;
|
|
593
|
+
--xy-background-color-default: #141414;
|
|
594
|
+
--xy-background-pattern-dots-color-default: #777;
|
|
595
|
+
--xy-background-pattern-lines-color-default: #777;
|
|
596
|
+
--xy-background-pattern-cross-color-default: #777;
|
|
597
|
+
--xy-node-color-default: #f8f8f8;
|
|
598
|
+
--xy-node-border-default: 1px solid #3c3c3c;
|
|
599
|
+
--xy-node-background-color-default: #1e1e1e;
|
|
600
|
+
--xy-node-group-background-color-default: #f0f0f040;
|
|
601
|
+
--xy-node-boxshadow-hover-default: 0 1px 4px 1px #ffffff14;
|
|
602
|
+
--xy-node-boxshadow-selected-default: 0 0 0 .5px #999;
|
|
603
|
+
--xy-handle-background-color-default: #bebebe;
|
|
604
|
+
--xy-handle-border-color-default: #1e1e1e;
|
|
605
|
+
--xy-selection-background-color-default: #c8c8dc14;
|
|
606
|
+
--xy-selection-border-default: 1px dotted #c8c8dccc;
|
|
607
|
+
--xy-controls-button-background-color-default: #2b2b2b;
|
|
608
|
+
--xy-controls-button-background-color-hover-default: #3e3e3e;
|
|
609
|
+
--xy-controls-button-color-default: #f8f8f8;
|
|
610
|
+
--xy-controls-button-color-hover-default: #fff;
|
|
611
|
+
--xy-controls-button-border-color-default: #5b5b5b;
|
|
612
|
+
--xy-controls-box-shadow-default: 0 0 2px 1px #00000014;
|
|
613
|
+
--xy-edge-label-background-color-default: #141414;
|
|
614
|
+
--xy-edge-label-color-default: #f8f8f8;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.react-flow__background {
|
|
618
|
+
background-color: var(--xy-background-color-props, var(--xy-background-color, var(--xy-background-color-default)));
|
|
619
|
+
pointer-events: none;
|
|
620
|
+
z-index: -1;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.react-flow__container {
|
|
624
|
+
position: absolute;
|
|
625
|
+
width: 100%;
|
|
626
|
+
height: 100%;
|
|
627
|
+
top: 0;
|
|
628
|
+
left: 0;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.react-flow__pane {
|
|
632
|
+
z-index: 1;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.react-flow__pane.draggable {
|
|
636
|
+
cursor: grab;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.react-flow__pane.dragging {
|
|
640
|
+
cursor: grabbing;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.react-flow__pane.selection {
|
|
644
|
+
cursor: pointer;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.react-flow__viewport {
|
|
648
|
+
transform-origin: 0 0;
|
|
649
|
+
z-index: 2;
|
|
650
|
+
pointer-events: none;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.react-flow__renderer {
|
|
654
|
+
z-index: 4;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.react-flow__selection {
|
|
658
|
+
z-index: 6;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.react-flow__nodesselection-rect:focus {
|
|
662
|
+
outline: none;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.react-flow__nodesselection-rect:focus-visible {
|
|
666
|
+
outline: none;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.react-flow__edge-path {
|
|
670
|
+
stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
|
|
671
|
+
stroke-width: var(--xy-edge-stroke-width, var(--xy-edge-stroke-width-default));
|
|
672
|
+
fill: none;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.react-flow__connection-path {
|
|
676
|
+
stroke: var(--xy-connectionline-stroke, var(--xy-connectionline-stroke-default));
|
|
677
|
+
stroke-width: var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));
|
|
678
|
+
fill: none;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.react-flow .react-flow__edges {
|
|
682
|
+
position: absolute;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.react-flow .react-flow__edges svg {
|
|
686
|
+
overflow: visible;
|
|
687
|
+
position: absolute;
|
|
688
|
+
pointer-events: none;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.react-flow__edge {
|
|
692
|
+
pointer-events: visibleStroke;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.react-flow__edge.selectable {
|
|
696
|
+
cursor: pointer;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.react-flow__edge.animated path {
|
|
700
|
+
stroke-dasharray: 5;
|
|
701
|
+
animation: dashdraw .5s linear infinite;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.react-flow__edge.animated path.react-flow__edge-interaction {
|
|
705
|
+
stroke-dasharray: none;
|
|
706
|
+
animation: none;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.react-flow__edge.inactive {
|
|
710
|
+
pointer-events: none;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.react-flow__edge.selected, .react-flow__edge:focus {
|
|
714
|
+
outline: none;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.react-flow__edge:focus-visible {
|
|
718
|
+
outline: none;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.react-flow__edge.selected .react-flow__edge-path, .react-flow__edge.selectable:focus .react-flow__edge-path {
|
|
722
|
+
stroke: var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default));
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.react-flow__edge.selectable:focus-visible .react-flow__edge-path {
|
|
726
|
+
stroke: var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default));
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.react-flow__edge-textwrapper {
|
|
730
|
+
pointer-events: all;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.react-flow__edge .react-flow__edge-text {
|
|
734
|
+
pointer-events: none;
|
|
735
|
+
-webkit-user-select: none;
|
|
736
|
+
-moz-user-select: none;
|
|
737
|
+
user-select: none;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.react-flow__arrowhead polyline {
|
|
741
|
+
stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.react-flow__arrowhead polyline.arrowclosed {
|
|
745
|
+
fill: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.react-flow__connection {
|
|
749
|
+
pointer-events: none;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.react-flow__connection .animated {
|
|
753
|
+
stroke-dasharray: 5;
|
|
754
|
+
animation: dashdraw .5s linear infinite;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
svg.react-flow__connectionline {
|
|
758
|
+
z-index: 1001;
|
|
759
|
+
overflow: visible;
|
|
760
|
+
position: absolute;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.react-flow__nodes {
|
|
764
|
+
pointer-events: none;
|
|
765
|
+
transform-origin: 0 0;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.react-flow__node {
|
|
769
|
+
position: absolute;
|
|
770
|
+
-webkit-user-select: none;
|
|
771
|
+
-moz-user-select: none;
|
|
772
|
+
user-select: none;
|
|
773
|
+
pointer-events: all;
|
|
774
|
+
transform-origin: 0 0;
|
|
775
|
+
box-sizing: border-box;
|
|
776
|
+
cursor: default;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.react-flow__node.selectable {
|
|
780
|
+
cursor: pointer;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.react-flow__node.draggable {
|
|
784
|
+
cursor: grab;
|
|
785
|
+
pointer-events: all;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.react-flow__node.draggable.dragging {
|
|
789
|
+
cursor: grabbing;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.react-flow__nodesselection {
|
|
793
|
+
z-index: 3;
|
|
794
|
+
transform-origin: left top;
|
|
795
|
+
pointer-events: none;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.react-flow__nodesselection-rect {
|
|
799
|
+
position: absolute;
|
|
800
|
+
pointer-events: all;
|
|
801
|
+
cursor: grab;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.react-flow__handle {
|
|
805
|
+
position: absolute;
|
|
806
|
+
pointer-events: none;
|
|
807
|
+
background-color: var(--xy-handle-background-color, var(--xy-handle-background-color-default));
|
|
808
|
+
border: 1px solid var(--xy-handle-border-color, var(--xy-handle-border-color-default));
|
|
809
|
+
border-radius: 100%;
|
|
810
|
+
width: 6px;
|
|
811
|
+
min-width: 5px;
|
|
812
|
+
height: 6px;
|
|
813
|
+
min-height: 5px;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.react-flow__handle.connectingfrom {
|
|
817
|
+
pointer-events: all;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.react-flow__handle.connectionindicator {
|
|
821
|
+
pointer-events: all;
|
|
822
|
+
cursor: crosshair;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.react-flow__handle-bottom {
|
|
826
|
+
top: auto;
|
|
827
|
+
bottom: 0;
|
|
828
|
+
left: 50%;
|
|
829
|
+
transform: translate(-50%, 50%);
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.react-flow__handle-top {
|
|
833
|
+
top: 0;
|
|
834
|
+
left: 50%;
|
|
835
|
+
transform: translate(-50%, -50%);
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.react-flow__handle-left {
|
|
839
|
+
top: 50%;
|
|
840
|
+
left: 0;
|
|
841
|
+
transform: translate(-50%, -50%);
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.react-flow__handle-right {
|
|
845
|
+
top: 50%;
|
|
846
|
+
right: 0;
|
|
847
|
+
transform: translate(50%, -50%);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.react-flow__edgeupdater {
|
|
851
|
+
cursor: move;
|
|
852
|
+
pointer-events: all;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.react-flow__pane.selection .react-flow__panel {
|
|
856
|
+
pointer-events: none;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.react-flow__panel {
|
|
860
|
+
position: absolute;
|
|
861
|
+
z-index: 5;
|
|
862
|
+
margin: 15px;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.react-flow__panel.top {
|
|
866
|
+
top: 0;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.react-flow__panel.bottom {
|
|
870
|
+
bottom: 0;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.react-flow__panel.top.center, .react-flow__panel.bottom.center {
|
|
874
|
+
left: 50%;
|
|
875
|
+
transform: translateX(-15px)translateX(-50%);
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.react-flow__panel.left {
|
|
879
|
+
left: 0;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.react-flow__panel.right {
|
|
883
|
+
right: 0;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.react-flow__panel.left.center, .react-flow__panel.right.center {
|
|
887
|
+
top: 50%;
|
|
888
|
+
transform: translateY(-15px)translateY(-50%);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.react-flow__attribution {
|
|
892
|
+
background: var(--xy-attribution-background-color, var(--xy-attribution-background-color-default));
|
|
893
|
+
margin: 0;
|
|
894
|
+
padding: 2px 3px;
|
|
895
|
+
font-size: 10px;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.react-flow__attribution a {
|
|
899
|
+
text-decoration: none;
|
|
900
|
+
color: #999;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
@keyframes dashdraw {
|
|
904
|
+
from {
|
|
905
|
+
stroke-dashoffset: 10;
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.react-flow__edgelabel-renderer {
|
|
910
|
+
position: absolute;
|
|
911
|
+
pointer-events: none;
|
|
912
|
+
-webkit-user-select: none;
|
|
913
|
+
-moz-user-select: none;
|
|
914
|
+
user-select: none;
|
|
915
|
+
width: 100%;
|
|
916
|
+
height: 100%;
|
|
917
|
+
top: 0;
|
|
918
|
+
left: 0;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.react-flow__viewport-portal {
|
|
922
|
+
position: absolute;
|
|
923
|
+
-webkit-user-select: none;
|
|
924
|
+
-moz-user-select: none;
|
|
925
|
+
user-select: none;
|
|
926
|
+
width: 100%;
|
|
927
|
+
height: 100%;
|
|
928
|
+
top: 0;
|
|
929
|
+
left: 0;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.react-flow__minimap {
|
|
933
|
+
background: var(--xy-minimap-background-color-props, var(--xy-minimap-background-color, var(--xy-minimap-background-color-default)));
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.react-flow__minimap-svg {
|
|
937
|
+
display: block;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.react-flow__minimap-mask {
|
|
941
|
+
fill: var(--xy-minimap-mask-background-color-props, var(--xy-minimap-mask-background-color, var(--xy-minimap-mask-background-color-default)));
|
|
942
|
+
stroke: var(--xy-minimap-mask-stroke-color-props, var(--xy-minimap-mask-stroke-color, var(--xy-minimap-mask-stroke-color-default)));
|
|
943
|
+
stroke-width: var(--xy-minimap-mask-stroke-width-props, var(--xy-minimap-mask-stroke-width, var(--xy-minimap-mask-stroke-width-default)));
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.react-flow__minimap-node {
|
|
947
|
+
fill: var(--xy-minimap-node-background-color-props, var(--xy-minimap-node-background-color, var(--xy-minimap-node-background-color-default)));
|
|
948
|
+
stroke: var(--xy-minimap-node-stroke-color-props, var(--xy-minimap-node-stroke-color, var(--xy-minimap-node-stroke-color-default)));
|
|
949
|
+
stroke-width: var(--xy-minimap-node-stroke-width-props, var(--xy-minimap-node-stroke-width, var(--xy-minimap-node-stroke-width-default)));
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.react-flow__background-pattern.dots {
|
|
953
|
+
fill: var(--xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-dots-color-default)));
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.react-flow__background-pattern.lines {
|
|
957
|
+
stroke: var(--xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-lines-color-default)));
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.react-flow__background-pattern.cross {
|
|
961
|
+
stroke: var(--xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-cross-color-default)));
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.react-flow__controls {
|
|
965
|
+
display: flex;
|
|
966
|
+
box-shadow: var(--xy-controls-box-shadow, var(--xy-controls-box-shadow-default));
|
|
967
|
+
flex-direction: column;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.react-flow__controls.horizontal {
|
|
971
|
+
flex-direction: row;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.react-flow__controls-button {
|
|
975
|
+
display: flex;
|
|
976
|
+
background: var(--xy-controls-button-background-color, var(--xy-controls-button-background-color-default));
|
|
977
|
+
border: none;
|
|
978
|
+
border-bottom: 1px solid var(--xy-controls-button-border-color-props, var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default)));
|
|
979
|
+
color: var(--xy-controls-button-color-props, var(--xy-controls-button-color, var(--xy-controls-button-color-default)));
|
|
980
|
+
cursor: pointer;
|
|
981
|
+
-webkit-user-select: none;
|
|
982
|
+
-moz-user-select: none;
|
|
983
|
+
user-select: none;
|
|
984
|
+
justify-content: center;
|
|
985
|
+
align-items: center;
|
|
986
|
+
width: 26px;
|
|
987
|
+
height: 26px;
|
|
988
|
+
padding: 4px;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.react-flow__controls-button svg {
|
|
992
|
+
fill: currentColor;
|
|
993
|
+
width: 100%;
|
|
994
|
+
max-width: 12px;
|
|
995
|
+
max-height: 12px;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.react-flow__edge.updating .react-flow__edge-path {
|
|
999
|
+
stroke: #777;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.react-flow__edge-text {
|
|
1003
|
+
font-size: 10px;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.react-flow__node.selectable:focus {
|
|
1007
|
+
outline: none;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.react-flow__node.selectable:focus-visible {
|
|
1011
|
+
outline: none;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.react-flow__node-input, .react-flow__node-default, .react-flow__node-output, .react-flow__node-group {
|
|
1015
|
+
border-radius: var(--xy-node-border-radius, var(--xy-node-border-radius-default));
|
|
1016
|
+
color: var(--xy-node-color, var(--xy-node-color-default));
|
|
1017
|
+
text-align: center;
|
|
1018
|
+
border: var(--xy-node-border, var(--xy-node-border-default));
|
|
1019
|
+
background-color: var(--xy-node-background-color, var(--xy-node-background-color-default));
|
|
1020
|
+
width: 150px;
|
|
1021
|
+
padding: 10px;
|
|
1022
|
+
font-size: 12px;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.react-flow__node-input.selectable:hover, .react-flow__node-default.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
|
|
1026
|
+
box-shadow: var(--xy-node-boxshadow-hover, var(--xy-node-boxshadow-hover-default));
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.react-flow__node-input.selectable.selected, .react-flow__node-input.selectable:focus, .react-flow__node-default.selectable.selected, .react-flow__node-default.selectable:focus, .react-flow__node-output.selectable.selected, .react-flow__node-output.selectable:focus, .react-flow__node-group.selectable.selected, .react-flow__node-group.selectable:focus {
|
|
1030
|
+
box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.react-flow__node-input.selectable:focus-visible {
|
|
1034
|
+
box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.react-flow__node-default.selectable:focus-visible {
|
|
1038
|
+
box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.react-flow__node-output.selectable:focus-visible {
|
|
1042
|
+
box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.react-flow__node-group.selectable:focus-visible {
|
|
1046
|
+
box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.react-flow__node-group {
|
|
1050
|
+
background-color: var(--xy-node-group-background-color, var(--xy-node-group-background-color-default));
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.react-flow__nodesselection-rect, .react-flow__selection {
|
|
1054
|
+
background: var(--xy-selection-background-color, var(--xy-selection-background-color-default));
|
|
1055
|
+
border: var(--xy-selection-border, var(--xy-selection-border-default));
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.react-flow__nodesselection-rect:focus, .react-flow__selection:focus {
|
|
1059
|
+
outline: none;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.react-flow__nodesselection-rect:focus-visible {
|
|
1063
|
+
outline: none;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.react-flow__selection:focus-visible {
|
|
1067
|
+
outline: none;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.react-flow__controls-button:hover {
|
|
1071
|
+
background: var(--xy-controls-button-background-color-hover-props, var(--xy-controls-button-background-color-hover, var(--xy-controls-button-background-color-hover-default)));
|
|
1072
|
+
color: var(--xy-controls-button-color-hover-props, var(--xy-controls-button-color-hover, var(--xy-controls-button-color-hover-default)));
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.react-flow__controls-button:disabled {
|
|
1076
|
+
pointer-events: none;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.react-flow__controls-button:disabled svg {
|
|
1080
|
+
fill-opacity: .4;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.react-flow__controls-button:last-child {
|
|
1084
|
+
border-bottom: none;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.react-flow__controls.horizontal .react-flow__controls-button {
|
|
1088
|
+
border-bottom: none;
|
|
1089
|
+
border-right: 1px solid var(--xy-controls-button-border-color-props, var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default)));
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.react-flow__controls.horizontal .react-flow__controls-button:last-child {
|
|
1093
|
+
border-right: none;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.react-flow__resize-control {
|
|
1097
|
+
position: absolute;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.react-flow__resize-control.left, .react-flow__resize-control.right {
|
|
1101
|
+
cursor: ew-resize;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.react-flow__resize-control.top, .react-flow__resize-control.bottom {
|
|
1105
|
+
cursor: ns-resize;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.react-flow__resize-control.top.left, .react-flow__resize-control.bottom.right {
|
|
1109
|
+
cursor: nwse-resize;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.react-flow__resize-control.bottom.left, .react-flow__resize-control.top.right {
|
|
1113
|
+
cursor: nesw-resize;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.react-flow__resize-control.handle {
|
|
1117
|
+
background-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
|
|
1118
|
+
border: 1px solid #fff;
|
|
1119
|
+
border-radius: 1px;
|
|
1120
|
+
width: 5px;
|
|
1121
|
+
height: 5px;
|
|
1122
|
+
translate: -50% -50%;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.react-flow__resize-control.handle.left {
|
|
1126
|
+
top: 50%;
|
|
1127
|
+
left: 0;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
.react-flow__resize-control.handle.right {
|
|
1131
|
+
top: 50%;
|
|
1132
|
+
left: 100%;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
.react-flow__resize-control.handle.top {
|
|
1136
|
+
top: 0;
|
|
1137
|
+
left: 50%;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.react-flow__resize-control.handle.bottom {
|
|
1141
|
+
top: 100%;
|
|
1142
|
+
left: 50%;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.react-flow__resize-control.handle.top.left, .react-flow__resize-control.handle.bottom.left {
|
|
1146
|
+
left: 0;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.react-flow__resize-control.handle.top.right, .react-flow__resize-control.handle.bottom.right {
|
|
1150
|
+
left: 100%;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.react-flow__resize-control.line {
|
|
1154
|
+
border-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
|
|
1155
|
+
border-style: solid;
|
|
1156
|
+
border-width: 0;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.react-flow__resize-control.line.left, .react-flow__resize-control.line.right {
|
|
1160
|
+
width: 1px;
|
|
1161
|
+
height: 100%;
|
|
1162
|
+
top: 0;
|
|
1163
|
+
transform: translate(-50%);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.react-flow__resize-control.line.left {
|
|
1167
|
+
border-left-width: 1px;
|
|
1168
|
+
left: 0;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.react-flow__resize-control.line.right {
|
|
1172
|
+
border-right-width: 1px;
|
|
1173
|
+
left: 100%;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.react-flow__resize-control.line.top, .react-flow__resize-control.line.bottom {
|
|
1177
|
+
width: 100%;
|
|
1178
|
+
height: 1px;
|
|
1179
|
+
left: 0;
|
|
1180
|
+
transform: translate(0, -50%);
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.react-flow__resize-control.line.top {
|
|
1184
|
+
border-top-width: 1px;
|
|
1185
|
+
top: 0;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.react-flow__resize-control.line.bottom {
|
|
1189
|
+
border-bottom-width: 1px;
|
|
1190
|
+
top: 100%;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.react-flow__edge-textbg {
|
|
1194
|
+
fill: var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default));
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.react-flow__edge-text {
|
|
1198
|
+
fill: var(--xy-edge-label-color, var(--xy-edge-label-color-default));
|
|
1199
|
+
}
|