@backbay/glia 0.2.0-alpha.1
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 +22 -0
- package/README.md +492 -0
- package/dist/audio/hooks/index.d.ts +15 -0
- package/dist/audio/hooks/index.d.ts.map +1 -0
- package/dist/audio/hooks/index.js +7 -0
- package/dist/audio/hooks/useAudioOverlay.d.ts +43 -0
- package/dist/audio/hooks/useAudioOverlay.d.ts.map +1 -0
- package/dist/audio/hooks/useAudioOverlay.js +48 -0
- package/dist/audio/hooks/useAudioPlayer.d.ts +14 -0
- package/dist/audio/hooks/useAudioPlayer.d.ts.map +1 -0
- package/dist/audio/hooks/useAudioPlayer.js +96 -0
- package/dist/audio/hooks/useBargeIn.d.ts +27 -0
- package/dist/audio/hooks/useBargeIn.d.ts.map +1 -0
- package/dist/audio/hooks/useBargeIn.js +65 -0
- package/dist/audio/hooks/useCognitionSpeech.d.ts +52 -0
- package/dist/audio/hooks/useCognitionSpeech.d.ts.map +1 -0
- package/dist/audio/hooks/useCognitionSpeech.js +77 -0
- package/dist/audio/hooks/useHybridSpeech.d.ts +24 -0
- package/dist/audio/hooks/useHybridSpeech.d.ts.map +1 -0
- package/dist/audio/hooks/useHybridSpeech.js +40 -0
- package/dist/audio/hooks/useRunSpeechCues.d.ts +28 -0
- package/dist/audio/hooks/useRunSpeechCues.d.ts.map +1 -0
- package/dist/audio/hooks/useRunSpeechCues.js +47 -0
- package/dist/audio/hooks/useSpeechSynthesis.d.ts +58 -0
- package/dist/audio/hooks/useSpeechSynthesis.d.ts.map +1 -0
- package/dist/audio/hooks/useSpeechSynthesis.js +154 -0
- package/dist/audio/index.d.ts +12 -0
- package/dist/audio/index.d.ts.map +1 -0
- package/dist/audio/index.js +24 -0
- package/dist/audio/overlay.d.ts +9 -0
- package/dist/audio/overlay.d.ts.map +1 -0
- package/dist/audio/overlay.js +15 -0
- package/dist/audio/planner.d.ts +51 -0
- package/dist/audio/planner.d.ts.map +1 -0
- package/dist/audio/planner.js +122 -0
- package/dist/audio/providers/httpSpeechSynthesisProvider.d.ts +33 -0
- package/dist/audio/providers/httpSpeechSynthesisProvider.d.ts.map +1 -0
- package/dist/audio/providers/httpSpeechSynthesisProvider.js +83 -0
- package/dist/audio/schema.d.ts +1741 -0
- package/dist/audio/schema.d.ts.map +1 -0
- package/dist/audio/schema.js +116 -0
- package/dist/audio/types.d.ts +175 -0
- package/dist/audio/types.d.ts.map +1 -0
- package/dist/audio/types.js +18 -0
- package/dist/cognition/controller.d.ts +97 -0
- package/dist/cognition/controller.d.ts.map +1 -0
- package/dist/cognition/controller.js +145 -0
- package/dist/cognition/hooks/index.d.ts +3 -0
- package/dist/cognition/hooks/index.d.ts.map +1 -0
- package/dist/cognition/hooks/index.js +1 -0
- package/dist/cognition/hooks/useCognition.d.ts +36 -0
- package/dist/cognition/hooks/useCognition.d.ts.map +1 -0
- package/dist/cognition/hooks/useCognition.js +88 -0
- package/dist/cognition/index.d.ts +10 -0
- package/dist/cognition/index.d.ts.map +1 -0
- package/dist/cognition/index.js +20 -0
- package/dist/cognition/reducers.d.ts +27 -0
- package/dist/cognition/reducers.d.ts.map +1 -0
- package/dist/cognition/reducers.js +152 -0
- package/dist/cognition/schema.d.ts +594 -0
- package/dist/cognition/schema.d.ts.map +1 -0
- package/dist/cognition/schema.js +102 -0
- package/dist/cognition/types.d.ts +123 -0
- package/dist/cognition/types.d.ts.map +1 -0
- package/dist/cognition/types.js +26 -0
- package/dist/components/AgentPanel.d.ts +71 -0
- package/dist/components/AgentPanel.d.ts.map +1 -0
- package/dist/components/AgentPanel.js +55 -0
- package/dist/components/BBProvider.d.ts +47 -0
- package/dist/components/BBProvider.d.ts.map +1 -0
- package/dist/components/BBProvider.js +80 -0
- package/dist/components/ClusterHero/BriefingPanel.d.ts +15 -0
- package/dist/components/ClusterHero/BriefingPanel.d.ts.map +1 -0
- package/dist/components/ClusterHero/BriefingPanel.js +54 -0
- package/dist/components/ClusterHero/ClusterAtmosphere.d.ts +8 -0
- package/dist/components/ClusterHero/ClusterAtmosphere.d.ts.map +1 -0
- package/dist/components/ClusterHero/ClusterAtmosphere.js +9 -0
- package/dist/components/ClusterHero/ClusterHero.d.ts +22 -0
- package/dist/components/ClusterHero/ClusterHero.d.ts.map +1 -0
- package/dist/components/ClusterHero/ClusterHero.js +42 -0
- package/dist/components/ClusterHero/ClusterHeroPage.d.ts +27 -0
- package/dist/components/ClusterHero/ClusterHeroPage.d.ts.map +1 -0
- package/dist/components/ClusterHero/ClusterHeroPage.js +189 -0
- package/dist/components/ClusterHero/ClusterRail.d.ts +13 -0
- package/dist/components/ClusterHero/ClusterRail.d.ts.map +1 -0
- package/dist/components/ClusterHero/ClusterRail.js +84 -0
- package/dist/components/ClusterHero/GradientVeil.d.ts +11 -0
- package/dist/components/ClusterHero/GradientVeil.d.ts.map +1 -0
- package/dist/components/ClusterHero/GradientVeil.js +22 -0
- package/dist/components/ClusterHero/HeroContent.d.ts +14 -0
- package/dist/components/ClusterHero/HeroContent.d.ts.map +1 -0
- package/dist/components/ClusterHero/HeroContent.js +49 -0
- package/dist/components/ClusterHero/LiveStrip.d.ts +8 -0
- package/dist/components/ClusterHero/LiveStrip.d.ts.map +1 -0
- package/dist/components/ClusterHero/LiveStrip.js +26 -0
- package/dist/components/ClusterHero/ScrollIndicator.d.ts +10 -0
- package/dist/components/ClusterHero/ScrollIndicator.d.ts.map +1 -0
- package/dist/components/ClusterHero/ScrollIndicator.js +18 -0
- package/dist/components/ClusterHero/SigilMonument.d.ts +13 -0
- package/dist/components/ClusterHero/SigilMonument.d.ts.map +1 -0
- package/dist/components/ClusterHero/SigilMonument.js +87 -0
- package/dist/components/ClusterHero/StructuralElements.d.ts +8 -0
- package/dist/components/ClusterHero/StructuralElements.d.ts.map +1 -0
- package/dist/components/ClusterHero/StructuralElements.js +47 -0
- package/dist/components/ClusterHero/VideoBackground.d.ts +37 -0
- package/dist/components/ClusterHero/VideoBackground.d.ts.map +1 -0
- package/dist/components/ClusterHero/VideoBackground.js +135 -0
- package/dist/components/ClusterHero/config.d.ts +20 -0
- package/dist/components/ClusterHero/config.d.ts.map +1 -0
- package/dist/components/ClusterHero/config.js +289 -0
- package/dist/components/ClusterHero/index.d.ts +17 -0
- package/dist/components/ClusterHero/index.d.ts.map +1 -0
- package/dist/components/ClusterHero/index.js +20 -0
- package/dist/components/ClusterHero/sections/CTASection.d.ts +14 -0
- package/dist/components/ClusterHero/sections/CTASection.d.ts.map +1 -0
- package/dist/components/ClusterHero/sections/CTASection.js +105 -0
- package/dist/components/ClusterHero/sections/ClusterStatsSection.d.ts +11 -0
- package/dist/components/ClusterHero/sections/ClusterStatsSection.d.ts.map +1 -0
- package/dist/components/ClusterHero/sections/ClusterStatsSection.js +121 -0
- package/dist/components/ClusterHero/sections/FeatureCardsSection.d.ts +15 -0
- package/dist/components/ClusterHero/sections/FeatureCardsSection.d.ts.map +1 -0
- package/dist/components/ClusterHero/sections/FeatureCardsSection.js +187 -0
- package/dist/components/ClusterHero/sections/index.d.ts +4 -0
- package/dist/components/ClusterHero/sections/index.d.ts.map +1 -0
- package/dist/components/ClusterHero/sections/index.js +3 -0
- package/dist/components/ClusterHero/types.d.ts +111 -0
- package/dist/components/ClusterHero/types.d.ts.map +1 -0
- package/dist/components/ClusterHero/types.js +1 -0
- package/dist/components/ClusterHero/useVideoPreload.d.ts +28 -0
- package/dist/components/ClusterHero/useVideoPreload.d.ts.map +1 -0
- package/dist/components/ClusterHero/useVideoPreload.js +60 -0
- package/dist/components/PlaySession.d.ts +48 -0
- package/dist/components/PlaySession.d.ts.map +1 -0
- package/dist/components/PlaySession.js +51 -0
- package/dist/components/SyncDocument.d.ts +50 -0
- package/dist/components/SyncDocument.d.ts.map +1 -0
- package/dist/components/SyncDocument.js +37 -0
- package/dist/components/index.d.ts +9 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/index.js +8 -0
- package/dist/core.d.ts +19 -0
- package/dist/core.d.ts.map +1 -0
- package/dist/core.js +24 -0
- package/dist/desktop/components/desktop/Desktop.d.ts +49 -0
- package/dist/desktop/components/desktop/Desktop.d.ts.map +1 -0
- package/dist/desktop/components/desktop/Desktop.js +110 -0
- package/dist/desktop/components/desktop/DesktopIcon.d.ts +52 -0
- package/dist/desktop/components/desktop/DesktopIcon.d.ts.map +1 -0
- package/dist/desktop/components/desktop/DesktopIcon.js +185 -0
- package/dist/desktop/components/desktop/SnapZoneOverlay.d.ts +68 -0
- package/dist/desktop/components/desktop/SnapZoneOverlay.d.ts.map +1 -0
- package/dist/desktop/components/desktop/SnapZoneOverlay.js +138 -0
- package/dist/desktop/components/desktop/index.d.ts +9 -0
- package/dist/desktop/components/desktop/index.d.ts.map +1 -0
- package/dist/desktop/components/desktop/index.js +8 -0
- package/dist/desktop/components/index.d.ts +11 -0
- package/dist/desktop/components/index.d.ts.map +1 -0
- package/dist/desktop/components/index.js +13 -0
- package/dist/desktop/components/shell/Clock.d.ts +35 -0
- package/dist/desktop/components/shell/Clock.d.ts.map +1 -0
- package/dist/desktop/components/shell/Clock.js +159 -0
- package/dist/desktop/components/shell/ContextMenu.d.ts +44 -0
- package/dist/desktop/components/shell/ContextMenu.d.ts.map +1 -0
- package/dist/desktop/components/shell/ContextMenu.js +158 -0
- package/dist/desktop/components/shell/Taskbar.d.ts +111 -0
- package/dist/desktop/components/shell/Taskbar.d.ts.map +1 -0
- package/dist/desktop/components/shell/Taskbar.js +182 -0
- package/dist/desktop/components/shell/TaskbarButton.d.ts +54 -0
- package/dist/desktop/components/shell/TaskbarButton.d.ts.map +1 -0
- package/dist/desktop/components/shell/TaskbarButton.js +116 -0
- package/dist/desktop/components/shell/index.d.ts +31 -0
- package/dist/desktop/components/shell/index.d.ts.map +1 -0
- package/dist/desktop/components/shell/index.js +31 -0
- package/dist/desktop/components/window/Window.d.ts +122 -0
- package/dist/desktop/components/window/Window.d.ts.map +1 -0
- package/dist/desktop/components/window/Window.js +416 -0
- package/dist/desktop/components/window/WindowTitlebar.d.ts +71 -0
- package/dist/desktop/components/window/WindowTitlebar.d.ts.map +1 -0
- package/dist/desktop/components/window/WindowTitlebar.js +191 -0
- package/dist/desktop/components/window/index.d.ts +10 -0
- package/dist/desktop/components/window/index.d.ts.map +1 -0
- package/dist/desktop/components/window/index.js +9 -0
- package/dist/desktop/core/desktop/index.d.ts +6 -0
- package/dist/desktop/core/desktop/index.d.ts.map +1 -0
- package/dist/desktop/core/desktop/index.js +5 -0
- package/dist/desktop/core/desktop/types.d.ts +185 -0
- package/dist/desktop/core/desktop/types.d.ts.map +1 -0
- package/dist/desktop/core/desktop/types.js +6 -0
- package/dist/desktop/core/desktop/useSnapZones.d.ts +52 -0
- package/dist/desktop/core/desktop/useSnapZones.d.ts.map +1 -0
- package/dist/desktop/core/desktop/useSnapZones.js +128 -0
- package/dist/desktop/core/index.d.ts +10 -0
- package/dist/desktop/core/index.d.ts.map +1 -0
- package/dist/desktop/core/index.js +9 -0
- package/dist/desktop/core/shell/index.d.ts +6 -0
- package/dist/desktop/core/shell/index.d.ts.map +1 -0
- package/dist/desktop/core/shell/index.js +5 -0
- package/dist/desktop/core/shell/types.d.ts +169 -0
- package/dist/desktop/core/shell/types.d.ts.map +1 -0
- package/dist/desktop/core/shell/types.js +6 -0
- package/dist/desktop/core/shell/useTaskbar.d.ts +65 -0
- package/dist/desktop/core/shell/useTaskbar.d.ts.map +1 -0
- package/dist/desktop/core/shell/useTaskbar.js +221 -0
- package/dist/desktop/core/window/index.d.ts +6 -0
- package/dist/desktop/core/window/index.d.ts.map +1 -0
- package/dist/desktop/core/window/index.js +5 -0
- package/dist/desktop/core/window/types.d.ts +167 -0
- package/dist/desktop/core/window/types.d.ts.map +1 -0
- package/dist/desktop/core/window/types.js +7 -0
- package/dist/desktop/core/window/useWindowManager.d.ts +165 -0
- package/dist/desktop/core/window/useWindowManager.d.ts.map +1 -0
- package/dist/desktop/core/window/useWindowManager.js +953 -0
- package/dist/desktop/index.d.ts +40 -0
- package/dist/desktop/index.d.ts.map +1 -0
- package/dist/desktop/index.js +50 -0
- package/dist/desktop/providers/DesktopOSProvider.d.ts +93 -0
- package/dist/desktop/providers/DesktopOSProvider.d.ts.map +1 -0
- package/dist/desktop/providers/DesktopOSProvider.js +246 -0
- package/dist/desktop/providers/ThemeProvider.d.ts +51 -0
- package/dist/desktop/providers/ThemeProvider.d.ts.map +1 -0
- package/dist/desktop/providers/ThemeProvider.js +93 -0
- package/dist/desktop/providers/index.d.ts +6 -0
- package/dist/desktop/providers/index.d.ts.map +1 -0
- package/dist/desktop/providers/index.js +5 -0
- package/dist/desktop/themes/default.d.ts +18 -0
- package/dist/desktop/themes/default.d.ts.map +1 -0
- package/dist/desktop/themes/default.js +90 -0
- package/dist/desktop/themes/index.d.ts +6 -0
- package/dist/desktop/themes/index.d.ts.map +1 -0
- package/dist/desktop/themes/index.js +5 -0
- package/dist/desktop/themes/types.d.ts +147 -0
- package/dist/desktop/themes/types.d.ts.map +1 -0
- package/dist/desktop/themes/types.js +71 -0
- package/dist/emotion/constants.d.ts +35 -0
- package/dist/emotion/constants.d.ts.map +1 -0
- package/dist/emotion/constants.js +86 -0
- package/dist/emotion/controller.d.ts +97 -0
- package/dist/emotion/controller.d.ts.map +1 -0
- package/dist/emotion/controller.js +203 -0
- package/dist/emotion/hooks/index.d.ts +3 -0
- package/dist/emotion/hooks/index.d.ts.map +1 -0
- package/dist/emotion/hooks/index.js +2 -0
- package/dist/emotion/hooks/useEmotion.d.ts +60 -0
- package/dist/emotion/hooks/useEmotion.d.ts.map +1 -0
- package/dist/emotion/hooks/useEmotion.js +121 -0
- package/dist/emotion/index.d.ts +10 -0
- package/dist/emotion/index.d.ts.map +1 -0
- package/dist/emotion/index.js +13 -0
- package/dist/emotion/mapping.d.ts +55 -0
- package/dist/emotion/mapping.d.ts.map +1 -0
- package/dist/emotion/mapping.js +118 -0
- package/dist/emotion/micro-expressions.d.ts +19 -0
- package/dist/emotion/micro-expressions.d.ts.map +1 -0
- package/dist/emotion/micro-expressions.js +75 -0
- package/dist/emotion/transitions.d.ts +29 -0
- package/dist/emotion/transitions.d.ts.map +1 -0
- package/dist/emotion/transitions.js +74 -0
- package/dist/emotion/types.d.ts +84 -0
- package/dist/emotion/types.d.ts.map +1 -0
- package/dist/emotion/types.js +2 -0
- package/dist/hooks/index.d.ts +9 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +8 -0
- package/dist/hooks/useAgentRun.d.ts +36 -0
- package/dist/hooks/useAgentRun.d.ts.map +1 -0
- package/dist/hooks/useAgentRun.js +140 -0
- package/dist/hooks/useIntensity.d.ts +33 -0
- package/dist/hooks/useIntensity.d.ts.map +1 -0
- package/dist/hooks/useIntensity.js +128 -0
- package/dist/hooks/usePlaySession.d.ts +50 -0
- package/dist/hooks/usePlaySession.d.ts.map +1 -0
- package/dist/hooks/usePlaySession.js +208 -0
- package/dist/hooks/useRunStream.d.ts +39 -0
- package/dist/hooks/useRunStream.d.ts.map +1 -0
- package/dist/hooks/useRunStream.js +230 -0
- package/dist/hooks/useSync.d.ts +50 -0
- package/dist/hooks/useSync.d.ts.map +1 -0
- package/dist/hooks/useSync.js +336 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +52 -0
- package/dist/lib/motion.d.ts +30 -0
- package/dist/lib/motion.d.ts.map +1 -0
- package/dist/lib/motion.js +21 -0
- package/dist/lib/utils.d.ts +35 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/lib/utils.js +102 -0
- package/dist/primitives/ambient/DustMotesLayer.d.ts +16 -0
- package/dist/primitives/ambient/DustMotesLayer.d.ts.map +1 -0
- package/dist/primitives/ambient/DustMotesLayer.js +93 -0
- package/dist/primitives/ambient/NebulaStarsLayer.d.ts +12 -0
- package/dist/primitives/ambient/NebulaStarsLayer.d.ts.map +1 -0
- package/dist/primitives/ambient/NebulaStarsLayer.js +99 -0
- package/dist/primitives/ambient/ThemedAmbientLayer.d.ts +15 -0
- package/dist/primitives/ambient/ThemedAmbientLayer.d.ts.map +1 -0
- package/dist/primitives/ambient/ThemedAmbientLayer.js +23 -0
- package/dist/primitives/ambient/index.d.ts +4 -0
- package/dist/primitives/ambient/index.d.ts.map +1 -0
- package/dist/primitives/ambient/index.js +3 -0
- package/dist/primitives/atoms/AuroraBackground/AuroraBackground.d.ts +8 -0
- package/dist/primitives/atoms/AuroraBackground/AuroraBackground.d.ts.map +1 -0
- package/dist/primitives/atoms/AuroraBackground/AuroraBackground.js +16 -0
- package/dist/primitives/atoms/AuroraBackground/index.d.ts +2 -0
- package/dist/primitives/atoms/AuroraBackground/index.d.ts.map +1 -0
- package/dist/primitives/atoms/AuroraBackground/index.js +1 -0
- package/dist/primitives/atoms/GlitchText/GlitchText.d.ts +9 -0
- package/dist/primitives/atoms/GlitchText/GlitchText.d.ts.map +1 -0
- package/dist/primitives/atoms/GlitchText/GlitchText.js +46 -0
- package/dist/primitives/atoms/GlitchText/index.d.ts +2 -0
- package/dist/primitives/atoms/GlitchText/index.d.ts.map +1 -0
- package/dist/primitives/atoms/GlitchText/index.js +1 -0
- package/dist/primitives/atoms/GlowButton/GlowButton.d.ts +19 -0
- package/dist/primitives/atoms/GlowButton/GlowButton.d.ts.map +1 -0
- package/dist/primitives/atoms/GlowButton/GlowButton.js +59 -0
- package/dist/primitives/atoms/GlowButton/index.d.ts +2 -0
- package/dist/primitives/atoms/GlowButton/index.d.ts.map +1 -0
- package/dist/primitives/atoms/GlowButton/index.js +1 -0
- package/dist/primitives/atoms/GlowInput/GlowInput.d.ts +25 -0
- package/dist/primitives/atoms/GlowInput/GlowInput.d.ts.map +1 -0
- package/dist/primitives/atoms/GlowInput/GlowInput.js +55 -0
- package/dist/primitives/atoms/GlowInput/index.d.ts +2 -0
- package/dist/primitives/atoms/GlowInput/index.d.ts.map +1 -0
- package/dist/primitives/atoms/GlowInput/index.js +1 -0
- package/dist/primitives/atoms/HUDProgressRing/HUDProgressRing.d.ts +27 -0
- package/dist/primitives/atoms/HUDProgressRing/HUDProgressRing.d.ts.map +1 -0
- package/dist/primitives/atoms/HUDProgressRing/HUDProgressRing.js +71 -0
- package/dist/primitives/atoms/HUDProgressRing/index.d.ts +2 -0
- package/dist/primitives/atoms/HUDProgressRing/index.d.ts.map +1 -0
- package/dist/primitives/atoms/HUDProgressRing/index.js +1 -0
- package/dist/primitives/atoms/IconPulse/IconPulse.d.ts +25 -0
- package/dist/primitives/atoms/IconPulse/IconPulse.d.ts.map +1 -0
- package/dist/primitives/atoms/IconPulse/IconPulse.js +111 -0
- package/dist/primitives/atoms/IconPulse/index.d.ts +2 -0
- package/dist/primitives/atoms/IconPulse/index.d.ts.map +1 -0
- package/dist/primitives/atoms/IconPulse/index.js +1 -0
- package/dist/primitives/atoms/PixelCanvas/PixelCanvas.d.ts +17 -0
- package/dist/primitives/atoms/PixelCanvas/PixelCanvas.d.ts.map +1 -0
- package/dist/primitives/atoms/PixelCanvas/PixelCanvas.js +340 -0
- package/dist/primitives/atoms/PixelCanvas/index.d.ts +2 -0
- package/dist/primitives/atoms/PixelCanvas/index.d.ts.map +1 -0
- package/dist/primitives/atoms/PixelCanvas/index.js +1 -0
- package/dist/primitives/atoms/StatBadge/StatBadge.d.ts +26 -0
- package/dist/primitives/atoms/StatBadge/StatBadge.d.ts.map +1 -0
- package/dist/primitives/atoms/StatBadge/StatBadge.js +73 -0
- package/dist/primitives/atoms/StatBadge/index.d.ts +2 -0
- package/dist/primitives/atoms/StatBadge/index.d.ts.map +1 -0
- package/dist/primitives/atoms/StatBadge/index.js +1 -0
- package/dist/primitives/atoms/TextGenerateEffect/TextGenerateEffect.d.ts +7 -0
- package/dist/primitives/atoms/TextGenerateEffect/TextGenerateEffect.d.ts.map +1 -0
- package/dist/primitives/atoms/TextGenerateEffect/TextGenerateEffect.js +26 -0
- package/dist/primitives/atoms/TextGenerateEffect/index.d.ts +2 -0
- package/dist/primitives/atoms/TextGenerateEffect/index.d.ts.map +1 -0
- package/dist/primitives/atoms/TextGenerateEffect/index.js +1 -0
- package/dist/primitives/atoms/TypingAnimation/TypingAnimation.d.ts +20 -0
- package/dist/primitives/atoms/TypingAnimation/TypingAnimation.d.ts.map +1 -0
- package/dist/primitives/atoms/TypingAnimation/TypingAnimation.js +84 -0
- package/dist/primitives/atoms/TypingAnimation/index.d.ts +2 -0
- package/dist/primitives/atoms/TypingAnimation/index.d.ts.map +1 -0
- package/dist/primitives/atoms/TypingAnimation/index.js +1 -0
- package/dist/primitives/atoms/VoiceCaptions/VoiceCaptions.d.ts +16 -0
- package/dist/primitives/atoms/VoiceCaptions/VoiceCaptions.d.ts.map +1 -0
- package/dist/primitives/atoms/VoiceCaptions/VoiceCaptions.js +192 -0
- package/dist/primitives/atoms/VoiceCaptions/index.d.ts +3 -0
- package/dist/primitives/atoms/VoiceCaptions/index.d.ts.map +1 -0
- package/dist/primitives/atoms/VoiceCaptions/index.js +1 -0
- package/dist/primitives/atoms/index.d.ts +12 -0
- package/dist/primitives/atoms/index.d.ts.map +1 -0
- package/dist/primitives/atoms/index.js +12 -0
- package/dist/primitives/environment/AuroraLayer/AuroraLayer.d.ts +3 -0
- package/dist/primitives/environment/AuroraLayer/AuroraLayer.d.ts.map +1 -0
- package/dist/primitives/environment/AuroraLayer/AuroraLayer.js +158 -0
- package/dist/primitives/environment/AuroraLayer/index.d.ts +3 -0
- package/dist/primitives/environment/AuroraLayer/index.d.ts.map +1 -0
- package/dist/primitives/environment/AuroraLayer/index.js +1 -0
- package/dist/primitives/environment/AuroraLayer/types.d.ts +16 -0
- package/dist/primitives/environment/AuroraLayer/types.d.ts.map +1 -0
- package/dist/primitives/environment/AuroraLayer/types.js +12 -0
- package/dist/primitives/environment/EnvironmentLayer/EnvironmentLayer.d.ts +23 -0
- package/dist/primitives/environment/EnvironmentLayer/EnvironmentLayer.d.ts.map +1 -0
- package/dist/primitives/environment/EnvironmentLayer/EnvironmentLayer.js +25 -0
- package/dist/primitives/environment/EnvironmentLayer/index.d.ts +5 -0
- package/dist/primitives/environment/EnvironmentLayer/index.d.ts.map +1 -0
- package/dist/primitives/environment/EnvironmentLayer/index.js +2 -0
- package/dist/primitives/environment/EnvironmentLayer/presets.d.ts +13 -0
- package/dist/primitives/environment/EnvironmentLayer/presets.d.ts.map +1 -0
- package/dist/primitives/environment/EnvironmentLayer/presets.js +98 -0
- package/dist/primitives/environment/FogLayer/FogLayer.d.ts +3 -0
- package/dist/primitives/environment/FogLayer/FogLayer.d.ts.map +1 -0
- package/dist/primitives/environment/FogLayer/FogLayer.js +77 -0
- package/dist/primitives/environment/FogLayer/index.d.ts +3 -0
- package/dist/primitives/environment/FogLayer/index.d.ts.map +1 -0
- package/dist/primitives/environment/FogLayer/index.js +1 -0
- package/dist/primitives/environment/FogLayer/types.d.ts +17 -0
- package/dist/primitives/environment/FogLayer/types.d.ts.map +1 -0
- package/dist/primitives/environment/FogLayer/types.js +26 -0
- package/dist/primitives/environment/VolumetricLight/VolumetricLight.d.ts +3 -0
- package/dist/primitives/environment/VolumetricLight/VolumetricLight.d.ts.map +1 -0
- package/dist/primitives/environment/VolumetricLight/VolumetricLight.js +145 -0
- package/dist/primitives/environment/VolumetricLight/index.d.ts +3 -0
- package/dist/primitives/environment/VolumetricLight/index.d.ts.map +1 -0
- package/dist/primitives/environment/VolumetricLight/index.js +1 -0
- package/dist/primitives/environment/VolumetricLight/types.d.ts +22 -0
- package/dist/primitives/environment/VolumetricLight/types.d.ts.map +1 -0
- package/dist/primitives/environment/VolumetricLight/types.js +12 -0
- package/dist/primitives/environment/WeatherLayer/WeatherLayer.d.ts +3 -0
- package/dist/primitives/environment/WeatherLayer/WeatherLayer.d.ts.map +1 -0
- package/dist/primitives/environment/WeatherLayer/WeatherLayer.js +157 -0
- package/dist/primitives/environment/WeatherLayer/cinematicCanvas.d.ts +6 -0
- package/dist/primitives/environment/WeatherLayer/cinematicCanvas.d.ts.map +1 -0
- package/dist/primitives/environment/WeatherLayer/cinematicCanvas.js +625 -0
- package/dist/primitives/environment/WeatherLayer/colors.d.ts +10 -0
- package/dist/primitives/environment/WeatherLayer/colors.d.ts.map +1 -0
- package/dist/primitives/environment/WeatherLayer/colors.js +14 -0
- package/dist/primitives/environment/WeatherLayer/index.d.ts +5 -0
- package/dist/primitives/environment/WeatherLayer/index.d.ts.map +1 -0
- package/dist/primitives/environment/WeatherLayer/index.js +2 -0
- package/dist/primitives/environment/WeatherLayer/leafPresets.d.ts +11 -0
- package/dist/primitives/environment/WeatherLayer/leafPresets.d.ts.map +1 -0
- package/dist/primitives/environment/WeatherLayer/leafPresets.js +9 -0
- package/dist/primitives/environment/WeatherLayer/particles.d.ts +12 -0
- package/dist/primitives/environment/WeatherLayer/particles.d.ts.map +1 -0
- package/dist/primitives/environment/WeatherLayer/particles.js +174 -0
- package/dist/primitives/environment/WeatherLayer/types.d.ts +49 -0
- package/dist/primitives/environment/WeatherLayer/types.d.ts.map +1 -0
- package/dist/primitives/environment/WeatherLayer/types.js +92 -0
- package/dist/primitives/environment/index.d.ts +17 -0
- package/dist/primitives/environment/index.d.ts.map +1 -0
- package/dist/primitives/environment/index.js +16 -0
- package/dist/primitives/environment/shared/index.d.ts +3 -0
- package/dist/primitives/environment/shared/index.d.ts.map +1 -0
- package/dist/primitives/environment/shared/index.js +2 -0
- package/dist/primitives/environment/shared/noise.d.ts +2 -0
- package/dist/primitives/environment/shared/noise.d.ts.map +1 -0
- package/dist/primitives/environment/shared/noise.js +8 -0
- package/dist/primitives/environment/shared/performance.d.ts +4 -0
- package/dist/primitives/environment/shared/performance.d.ts.map +1 -0
- package/dist/primitives/environment/shared/performance.js +28 -0
- package/dist/primitives/environment/shared/types.d.ts +18 -0
- package/dist/primitives/environment/shared/types.d.ts.map +1 -0
- package/dist/primitives/environment/shared/types.js +6 -0
- package/dist/primitives/index.d.ts +20 -0
- package/dist/primitives/index.d.ts.map +1 -0
- package/dist/primitives/index.js +19 -0
- package/dist/primitives/molecules/KPIStat/KPIStat.d.ts +37 -0
- package/dist/primitives/molecules/KPIStat/KPIStat.d.ts.map +1 -0
- package/dist/primitives/molecules/KPIStat/KPIStat.js +84 -0
- package/dist/primitives/molecules/KPIStat/index.d.ts +2 -0
- package/dist/primitives/molecules/KPIStat/index.d.ts.map +1 -0
- package/dist/primitives/molecules/KPIStat/index.js +1 -0
- package/dist/primitives/molecules/NeonToast/NeonToast.d.ts +84 -0
- package/dist/primitives/molecules/NeonToast/NeonToast.d.ts.map +1 -0
- package/dist/primitives/molecules/NeonToast/NeonToast.js +110 -0
- package/dist/primitives/molecules/NeonToast/index.d.ts +2 -0
- package/dist/primitives/molecules/NeonToast/index.d.ts.map +1 -0
- package/dist/primitives/molecules/NeonToast/index.js +1 -0
- package/dist/primitives/molecules/ThreeDCard/ThreeDCard.d.ts +24 -0
- package/dist/primitives/molecules/ThreeDCard/ThreeDCard.d.ts.map +1 -0
- package/dist/primitives/molecules/ThreeDCard/ThreeDCard.js +67 -0
- package/dist/primitives/molecules/ThreeDCard/index.d.ts +2 -0
- package/dist/primitives/molecules/ThreeDCard/index.d.ts.map +1 -0
- package/dist/primitives/molecules/ThreeDCard/index.js +1 -0
- package/dist/primitives/molecules/index.d.ts +4 -0
- package/dist/primitives/molecules/index.d.ts.map +1 -0
- package/dist/primitives/molecules/index.js +4 -0
- package/dist/primitives/organisms/BentoGrid/BentoGrid.d.ts +13 -0
- package/dist/primitives/organisms/BentoGrid/BentoGrid.d.ts.map +1 -0
- package/dist/primitives/organisms/BentoGrid/BentoGrid.js +9 -0
- package/dist/primitives/organisms/BentoGrid/index.d.ts +2 -0
- package/dist/primitives/organisms/BentoGrid/index.d.ts.map +1 -0
- package/dist/primitives/organisms/BentoGrid/index.js +1 -0
- package/dist/primitives/organisms/CommandPalette/CommandPalette.d.ts +39 -0
- package/dist/primitives/organisms/CommandPalette/CommandPalette.d.ts.map +1 -0
- package/dist/primitives/organisms/CommandPalette/CommandPalette.js +185 -0
- package/dist/primitives/organisms/CommandPalette/index.d.ts +2 -0
- package/dist/primitives/organisms/CommandPalette/index.d.ts.map +1 -0
- package/dist/primitives/organisms/CommandPalette/index.js +1 -0
- package/dist/primitives/organisms/Glass/GlassPanel.d.ts +46 -0
- package/dist/primitives/organisms/Glass/GlassPanel.d.ts.map +1 -0
- package/dist/primitives/organisms/Glass/GlassPanel.js +124 -0
- package/dist/primitives/organisms/Glass/index.d.ts +3 -0
- package/dist/primitives/organisms/Glass/index.d.ts.map +1 -0
- package/dist/primitives/organisms/Glass/index.js +1 -0
- package/dist/primitives/organisms/index.d.ts +4 -0
- package/dist/primitives/organisms/index.d.ts.map +1 -0
- package/dist/primitives/organisms/index.js +4 -0
- package/dist/primitives/three/AgentConsole/AgentConsole.d.ts +3 -0
- package/dist/primitives/three/AgentConsole/AgentConsole.d.ts.map +1 -0
- package/dist/primitives/three/AgentConsole/AgentConsole.js +40 -0
- package/dist/primitives/three/AgentConsole/ConsoleChat.d.ts +3 -0
- package/dist/primitives/three/AgentConsole/ConsoleChat.d.ts.map +1 -0
- package/dist/primitives/three/AgentConsole/ConsoleChat.js +74 -0
- package/dist/primitives/three/AgentConsole/FocusConstellation.d.ts +3 -0
- package/dist/primitives/three/AgentConsole/FocusConstellation.d.ts.map +1 -0
- package/dist/primitives/three/AgentConsole/FocusConstellation.js +111 -0
- package/dist/primitives/three/AgentConsole/GlyphAvatar.d.ts +3 -0
- package/dist/primitives/three/AgentConsole/GlyphAvatar.d.ts.map +1 -0
- package/dist/primitives/three/AgentConsole/GlyphAvatar.js +80 -0
- package/dist/primitives/three/AgentConsole/QuickActions.d.ts +3 -0
- package/dist/primitives/three/AgentConsole/QuickActions.d.ts.map +1 -0
- package/dist/primitives/three/AgentConsole/QuickActions.js +43 -0
- package/dist/primitives/three/AgentConsole/index.d.ts +14 -0
- package/dist/primitives/three/AgentConsole/index.d.ts.map +1 -0
- package/dist/primitives/three/AgentConsole/index.js +15 -0
- package/dist/primitives/three/AgentConsole/types.d.ts +155 -0
- package/dist/primitives/three/AgentConsole/types.d.ts.map +1 -0
- package/dist/primitives/three/AgentConsole/types.js +38 -0
- package/dist/primitives/three/AmbientField/AmbientField.d.ts +32 -0
- package/dist/primitives/three/AmbientField/AmbientField.d.ts.map +1 -0
- package/dist/primitives/three/AmbientField/AmbientField.js +156 -0
- package/dist/primitives/three/AmbientField/BackbayFieldBus.d.ts +10 -0
- package/dist/primitives/three/AmbientField/BackbayFieldBus.d.ts.map +1 -0
- package/dist/primitives/three/AmbientField/BackbayFieldBus.js +264 -0
- package/dist/primitives/three/AmbientField/FieldProvider.d.ts +21 -0
- package/dist/primitives/three/AmbientField/FieldProvider.d.ts.map +1 -0
- package/dist/primitives/three/AmbientField/FieldProvider.js +48 -0
- package/dist/primitives/three/AmbientField/index.d.ts +12 -0
- package/dist/primitives/three/AmbientField/index.d.ts.map +1 -0
- package/dist/primitives/three/AmbientField/index.js +8 -0
- package/dist/primitives/three/AmbientField/shaders/constellation.d.ts +17 -0
- package/dist/primitives/three/AmbientField/shaders/constellation.d.ts.map +1 -0
- package/dist/primitives/three/AmbientField/shaders/constellation.js +359 -0
- package/dist/primitives/three/AmbientField/types.d.ts +157 -0
- package/dist/primitives/three/AmbientField/types.d.ts.map +1 -0
- package/dist/primitives/three/AmbientField/types.js +20 -0
- package/dist/primitives/three/AttackGraph/AttackGraph.d.ts +3 -0
- package/dist/primitives/three/AttackGraph/AttackGraph.d.ts.map +1 -0
- package/dist/primitives/three/AttackGraph/AttackGraph.js +159 -0
- package/dist/primitives/three/AttackGraph/index.d.ts +14 -0
- package/dist/primitives/three/AttackGraph/index.d.ts.map +1 -0
- package/dist/primitives/three/AttackGraph/index.js +12 -0
- package/dist/primitives/three/AttackGraph/types.d.ts +42 -0
- package/dist/primitives/three/AttackGraph/types.d.ts.map +1 -0
- package/dist/primitives/three/AttackGraph/types.js +46 -0
- package/dist/primitives/three/AuditTrail/AuditTrail.d.ts +6 -0
- package/dist/primitives/three/AuditTrail/AuditTrail.d.ts.map +1 -0
- package/dist/primitives/three/AuditTrail/AuditTrail.js +294 -0
- package/dist/primitives/three/AuditTrail/index.d.ts +21 -0
- package/dist/primitives/three/AuditTrail/index.d.ts.map +1 -0
- package/dist/primitives/three/AuditTrail/index.js +19 -0
- package/dist/primitives/three/AuditTrail/types.d.ts +113 -0
- package/dist/primitives/three/AuditTrail/types.d.ts.map +1 -0
- package/dist/primitives/three/AuditTrail/types.js +78 -0
- package/dist/primitives/three/CrystallineOrganism/Breadcrumb.d.ts +8 -0
- package/dist/primitives/three/CrystallineOrganism/Breadcrumb.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/Breadcrumb.js +20 -0
- package/dist/primitives/three/CrystallineOrganism/CrystallineOrganism.d.ts +12 -0
- package/dist/primitives/three/CrystallineOrganism/CrystallineOrganism.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/CrystallineOrganism.js +143 -0
- package/dist/primitives/three/CrystallineOrganism/LatticeEdge.d.ts +8 -0
- package/dist/primitives/three/CrystallineOrganism/LatticeEdge.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/LatticeEdge.js +46 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismLattice.d.ts +8 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismLattice.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismLattice.js +100 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismParticles.d.ts +9 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismParticles.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismParticles.js +97 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismShell.d.ts +9 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismShell.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/OrganismShell.js +110 -0
- package/dist/primitives/three/CrystallineOrganism/constants.d.ts +84 -0
- package/dist/primitives/three/CrystallineOrganism/constants.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/constants.js +128 -0
- package/dist/primitives/three/CrystallineOrganism/index.d.ts +17 -0
- package/dist/primitives/three/CrystallineOrganism/index.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/index.js +16 -0
- package/dist/primitives/three/CrystallineOrganism/layouts/hexGrid.d.ts +19 -0
- package/dist/primitives/three/CrystallineOrganism/layouts/hexGrid.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/layouts/hexGrid.js +71 -0
- package/dist/primitives/three/CrystallineOrganism/layouts/index.d.ts +2 -0
- package/dist/primitives/three/CrystallineOrganism/layouts/index.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/layouts/index.js +1 -0
- package/dist/primitives/three/CrystallineOrganism/types.d.ts +100 -0
- package/dist/primitives/three/CrystallineOrganism/types.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/types.js +18 -0
- package/dist/primitives/three/CrystallineOrganism/useOrganismEmotion.d.ts +31 -0
- package/dist/primitives/three/CrystallineOrganism/useOrganismEmotion.d.ts.map +1 -0
- package/dist/primitives/three/CrystallineOrganism/useOrganismEmotion.js +59 -0
- package/dist/primitives/three/FirewallBarrier/FirewallBarrier.d.ts +3 -0
- package/dist/primitives/three/FirewallBarrier/FirewallBarrier.d.ts.map +1 -0
- package/dist/primitives/three/FirewallBarrier/FirewallBarrier.js +101 -0
- package/dist/primitives/three/FirewallBarrier/index.d.ts +14 -0
- package/dist/primitives/three/FirewallBarrier/index.d.ts.map +1 -0
- package/dist/primitives/three/FirewallBarrier/index.js +12 -0
- package/dist/primitives/three/FirewallBarrier/types.d.ts +41 -0
- package/dist/primitives/three/FirewallBarrier/types.d.ts.map +1 -0
- package/dist/primitives/three/FirewallBarrier/types.js +14 -0
- package/dist/primitives/three/Glyph/GlyphObject.d.ts +3 -0
- package/dist/primitives/three/Glyph/GlyphObject.d.ts.map +1 -0
- package/dist/primitives/three/Glyph/GlyphObject.js +311 -0
- package/dist/primitives/three/Glyph/index.d.ts +10 -0
- package/dist/primitives/three/Glyph/index.d.ts.map +1 -0
- package/dist/primitives/three/Glyph/index.js +9 -0
- package/dist/primitives/three/Glyph/types.d.ts +33 -0
- package/dist/primitives/three/Glyph/types.d.ts.map +1 -0
- package/dist/primitives/three/Glyph/types.js +1 -0
- package/dist/primitives/three/Glyph/useGlyphController.d.ts +24 -0
- package/dist/primitives/three/Glyph/useGlyphController.d.ts.map +1 -0
- package/dist/primitives/three/Glyph/useGlyphController.js +182 -0
- package/dist/primitives/three/Glyph/useGlyphEmotion.d.ts +26 -0
- package/dist/primitives/three/Glyph/useGlyphEmotion.d.ts.map +1 -0
- package/dist/primitives/three/Glyph/useGlyphEmotion.js +44 -0
- package/dist/primitives/three/Graph3D/Graph3D.d.ts +25 -0
- package/dist/primitives/three/Graph3D/Graph3D.d.ts.map +1 -0
- package/dist/primitives/three/Graph3D/Graph3D.js +120 -0
- package/dist/primitives/three/Graph3D/GraphEdge.d.ts +12 -0
- package/dist/primitives/three/Graph3D/GraphEdge.d.ts.map +1 -0
- package/dist/primitives/three/Graph3D/GraphEdge.js +45 -0
- package/dist/primitives/three/Graph3D/GraphNode.d.ts +17 -0
- package/dist/primitives/three/Graph3D/GraphNode.d.ts.map +1 -0
- package/dist/primitives/three/Graph3D/GraphNode.js +104 -0
- package/dist/primitives/three/Graph3D/types.d.ts +62 -0
- package/dist/primitives/three/Graph3D/types.d.ts.map +1 -0
- package/dist/primitives/three/Graph3D/types.js +1 -0
- package/dist/primitives/three/Graph3D/utils.d.ts +10 -0
- package/dist/primitives/three/Graph3D/utils.d.ts.map +1 -0
- package/dist/primitives/three/Graph3D/utils.js +145 -0
- package/dist/primitives/three/IntelFeed/IntelFeed.d.ts +3 -0
- package/dist/primitives/three/IntelFeed/IntelFeed.d.ts.map +1 -0
- package/dist/primitives/three/IntelFeed/IntelFeed.js +130 -0
- package/dist/primitives/three/IntelFeed/index.d.ts +14 -0
- package/dist/primitives/three/IntelFeed/index.d.ts.map +1 -0
- package/dist/primitives/three/IntelFeed/index.js +12 -0
- package/dist/primitives/three/IntelFeed/types.d.ts +42 -0
- package/dist/primitives/three/IntelFeed/types.d.ts.map +1 -0
- package/dist/primitives/three/IntelFeed/types.js +20 -0
- package/dist/primitives/three/NetworkTopology/NetworkTopology.d.ts +3 -0
- package/dist/primitives/three/NetworkTopology/NetworkTopology.d.ts.map +1 -0
- package/dist/primitives/three/NetworkTopology/NetworkTopology.js +208 -0
- package/dist/primitives/three/NetworkTopology/index.d.ts +20 -0
- package/dist/primitives/three/NetworkTopology/index.d.ts.map +1 -0
- package/dist/primitives/three/NetworkTopology/index.js +18 -0
- package/dist/primitives/three/NetworkTopology/types.d.ts +59 -0
- package/dist/primitives/three/NetworkTopology/types.d.ts.map +1 -0
- package/dist/primitives/three/NetworkTopology/types.js +56 -0
- package/dist/primitives/three/ParticleField/ParticleField.d.ts +8 -0
- package/dist/primitives/three/ParticleField/ParticleField.d.ts.map +1 -0
- package/dist/primitives/three/ParticleField/ParticleField.js +44 -0
- package/dist/primitives/three/ParticleField/index.d.ts +2 -0
- package/dist/primitives/three/ParticleField/index.d.ts.map +1 -0
- package/dist/primitives/three/ParticleField/index.js +1 -0
- package/dist/primitives/three/PermissionMatrix/PermissionMatrix.d.ts +14 -0
- package/dist/primitives/three/PermissionMatrix/PermissionMatrix.d.ts.map +1 -0
- package/dist/primitives/three/PermissionMatrix/PermissionMatrix.js +99 -0
- package/dist/primitives/three/PermissionMatrix/index.d.ts +10 -0
- package/dist/primitives/three/PermissionMatrix/index.d.ts.map +1 -0
- package/dist/primitives/three/PermissionMatrix/index.js +8 -0
- package/dist/primitives/three/PermissionMatrix/types.d.ts +44 -0
- package/dist/primitives/three/PermissionMatrix/types.d.ts.map +1 -0
- package/dist/primitives/three/PermissionMatrix/types.js +12 -0
- package/dist/primitives/three/QuantumField/ConstellationField.d.ts +9 -0
- package/dist/primitives/three/QuantumField/ConstellationField.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/ConstellationField.js +185 -0
- package/dist/primitives/three/QuantumField/FieldBus.d.ts +34 -0
- package/dist/primitives/three/QuantumField/FieldBus.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/FieldBus.js +278 -0
- package/dist/primitives/three/QuantumField/FieldLayer.d.ts +22 -0
- package/dist/primitives/three/QuantumField/FieldLayer.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/FieldLayer.js +307 -0
- package/dist/primitives/three/QuantumField/FieldProvider.d.ts +75 -0
- package/dist/primitives/three/QuantumField/FieldProvider.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/FieldProvider.js +313 -0
- package/dist/primitives/three/QuantumField/PcbField.d.ts +18 -0
- package/dist/primitives/three/QuantumField/PcbField.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/PcbField.js +317 -0
- package/dist/primitives/three/QuantumField/TrailRTT.d.ts +54 -0
- package/dist/primitives/three/QuantumField/TrailRTT.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/TrailRTT.js +176 -0
- package/dist/primitives/three/QuantumField/WaterField.d.ts +9 -0
- package/dist/primitives/three/QuantumField/WaterField.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/WaterField.js +179 -0
- package/dist/primitives/three/QuantumField/WaterSimRTT.d.ts +75 -0
- package/dist/primitives/three/QuantumField/WaterSimRTT.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/WaterSimRTT.js +238 -0
- package/dist/primitives/three/QuantumField/domMapping.d.ts +110 -0
- package/dist/primitives/three/QuantumField/domMapping.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/domMapping.js +124 -0
- package/dist/primitives/three/QuantumField/index.d.ts +29 -0
- package/dist/primitives/three/QuantumField/index.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/index.js +26 -0
- package/dist/primitives/three/QuantumField/styles/index.d.ts +9 -0
- package/dist/primitives/three/QuantumField/styles/index.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/styles/index.js +8 -0
- package/dist/primitives/three/QuantumField/styles/styleA.d.ts +56 -0
- package/dist/primitives/three/QuantumField/styles/styleA.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/styles/styleA.js +484 -0
- package/dist/primitives/three/QuantumField/styles/styleB.d.ts +128 -0
- package/dist/primitives/three/QuantumField/styles/styleB.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/styles/styleB.js +1134 -0
- package/dist/primitives/three/QuantumField/styles/styleC.d.ts +42 -0
- package/dist/primitives/three/QuantumField/styles/styleC.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/styles/styleC.js +244 -0
- package/dist/primitives/three/QuantumField/themes.d.ts +60 -0
- package/dist/primitives/three/QuantumField/themes.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/themes.js +182 -0
- package/dist/primitives/three/QuantumField/types.d.ts +261 -0
- package/dist/primitives/three/QuantumField/types.d.ts.map +1 -0
- package/dist/primitives/three/QuantumField/types.js +100 -0
- package/dist/primitives/three/SOCCommandCenter/SOCCommandCenter.d.ts +3 -0
- package/dist/primitives/three/SOCCommandCenter/SOCCommandCenter.d.ts.map +1 -0
- package/dist/primitives/three/SOCCommandCenter/SOCCommandCenter.js +80 -0
- package/dist/primitives/three/SOCCommandCenter/index.d.ts +20 -0
- package/dist/primitives/three/SOCCommandCenter/index.d.ts.map +1 -0
- package/dist/primitives/three/SOCCommandCenter/index.js +18 -0
- package/dist/primitives/three/SOCCommandCenter/types.d.ts +42 -0
- package/dist/primitives/three/SOCCommandCenter/types.d.ts.map +1 -0
- package/dist/primitives/three/SOCCommandCenter/types.js +157 -0
- package/dist/primitives/three/SecurityDashboard/SecurityDashboard.d.ts +6 -0
- package/dist/primitives/three/SecurityDashboard/SecurityDashboard.d.ts.map +1 -0
- package/dist/primitives/three/SecurityDashboard/SecurityDashboard.js +187 -0
- package/dist/primitives/three/SecurityDashboard/index.d.ts +29 -0
- package/dist/primitives/three/SecurityDashboard/index.d.ts.map +1 -0
- package/dist/primitives/three/SecurityDashboard/index.js +27 -0
- package/dist/primitives/three/SecurityDashboard/types.d.ts +110 -0
- package/dist/primitives/three/SecurityDashboard/types.d.ts.map +1 -0
- package/dist/primitives/three/SecurityDashboard/types.js +38 -0
- package/dist/primitives/three/SecurityShield/SecurityShield.d.ts +6 -0
- package/dist/primitives/three/SecurityShield/SecurityShield.d.ts.map +1 -0
- package/dist/primitives/three/SecurityShield/SecurityShield.js +200 -0
- package/dist/primitives/three/SecurityShield/index.d.ts +20 -0
- package/dist/primitives/three/SecurityShield/index.d.ts.map +1 -0
- package/dist/primitives/three/SecurityShield/index.js +18 -0
- package/dist/primitives/three/SecurityShield/types.d.ts +39 -0
- package/dist/primitives/three/SecurityShield/types.d.ts.map +1 -0
- package/dist/primitives/three/SecurityShield/types.js +27 -0
- package/dist/primitives/three/Sentinel/AvatarMode.d.ts +4 -0
- package/dist/primitives/three/Sentinel/AvatarMode.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/AvatarMode.js +443 -0
- package/dist/primitives/three/Sentinel/AvatarRenderer.d.ts +23 -0
- package/dist/primitives/three/Sentinel/AvatarRenderer.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/AvatarRenderer.js +112 -0
- package/dist/primitives/three/Sentinel/CameraPip.d.ts +10 -0
- package/dist/primitives/three/Sentinel/CameraPip.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/CameraPip.js +76 -0
- package/dist/primitives/three/Sentinel/CardinalItem.d.ts +5 -0
- package/dist/primitives/three/Sentinel/CardinalItem.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/CardinalItem.js +52 -0
- package/dist/primitives/three/Sentinel/CardinalMenu.d.ts +5 -0
- package/dist/primitives/three/Sentinel/CardinalMenu.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/CardinalMenu.js +255 -0
- package/dist/primitives/three/Sentinel/DockedMiniOrb.d.ts +4 -0
- package/dist/primitives/three/Sentinel/DockedMiniOrb.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/DockedMiniOrb.js +97 -0
- package/dist/primitives/three/Sentinel/RadialSubmenu.d.ts +5 -0
- package/dist/primitives/three/Sentinel/RadialSubmenu.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/RadialSubmenu.js +187 -0
- package/dist/primitives/three/Sentinel/SentinelConversation.d.ts +4 -0
- package/dist/primitives/three/Sentinel/SentinelConversation.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/SentinelConversation.js +405 -0
- package/dist/primitives/three/Sentinel/SentinelOrb.d.ts +4 -0
- package/dist/primitives/three/Sentinel/SentinelOrb.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/SentinelOrb.js +239 -0
- package/dist/primitives/three/Sentinel/SentinelOverlay.d.ts +4 -0
- package/dist/primitives/three/Sentinel/SentinelOverlay.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/SentinelOverlay.js +90 -0
- package/dist/primitives/three/Sentinel/SentinelProvider.d.ts +12 -0
- package/dist/primitives/three/Sentinel/SentinelProvider.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/SentinelProvider.js +81 -0
- package/dist/primitives/three/Sentinel/SentinelTether.d.ts +4 -0
- package/dist/primitives/three/Sentinel/SentinelTether.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/SentinelTether.js +71 -0
- package/dist/primitives/three/Sentinel/SigilPlaceholder.d.ts +6 -0
- package/dist/primitives/three/Sentinel/SigilPlaceholder.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/SigilPlaceholder.js +65 -0
- package/dist/primitives/three/Sentinel/VerticalSubmenu.d.ts +5 -0
- package/dist/primitives/three/Sentinel/VerticalSubmenu.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/VerticalSubmenu.js +105 -0
- package/dist/primitives/three/Sentinel/index.d.ts +67 -0
- package/dist/primitives/three/Sentinel/index.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/index.js +86 -0
- package/dist/primitives/three/Sentinel/sentinelStore.d.ts +33 -0
- package/dist/primitives/three/Sentinel/sentinelStore.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/sentinelStore.js +125 -0
- package/dist/primitives/three/Sentinel/types.d.ts +337 -0
- package/dist/primitives/three/Sentinel/types.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/types.js +6 -0
- package/dist/primitives/three/Sentinel/useCameraPermission.d.ts +9 -0
- package/dist/primitives/three/Sentinel/useCameraPermission.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/useCameraPermission.js +138 -0
- package/dist/primitives/three/Sentinel/useThrowPhysics.d.ts +9 -0
- package/dist/primitives/three/Sentinel/useThrowPhysics.d.ts.map +1 -0
- package/dist/primitives/three/Sentinel/useThrowPhysics.js +167 -0
- package/dist/primitives/three/SpatialWorkspace/CyntraWorkspace.d.ts +8 -0
- package/dist/primitives/three/SpatialWorkspace/CyntraWorkspace.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/CyntraWorkspace.js +54 -0
- package/dist/primitives/three/SpatialWorkspace/JobCluster.d.ts +3 -0
- package/dist/primitives/three/SpatialWorkspace/JobCluster.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/JobCluster.js +126 -0
- package/dist/primitives/three/SpatialWorkspace/NodeGraph.d.ts +3 -0
- package/dist/primitives/three/SpatialWorkspace/NodeGraph.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/NodeGraph.js +154 -0
- package/dist/primitives/three/SpatialWorkspace/ReceiptOrbit.d.ts +3 -0
- package/dist/primitives/three/SpatialWorkspace/ReceiptOrbit.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/ReceiptOrbit.js +135 -0
- package/dist/primitives/three/SpatialWorkspace/SpatialWorkspace.d.ts +3 -0
- package/dist/primitives/three/SpatialWorkspace/SpatialWorkspace.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/SpatialWorkspace.js +189 -0
- package/dist/primitives/three/SpatialWorkspace/TrustRings.d.ts +3 -0
- package/dist/primitives/three/SpatialWorkspace/TrustRings.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/TrustRings.js +63 -0
- package/dist/primitives/three/SpatialWorkspace/adapters.d.ts +56 -0
- package/dist/primitives/three/SpatialWorkspace/adapters.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/adapters.js +253 -0
- package/dist/primitives/three/SpatialWorkspace/index.d.ts +22 -0
- package/dist/primitives/three/SpatialWorkspace/index.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/index.js +17 -0
- package/dist/primitives/three/SpatialWorkspace/nexusAdapter.d.ts +53 -0
- package/dist/primitives/three/SpatialWorkspace/nexusAdapter.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/nexusAdapter.js +107 -0
- package/dist/primitives/three/SpatialWorkspace/types.d.ts +173 -0
- package/dist/primitives/three/SpatialWorkspace/types.d.ts.map +1 -0
- package/dist/primitives/three/SpatialWorkspace/types.js +170 -0
- package/dist/primitives/three/ThreatRadar/ThreatRadar.d.ts +12 -0
- package/dist/primitives/three/ThreatRadar/ThreatRadar.d.ts.map +1 -0
- package/dist/primitives/three/ThreatRadar/ThreatRadar.js +223 -0
- package/dist/primitives/three/ThreatRadar/index.d.ts +4 -0
- package/dist/primitives/three/ThreatRadar/index.d.ts.map +1 -0
- package/dist/primitives/three/ThreatRadar/index.js +2 -0
- package/dist/primitives/three/ThreatRadar/types.d.ts +74 -0
- package/dist/primitives/three/ThreatRadar/types.d.ts.map +1 -0
- package/dist/primitives/three/ThreatRadar/types.js +20 -0
- package/dist/primitives/three/index.d.ts +22 -0
- package/dist/primitives/three/index.d.ts.map +1 -0
- package/dist/primitives/three/index.js +37 -0
- package/dist/primitives/ui/alert-dialog.d.ts +15 -0
- package/dist/primitives/ui/alert-dialog.d.ts.map +1 -0
- package/dist/primitives/ui/alert-dialog.js +39 -0
- package/dist/primitives/ui/avatar.d.ts +7 -0
- package/dist/primitives/ui/avatar.d.ts.map +1 -0
- package/dist/primitives/ui/avatar.js +14 -0
- package/dist/primitives/ui/badge.d.ts +10 -0
- package/dist/primitives/ui/badge.d.ts.map +1 -0
- package/dist/primitives/ui/badge.js +22 -0
- package/dist/primitives/ui/button.d.ts +11 -0
- package/dist/primitives/ui/button.d.ts.map +1 -0
- package/dist/primitives/ui/button.js +33 -0
- package/dist/primitives/ui/dialog.d.ts +16 -0
- package/dist/primitives/ui/dialog.d.ts.map +1 -0
- package/dist/primitives/ui/dialog.js +36 -0
- package/dist/primitives/ui/dropdown-menu.d.ts +26 -0
- package/dist/primitives/ui/dropdown-menu.d.ts.map +1 -0
- package/dist/primitives/ui/dropdown-menu.js +51 -0
- package/dist/primitives/ui/index.d.ts +19 -0
- package/dist/primitives/ui/index.d.ts.map +1 -0
- package/dist/primitives/ui/index.js +23 -0
- package/dist/primitives/ui/input.d.ts +4 -0
- package/dist/primitives/ui/input.d.ts.map +1 -0
- package/dist/primitives/ui/input.js +6 -0
- package/dist/primitives/ui/label.d.ts +5 -0
- package/dist/primitives/ui/label.d.ts.map +1 -0
- package/dist/primitives/ui/label.js +8 -0
- package/dist/primitives/ui/popover.d.ts +8 -0
- package/dist/primitives/ui/popover.d.ts.map +1 -0
- package/dist/primitives/ui/popover.js +17 -0
- package/dist/primitives/ui/scroll-area.d.ts +6 -0
- package/dist/primitives/ui/scroll-area.d.ts.map +1 -0
- package/dist/primitives/ui/scroll-area.js +11 -0
- package/dist/primitives/ui/select.d.ts +16 -0
- package/dist/primitives/ui/select.d.ts.map +1 -0
- package/dist/primitives/ui/select.js +38 -0
- package/dist/primitives/ui/separator.d.ts +5 -0
- package/dist/primitives/ui/separator.d.ts.map +1 -0
- package/dist/primitives/ui/separator.js +8 -0
- package/dist/primitives/ui/skeleton.d.ts +4 -0
- package/dist/primitives/ui/skeleton.d.ts.map +1 -0
- package/dist/primitives/ui/skeleton.js +6 -0
- package/dist/primitives/ui/switch.d.ts +5 -0
- package/dist/primitives/ui/switch.d.ts.map +1 -0
- package/dist/primitives/ui/switch.js +8 -0
- package/dist/primitives/ui/tabs.d.ts +8 -0
- package/dist/primitives/ui/tabs.d.ts.map +1 -0
- package/dist/primitives/ui/tabs.js +17 -0
- package/dist/primitives/ui/textarea.d.ts +4 -0
- package/dist/primitives/ui/textarea.d.ts.map +1 -0
- package/dist/primitives/ui/textarea.js +6 -0
- package/dist/primitives/ui/toggle.d.ts +10 -0
- package/dist/primitives/ui/toggle.d.ts.map +1 -0
- package/dist/primitives/ui/toggle.js +26 -0
- package/dist/primitives/ui/tooltip.d.ts +8 -0
- package/dist/primitives/ui/tooltip.d.ts.map +1 -0
- package/dist/primitives/ui/tooltip.js +17 -0
- package/dist/protocol/branded.d.ts +131 -0
- package/dist/protocol/branded.d.ts.map +1 -0
- package/dist/protocol/branded.js +133 -0
- package/dist/protocol/dom.d.ts +148 -0
- package/dist/protocol/dom.d.ts.map +1 -0
- package/dist/protocol/dom.js +300 -0
- package/dist/protocol/index.d.ts +9 -0
- package/dist/protocol/index.d.ts.map +1 -0
- package/dist/protocol/index.js +30 -0
- package/dist/protocol/schema.d.ts +854 -0
- package/dist/protocol/schema.d.ts.map +1 -0
- package/dist/protocol/schema.js +155 -0
- package/dist/protocol/types.d.ts +256 -0
- package/dist/protocol/types.d.ts.map +1 -0
- package/dist/protocol/types.js +6 -0
- package/dist/speakeasy/SpeakeasyProvider.d.ts +57 -0
- package/dist/speakeasy/SpeakeasyProvider.d.ts.map +1 -0
- package/dist/speakeasy/SpeakeasyProvider.js +249 -0
- package/dist/speakeasy/auth/CapabilityIssuer.d.ts +22 -0
- package/dist/speakeasy/auth/CapabilityIssuer.d.ts.map +1 -0
- package/dist/speakeasy/auth/CapabilityIssuer.js +70 -0
- package/dist/speakeasy/auth/SpeakeasyAuth.d.ts +43 -0
- package/dist/speakeasy/auth/SpeakeasyAuth.d.ts.map +1 -0
- package/dist/speakeasy/auth/SpeakeasyAuth.js +147 -0
- package/dist/speakeasy/auth/crypto.d.ts +12 -0
- package/dist/speakeasy/auth/crypto.d.ts.map +1 -0
- package/dist/speakeasy/auth/crypto.js +68 -0
- package/dist/speakeasy/auth/deviceSecret.d.ts +17 -0
- package/dist/speakeasy/auth/deviceSecret.d.ts.map +1 -0
- package/dist/speakeasy/auth/deviceSecret.js +62 -0
- package/dist/speakeasy/auth/storage.d.ts +62 -0
- package/dist/speakeasy/auth/storage.d.ts.map +1 -0
- package/dist/speakeasy/auth/storage.js +344 -0
- package/dist/speakeasy/components/SpeakeasyConsentDialog.d.ts +24 -0
- package/dist/speakeasy/components/SpeakeasyConsentDialog.d.ts.map +1 -0
- package/dist/speakeasy/components/SpeakeasyConsentDialog.js +181 -0
- package/dist/speakeasy/components/SpeakeasyOrb.d.ts +14 -0
- package/dist/speakeasy/components/SpeakeasyOrb.d.ts.map +1 -0
- package/dist/speakeasy/components/SpeakeasyOrb.js +128 -0
- package/dist/speakeasy/components/SpeakeasyRegistrationDialog.d.ts +9 -0
- package/dist/speakeasy/components/SpeakeasyRegistrationDialog.d.ts.map +1 -0
- package/dist/speakeasy/components/SpeakeasyRegistrationDialog.js +93 -0
- package/dist/speakeasy/components/SpeakeasyRitualPad.d.ts +18 -0
- package/dist/speakeasy/components/SpeakeasyRitualPad.d.ts.map +1 -0
- package/dist/speakeasy/components/SpeakeasyRitualPad.js +63 -0
- package/dist/speakeasy/doorman/DoormanStateMachine.d.ts +40 -0
- package/dist/speakeasy/doorman/DoormanStateMachine.d.ts.map +1 -0
- package/dist/speakeasy/doorman/DoormanStateMachine.js +393 -0
- package/dist/speakeasy/doorman/panic.d.ts +10 -0
- package/dist/speakeasy/doorman/panic.d.ts.map +1 -0
- package/dist/speakeasy/doorman/panic.js +28 -0
- package/dist/speakeasy/hooks/useGestureRecognizer.d.ts +48 -0
- package/dist/speakeasy/hooks/useGestureRecognizer.d.ts.map +1 -0
- package/dist/speakeasy/hooks/useGestureRecognizer.js +337 -0
- package/dist/speakeasy/index.d.ts +47 -0
- package/dist/speakeasy/index.d.ts.map +1 -0
- package/dist/speakeasy/index.js +53 -0
- package/dist/speakeasy/types.d.ts +203 -0
- package/dist/speakeasy/types.d.ts.map +1 -0
- package/dist/speakeasy/types.js +52 -0
- package/dist/speakeasy/useSpeakeasy.d.ts +2 -0
- package/dist/speakeasy/useSpeakeasy.d.ts.map +1 -0
- package/dist/speakeasy/useSpeakeasy.js +1 -0
- package/dist/styles.css +1 -0
- package/dist/theme/UiThemeProvider.d.ts +42 -0
- package/dist/theme/UiThemeProvider.d.ts.map +1 -0
- package/dist/theme/UiThemeProvider.js +126 -0
- package/dist/theme/index.d.ts +12 -0
- package/dist/theme/index.d.ts.map +1 -0
- package/dist/theme/index.js +12 -0
- package/dist/theme/nebula.d.ts +9 -0
- package/dist/theme/nebula.d.ts.map +1 -0
- package/dist/theme/nebula.js +113 -0
- package/dist/theme/registry.d.ts +24 -0
- package/dist/theme/registry.d.ts.map +1 -0
- package/dist/theme/registry.js +250 -0
- package/dist/theme/solarpunk.d.ts +9 -0
- package/dist/theme/solarpunk.d.ts.map +1 -0
- package/dist/theme/solarpunk.js +118 -0
- package/dist/theme/types.d.ts +233 -0
- package/dist/theme/types.d.ts.map +1 -0
- package/dist/theme/types.js +7 -0
- package/dist/vision/adapters/canvasCapture.d.ts +24 -0
- package/dist/vision/adapters/canvasCapture.d.ts.map +1 -0
- package/dist/vision/adapters/canvasCapture.js +64 -0
- package/dist/vision/adapters/raymondAdapter.d.ts +62 -0
- package/dist/vision/adapters/raymondAdapter.d.ts.map +1 -0
- package/dist/vision/adapters/raymondAdapter.js +227 -0
- package/dist/vision/hooks/useVisionCaptureController.d.ts +21 -0
- package/dist/vision/hooks/useVisionCaptureController.d.ts.map +1 -0
- package/dist/vision/hooks/useVisionCaptureController.js +55 -0
- package/dist/vision/index.d.ts +6 -0
- package/dist/vision/index.d.ts.map +1 -0
- package/dist/vision/index.js +5 -0
- package/dist/vision/raymond/camera.d.ts +36 -0
- package/dist/vision/raymond/camera.d.ts.map +1 -0
- package/dist/vision/raymond/camera.js +129 -0
- package/dist/vision/raymond/canvas/Eye.d.ts +12 -0
- package/dist/vision/raymond/canvas/Eye.d.ts.map +1 -0
- package/dist/vision/raymond/canvas/Eye.js +50 -0
- package/dist/vision/raymond/canvas/PointLight.d.ts +12 -0
- package/dist/vision/raymond/canvas/PointLight.d.ts.map +1 -0
- package/dist/vision/raymond/canvas/PointLight.js +20 -0
- package/dist/vision/raymond/canvas/lightingModel.d.ts +26 -0
- package/dist/vision/raymond/canvas/lightingModel.d.ts.map +1 -0
- package/dist/vision/raymond/canvas/lightingModel.js +1 -0
- package/dist/vision/raymond/canvas/lightingModelRegistry.d.ts +12 -0
- package/dist/vision/raymond/canvas/lightingModelRegistry.d.ts.map +1 -0
- package/dist/vision/raymond/canvas/lightingModelRegistry.js +33 -0
- package/dist/vision/raymond/canvas/models/phongTracingModel.d.ts +13 -0
- package/dist/vision/raymond/canvas/models/phongTracingModel.d.ts.map +1 -0
- package/dist/vision/raymond/canvas/models/phongTracingModel.js +72 -0
- package/dist/vision/raymond/canvas/optics.d.ts +37 -0
- package/dist/vision/raymond/canvas/optics.d.ts.map +1 -0
- package/dist/vision/raymond/canvas/optics.js +343 -0
- package/dist/vision/raymond/index.d.ts +15 -0
- package/dist/vision/raymond/index.d.ts.map +1 -0
- package/dist/vision/raymond/index.js +14 -0
- package/dist/vision/raymond/math.d.ts +39 -0
- package/dist/vision/raymond/math.d.ts.map +1 -0
- package/dist/vision/raymond/math.js +162 -0
- package/dist/vision/raymond/shapes.d.ts +37 -0
- package/dist/vision/raymond/shapes.d.ts.map +1 -0
- package/dist/vision/raymond/shapes.js +123 -0
- package/dist/vision/raymond/shared/color.d.ts +18 -0
- package/dist/vision/raymond/shared/color.d.ts.map +1 -0
- package/dist/vision/raymond/shared/color.js +12 -0
- package/dist/vision/raymond/shared/material.d.ts +13 -0
- package/dist/vision/raymond/shared/material.d.ts.map +1 -0
- package/dist/vision/raymond/shared/material.js +12 -0
- package/dist/vision/raymond/shared/util.d.ts +2 -0
- package/dist/vision/raymond/shared/util.d.ts.map +1 -0
- package/dist/vision/raymond/shared/util.js +3 -0
- package/dist/vision/raymond/transform.d.ts +24 -0
- package/dist/vision/raymond/transform.d.ts.map +1 -0
- package/dist/vision/raymond/transform.js +86 -0
- package/dist/vision/raymond/types.d.ts +33 -0
- package/dist/vision/raymond/types.d.ts.map +1 -0
- package/dist/vision/raymond/types.js +1 -0
- package/dist/vision/types.d.ts +72 -0
- package/dist/vision/types.d.ts.map +1 -0
- package/dist/vision/types.js +1 -0
- package/dist/workspace/WorkspaceRenderer.d.ts +34 -0
- package/dist/workspace/WorkspaceRenderer.d.ts.map +1 -0
- package/dist/workspace/WorkspaceRenderer.js +292 -0
- package/dist/workspace/componentBindings.d.ts +26 -0
- package/dist/workspace/componentBindings.d.ts.map +1 -0
- package/dist/workspace/componentBindings.js +260 -0
- package/dist/workspace/index.d.ts +28 -0
- package/dist/workspace/index.d.ts.map +1 -0
- package/dist/workspace/index.js +27 -0
- package/dist/workspace/registry/index.d.ts +24 -0
- package/dist/workspace/registry/index.d.ts.map +1 -0
- package/dist/workspace/registry/index.js +23 -0
- package/dist/workspace/registry/manifests/atoms.d.ts +13 -0
- package/dist/workspace/registry/manifests/atoms.d.ts.map +1 -0
- package/dist/workspace/registry/manifests/atoms.js +462 -0
- package/dist/workspace/registry/manifests/index.d.ts +23 -0
- package/dist/workspace/registry/manifests/index.d.ts.map +1 -0
- package/dist/workspace/registry/manifests/index.js +38 -0
- package/dist/workspace/registry/manifests/layouts.d.ts +10 -0
- package/dist/workspace/registry/manifests/layouts.d.ts.map +1 -0
- package/dist/workspace/registry/manifests/layouts.js +268 -0
- package/dist/workspace/registry/manifests/molecules.d.ts +10 -0
- package/dist/workspace/registry/manifests/molecules.d.ts.map +1 -0
- package/dist/workspace/registry/manifests/molecules.js +276 -0
- package/dist/workspace/registry/manifests/organisms.d.ts +10 -0
- package/dist/workspace/registry/manifests/organisms.d.ts.map +1 -0
- package/dist/workspace/registry/manifests/organisms.js +267 -0
- package/dist/workspace/registry/manifests/three.d.ts +9 -0
- package/dist/workspace/registry/manifests/three.d.ts.map +1 -0
- package/dist/workspace/registry/manifests/three.js +210 -0
- package/dist/workspace/registry/registry.d.ts +22 -0
- package/dist/workspace/registry/registry.d.ts.map +1 -0
- package/dist/workspace/registry/registry.js +232 -0
- package/dist/workspace/registry/types.d.ts +133 -0
- package/dist/workspace/registry/types.d.ts.map +1 -0
- package/dist/workspace/registry/types.js +7 -0
- package/dist/workspace/types.d.ts +263 -0
- package/dist/workspace/types.d.ts.map +1 -0
- package/dist/workspace/types.js +7 -0
- package/dist/workspace/validation.d.ts +19 -0
- package/dist/workspace/validation.d.ts.map +1 -0
- package/dist/workspace/validation.js +331 -0
- package/package.json +172 -0
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Theme Registry
|
|
3
|
+
*
|
|
4
|
+
* Central registry of all available UI themes.
|
|
5
|
+
* Provides lookup and utility functions for theme management.
|
|
6
|
+
*/
|
|
7
|
+
import { nebulaTheme } from "./nebula";
|
|
8
|
+
import { solarpunkTheme } from "./solarpunk";
|
|
9
|
+
// ============================================================================
|
|
10
|
+
// THEME REGISTRY
|
|
11
|
+
// ============================================================================
|
|
12
|
+
export const THEMES = {
|
|
13
|
+
nebula: nebulaTheme,
|
|
14
|
+
solarpunk: solarpunkTheme,
|
|
15
|
+
};
|
|
16
|
+
export const DEFAULT_THEME_ID = "nebula";
|
|
17
|
+
export function getTheme(id) {
|
|
18
|
+
return THEMES[id] ?? THEMES[DEFAULT_THEME_ID];
|
|
19
|
+
}
|
|
20
|
+
export function getThemeIds() {
|
|
21
|
+
return Object.keys(THEMES);
|
|
22
|
+
}
|
|
23
|
+
function clampByte(value) {
|
|
24
|
+
if (Number.isNaN(value))
|
|
25
|
+
return 0;
|
|
26
|
+
return Math.min(255, Math.max(0, value));
|
|
27
|
+
}
|
|
28
|
+
function parseHexColor(hex) {
|
|
29
|
+
const value = hex.trim();
|
|
30
|
+
if (!value.startsWith("#"))
|
|
31
|
+
return null;
|
|
32
|
+
const raw = value.slice(1);
|
|
33
|
+
if (raw.length === 3) {
|
|
34
|
+
const r = Number.parseInt(raw[0] + raw[0], 16);
|
|
35
|
+
const g = Number.parseInt(raw[1] + raw[1], 16);
|
|
36
|
+
const b = Number.parseInt(raw[2] + raw[2], 16);
|
|
37
|
+
if ([r, g, b].some((n) => Number.isNaN(n)))
|
|
38
|
+
return null;
|
|
39
|
+
return { r, g, b };
|
|
40
|
+
}
|
|
41
|
+
if (raw.length === 6) {
|
|
42
|
+
const r = Number.parseInt(raw.slice(0, 2), 16);
|
|
43
|
+
const g = Number.parseInt(raw.slice(2, 4), 16);
|
|
44
|
+
const b = Number.parseInt(raw.slice(4, 6), 16);
|
|
45
|
+
if ([r, g, b].some((n) => Number.isNaN(n)))
|
|
46
|
+
return null;
|
|
47
|
+
return { r, g, b };
|
|
48
|
+
}
|
|
49
|
+
return null;
|
|
50
|
+
}
|
|
51
|
+
function parseRgbFunction(color) {
|
|
52
|
+
const match = color
|
|
53
|
+
.trim()
|
|
54
|
+
.match(/^rgba?\(\s*([\d.]+)\s*,\s*([\d.]+)\s*,\s*([\d.]+)(?:\s*,\s*[\d.]+)?\s*\)$/i);
|
|
55
|
+
if (!match)
|
|
56
|
+
return null;
|
|
57
|
+
const r = clampByte(Number.parseFloat(match[1]));
|
|
58
|
+
const g = clampByte(Number.parseFloat(match[2]));
|
|
59
|
+
const b = clampByte(Number.parseFloat(match[3]));
|
|
60
|
+
return { r, g, b };
|
|
61
|
+
}
|
|
62
|
+
function parseColorToRgb(color) {
|
|
63
|
+
return parseHexColor(color) ?? parseRgbFunction(color);
|
|
64
|
+
}
|
|
65
|
+
function rgbToHslComponents(rgb) {
|
|
66
|
+
const r = rgb.r / 255;
|
|
67
|
+
const g = rgb.g / 255;
|
|
68
|
+
const b = rgb.b / 255;
|
|
69
|
+
const max = Math.max(r, g, b);
|
|
70
|
+
const min = Math.min(r, g, b);
|
|
71
|
+
const delta = max - min;
|
|
72
|
+
let h = 0;
|
|
73
|
+
let s = 0;
|
|
74
|
+
const l = (max + min) / 2;
|
|
75
|
+
if (delta !== 0) {
|
|
76
|
+
s = l > 0.5 ? delta / (2 - max - min) : delta / (max + min);
|
|
77
|
+
switch (max) {
|
|
78
|
+
case r:
|
|
79
|
+
h = (g - b) / delta + (g < b ? 6 : 0);
|
|
80
|
+
break;
|
|
81
|
+
case g:
|
|
82
|
+
h = (b - r) / delta + 2;
|
|
83
|
+
break;
|
|
84
|
+
default:
|
|
85
|
+
h = (r - g) / delta + 4;
|
|
86
|
+
break;
|
|
87
|
+
}
|
|
88
|
+
h /= 6;
|
|
89
|
+
}
|
|
90
|
+
const hDeg = Math.round(h * 360);
|
|
91
|
+
const sPct = Math.round(s * 100);
|
|
92
|
+
const lPct = Math.round(l * 100);
|
|
93
|
+
return `${hDeg} ${sPct}% ${lPct}%`;
|
|
94
|
+
}
|
|
95
|
+
function colorToHslComponents(color) {
|
|
96
|
+
const rgb = parseColorToRgb(color);
|
|
97
|
+
if (!rgb)
|
|
98
|
+
return null;
|
|
99
|
+
return rgbToHslComponents(rgb);
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Converts a theme object to CSS custom properties
|
|
103
|
+
*/
|
|
104
|
+
export function themeToCssVariables(theme) {
|
|
105
|
+
return {
|
|
106
|
+
// Colors
|
|
107
|
+
"--theme-bg-body": theme.color.bg.body,
|
|
108
|
+
"--theme-bg-panel": theme.color.bg.panel,
|
|
109
|
+
"--theme-bg-elevated": theme.color.bg.elevated,
|
|
110
|
+
"--theme-bg-horizon": theme.color.bg.horizon,
|
|
111
|
+
"--theme-text-primary": theme.color.text.primary,
|
|
112
|
+
"--theme-text-muted": theme.color.text.muted,
|
|
113
|
+
"--theme-text-soft": theme.color.text.soft,
|
|
114
|
+
"--theme-accent-primary": theme.color.accent.primary,
|
|
115
|
+
"--theme-accent-secondary": theme.color.accent.secondary,
|
|
116
|
+
"--theme-accent-positive": theme.color.accent.positive,
|
|
117
|
+
"--theme-accent-warning": theme.color.accent.warning,
|
|
118
|
+
"--theme-accent-destructive": theme.color.accent.destructive,
|
|
119
|
+
"--theme-border": theme.color.border,
|
|
120
|
+
"--theme-ring": theme.color.ring,
|
|
121
|
+
// Glass
|
|
122
|
+
"--theme-glass-panel-bg": theme.glass.panelBg,
|
|
123
|
+
"--theme-glass-panel-border": theme.glass.panelBorder,
|
|
124
|
+
"--theme-glass-panel-blur": theme.glass.panelBlur,
|
|
125
|
+
"--theme-glass-header-gradient": theme.glass.headerGradient,
|
|
126
|
+
"--theme-glass-card-bg": theme.glass.cardBg,
|
|
127
|
+
"--theme-glass-card-border": theme.glass.cardBorder,
|
|
128
|
+
"--theme-glass-hover-bg": theme.glass.hoverBg,
|
|
129
|
+
"--theme-glass-active-border": theme.glass.activeBorder,
|
|
130
|
+
"--theme-glass-active-shadow": theme.glass.activeShadow,
|
|
131
|
+
// Elevation
|
|
132
|
+
"--theme-shadow-soft": theme.elevation.softDrop,
|
|
133
|
+
"--theme-shadow-hud-panel": theme.elevation.hudPanel,
|
|
134
|
+
"--theme-shadow-hud-rail": theme.elevation.hudRail,
|
|
135
|
+
"--theme-shadow-modal": theme.elevation.modal,
|
|
136
|
+
"--theme-shadow-glow": theme.elevation.glow,
|
|
137
|
+
// Ambient
|
|
138
|
+
"--theme-ambient-horizon": theme.ambient.horizonGradient,
|
|
139
|
+
"--theme-ambient-ripple-primary": theme.ambient.rippleColorPrimary,
|
|
140
|
+
"--theme-ambient-ripple-secondary": theme.ambient.rippleColorSecondary,
|
|
141
|
+
"--theme-ambient-glow-intensity": String(theme.ambient.glowIntensity),
|
|
142
|
+
// Controls
|
|
143
|
+
"--theme-switch-track-on": theme.controls.switch.track.bg.on,
|
|
144
|
+
"--theme-switch-track-off": theme.controls.switch.track.bg.off,
|
|
145
|
+
"--theme-switch-thumb-on": theme.controls.switch.thumb.bg.on,
|
|
146
|
+
"--theme-switch-thumb-off": theme.controls.switch.thumb.bg.off,
|
|
147
|
+
"--theme-button-glow-hover-bg": theme.controls.buttonGlow.hoverBg,
|
|
148
|
+
"--theme-button-glow-hover-text": theme.controls.buttonGlow.hoverText,
|
|
149
|
+
"--theme-button-glow-hover-shadow": theme.controls.buttonGlow.hoverShadow,
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
const TAILWIND_CSS_VARIABLE_KEYS = [
|
|
153
|
+
"--cyan-neon",
|
|
154
|
+
"--magenta-neon",
|
|
155
|
+
"--emerald-neon",
|
|
156
|
+
"--violet-neon",
|
|
157
|
+
"--yellow-warning",
|
|
158
|
+
"--background",
|
|
159
|
+
"--foreground",
|
|
160
|
+
"--card",
|
|
161
|
+
"--card-foreground",
|
|
162
|
+
"--popover",
|
|
163
|
+
"--popover-foreground",
|
|
164
|
+
"--primary",
|
|
165
|
+
"--primary-foreground",
|
|
166
|
+
"--secondary",
|
|
167
|
+
"--secondary-foreground",
|
|
168
|
+
"--muted",
|
|
169
|
+
"--muted-foreground",
|
|
170
|
+
"--accent",
|
|
171
|
+
"--accent-foreground",
|
|
172
|
+
"--destructive",
|
|
173
|
+
"--destructive-foreground",
|
|
174
|
+
"--border",
|
|
175
|
+
"--input",
|
|
176
|
+
"--ring",
|
|
177
|
+
];
|
|
178
|
+
function themeToTailwindCssVariables(theme) {
|
|
179
|
+
const bg = colorToHslComponents(theme.color.bg.body);
|
|
180
|
+
const fg = colorToHslComponents(theme.color.text.primary);
|
|
181
|
+
const panel = colorToHslComponents(theme.color.bg.panel);
|
|
182
|
+
const elevated = colorToHslComponents(theme.color.bg.elevated);
|
|
183
|
+
const primary = colorToHslComponents(theme.color.accent.primary);
|
|
184
|
+
const secondary = colorToHslComponents(theme.color.accent.secondary);
|
|
185
|
+
const positive = colorToHslComponents(theme.color.accent.positive);
|
|
186
|
+
const warning = colorToHslComponents(theme.color.accent.warning);
|
|
187
|
+
const destructive = colorToHslComponents(theme.color.accent.destructive);
|
|
188
|
+
const border = colorToHslComponents(theme.color.border);
|
|
189
|
+
const ring = colorToHslComponents(theme.color.ring);
|
|
190
|
+
const mutedFg = colorToHslComponents(theme.color.text.muted);
|
|
191
|
+
const violetFallback = theme.id === "nebula"
|
|
192
|
+
? colorToHslComponents("#8B5CF6")
|
|
193
|
+
: colorToHslComponents(theme.color.accent.secondary);
|
|
194
|
+
return {
|
|
195
|
+
"--cyan-neon": primary ?? undefined,
|
|
196
|
+
"--magenta-neon": secondary ?? undefined,
|
|
197
|
+
"--emerald-neon": positive ?? undefined,
|
|
198
|
+
"--violet-neon": violetFallback ?? undefined,
|
|
199
|
+
"--yellow-warning": warning ?? undefined,
|
|
200
|
+
"--background": bg ?? undefined,
|
|
201
|
+
"--foreground": fg ?? undefined,
|
|
202
|
+
"--card": panel ?? undefined,
|
|
203
|
+
"--card-foreground": fg ?? undefined,
|
|
204
|
+
"--popover": elevated ?? undefined,
|
|
205
|
+
"--popover-foreground": fg ?? undefined,
|
|
206
|
+
"--primary": primary ?? undefined,
|
|
207
|
+
"--primary-foreground": bg ?? undefined,
|
|
208
|
+
"--secondary": secondary ?? undefined,
|
|
209
|
+
"--secondary-foreground": fg ?? undefined,
|
|
210
|
+
"--muted": elevated ?? undefined,
|
|
211
|
+
"--muted-foreground": mutedFg ?? undefined,
|
|
212
|
+
"--accent": panel ?? undefined,
|
|
213
|
+
"--accent-foreground": primary ?? undefined,
|
|
214
|
+
"--destructive": destructive ?? undefined,
|
|
215
|
+
"--destructive-foreground": fg ?? undefined,
|
|
216
|
+
"--border": border ?? undefined,
|
|
217
|
+
"--input": elevated ?? undefined,
|
|
218
|
+
"--ring": ring ?? undefined,
|
|
219
|
+
};
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* Applies theme CSS variables to a target element
|
|
223
|
+
*/
|
|
224
|
+
export function applyThemeCssVariables(theme, target = document.documentElement) {
|
|
225
|
+
const variables = themeToCssVariables(theme);
|
|
226
|
+
const tailwindVariables = themeToTailwindCssVariables(theme);
|
|
227
|
+
for (const [key, value] of Object.entries(variables)) {
|
|
228
|
+
target.style.setProperty(key, value);
|
|
229
|
+
}
|
|
230
|
+
for (const [key, value] of Object.entries(tailwindVariables)) {
|
|
231
|
+
if (!value)
|
|
232
|
+
continue;
|
|
233
|
+
target.style.setProperty(key, value);
|
|
234
|
+
}
|
|
235
|
+
// Set data attribute for CSS selectors
|
|
236
|
+
target.dataset.uiTheme = theme.id;
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Removes theme CSS variables from a target element
|
|
240
|
+
*/
|
|
241
|
+
export function removeThemeCssVariables(target = document.documentElement) {
|
|
242
|
+
const variables = themeToCssVariables(THEMES.nebula);
|
|
243
|
+
for (const key of Object.keys(variables)) {
|
|
244
|
+
target.style.removeProperty(key);
|
|
245
|
+
}
|
|
246
|
+
for (const key of TAILWIND_CSS_VARIABLE_KEYS) {
|
|
247
|
+
target.style.removeProperty(key);
|
|
248
|
+
}
|
|
249
|
+
delete target.dataset.uiTheme;
|
|
250
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Solarpunk Theme - Botanical Observatory
|
|
3
|
+
*
|
|
4
|
+
* A warmer, sunlit aesthetic: deep navy with jade and gold accents,
|
|
5
|
+
* soft analog controls, and floating dust motes.
|
|
6
|
+
*/
|
|
7
|
+
import type { UiTheme } from "./types";
|
|
8
|
+
export declare const solarpunkTheme: UiTheme;
|
|
9
|
+
//# sourceMappingURL=solarpunk.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"solarpunk.d.ts","sourceRoot":"","sources":["../../src/theme/solarpunk.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAEvC,eAAO,MAAM,cAAc,EAAE,OAsH5B,CAAC"}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Solarpunk Theme - Botanical Observatory
|
|
3
|
+
*
|
|
4
|
+
* A warmer, sunlit aesthetic: deep navy with jade and gold accents,
|
|
5
|
+
* soft analog controls, and floating dust motes.
|
|
6
|
+
*/
|
|
7
|
+
export const solarpunkTheme = {
|
|
8
|
+
id: "solarpunk",
|
|
9
|
+
name: "Solarpunk Observatory",
|
|
10
|
+
description: "Botanical space station with sunlit warmth and organic calm",
|
|
11
|
+
color: {
|
|
12
|
+
bg: {
|
|
13
|
+
body: "#0a0f14", // Slightly warmer than nebula
|
|
14
|
+
panel: "rgba(16, 24, 32, 0.92)",
|
|
15
|
+
elevated: "rgba(24, 32, 40, 0.96)",
|
|
16
|
+
horizon: "#0d1318",
|
|
17
|
+
},
|
|
18
|
+
text: {
|
|
19
|
+
primary: "#F0EDE8", // Warm white
|
|
20
|
+
muted: "#A8B4A8", // Sage-tinged gray
|
|
21
|
+
soft: "#6B7B6B", // Muted sage
|
|
22
|
+
},
|
|
23
|
+
accent: {
|
|
24
|
+
primary: "#F5A623", // Warm gold (sun)
|
|
25
|
+
secondary: "#4ADE80", // Leaf green
|
|
26
|
+
positive: "#4ADE80", // Same leaf green
|
|
27
|
+
warning: "#FB923C", // Warm orange
|
|
28
|
+
destructive: "#EF4444", // Softer red
|
|
29
|
+
},
|
|
30
|
+
border: "rgba(74, 222, 128, 0.15)",
|
|
31
|
+
ring: "#4ADE80",
|
|
32
|
+
},
|
|
33
|
+
glass: {
|
|
34
|
+
panelBg: "rgba(16, 24, 20, 0.88)", // Jade-tinted
|
|
35
|
+
panelBorder: "rgba(74, 222, 128, 0.12)",
|
|
36
|
+
panelBlur: "20px", // Slightly less blur for organic feel
|
|
37
|
+
headerGradient: "linear-gradient(to right, rgba(245, 166, 35, 0.06), rgba(74, 222, 128, 0.04), transparent)",
|
|
38
|
+
cardBg: "rgba(245, 166, 35, 0.02)",
|
|
39
|
+
cardBorder: "rgba(74, 222, 128, 0.08)",
|
|
40
|
+
hoverBg: "rgba(245, 166, 35, 0.06)",
|
|
41
|
+
activeBorder: "rgba(245, 166, 35, 0.35)",
|
|
42
|
+
activeShadow: "0 6px 24px rgba(245, 166, 35, 0.1)",
|
|
43
|
+
},
|
|
44
|
+
elevation: {
|
|
45
|
+
softDrop: "0 4px 12px rgba(0, 0, 0, 0.12)",
|
|
46
|
+
hudPanel: "0 8px 32px rgba(10, 15, 20, 0.5), inset 0 1px 0 rgba(245, 166, 35, 0.02)",
|
|
47
|
+
hudRail: "0 -6px 28px rgba(10, 15, 20, 0.5), inset 0 1px 0 rgba(74, 222, 128, 0.03)",
|
|
48
|
+
modal: "0 16px 48px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(245, 166, 35, 0.06)",
|
|
49
|
+
glow: "0 0 20px 2px rgba(245, 166, 35, 0.25)",
|
|
50
|
+
},
|
|
51
|
+
motion: {
|
|
52
|
+
fast: { duration: 0.18, ease: "easeOut" },
|
|
53
|
+
normal: { duration: 0.25, ease: [0.4, 0, 0.2, 1] }, // Slightly smoother
|
|
54
|
+
spring: { type: "spring", damping: 28, stiffness: 240 }, // More relaxed
|
|
55
|
+
ambientDrift: { duration: 12, ease: "linear" }, // Slower drift
|
|
56
|
+
ripple: { duration: 2.5, ease: "easeInOut" },
|
|
57
|
+
},
|
|
58
|
+
ambient: {
|
|
59
|
+
type: "dust-motes",
|
|
60
|
+
particleColors: [
|
|
61
|
+
"rgba(245, 166, 35, 0.6)", // Gold
|
|
62
|
+
"rgba(255, 248, 220, 0.5)", // Warm cream
|
|
63
|
+
"rgba(74, 222, 128, 0.3)", // Faint green
|
|
64
|
+
"rgba(255, 255, 255, 0.4)", // White
|
|
65
|
+
],
|
|
66
|
+
particleDensity: 0.35, // Sparser than stars
|
|
67
|
+
particleSpeed: 0.15, // Slower, lazier drift
|
|
68
|
+
particleSizeRange: [2, 6], // Larger motes
|
|
69
|
+
horizonGradient: `
|
|
70
|
+
radial-gradient(ellipse at top, rgba(245, 166, 35, 0.06), transparent 60%),
|
|
71
|
+
radial-gradient(ellipse at bottom left, rgba(74, 222, 128, 0.05), transparent 50%),
|
|
72
|
+
linear-gradient(to bottom, rgba(16, 24, 20, 0.3), transparent 70%)
|
|
73
|
+
`,
|
|
74
|
+
rippleColorPrimary: "rgba(245, 166, 35, 0.035)",
|
|
75
|
+
rippleColorSecondary: "rgba(74, 222, 128, 0.025)",
|
|
76
|
+
glowIntensity: 0.5, // Softer glow
|
|
77
|
+
},
|
|
78
|
+
controls: {
|
|
79
|
+
switch: {
|
|
80
|
+
track: {
|
|
81
|
+
bg: {
|
|
82
|
+
on: "rgba(74, 222, 128, 0.2)",
|
|
83
|
+
off: "rgba(245, 230, 210, 0.1)", // Warm cream off state
|
|
84
|
+
},
|
|
85
|
+
border: {
|
|
86
|
+
on: "rgba(74, 222, 128, 0.4)",
|
|
87
|
+
off: "rgba(245, 230, 210, 0.2)",
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
thumb: {
|
|
91
|
+
bg: {
|
|
92
|
+
on: "#F5A623", // Gold sun disk
|
|
93
|
+
off: "#8B9B8B", // Sage gray
|
|
94
|
+
},
|
|
95
|
+
shadow: {
|
|
96
|
+
on: "0 0 10px rgba(245, 166, 35, 0.5), inset 0 -1px 2px rgba(0,0,0,0.1)",
|
|
97
|
+
off: "0 1px 3px rgba(0, 0, 0, 0.15)",
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
slider: {
|
|
102
|
+
track: {
|
|
103
|
+
bg: "rgba(245, 230, 210, 0.1)",
|
|
104
|
+
border: "rgba(74, 222, 128, 0.15)",
|
|
105
|
+
},
|
|
106
|
+
thumb: {
|
|
107
|
+
bg: "linear-gradient(135deg, #F5A623, #D4860F)", // Brass/wood knob
|
|
108
|
+
shadow: "0 2px 6px rgba(0, 0, 0, 0.2), 0 0 8px rgba(245, 166, 35, 0.3)",
|
|
109
|
+
},
|
|
110
|
+
fill: "rgba(74, 222, 128, 0.5)",
|
|
111
|
+
},
|
|
112
|
+
buttonGlow: {
|
|
113
|
+
hoverBg: "rgba(245, 166, 35, 0.08)",
|
|
114
|
+
hoverText: "#F5A623",
|
|
115
|
+
hoverShadow: "0 0 12px rgba(245, 166, 35, 0.12)",
|
|
116
|
+
},
|
|
117
|
+
},
|
|
118
|
+
};
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Theme System Types for Out-of-Scope UI
|
|
3
|
+
*
|
|
4
|
+
* This module defines the core type system for multi-skin theming,
|
|
5
|
+
* supporting both Nebula (clinical cyberpunk) and Solarpunk (botanical observatory) themes.
|
|
6
|
+
*/
|
|
7
|
+
export type UiThemeId = "nebula" | "solarpunk";
|
|
8
|
+
export interface UiColorTokens {
|
|
9
|
+
bg: {
|
|
10
|
+
/** Deep space / main body background */
|
|
11
|
+
body: string;
|
|
12
|
+
/** Panel surfaces (glass panels, cards) */
|
|
13
|
+
panel: string;
|
|
14
|
+
/** Elevated surfaces (modals, popovers) */
|
|
15
|
+
elevated: string;
|
|
16
|
+
/** Horizon gradient for ambient backgrounds */
|
|
17
|
+
horizon: string;
|
|
18
|
+
};
|
|
19
|
+
text: {
|
|
20
|
+
/** Primary text color */
|
|
21
|
+
primary: string;
|
|
22
|
+
/** Secondary/muted text */
|
|
23
|
+
muted: string;
|
|
24
|
+
/** Soft/subtle text (labels, hints) */
|
|
25
|
+
soft: string;
|
|
26
|
+
};
|
|
27
|
+
accent: {
|
|
28
|
+
/** Primary accent (cyan in Nebula, gold/sun in Solarpunk) */
|
|
29
|
+
primary: string;
|
|
30
|
+
/** Secondary accent (magenta in Nebula, leaf-green in Solarpunk) */
|
|
31
|
+
secondary: string;
|
|
32
|
+
/** Positive/success states */
|
|
33
|
+
positive: string;
|
|
34
|
+
/** Warning states */
|
|
35
|
+
warning: string;
|
|
36
|
+
/** Destructive/error states */
|
|
37
|
+
destructive: string;
|
|
38
|
+
};
|
|
39
|
+
/** Semantic border color */
|
|
40
|
+
border: string;
|
|
41
|
+
/** Focus ring color */
|
|
42
|
+
ring: string;
|
|
43
|
+
}
|
|
44
|
+
export interface UiGlassTokens {
|
|
45
|
+
/** Panel background (RGBA with alpha) */
|
|
46
|
+
panelBg: string;
|
|
47
|
+
/** Panel border color */
|
|
48
|
+
panelBorder: string;
|
|
49
|
+
/** Backdrop blur amount */
|
|
50
|
+
panelBlur: string;
|
|
51
|
+
/** Header gradient (for panel headers) */
|
|
52
|
+
headerGradient: string;
|
|
53
|
+
/** Card/item background within panels */
|
|
54
|
+
cardBg: string;
|
|
55
|
+
/** Card border color */
|
|
56
|
+
cardBorder: string;
|
|
57
|
+
/** Hover state background */
|
|
58
|
+
hoverBg: string;
|
|
59
|
+
/** Active state border */
|
|
60
|
+
activeBorder: string;
|
|
61
|
+
/** Active state shadow */
|
|
62
|
+
activeShadow: string;
|
|
63
|
+
}
|
|
64
|
+
export interface UiElevationTokens {
|
|
65
|
+
/** Soft drop shadow for cards */
|
|
66
|
+
softDrop: string;
|
|
67
|
+
/** HUD panel shadow */
|
|
68
|
+
hudPanel: string;
|
|
69
|
+
/** Session rail shadow */
|
|
70
|
+
hudRail: string;
|
|
71
|
+
/** Modal shadow */
|
|
72
|
+
modal: string;
|
|
73
|
+
/** Glow shadow (for neon/accent elements) */
|
|
74
|
+
glow: string;
|
|
75
|
+
}
|
|
76
|
+
export interface MotionConfig {
|
|
77
|
+
duration: number;
|
|
78
|
+
ease: string | number[];
|
|
79
|
+
}
|
|
80
|
+
export interface UiMotionTokens {
|
|
81
|
+
/** Fast transitions (hover, active) */
|
|
82
|
+
fast: MotionConfig;
|
|
83
|
+
/** Normal transitions */
|
|
84
|
+
normal: MotionConfig;
|
|
85
|
+
/** Spring animation config */
|
|
86
|
+
spring: {
|
|
87
|
+
type: "spring";
|
|
88
|
+
damping: number;
|
|
89
|
+
stiffness: number;
|
|
90
|
+
};
|
|
91
|
+
/** Ambient drift (particles, background elements) */
|
|
92
|
+
ambientDrift: MotionConfig;
|
|
93
|
+
/** Ripple/glow pulse */
|
|
94
|
+
ripple: MotionConfig;
|
|
95
|
+
}
|
|
96
|
+
export type AmbientType = "nebula-stars" | "dust-motes";
|
|
97
|
+
export interface UiAmbientTokens {
|
|
98
|
+
/** Type of ambient background */
|
|
99
|
+
type: AmbientType;
|
|
100
|
+
/** Particle/mote colors */
|
|
101
|
+
particleColors: string[];
|
|
102
|
+
/** Particle density (0-1) */
|
|
103
|
+
particleDensity: number;
|
|
104
|
+
/** Particle speed multiplier */
|
|
105
|
+
particleSpeed: number;
|
|
106
|
+
/** Particle size range [min, max] */
|
|
107
|
+
particleSizeRange: [number, number];
|
|
108
|
+
/** Background horizon gradient */
|
|
109
|
+
horizonGradient: string;
|
|
110
|
+
/** Primary ripple/glow color */
|
|
111
|
+
rippleColorPrimary: string;
|
|
112
|
+
/** Secondary ripple/glow color */
|
|
113
|
+
rippleColorSecondary: string;
|
|
114
|
+
/** Ambient glow intensity (0-1) */
|
|
115
|
+
glowIntensity: number;
|
|
116
|
+
}
|
|
117
|
+
export interface UiControlTokens {
|
|
118
|
+
switch: {
|
|
119
|
+
track: {
|
|
120
|
+
bg: {
|
|
121
|
+
on: string;
|
|
122
|
+
off: string;
|
|
123
|
+
};
|
|
124
|
+
border: {
|
|
125
|
+
on: string;
|
|
126
|
+
off: string;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
thumb: {
|
|
130
|
+
bg: {
|
|
131
|
+
on: string;
|
|
132
|
+
off: string;
|
|
133
|
+
};
|
|
134
|
+
shadow: {
|
|
135
|
+
on: string;
|
|
136
|
+
off: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
slider: {
|
|
141
|
+
track: {
|
|
142
|
+
bg: string;
|
|
143
|
+
border: string;
|
|
144
|
+
};
|
|
145
|
+
thumb: {
|
|
146
|
+
bg: string;
|
|
147
|
+
shadow: string;
|
|
148
|
+
};
|
|
149
|
+
fill: string;
|
|
150
|
+
};
|
|
151
|
+
/** Button glow effect */
|
|
152
|
+
buttonGlow: {
|
|
153
|
+
hoverBg: string;
|
|
154
|
+
hoverText: string;
|
|
155
|
+
hoverShadow: string;
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
export interface UiTheme {
|
|
159
|
+
/** Theme identifier */
|
|
160
|
+
id: UiThemeId;
|
|
161
|
+
/** Human-readable theme name */
|
|
162
|
+
name: string;
|
|
163
|
+
/** Short description */
|
|
164
|
+
description: string;
|
|
165
|
+
/** Color tokens */
|
|
166
|
+
color: UiColorTokens;
|
|
167
|
+
/** Glass/panel tokens */
|
|
168
|
+
glass: UiGlassTokens;
|
|
169
|
+
/** Elevation/shadow tokens */
|
|
170
|
+
elevation: UiElevationTokens;
|
|
171
|
+
/** Motion/animation tokens */
|
|
172
|
+
motion: UiMotionTokens;
|
|
173
|
+
/** Ambient background tokens */
|
|
174
|
+
ambient: UiAmbientTokens;
|
|
175
|
+
/** Control (switch, slider, button) tokens */
|
|
176
|
+
controls: UiControlTokens;
|
|
177
|
+
}
|
|
178
|
+
export interface UiThemeContextValue {
|
|
179
|
+
/** Current theme object */
|
|
180
|
+
theme: UiTheme;
|
|
181
|
+
/** Current theme ID */
|
|
182
|
+
themeId: UiThemeId;
|
|
183
|
+
/** Set theme by ID */
|
|
184
|
+
setThemeId: (id: UiThemeId) => void;
|
|
185
|
+
/** Whether the theme is still loading/hydrating */
|
|
186
|
+
isHydrating: boolean;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* Maps theme tokens to CSS custom properties.
|
|
190
|
+
* These are applied to the document root when the theme changes.
|
|
191
|
+
*/
|
|
192
|
+
export type ThemeCssVariables = {
|
|
193
|
+
"--theme-bg-body": string;
|
|
194
|
+
"--theme-bg-panel": string;
|
|
195
|
+
"--theme-bg-elevated": string;
|
|
196
|
+
"--theme-bg-horizon": string;
|
|
197
|
+
"--theme-text-primary": string;
|
|
198
|
+
"--theme-text-muted": string;
|
|
199
|
+
"--theme-text-soft": string;
|
|
200
|
+
"--theme-accent-primary": string;
|
|
201
|
+
"--theme-accent-secondary": string;
|
|
202
|
+
"--theme-accent-positive": string;
|
|
203
|
+
"--theme-accent-warning": string;
|
|
204
|
+
"--theme-accent-destructive": string;
|
|
205
|
+
"--theme-border": string;
|
|
206
|
+
"--theme-ring": string;
|
|
207
|
+
"--theme-glass-panel-bg": string;
|
|
208
|
+
"--theme-glass-panel-border": string;
|
|
209
|
+
"--theme-glass-panel-blur": string;
|
|
210
|
+
"--theme-glass-header-gradient": string;
|
|
211
|
+
"--theme-glass-card-bg": string;
|
|
212
|
+
"--theme-glass-card-border": string;
|
|
213
|
+
"--theme-glass-hover-bg": string;
|
|
214
|
+
"--theme-glass-active-border": string;
|
|
215
|
+
"--theme-glass-active-shadow": string;
|
|
216
|
+
"--theme-shadow-soft": string;
|
|
217
|
+
"--theme-shadow-hud-panel": string;
|
|
218
|
+
"--theme-shadow-hud-rail": string;
|
|
219
|
+
"--theme-shadow-modal": string;
|
|
220
|
+
"--theme-shadow-glow": string;
|
|
221
|
+
"--theme-ambient-horizon": string;
|
|
222
|
+
"--theme-ambient-ripple-primary": string;
|
|
223
|
+
"--theme-ambient-ripple-secondary": string;
|
|
224
|
+
"--theme-ambient-glow-intensity": string;
|
|
225
|
+
"--theme-switch-track-on": string;
|
|
226
|
+
"--theme-switch-track-off": string;
|
|
227
|
+
"--theme-switch-thumb-on": string;
|
|
228
|
+
"--theme-switch-thumb-off": string;
|
|
229
|
+
"--theme-button-glow-hover-bg": string;
|
|
230
|
+
"--theme-button-glow-hover-text": string;
|
|
231
|
+
"--theme-button-glow-hover-shadow": string;
|
|
232
|
+
};
|
|
233
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/theme/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { VisionAdapter, VisionCaptureOptions, VisionFrame, VisionTopology } from "../types.js";
|
|
2
|
+
export interface CanvasCaptureAdapterOptions {
|
|
3
|
+
id?: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
getCanvas: () => HTMLCanvasElement | null;
|
|
6
|
+
getTopology?: () => VisionTopology | null;
|
|
7
|
+
channelId?: string;
|
|
8
|
+
format?: "image/png" | "image/jpeg" | "image/webp";
|
|
9
|
+
quality?: number;
|
|
10
|
+
}
|
|
11
|
+
export declare class CanvasCaptureAdapter implements VisionAdapter {
|
|
12
|
+
id: string;
|
|
13
|
+
label?: string;
|
|
14
|
+
private getCanvas;
|
|
15
|
+
private topologyProvider?;
|
|
16
|
+
private channelId;
|
|
17
|
+
private format;
|
|
18
|
+
private quality?;
|
|
19
|
+
constructor(options: CanvasCaptureAdapterOptions);
|
|
20
|
+
getTopology(): VisionTopology | null;
|
|
21
|
+
capture(options?: VisionCaptureOptions): Promise<VisionFrame>;
|
|
22
|
+
private scaleCanvas;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=canvasCapture.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"canvasCapture.d.ts","sourceRoot":"","sources":["../../../src/vision/adapters/canvasCapture.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,oBAAoB,EACpB,WAAW,EACX,cAAc,EAEf,MAAM,aAAa,CAAC;AAErB,MAAM,WAAW,2BAA2B;IAC1C,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,iBAAiB,GAAG,IAAI,CAAC;IAC1C,WAAW,CAAC,EAAE,MAAM,cAAc,GAAG,IAAI,CAAC;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,WAAW,GAAG,YAAY,GAAG,YAAY,CAAC;IACnD,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,oBAAqB,YAAW,aAAa;IACxD,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,SAAS,CAAiC;IAClD,OAAO,CAAC,gBAAgB,CAAC,CAA8B;IACvD,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,MAAM,CAA4C;IAC1D,OAAO,CAAC,OAAO,CAAC,CAAS;gBAEb,OAAO,EAAE,2BAA2B;IAUhD,WAAW,IAAI,cAAc,GAAG,IAAI;IAI9B,OAAO,CAAC,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,WAAW,CAAC;IAuCnE,OAAO,CAAC,WAAW;CAcpB"}
|