@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,313 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
/**
|
|
4
|
+
* Quantum Field Canvas - Provider & Hooks
|
|
5
|
+
*
|
|
6
|
+
* Provides the FieldBus context and helper hooks for DOM components.
|
|
7
|
+
*/
|
|
8
|
+
import { createContext, useCallback, useContext, useMemo, useRef, useSyncExternalStore, } from "react";
|
|
9
|
+
import { createFieldBus } from "./FieldBus";
|
|
10
|
+
import { clientToNdc } from "./domMapping";
|
|
11
|
+
const FieldContext = createContext(null);
|
|
12
|
+
export function FieldProvider({ children, config, bus: externalBus }) {
|
|
13
|
+
const busRef = useRef(null);
|
|
14
|
+
// Create or use external bus
|
|
15
|
+
if (!busRef.current) {
|
|
16
|
+
busRef.current = externalBus ?? createFieldBus(config);
|
|
17
|
+
}
|
|
18
|
+
const value = useMemo(() => ({
|
|
19
|
+
bus: busRef.current,
|
|
20
|
+
}), []);
|
|
21
|
+
return _jsx(FieldContext.Provider, { value: value, children: children });
|
|
22
|
+
}
|
|
23
|
+
// -----------------------------------------------------------------------------
|
|
24
|
+
// Hooks
|
|
25
|
+
// -----------------------------------------------------------------------------
|
|
26
|
+
/**
|
|
27
|
+
* Get the field bus instance
|
|
28
|
+
*/
|
|
29
|
+
export function useFieldBus() {
|
|
30
|
+
const context = useContext(FieldContext);
|
|
31
|
+
if (!context) {
|
|
32
|
+
throw new Error("useFieldBus must be used within a FieldProvider");
|
|
33
|
+
}
|
|
34
|
+
return context.bus;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Subscribe to field state changes
|
|
38
|
+
* Uses useSyncExternalStore for optimal React 18+ integration
|
|
39
|
+
*/
|
|
40
|
+
export function useFieldState() {
|
|
41
|
+
const bus = useFieldBus();
|
|
42
|
+
return useSyncExternalStore(bus.subscribe, bus.getSnapshot, bus.getServerSnapshot);
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Get field configuration
|
|
46
|
+
*/
|
|
47
|
+
export function useFieldConfig() {
|
|
48
|
+
const bus = useFieldBus();
|
|
49
|
+
return bus.getConfig();
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Hook to instrument a DOM surface for field signals
|
|
53
|
+
*/
|
|
54
|
+
export function useFieldSurface(options) {
|
|
55
|
+
const { id, enableHover = true, enableBurst = true, enableLatch = false, burstAmplitude = 0.8, burstRadius = 0.1, latchStrength = 1.0, anchorId = id, } = options;
|
|
56
|
+
const bus = useFieldBus();
|
|
57
|
+
const intentTimerRef = useRef(null);
|
|
58
|
+
const isHoveringRef = useRef(false);
|
|
59
|
+
const intentActiveRef = useRef(false);
|
|
60
|
+
const emitHover = useCallback((clientX, clientY, intent = "probe") => {
|
|
61
|
+
if (!enableHover)
|
|
62
|
+
return;
|
|
63
|
+
const ndc = clientToNdc(clientX, clientY);
|
|
64
|
+
bus.emit({
|
|
65
|
+
kind: "hover",
|
|
66
|
+
id,
|
|
67
|
+
clientX,
|
|
68
|
+
clientY,
|
|
69
|
+
ndc,
|
|
70
|
+
intent,
|
|
71
|
+
ts: Date.now(),
|
|
72
|
+
});
|
|
73
|
+
}, [bus, id, enableHover]);
|
|
74
|
+
const emitBurst = useCallback((clientX, clientY) => {
|
|
75
|
+
if (!enableBurst)
|
|
76
|
+
return;
|
|
77
|
+
bus.emit({
|
|
78
|
+
kind: "burst",
|
|
79
|
+
id,
|
|
80
|
+
clientX,
|
|
81
|
+
clientY,
|
|
82
|
+
amplitude: burstAmplitude,
|
|
83
|
+
radius: burstRadius,
|
|
84
|
+
ts: Date.now(),
|
|
85
|
+
});
|
|
86
|
+
}, [bus, id, enableBurst, burstAmplitude, burstRadius]);
|
|
87
|
+
const emitLatch = useCallback((clientX, clientY, mode = "toggle") => {
|
|
88
|
+
if (!enableLatch)
|
|
89
|
+
return;
|
|
90
|
+
bus.emit({
|
|
91
|
+
kind: "latch",
|
|
92
|
+
id,
|
|
93
|
+
anchorId,
|
|
94
|
+
clientX,
|
|
95
|
+
clientY,
|
|
96
|
+
mode,
|
|
97
|
+
strength: latchStrength,
|
|
98
|
+
ts: Date.now(),
|
|
99
|
+
});
|
|
100
|
+
}, [bus, id, anchorId, enableLatch, latchStrength]);
|
|
101
|
+
const clearLatch = useCallback(() => {
|
|
102
|
+
bus.emit({
|
|
103
|
+
kind: "latch",
|
|
104
|
+
id,
|
|
105
|
+
anchorId,
|
|
106
|
+
clientX: 0,
|
|
107
|
+
clientY: 0,
|
|
108
|
+
mode: "remove",
|
|
109
|
+
strength: 0,
|
|
110
|
+
ts: Date.now(),
|
|
111
|
+
});
|
|
112
|
+
}, [bus, id, anchorId]);
|
|
113
|
+
const onMouseEnter = useCallback((e) => {
|
|
114
|
+
isHoveringRef.current = true;
|
|
115
|
+
emitHover(e.clientX, e.clientY, "probe");
|
|
116
|
+
// Start intent timer for etch mode
|
|
117
|
+
if (intentTimerRef.current) {
|
|
118
|
+
clearTimeout(intentTimerRef.current);
|
|
119
|
+
}
|
|
120
|
+
intentTimerRef.current = setTimeout(() => {
|
|
121
|
+
if (isHoveringRef.current) {
|
|
122
|
+
intentActiveRef.current = true;
|
|
123
|
+
}
|
|
124
|
+
}, 120);
|
|
125
|
+
}, [emitHover]);
|
|
126
|
+
const onMouseMove = useCallback((e) => {
|
|
127
|
+
if (!isHoveringRef.current)
|
|
128
|
+
return;
|
|
129
|
+
const intent = intentActiveRef.current || e.shiftKey ? "etch" : "probe";
|
|
130
|
+
emitHover(e.clientX, e.clientY, intent);
|
|
131
|
+
// Reset intent timer on move
|
|
132
|
+
if (!e.shiftKey) {
|
|
133
|
+
intentActiveRef.current = false;
|
|
134
|
+
if (intentTimerRef.current) {
|
|
135
|
+
clearTimeout(intentTimerRef.current);
|
|
136
|
+
}
|
|
137
|
+
intentTimerRef.current = setTimeout(() => {
|
|
138
|
+
if (isHoveringRef.current) {
|
|
139
|
+
intentActiveRef.current = true;
|
|
140
|
+
}
|
|
141
|
+
}, 120);
|
|
142
|
+
}
|
|
143
|
+
}, [emitHover]);
|
|
144
|
+
const onMouseLeave = useCallback(() => {
|
|
145
|
+
isHoveringRef.current = false;
|
|
146
|
+
intentActiveRef.current = false;
|
|
147
|
+
if (intentTimerRef.current) {
|
|
148
|
+
clearTimeout(intentTimerRef.current);
|
|
149
|
+
intentTimerRef.current = null;
|
|
150
|
+
}
|
|
151
|
+
bus.emit({
|
|
152
|
+
kind: "hover-leave",
|
|
153
|
+
id,
|
|
154
|
+
ts: Date.now(),
|
|
155
|
+
});
|
|
156
|
+
}, [bus, id]);
|
|
157
|
+
const onClick = useCallback((e) => {
|
|
158
|
+
emitBurst(e.clientX, e.clientY);
|
|
159
|
+
if (enableLatch) {
|
|
160
|
+
emitLatch(e.clientX, e.clientY, "toggle");
|
|
161
|
+
}
|
|
162
|
+
}, [emitBurst, emitLatch, enableLatch]);
|
|
163
|
+
return {
|
|
164
|
+
onMouseEnter,
|
|
165
|
+
onMouseMove,
|
|
166
|
+
onMouseLeave,
|
|
167
|
+
onClick,
|
|
168
|
+
emitHover,
|
|
169
|
+
emitBurst,
|
|
170
|
+
emitLatch,
|
|
171
|
+
clearLatch,
|
|
172
|
+
};
|
|
173
|
+
}
|
|
174
|
+
// -----------------------------------------------------------------------------
|
|
175
|
+
// Optional: Hook that returns no-ops if outside provider
|
|
176
|
+
// -----------------------------------------------------------------------------
|
|
177
|
+
const noopHandlers = {
|
|
178
|
+
onMouseEnter: () => { },
|
|
179
|
+
onMouseMove: () => { },
|
|
180
|
+
onMouseLeave: () => { },
|
|
181
|
+
onClick: () => { },
|
|
182
|
+
emitHover: () => { },
|
|
183
|
+
emitBurst: () => { },
|
|
184
|
+
emitLatch: () => { },
|
|
185
|
+
clearLatch: () => { },
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* Hook that returns field surface handlers if inside a FieldProvider,
|
|
189
|
+
* otherwise returns no-op handlers. Safe to use anywhere.
|
|
190
|
+
*/
|
|
191
|
+
export function useFieldSurfaceOptional(options) {
|
|
192
|
+
const context = useContext(FieldContext);
|
|
193
|
+
const { id, enableHover = true, enableBurst = true, enableLatch = false, burstAmplitude = 0.8, burstRadius = 0.1, latchStrength = 1.0, anchorId = id, } = options;
|
|
194
|
+
const intentTimerRef = useRef(null);
|
|
195
|
+
const isHoveringRef = useRef(false);
|
|
196
|
+
const intentActiveRef = useRef(false);
|
|
197
|
+
// If no context, return no-ops
|
|
198
|
+
if (!context) {
|
|
199
|
+
return noopHandlers;
|
|
200
|
+
}
|
|
201
|
+
const bus = context.bus;
|
|
202
|
+
const emitHover = (clientX, clientY, intent = "probe") => {
|
|
203
|
+
if (!enableHover)
|
|
204
|
+
return;
|
|
205
|
+
const ndc = clientToNdc(clientX, clientY);
|
|
206
|
+
bus.emit({
|
|
207
|
+
kind: "hover",
|
|
208
|
+
id,
|
|
209
|
+
clientX,
|
|
210
|
+
clientY,
|
|
211
|
+
ndc,
|
|
212
|
+
intent,
|
|
213
|
+
ts: Date.now(),
|
|
214
|
+
});
|
|
215
|
+
};
|
|
216
|
+
const emitBurst = (clientX, clientY) => {
|
|
217
|
+
if (!enableBurst)
|
|
218
|
+
return;
|
|
219
|
+
bus.emit({
|
|
220
|
+
kind: "burst",
|
|
221
|
+
id,
|
|
222
|
+
clientX,
|
|
223
|
+
clientY,
|
|
224
|
+
amplitude: burstAmplitude,
|
|
225
|
+
radius: burstRadius,
|
|
226
|
+
ts: Date.now(),
|
|
227
|
+
});
|
|
228
|
+
};
|
|
229
|
+
const emitLatch = (clientX, clientY, mode = "toggle") => {
|
|
230
|
+
if (!enableLatch)
|
|
231
|
+
return;
|
|
232
|
+
bus.emit({
|
|
233
|
+
kind: "latch",
|
|
234
|
+
id,
|
|
235
|
+
anchorId,
|
|
236
|
+
clientX,
|
|
237
|
+
clientY,
|
|
238
|
+
mode,
|
|
239
|
+
strength: latchStrength,
|
|
240
|
+
ts: Date.now(),
|
|
241
|
+
});
|
|
242
|
+
};
|
|
243
|
+
const clearLatch = () => {
|
|
244
|
+
bus.emit({
|
|
245
|
+
kind: "latch",
|
|
246
|
+
id,
|
|
247
|
+
anchorId,
|
|
248
|
+
clientX: 0,
|
|
249
|
+
clientY: 0,
|
|
250
|
+
mode: "remove",
|
|
251
|
+
strength: 0,
|
|
252
|
+
ts: Date.now(),
|
|
253
|
+
});
|
|
254
|
+
};
|
|
255
|
+
const onMouseEnter = (e) => {
|
|
256
|
+
isHoveringRef.current = true;
|
|
257
|
+
emitHover(e.clientX, e.clientY, "probe");
|
|
258
|
+
if (intentTimerRef.current) {
|
|
259
|
+
clearTimeout(intentTimerRef.current);
|
|
260
|
+
}
|
|
261
|
+
intentTimerRef.current = setTimeout(() => {
|
|
262
|
+
if (isHoveringRef.current) {
|
|
263
|
+
intentActiveRef.current = true;
|
|
264
|
+
}
|
|
265
|
+
}, 120);
|
|
266
|
+
};
|
|
267
|
+
const onMouseMove = (e) => {
|
|
268
|
+
if (!isHoveringRef.current)
|
|
269
|
+
return;
|
|
270
|
+
const intent = intentActiveRef.current || e.shiftKey ? "etch" : "probe";
|
|
271
|
+
emitHover(e.clientX, e.clientY, intent);
|
|
272
|
+
if (!e.shiftKey) {
|
|
273
|
+
intentActiveRef.current = false;
|
|
274
|
+
if (intentTimerRef.current) {
|
|
275
|
+
clearTimeout(intentTimerRef.current);
|
|
276
|
+
}
|
|
277
|
+
intentTimerRef.current = setTimeout(() => {
|
|
278
|
+
if (isHoveringRef.current) {
|
|
279
|
+
intentActiveRef.current = true;
|
|
280
|
+
}
|
|
281
|
+
}, 120);
|
|
282
|
+
}
|
|
283
|
+
};
|
|
284
|
+
const onMouseLeave = () => {
|
|
285
|
+
isHoveringRef.current = false;
|
|
286
|
+
intentActiveRef.current = false;
|
|
287
|
+
if (intentTimerRef.current) {
|
|
288
|
+
clearTimeout(intentTimerRef.current);
|
|
289
|
+
intentTimerRef.current = null;
|
|
290
|
+
}
|
|
291
|
+
bus.emit({
|
|
292
|
+
kind: "hover-leave",
|
|
293
|
+
id,
|
|
294
|
+
ts: Date.now(),
|
|
295
|
+
});
|
|
296
|
+
};
|
|
297
|
+
const onClick = (e) => {
|
|
298
|
+
emitBurst(e.clientX, e.clientY);
|
|
299
|
+
if (enableLatch) {
|
|
300
|
+
emitLatch(e.clientX, e.clientY, "toggle");
|
|
301
|
+
}
|
|
302
|
+
};
|
|
303
|
+
return {
|
|
304
|
+
onMouseEnter,
|
|
305
|
+
onMouseMove,
|
|
306
|
+
onMouseLeave,
|
|
307
|
+
onClick,
|
|
308
|
+
emitHover,
|
|
309
|
+
emitBurst,
|
|
310
|
+
emitLatch,
|
|
311
|
+
clearLatch,
|
|
312
|
+
};
|
|
313
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FieldBus } from "./FieldBus";
|
|
2
|
+
import type { FieldConfig } from "./types";
|
|
3
|
+
interface PcbFieldProps {
|
|
4
|
+
bus: FieldBus;
|
|
5
|
+
config: FieldConfig;
|
|
6
|
+
/**
|
|
7
|
+
* When provided, the field plane is rendered at a fixed world size instead of
|
|
8
|
+
* auto-sizing to the current camera frustum. This is useful when treating the
|
|
9
|
+
* field as a world-anchored ground plane.
|
|
10
|
+
*/
|
|
11
|
+
worldPlaneSize?: {
|
|
12
|
+
width: number;
|
|
13
|
+
height: number;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export declare function PcbField({ bus, config, worldPlaneSize }: PcbFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export {};
|
|
18
|
+
//# sourceMappingURL=PcbField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PcbField.d.ts","sourceRoot":"","sources":["../../../../src/primitives/three/QuantumField/PcbField.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAU3C,OAAO,KAAK,EAAE,WAAW,EAAqB,MAAM,SAAS,CAAC;AAO9D,UAAU,aAAa;IACrB,GAAG,EAAE,QAAQ,CAAC;IACd,MAAM,EAAE,WAAW,CAAC;IACpB;;;;OAIG;IACH,cAAc,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CACpD;AAED,wBAAgB,QAAQ,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,cAAc,EAAE,EAAE,aAAa,2CA6WtE"}
|
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
/**
|
|
4
|
+
* PCB Field - Style B Implementation
|
|
5
|
+
*
|
|
6
|
+
* A technical substrate with circuit-board routing traces and vector-field arrows
|
|
7
|
+
* that "route" energy around UI surfaces.
|
|
8
|
+
*/
|
|
9
|
+
import { useFrame, useThree } from "@react-three/fiber";
|
|
10
|
+
import { useCallback, useEffect, useMemo, useRef } from "react";
|
|
11
|
+
import * as THREE from "three";
|
|
12
|
+
import { clientToNdc } from "./domMapping";
|
|
13
|
+
import { createPcbArrowsGeometry, createPcbArrowsMaterial, createPcbMaterial, createPcbUniforms, } from "./styles/styleB";
|
|
14
|
+
import { TrailRTT } from "./TrailRTT";
|
|
15
|
+
// Reusable raycast objects
|
|
16
|
+
const _raycaster = new THREE.Raycaster();
|
|
17
|
+
const _ndcVec = new THREE.Vector2();
|
|
18
|
+
const _intersections = [];
|
|
19
|
+
export function PcbField({ bus, config, worldPlaneSize }) {
|
|
20
|
+
const { camera, size, gl } = useThree();
|
|
21
|
+
const meshRef = useRef(null);
|
|
22
|
+
const arrowsRef = useRef(null);
|
|
23
|
+
const trailRttRef = useRef(null);
|
|
24
|
+
const uniformsRef = useRef(null);
|
|
25
|
+
// Local refs for state
|
|
26
|
+
const stateRef = useRef(bus.getSnapshot());
|
|
27
|
+
// === Phase Lens tracking refs ===
|
|
28
|
+
const lensUvRef = useRef({ x: 0.5, y: 0.5 });
|
|
29
|
+
const prevLensUvRef = useRef({ x: 0.5, y: 0.5 });
|
|
30
|
+
const lensVelocityRef = useRef(0);
|
|
31
|
+
// === Etch velocity tracking refs ===
|
|
32
|
+
const prevEtchUvRef = useRef({ x: 0.5, y: 0.5 });
|
|
33
|
+
const etchVelocityRef = useRef(0);
|
|
34
|
+
// Subscribe to bus updates
|
|
35
|
+
useEffect(() => {
|
|
36
|
+
const unsub = bus.subscribe((state) => {
|
|
37
|
+
stateRef.current = state;
|
|
38
|
+
});
|
|
39
|
+
return unsub;
|
|
40
|
+
}, [bus]);
|
|
41
|
+
// UV computation via raycast
|
|
42
|
+
const computeUv = useCallback((clientX, clientY) => {
|
|
43
|
+
if (!meshRef.current)
|
|
44
|
+
return null;
|
|
45
|
+
const canvas = gl.domElement;
|
|
46
|
+
const rect = canvas.getBoundingClientRect();
|
|
47
|
+
const ndc = clientToNdc(clientX - rect.left, clientY - rect.top, {
|
|
48
|
+
width: rect.width,
|
|
49
|
+
height: rect.height,
|
|
50
|
+
});
|
|
51
|
+
_ndcVec.set(ndc.x, ndc.y);
|
|
52
|
+
_raycaster.setFromCamera(_ndcVec, camera);
|
|
53
|
+
_intersections.length = 0;
|
|
54
|
+
meshRef.current.raycast(_raycaster, _intersections);
|
|
55
|
+
if (_intersections.length > 0 && _intersections[0].uv) {
|
|
56
|
+
return {
|
|
57
|
+
x: _intersections[0].uv.x,
|
|
58
|
+
y: _intersections[0].uv.y,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
return null;
|
|
62
|
+
}, [camera, gl.domElement]);
|
|
63
|
+
// Calculate plane size
|
|
64
|
+
const planeSize = useMemo(() => {
|
|
65
|
+
if (worldPlaneSize)
|
|
66
|
+
return worldPlaneSize;
|
|
67
|
+
if (camera instanceof THREE.PerspectiveCamera) {
|
|
68
|
+
const distance = camera.position.z;
|
|
69
|
+
const vFov = (camera.fov * Math.PI) / 180;
|
|
70
|
+
const height = 2 * Math.tan(vFov / 2) * distance;
|
|
71
|
+
const width = height * (size.width / size.height);
|
|
72
|
+
return { width: width * 1.2, height: height * 1.2 };
|
|
73
|
+
}
|
|
74
|
+
return { width: 20, height: 15 };
|
|
75
|
+
}, [camera, size, worldPlaneSize]);
|
|
76
|
+
// Create uniforms
|
|
77
|
+
const uniforms = useMemo(() => {
|
|
78
|
+
const u = createPcbUniforms();
|
|
79
|
+
u.uResolution.value.set(size.width, size.height);
|
|
80
|
+
u.uProbeRadius.value = config.probeRadius;
|
|
81
|
+
// FIX: Set plane size for correct UV normalization in arrows shader
|
|
82
|
+
u.uPlaneSize.value.set(planeSize.width, planeSize.height);
|
|
83
|
+
// FIX: Set max point size from config to prevent blowout
|
|
84
|
+
u.uMaxPointSize.value = config.arrowsMaxPointSize;
|
|
85
|
+
// === Ultra-Fine Lattice Uniforms ===
|
|
86
|
+
u.uMicroGrid1.value = config.microGrid1;
|
|
87
|
+
u.uMicroGrid2.value = config.microGrid2;
|
|
88
|
+
u.uMicroGridStrength.value = config.microGridStrength;
|
|
89
|
+
u.uRevealStrength.value = config.revealStrength;
|
|
90
|
+
u.uBaseVisibility.value = config.baseVisibility;
|
|
91
|
+
u.uMicroWarp.value = config.microWarp;
|
|
92
|
+
u.uEtchDistortion.value = config.etchDistortion;
|
|
93
|
+
// === Phase Lens Uniforms ===
|
|
94
|
+
u.uLensEnabled.value = config.lensEnabled ? 1 : 0;
|
|
95
|
+
u.uLens.value.set(0.5, 0.5, config.lensRadius, config.lensMagnification);
|
|
96
|
+
u.uLensChromatic.value = config.lensChromatic;
|
|
97
|
+
// === Lattice Mode Uniform ===
|
|
98
|
+
const latticeModeMap = { rect: 0, hex: 1, tri: 2 };
|
|
99
|
+
u.uLatticeMode.value = latticeModeMap[config.latticeMode] ?? 0;
|
|
100
|
+
// === Palette / Atmosphere Uniforms ===
|
|
101
|
+
const paletteModeMap = {
|
|
102
|
+
"glia-cyan": 0, orchid: 1, amber: 2, mono: 3, ice: 4,
|
|
103
|
+
// Techno-Gothic themes
|
|
104
|
+
"gothic-cathedral": 5, "gothic-void": 6, "gothic-sanctum": 7, "gothic-rose": 8,
|
|
105
|
+
};
|
|
106
|
+
u.uPaletteMode.value = paletteModeMap[config.paletteMode] ?? 1;
|
|
107
|
+
u.uAccentIntensity.value = config.accentIntensity;
|
|
108
|
+
u.uIridescenceStrength.value = config.iridescenceStrength;
|
|
109
|
+
u.uIridescenceScale.value = config.iridescenceScale;
|
|
110
|
+
u.uExposure.value = config.exposure;
|
|
111
|
+
u.uFilmic.value = config.filmic;
|
|
112
|
+
u.uGrainStrength.value = config.grainStrength;
|
|
113
|
+
u.uCrtStrength.value = config.crtStrength;
|
|
114
|
+
u.uCopperStrength.value = config.copperStrength;
|
|
115
|
+
uniformsRef.current = u;
|
|
116
|
+
return u;
|
|
117
|
+
}, [
|
|
118
|
+
size.width,
|
|
119
|
+
size.height,
|
|
120
|
+
config.probeRadius,
|
|
121
|
+
planeSize.width,
|
|
122
|
+
planeSize.height,
|
|
123
|
+
config.arrowsMaxPointSize,
|
|
124
|
+
config.microGrid1,
|
|
125
|
+
config.microGrid2,
|
|
126
|
+
config.microGridStrength,
|
|
127
|
+
config.revealStrength,
|
|
128
|
+
config.baseVisibility,
|
|
129
|
+
config.microWarp,
|
|
130
|
+
config.etchDistortion,
|
|
131
|
+
config.lensEnabled,
|
|
132
|
+
config.lensRadius,
|
|
133
|
+
config.lensMagnification,
|
|
134
|
+
config.lensChromatic,
|
|
135
|
+
config.latticeMode,
|
|
136
|
+
config.paletteMode,
|
|
137
|
+
config.accentIntensity,
|
|
138
|
+
config.iridescenceStrength,
|
|
139
|
+
config.iridescenceScale,
|
|
140
|
+
config.exposure,
|
|
141
|
+
config.filmic,
|
|
142
|
+
config.grainStrength,
|
|
143
|
+
config.crtStrength,
|
|
144
|
+
config.copperStrength,
|
|
145
|
+
]);
|
|
146
|
+
// Create plane material
|
|
147
|
+
const planeMaterial = useMemo(() => {
|
|
148
|
+
return createPcbMaterial(uniforms);
|
|
149
|
+
}, [uniforms]);
|
|
150
|
+
// Create arrows geometry and material
|
|
151
|
+
// FIX: Reduced arrow count from 40% to 15% of pointsCount to prevent overcrowding
|
|
152
|
+
const arrowCount = Math.floor(config.pointsCount * 0.15);
|
|
153
|
+
const arrowsGeometry = useMemo(() => {
|
|
154
|
+
return createPcbArrowsGeometry(arrowCount, planeSize.width, planeSize.height);
|
|
155
|
+
}, [arrowCount, planeSize.width, planeSize.height]);
|
|
156
|
+
const arrowsMaterial = useMemo(() => {
|
|
157
|
+
// FIX: Pass blending mode from config for debugging
|
|
158
|
+
return createPcbArrowsMaterial(uniforms, config.arrowsBlending);
|
|
159
|
+
}, [uniforms, config.arrowsBlending]);
|
|
160
|
+
// Invisible raycast material for when plane is hidden (for hover detection)
|
|
161
|
+
const invisibleMaterial = useMemo(() => {
|
|
162
|
+
return new THREE.MeshBasicMaterial({
|
|
163
|
+
transparent: true,
|
|
164
|
+
opacity: 0,
|
|
165
|
+
depthWrite: false,
|
|
166
|
+
});
|
|
167
|
+
}, []);
|
|
168
|
+
// Initialize trail RTT
|
|
169
|
+
useEffect(() => {
|
|
170
|
+
if (config.enableTrails) {
|
|
171
|
+
trailRttRef.current = new TrailRTT(config.rttResolution, config.rttResolution);
|
|
172
|
+
trailRttRef.current.init(gl);
|
|
173
|
+
uniforms.uTrailEnabled.value = 1;
|
|
174
|
+
}
|
|
175
|
+
else {
|
|
176
|
+
uniforms.uTrailEnabled.value = 0;
|
|
177
|
+
}
|
|
178
|
+
return () => {
|
|
179
|
+
if (trailRttRef.current) {
|
|
180
|
+
trailRttRef.current.dispose();
|
|
181
|
+
trailRttRef.current = null;
|
|
182
|
+
}
|
|
183
|
+
};
|
|
184
|
+
}, [config.enableTrails, config.rttResolution, gl, uniforms]);
|
|
185
|
+
// Animation frame
|
|
186
|
+
useFrame((state, delta) => {
|
|
187
|
+
if (!meshRef.current)
|
|
188
|
+
return;
|
|
189
|
+
const currentTs = Date.now();
|
|
190
|
+
const currentState = stateRef.current;
|
|
191
|
+
// Process pending events
|
|
192
|
+
bus.processPendingWithUv(computeUv);
|
|
193
|
+
// Tick the bus
|
|
194
|
+
bus.tick(delta * 1000, currentTs);
|
|
195
|
+
// Update time
|
|
196
|
+
uniforms.uTime.value = state.clock.elapsedTime;
|
|
197
|
+
// Update hover
|
|
198
|
+
const hover = currentState.hover;
|
|
199
|
+
// Compute effective decay (0 if frozen)
|
|
200
|
+
const effectiveDecay = config.etchFreeze ? 0 : config.etchDecay;
|
|
201
|
+
// === Phase Lens Tracking (smooth follow with inertia) ===
|
|
202
|
+
if (hover.active && config.lensEnabled) {
|
|
203
|
+
const target = hover.uv;
|
|
204
|
+
const current = lensUvRef.current;
|
|
205
|
+
const inertia = 1 - config.lensInertia;
|
|
206
|
+
// Lerp lens position toward hover
|
|
207
|
+
lensUvRef.current = {
|
|
208
|
+
x: current.x + (target.x - current.x) * inertia,
|
|
209
|
+
y: current.y + (target.y - current.y) * inertia,
|
|
210
|
+
};
|
|
211
|
+
// Calculate lens velocity (distance traveled per frame, normalized)
|
|
212
|
+
const dx = lensUvRef.current.x - prevLensUvRef.current.x;
|
|
213
|
+
const dy = lensUvRef.current.y - prevLensUvRef.current.y;
|
|
214
|
+
const rawVel = Math.sqrt(dx * dx + dy * dy) / Math.max(delta, 0.001);
|
|
215
|
+
// Smooth velocity with exponential decay
|
|
216
|
+
const velSmoothing = 0.85;
|
|
217
|
+
lensVelocityRef.current =
|
|
218
|
+
lensVelocityRef.current * velSmoothing + rawVel * (1 - velSmoothing);
|
|
219
|
+
// Normalize velocity (0-1 range, tuned for typical cursor speeds)
|
|
220
|
+
const normalizedVel = Math.min(lensVelocityRef.current * config.lensVelocityBoost * 2, 1);
|
|
221
|
+
// Store prev for next frame
|
|
222
|
+
prevLensUvRef.current = { ...lensUvRef.current };
|
|
223
|
+
// Update lens uniforms
|
|
224
|
+
uniforms.uLens.value.set(lensUvRef.current.x, lensUvRef.current.y, config.lensRadius, config.lensMagnification);
|
|
225
|
+
uniforms.uLensVelocity.value = normalizedVel;
|
|
226
|
+
}
|
|
227
|
+
// === Etch Velocity Tracking ===
|
|
228
|
+
let computedEtchRadius = config.etchRadius;
|
|
229
|
+
if (hover.active && hover.intent === "etch") {
|
|
230
|
+
const dx = hover.uv.x - prevEtchUvRef.current.x;
|
|
231
|
+
const dy = hover.uv.y - prevEtchUvRef.current.y;
|
|
232
|
+
const rawVel = Math.sqrt(dx * dx + dy * dy) / Math.max(delta, 0.001);
|
|
233
|
+
// Smooth etch velocity
|
|
234
|
+
const velSmoothing = 0.8;
|
|
235
|
+
etchVelocityRef.current =
|
|
236
|
+
etchVelocityRef.current * velSmoothing + rawVel * (1 - velSmoothing);
|
|
237
|
+
// Normalize velocity (0-1)
|
|
238
|
+
const normalizedEtchVel = Math.min(etchVelocityRef.current * config.etchVelocityScale * 3, 1);
|
|
239
|
+
// Velocity taper: high velocity = smaller radius
|
|
240
|
+
computedEtchRadius =
|
|
241
|
+
config.etchRadiusMax - (config.etchRadiusMax - config.etchRadiusMin) * normalizedEtchVel;
|
|
242
|
+
prevEtchUvRef.current = { x: hover.uv.x, y: hover.uv.y };
|
|
243
|
+
uniforms.uEtchVelocity.value = normalizedEtchVel;
|
|
244
|
+
}
|
|
245
|
+
else {
|
|
246
|
+
// Decay etch velocity when not etching
|
|
247
|
+
etchVelocityRef.current *= 0.9;
|
|
248
|
+
uniforms.uEtchVelocity.value = Math.min(etchVelocityRef.current, 1);
|
|
249
|
+
}
|
|
250
|
+
if (hover.active) {
|
|
251
|
+
uniforms.uHover.value.set(hover.uv.x, hover.uv.y, hover.intent === "etch" ? 1 : 0, 1);
|
|
252
|
+
// Trail RTT for etch - use velocity-adjusted radius for inscription-quality strokes
|
|
253
|
+
if (config.enableTrails && trailRttRef.current && hover.intent === "etch") {
|
|
254
|
+
trailRttRef.current.update({
|
|
255
|
+
decay: effectiveDecay,
|
|
256
|
+
injectPos: hover.uv,
|
|
257
|
+
injectStrength: config.etchStrength,
|
|
258
|
+
injectRadius: computedEtchRadius,
|
|
259
|
+
});
|
|
260
|
+
uniforms.uTrailTex.value = trailRttRef.current.getTexture();
|
|
261
|
+
}
|
|
262
|
+
else if (config.enableTrails && trailRttRef.current) {
|
|
263
|
+
trailRttRef.current.update({
|
|
264
|
+
decay: effectiveDecay,
|
|
265
|
+
injectPos: null,
|
|
266
|
+
injectStrength: 0,
|
|
267
|
+
});
|
|
268
|
+
uniforms.uTrailTex.value = trailRttRef.current.getTexture();
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
else {
|
|
272
|
+
uniforms.uHover.value.w = 0;
|
|
273
|
+
if (config.enableTrails && trailRttRef.current) {
|
|
274
|
+
trailRttRef.current.update({
|
|
275
|
+
decay: effectiveDecay,
|
|
276
|
+
injectPos: null,
|
|
277
|
+
injectStrength: 0,
|
|
278
|
+
});
|
|
279
|
+
uniforms.uTrailTex.value = trailRttRef.current.getTexture();
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
// Update impulses
|
|
283
|
+
const impulses = currentState.impulses;
|
|
284
|
+
uniforms.uImpulseCount.value = impulses.length;
|
|
285
|
+
for (let i = 0; i < 24; i++) {
|
|
286
|
+
if (i < impulses.length) {
|
|
287
|
+
const imp = impulses[i];
|
|
288
|
+
const age = Math.min(1, (currentTs - imp.startTs) / config.impulseDecayMs);
|
|
289
|
+
uniforms.uImpulses.value[i].set(imp.uv.x, imp.uv.y, imp.radius, imp.amplitude);
|
|
290
|
+
uniforms.uImpulsesAge.value[i] = age;
|
|
291
|
+
}
|
|
292
|
+
else {
|
|
293
|
+
uniforms.uImpulsesAge.value[i] = 1;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
// Update anchors
|
|
297
|
+
const anchors = Array.from(currentState.anchors.values());
|
|
298
|
+
uniforms.uAnchorCount.value = anchors.length;
|
|
299
|
+
for (let i = 0; i < 8; i++) {
|
|
300
|
+
if (i < anchors.length) {
|
|
301
|
+
const anchor = anchors[i];
|
|
302
|
+
const phase = (currentTs - anchor.createdTs) * 0.001;
|
|
303
|
+
uniforms.uAnchors.value[i].set(anchor.uv.x, anchor.uv.y, anchor.strength, phase);
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
});
|
|
307
|
+
// Dispose on unmount
|
|
308
|
+
useEffect(() => {
|
|
309
|
+
return () => {
|
|
310
|
+
planeMaterial.dispose();
|
|
311
|
+
arrowsMaterial.dispose();
|
|
312
|
+
arrowsGeometry.dispose();
|
|
313
|
+
invisibleMaterial.dispose();
|
|
314
|
+
};
|
|
315
|
+
}, [planeMaterial, arrowsMaterial, arrowsGeometry, invisibleMaterial]);
|
|
316
|
+
return (_jsxs("group", { children: [config.showPcbPlane && (_jsx("mesh", { ref: meshRef, position: [0, 0, 0], material: planeMaterial, children: _jsx("planeGeometry", { args: [planeSize.width, planeSize.height] }) })), !config.showPcbPlane && (_jsx("mesh", { ref: meshRef, position: [0, 0, 0], material: invisibleMaterial, children: _jsx("planeGeometry", { args: [planeSize.width, planeSize.height] }) })), config.showArrows && (_jsx("points", { ref: arrowsRef, geometry: arrowsGeometry, material: arrowsMaterial }))] }));
|
|
317
|
+
}
|