@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,625 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { cn } from "../../../lib/utils";
|
|
5
|
+
import { getPerformanceConfig } from "../shared/performance";
|
|
6
|
+
import { WEATHER_CONFIGS } from "./types";
|
|
7
|
+
import { getParticleCount } from "./particles";
|
|
8
|
+
import { colorsKey, resolveWeatherColors } from "./colors";
|
|
9
|
+
function clamp(min, value, max) {
|
|
10
|
+
return Math.max(min, Math.min(max, value));
|
|
11
|
+
}
|
|
12
|
+
function parseHexColor(color) {
|
|
13
|
+
const hex = color.trim();
|
|
14
|
+
if (!hex.startsWith("#"))
|
|
15
|
+
return null;
|
|
16
|
+
const raw = hex.slice(1);
|
|
17
|
+
if (raw.length === 3) {
|
|
18
|
+
const r = Number.parseInt(raw[0] + raw[0], 16);
|
|
19
|
+
const g = Number.parseInt(raw[1] + raw[1], 16);
|
|
20
|
+
const b = Number.parseInt(raw[2] + raw[2], 16);
|
|
21
|
+
return { r, g, b };
|
|
22
|
+
}
|
|
23
|
+
if (raw.length === 6) {
|
|
24
|
+
const r = Number.parseInt(raw.slice(0, 2), 16);
|
|
25
|
+
const g = Number.parseInt(raw.slice(2, 4), 16);
|
|
26
|
+
const b = Number.parseInt(raw.slice(4, 6), 16);
|
|
27
|
+
return { r, g, b };
|
|
28
|
+
}
|
|
29
|
+
return null;
|
|
30
|
+
}
|
|
31
|
+
function mix(a, b, t) {
|
|
32
|
+
const tt = clamp(0, t, 1);
|
|
33
|
+
return {
|
|
34
|
+
r: Math.round(a.r + (b.r - a.r) * tt),
|
|
35
|
+
g: Math.round(a.g + (b.g - a.g) * tt),
|
|
36
|
+
b: Math.round(a.b + (b.b - a.b) * tt),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function rgba(c, a) {
|
|
40
|
+
return `rgba(${c.r}, ${c.g}, ${c.b}, ${clamp(0, a, 1)})`;
|
|
41
|
+
}
|
|
42
|
+
function getSeededNoise(t, phase) {
|
|
43
|
+
// Deterministic "noise-ish" turbulence (cheap and good enough for UI).
|
|
44
|
+
return (Math.sin(t * 0.0007 + phase) * 0.6 +
|
|
45
|
+
Math.sin(t * 0.0013 + phase * 1.7) * 0.3 +
|
|
46
|
+
Math.sin(t * 0.0021 + phase * 2.3) * 0.1);
|
|
47
|
+
}
|
|
48
|
+
const SNOW_SPRITE_VARIANTS = 4;
|
|
49
|
+
const LEAF_SPRITE_VARIANTS = 11;
|
|
50
|
+
function makeSnowSprite(color, variant) {
|
|
51
|
+
const size = 64;
|
|
52
|
+
const canvas = document.createElement("canvas");
|
|
53
|
+
canvas.width = size;
|
|
54
|
+
canvas.height = size;
|
|
55
|
+
const ctx = canvas.getContext("2d");
|
|
56
|
+
if (!ctx)
|
|
57
|
+
return canvas;
|
|
58
|
+
ctx.clearRect(0, 0, size, size);
|
|
59
|
+
const v = ((variant % SNOW_SPRITE_VARIANTS) + SNOW_SPRITE_VARIANTS) % SNOW_SPRITE_VARIANTS;
|
|
60
|
+
const cx = size / 2;
|
|
61
|
+
const cy = size / 2;
|
|
62
|
+
const r = size * 0.46;
|
|
63
|
+
const highlightX = cx - r * (0.16 + v * 0.04);
|
|
64
|
+
const highlightY = cy - r * (0.18 - v * 0.03);
|
|
65
|
+
const softness = v === 3 ? 0.62 : v === 2 ? 0.56 : v === 1 ? 0.5 : 0.46;
|
|
66
|
+
const g = ctx.createRadialGradient(cx - r * 0.1, cy - r * 0.1, 0, cx, cy, r);
|
|
67
|
+
g.addColorStop(0, "rgba(255,255,255,0.95)");
|
|
68
|
+
g.addColorStop(0.45, `rgba(255,255,255,${0.38 + v * 0.02})`);
|
|
69
|
+
g.addColorStop(1, "rgba(255,255,255,0)");
|
|
70
|
+
ctx.fillStyle = g;
|
|
71
|
+
ctx.beginPath();
|
|
72
|
+
ctx.arc(cx, cy, r, 0, Math.PI * 2);
|
|
73
|
+
ctx.fill();
|
|
74
|
+
// Subtle specular "sparkle" highlight.
|
|
75
|
+
const h = ctx.createRadialGradient(highlightX, highlightY, 0, highlightX, highlightY, r * softness);
|
|
76
|
+
h.addColorStop(0, `rgba(255,255,255,${0.26 + v * 0.05})`);
|
|
77
|
+
h.addColorStop(1, "rgba(255,255,255,0)");
|
|
78
|
+
ctx.fillStyle = h;
|
|
79
|
+
ctx.beginPath();
|
|
80
|
+
ctx.arc(cx, cy, r, 0, Math.PI * 2);
|
|
81
|
+
ctx.fill();
|
|
82
|
+
// Tint (works with any CSS color string).
|
|
83
|
+
ctx.globalCompositeOperation = "source-in";
|
|
84
|
+
ctx.fillStyle = color;
|
|
85
|
+
ctx.fillRect(0, 0, size, size);
|
|
86
|
+
ctx.globalCompositeOperation = "source-over";
|
|
87
|
+
// Re-add a tiny white specular so tinted snow still reads as "ice".
|
|
88
|
+
const s = ctx.createRadialGradient(highlightX, highlightY, 0, highlightX, highlightY, r * 0.34);
|
|
89
|
+
s.addColorStop(0, `rgba(255,255,255,${0.18 + v * 0.04})`);
|
|
90
|
+
s.addColorStop(1, "rgba(255,255,255,0)");
|
|
91
|
+
ctx.fillStyle = s;
|
|
92
|
+
ctx.beginPath();
|
|
93
|
+
ctx.arc(cx, cy, r, 0, Math.PI * 2);
|
|
94
|
+
ctx.fill();
|
|
95
|
+
return canvas;
|
|
96
|
+
}
|
|
97
|
+
function makeLeafSprite(color, variant) {
|
|
98
|
+
const size = 160;
|
|
99
|
+
const canvas = document.createElement("canvas");
|
|
100
|
+
canvas.width = size;
|
|
101
|
+
canvas.height = size;
|
|
102
|
+
const ctx = canvas.getContext("2d");
|
|
103
|
+
if (!ctx)
|
|
104
|
+
return canvas;
|
|
105
|
+
ctx.clearRect(0, 0, size, size);
|
|
106
|
+
const base = parseHexColor(color) ?? { r: 180, g: 120, b: 70 };
|
|
107
|
+
const dark = mix(base, { r: 0, g: 0, b: 0 }, 0.35);
|
|
108
|
+
const light = mix(base, { r: 255, g: 255, b: 255 }, 0.25);
|
|
109
|
+
const rim = mix(base, { r: 0, g: 0, b: 0 }, 0.2);
|
|
110
|
+
const cx = size / 2;
|
|
111
|
+
const cy = size / 2 - 4;
|
|
112
|
+
const shape = ((variant % LEAF_SPRITE_VARIANTS) + LEAF_SPRITE_VARIANTS) % LEAF_SPRITE_VARIANTS;
|
|
113
|
+
const drawRadialPath = (radii, rx, ry) => {
|
|
114
|
+
const pts = radii.map((r, i) => {
|
|
115
|
+
const a = -Math.PI / 2 + (i / radii.length) * Math.PI * 2;
|
|
116
|
+
return {
|
|
117
|
+
x: cx + Math.cos(a) * rx * r,
|
|
118
|
+
y: cy + Math.sin(a) * ry * r,
|
|
119
|
+
};
|
|
120
|
+
});
|
|
121
|
+
const mid = (a, b) => ({
|
|
122
|
+
x: (a.x + b.x) / 2,
|
|
123
|
+
y: (a.y + b.y) / 2,
|
|
124
|
+
});
|
|
125
|
+
ctx.beginPath();
|
|
126
|
+
const start = mid(pts[pts.length - 1], pts[0]);
|
|
127
|
+
ctx.moveTo(start.x, start.y);
|
|
128
|
+
for (let i = 0; i < pts.length; i++) {
|
|
129
|
+
const p0 = pts[i];
|
|
130
|
+
const p1 = pts[(i + 1) % pts.length];
|
|
131
|
+
const m = mid(p0, p1);
|
|
132
|
+
ctx.quadraticCurveTo(p0.x, p0.y, m.x, m.y);
|
|
133
|
+
}
|
|
134
|
+
ctx.closePath();
|
|
135
|
+
};
|
|
136
|
+
let w = 56;
|
|
137
|
+
let h = 78;
|
|
138
|
+
let skew = 0;
|
|
139
|
+
let veinStyle = "midrib";
|
|
140
|
+
let carveNotch = false;
|
|
141
|
+
let drawKind = "ovate";
|
|
142
|
+
let radialRadii = null;
|
|
143
|
+
switch (shape) {
|
|
144
|
+
case 0:
|
|
145
|
+
// Ovate leaf
|
|
146
|
+
w = 52;
|
|
147
|
+
h = 78;
|
|
148
|
+
skew = -0.04;
|
|
149
|
+
drawKind = "ovate";
|
|
150
|
+
break;
|
|
151
|
+
case 1:
|
|
152
|
+
// Maple-like lobes (spikier)
|
|
153
|
+
w = 66;
|
|
154
|
+
h = 74;
|
|
155
|
+
drawKind = "radial";
|
|
156
|
+
radialRadii = [1, 0.58, 0.96, 0.52, 0.92, 0.6, 0.86, 0.62, 0.96, 0.58];
|
|
157
|
+
break;
|
|
158
|
+
case 2:
|
|
159
|
+
// Oak-like rounded lobes (smoother)
|
|
160
|
+
w = 60;
|
|
161
|
+
h = 80;
|
|
162
|
+
drawKind = "radial";
|
|
163
|
+
radialRadii = [1, 0.82, 0.95, 0.84, 0.92, 0.86, 0.9, 0.86, 0.92, 0.84, 0.95, 0.82];
|
|
164
|
+
break;
|
|
165
|
+
case 3:
|
|
166
|
+
// Ginkgo fan
|
|
167
|
+
w = 74;
|
|
168
|
+
h = 70;
|
|
169
|
+
veinStyle = "fan";
|
|
170
|
+
carveNotch = true;
|
|
171
|
+
drawKind = "ginkgo";
|
|
172
|
+
break;
|
|
173
|
+
case 4:
|
|
174
|
+
// Heart/aspen
|
|
175
|
+
w = 60;
|
|
176
|
+
h = 78;
|
|
177
|
+
drawKind = "heart";
|
|
178
|
+
break;
|
|
179
|
+
case 5:
|
|
180
|
+
// Willow (long and narrow)
|
|
181
|
+
w = 34;
|
|
182
|
+
h = 80;
|
|
183
|
+
skew = 0.08;
|
|
184
|
+
drawKind = "willow";
|
|
185
|
+
break;
|
|
186
|
+
case 6:
|
|
187
|
+
// Birch / poplar-ish (triangular)
|
|
188
|
+
w = 54;
|
|
189
|
+
h = 76;
|
|
190
|
+
drawKind = "deltoid";
|
|
191
|
+
break;
|
|
192
|
+
case 7:
|
|
193
|
+
// Plane tree / sycamore (broad 5-lobe, smoother than maple)
|
|
194
|
+
w = 74;
|
|
195
|
+
h = 78;
|
|
196
|
+
drawKind = "radial";
|
|
197
|
+
radialRadii = [1, 0.74, 0.96, 0.72, 0.92, 0.72, 0.96, 0.74, 1, 0.74];
|
|
198
|
+
break;
|
|
199
|
+
case 8:
|
|
200
|
+
// Beech (smooth oval)
|
|
201
|
+
w = 50;
|
|
202
|
+
h = 74;
|
|
203
|
+
skew = 0.02;
|
|
204
|
+
drawKind = "ovate";
|
|
205
|
+
break;
|
|
206
|
+
case 9:
|
|
207
|
+
// Linden (rounder heart)
|
|
208
|
+
w = 66;
|
|
209
|
+
h = 74;
|
|
210
|
+
drawKind = "heart";
|
|
211
|
+
break;
|
|
212
|
+
case 10:
|
|
213
|
+
// Serrated / elm-like (subtle teeth)
|
|
214
|
+
w = 56;
|
|
215
|
+
h = 80;
|
|
216
|
+
drawKind = "radial";
|
|
217
|
+
radialRadii = [1, 0.92, 0.99, 0.91, 0.98, 0.9, 0.97, 0.9, 0.98, 0.91, 0.99, 0.92];
|
|
218
|
+
break;
|
|
219
|
+
default:
|
|
220
|
+
w = 52;
|
|
221
|
+
h = 78;
|
|
222
|
+
skew = -0.04;
|
|
223
|
+
drawKind = "ovate";
|
|
224
|
+
break;
|
|
225
|
+
}
|
|
226
|
+
const drawLeafPath = () => {
|
|
227
|
+
switch (drawKind) {
|
|
228
|
+
case "ovate":
|
|
229
|
+
ctx.beginPath();
|
|
230
|
+
ctx.moveTo(cx, cy - h);
|
|
231
|
+
ctx.bezierCurveTo(cx + w, cy - h * 0.55, cx + w * (1 - skew), cy + h * 0.55, cx, cy + h);
|
|
232
|
+
ctx.bezierCurveTo(cx - w * (1 + skew), cy + h * 0.55, cx - w, cy - h * 0.55, cx, cy - h);
|
|
233
|
+
ctx.closePath();
|
|
234
|
+
return;
|
|
235
|
+
case "radial":
|
|
236
|
+
drawRadialPath(radialRadii, w, h);
|
|
237
|
+
return;
|
|
238
|
+
case "ginkgo":
|
|
239
|
+
ctx.beginPath();
|
|
240
|
+
ctx.moveTo(cx, cy + h * 0.78);
|
|
241
|
+
ctx.bezierCurveTo(cx + w * 0.55, cy + h * 0.55, cx + w * 1.05, cy + h * 0.1, cx + w * 0.92, cy - h * 0.12);
|
|
242
|
+
ctx.quadraticCurveTo(cx + w * 0.5, cy - h * 1.02, cx, cy - h * 0.88);
|
|
243
|
+
ctx.quadraticCurveTo(cx - w * 0.5, cy - h * 1.02, cx - w * 0.92, cy - h * 0.12);
|
|
244
|
+
ctx.bezierCurveTo(cx - w * 1.05, cy + h * 0.1, cx - w * 0.55, cy + h * 0.55, cx, cy + h * 0.78);
|
|
245
|
+
ctx.closePath();
|
|
246
|
+
return;
|
|
247
|
+
case "heart":
|
|
248
|
+
ctx.beginPath();
|
|
249
|
+
ctx.moveTo(cx, cy + h);
|
|
250
|
+
ctx.bezierCurveTo(cx + w * 0.95, cy + h * 0.45, cx + w, cy + h * 0.05, cx + w * 0.62, cy - h * 0.38);
|
|
251
|
+
ctx.bezierCurveTo(cx + w * 0.25, cy - h * 0.78, cx, cy - h * 0.62, cx, cy - h * 0.48);
|
|
252
|
+
ctx.bezierCurveTo(cx, cy - h * 0.62, cx - w * 0.25, cy - h * 0.78, cx - w * 0.62, cy - h * 0.38);
|
|
253
|
+
ctx.bezierCurveTo(cx - w, cy + h * 0.05, cx - w * 0.95, cy + h * 0.45, cx, cy + h);
|
|
254
|
+
ctx.closePath();
|
|
255
|
+
return;
|
|
256
|
+
case "deltoid":
|
|
257
|
+
ctx.beginPath();
|
|
258
|
+
ctx.moveTo(cx, cy - h);
|
|
259
|
+
ctx.quadraticCurveTo(cx + w * 1.05, cy - h * 0.15, cx + w * 0.36, cy + h);
|
|
260
|
+
ctx.quadraticCurveTo(cx, cy + h * 0.78, cx - w * 0.36, cy + h);
|
|
261
|
+
ctx.quadraticCurveTo(cx - w * 1.05, cy - h * 0.15, cx, cy - h);
|
|
262
|
+
ctx.closePath();
|
|
263
|
+
return;
|
|
264
|
+
case "willow":
|
|
265
|
+
ctx.beginPath();
|
|
266
|
+
ctx.moveTo(cx, cy - h);
|
|
267
|
+
ctx.bezierCurveTo(cx + w, cy - h * 0.35, cx + w * (1 - skew), cy + h * 0.55, cx, cy + h);
|
|
268
|
+
ctx.bezierCurveTo(cx - w * (1 + skew), cy + h * 0.55, cx - w, cy - h * 0.35, cx, cy - h);
|
|
269
|
+
ctx.closePath();
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
};
|
|
273
|
+
// Soft shadow (baked).
|
|
274
|
+
ctx.save();
|
|
275
|
+
ctx.translate(2, 4);
|
|
276
|
+
drawLeafPath();
|
|
277
|
+
ctx.fillStyle = "rgba(0,0,0,0.22)";
|
|
278
|
+
ctx.fill();
|
|
279
|
+
ctx.restore();
|
|
280
|
+
// Fill with lighting gradient.
|
|
281
|
+
drawLeafPath();
|
|
282
|
+
const grad = ctx.createLinearGradient(cx - w, cy - h, cx + w, cy + h);
|
|
283
|
+
grad.addColorStop(0, rgba(dark, 0.95));
|
|
284
|
+
grad.addColorStop(0.45, rgba(base, 0.95));
|
|
285
|
+
grad.addColorStop(1, rgba(light, 0.95));
|
|
286
|
+
ctx.fillStyle = grad;
|
|
287
|
+
ctx.fill();
|
|
288
|
+
// Rim darkening.
|
|
289
|
+
drawLeafPath();
|
|
290
|
+
ctx.strokeStyle = rgba(rim, 0.55);
|
|
291
|
+
ctx.lineWidth = 2;
|
|
292
|
+
ctx.stroke();
|
|
293
|
+
// Stem (adds a lot of realism for very little cost).
|
|
294
|
+
ctx.save();
|
|
295
|
+
ctx.strokeStyle = rgba(dark, 0.5);
|
|
296
|
+
ctx.lineWidth = 3;
|
|
297
|
+
ctx.lineCap = "round";
|
|
298
|
+
ctx.beginPath();
|
|
299
|
+
ctx.moveTo(cx, cy + h * 0.95);
|
|
300
|
+
ctx.quadraticCurveTo(cx + w * 0.18, cy + h * 1.08, cx + w * 0.1, cy + h * 1.22);
|
|
301
|
+
ctx.stroke();
|
|
302
|
+
ctx.restore();
|
|
303
|
+
// Texture + veins (subtle but helps "photoreal").
|
|
304
|
+
ctx.save();
|
|
305
|
+
drawLeafPath();
|
|
306
|
+
ctx.clip();
|
|
307
|
+
// Tiny speckles / spots.
|
|
308
|
+
ctx.fillStyle = rgba(mix(dark, { r: 0, g: 0, b: 0 }, 0.1), 0.18);
|
|
309
|
+
for (let i = 0; i < 14; i++) {
|
|
310
|
+
const px = cx + (Math.random() - 0.5) * w * 1.5;
|
|
311
|
+
const py = cy + (Math.random() - 0.25) * h * 1.4;
|
|
312
|
+
const pr = 1.2 + Math.random() * 3.8;
|
|
313
|
+
ctx.globalAlpha = 0.06 + Math.random() * 0.08;
|
|
314
|
+
ctx.beginPath();
|
|
315
|
+
ctx.arc(px, py, pr, 0, Math.PI * 2);
|
|
316
|
+
ctx.fill();
|
|
317
|
+
}
|
|
318
|
+
ctx.globalAlpha = 0.45;
|
|
319
|
+
ctx.strokeStyle = rgba(mix(base, { r: 255, g: 255, b: 255 }, 0.6), 0.55);
|
|
320
|
+
ctx.lineWidth = 1.15;
|
|
321
|
+
if (veinStyle === "fan") {
|
|
322
|
+
const y0 = cy + h * 0.55;
|
|
323
|
+
for (let i = -7; i <= 7; i++) {
|
|
324
|
+
const t = i / 7;
|
|
325
|
+
const x1 = cx + t * w * 0.82;
|
|
326
|
+
const y1 = cy - h * 0.86 + Math.abs(t) * h * 0.18;
|
|
327
|
+
ctx.globalAlpha = 0.1 + (1 - Math.abs(t)) * 0.12;
|
|
328
|
+
ctx.beginPath();
|
|
329
|
+
ctx.moveTo(cx, y0);
|
|
330
|
+
ctx.quadraticCurveTo(cx + t * w * 0.25, cy - h * 0.1, x1, y1);
|
|
331
|
+
ctx.stroke();
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
else {
|
|
335
|
+
ctx.globalAlpha = 0.34;
|
|
336
|
+
ctx.beginPath();
|
|
337
|
+
ctx.moveTo(cx, cy + h * 0.9);
|
|
338
|
+
ctx.quadraticCurveTo(cx + w * 0.05, cy, cx, cy - h * 0.9);
|
|
339
|
+
ctx.stroke();
|
|
340
|
+
const veinCount = shape === 5 ? 4 : 6;
|
|
341
|
+
for (let i = 0; i < veinCount; i++) {
|
|
342
|
+
const t = (i + 1) / (veinCount + 1);
|
|
343
|
+
const y = cy + h * 0.78 - t * h * 1.35;
|
|
344
|
+
const veinW = w * (0.12 + t * 0.6);
|
|
345
|
+
ctx.globalAlpha = 0.12;
|
|
346
|
+
ctx.beginPath();
|
|
347
|
+
ctx.moveTo(cx, y);
|
|
348
|
+
ctx.quadraticCurveTo(cx + veinW, y + h * 0.08, cx + veinW * 0.9, y + h * 0.22);
|
|
349
|
+
ctx.stroke();
|
|
350
|
+
ctx.beginPath();
|
|
351
|
+
ctx.moveTo(cx, y);
|
|
352
|
+
ctx.quadraticCurveTo(cx - veinW, y + h * 0.08, cx - veinW * 0.9, y + h * 0.22);
|
|
353
|
+
ctx.stroke();
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
ctx.restore();
|
|
357
|
+
if (carveNotch) {
|
|
358
|
+
// Carve last so it also removes veins/texture inside the notch.
|
|
359
|
+
ctx.save();
|
|
360
|
+
ctx.globalCompositeOperation = "destination-out";
|
|
361
|
+
ctx.beginPath();
|
|
362
|
+
ctx.arc(cx, cy - h * 0.78, w * 0.12, 0, Math.PI * 2);
|
|
363
|
+
ctx.fill();
|
|
364
|
+
ctx.restore();
|
|
365
|
+
}
|
|
366
|
+
return canvas;
|
|
367
|
+
}
|
|
368
|
+
function getSprite(cache, key, build) {
|
|
369
|
+
const existing = cache.get(key);
|
|
370
|
+
if (existing)
|
|
371
|
+
return existing;
|
|
372
|
+
const created = build();
|
|
373
|
+
cache.set(key, created);
|
|
374
|
+
return created;
|
|
375
|
+
}
|
|
376
|
+
function createSnowParticles(count, config, bounds, options) {
|
|
377
|
+
const particles = [];
|
|
378
|
+
const palette = options?.colorsOverride && options.colorsOverride.length > 0 ? options.colorsOverride : config.colors;
|
|
379
|
+
for (let i = 0; i < count; i++) {
|
|
380
|
+
const z = Math.pow(Math.random(), 0.55); // bias toward far
|
|
381
|
+
let size = 1.1 + (1 - z) * 4.4 + Math.random() * 0.8;
|
|
382
|
+
const speed = 16 + (1 - z) * 68 + Math.random() * 12;
|
|
383
|
+
const driftAmp = 6 + (1 - z) * 24 + Math.random() * 10;
|
|
384
|
+
const driftFreq = 0.7 + Math.random() * 1.6;
|
|
385
|
+
const alpha = 0.24 + (1 - z) * 0.56 + Math.random() * 0.1;
|
|
386
|
+
const spriteIndex = Math.floor(Math.random() * SNOW_SPRITE_VARIANTS);
|
|
387
|
+
// Rare large "bokeh" flakes near camera.
|
|
388
|
+
if (z < 0.22 && Math.random() < 0.06) {
|
|
389
|
+
size *= 1.8;
|
|
390
|
+
}
|
|
391
|
+
const spriteColor = options?.colorOverride ??
|
|
392
|
+
(palette.length > 0 ? palette[Math.floor(Math.random() * palette.length)] : "#ffffff");
|
|
393
|
+
particles.push({
|
|
394
|
+
x: Math.random() * bounds.width,
|
|
395
|
+
y: Math.random() * bounds.height,
|
|
396
|
+
z,
|
|
397
|
+
speed,
|
|
398
|
+
driftAmp,
|
|
399
|
+
driftFreq,
|
|
400
|
+
phase: Math.random() * Math.PI * 2,
|
|
401
|
+
spriteColor,
|
|
402
|
+
spriteIndex,
|
|
403
|
+
alpha,
|
|
404
|
+
size,
|
|
405
|
+
});
|
|
406
|
+
}
|
|
407
|
+
return particles;
|
|
408
|
+
}
|
|
409
|
+
function createLeafParticles(count, config, bounds, options) {
|
|
410
|
+
const particles = [];
|
|
411
|
+
const palette = options?.colorsOverride && options.colorsOverride.length > 0 ? options.colorsOverride : config.colors;
|
|
412
|
+
for (let i = 0; i < count; i++) {
|
|
413
|
+
const z = Math.pow(Math.random(), 0.6); // bias toward far
|
|
414
|
+
const size = 6.5 + (1 - z) * 13.5 + Math.random() * 2.2;
|
|
415
|
+
const speed = 18 + (1 - z) * 48 + Math.random() * 9;
|
|
416
|
+
const alpha = 0.55 + (1 - z) * 0.35;
|
|
417
|
+
const rotation = Math.random() * Math.PI * 2;
|
|
418
|
+
const rotationSpeed = (Math.random() * 0.9 + 0.4) * (Math.random() > 0.5 ? 1 : -1);
|
|
419
|
+
const flutterSpeed = 1.2 + Math.random() * 1.6;
|
|
420
|
+
const windScale = 0.4 + Math.random() * 0.9;
|
|
421
|
+
const spriteColor = options?.colorOverride ??
|
|
422
|
+
(palette.length > 0 ? palette[Math.floor(Math.random() * palette.length)] : "#d4a373");
|
|
423
|
+
const spriteIndex = Math.floor(Math.random() * LEAF_SPRITE_VARIANTS);
|
|
424
|
+
particles.push({
|
|
425
|
+
x: Math.random() * bounds.width,
|
|
426
|
+
y: Math.random() * bounds.height,
|
|
427
|
+
z,
|
|
428
|
+
speed,
|
|
429
|
+
windScale,
|
|
430
|
+
phase: Math.random() * Math.PI * 2,
|
|
431
|
+
rotation,
|
|
432
|
+
rotationSpeed,
|
|
433
|
+
flutterPhase: Math.random() * Math.PI * 2,
|
|
434
|
+
flutterSpeed,
|
|
435
|
+
spriteColor,
|
|
436
|
+
spriteIndex,
|
|
437
|
+
alpha,
|
|
438
|
+
size,
|
|
439
|
+
});
|
|
440
|
+
}
|
|
441
|
+
return particles;
|
|
442
|
+
}
|
|
443
|
+
function updateSnow(particles, dtSec, tMs, bounds, wind) {
|
|
444
|
+
const margin = 50;
|
|
445
|
+
for (const p of particles) {
|
|
446
|
+
const turb = getSeededNoise(tMs, p.phase);
|
|
447
|
+
const vx = wind.x * (20 + (1 - p.z) * 35) + turb * p.driftAmp * 0.9;
|
|
448
|
+
const vy = p.speed + wind.y * 10 + turb * 8;
|
|
449
|
+
p.x += vx * dtSec;
|
|
450
|
+
p.y += vy * dtSec;
|
|
451
|
+
// gentle horizontal oscillation
|
|
452
|
+
p.x += Math.sin(tMs * 0.001 * p.driftFreq + p.phase) * p.driftAmp * dtSec * 1.2;
|
|
453
|
+
if (p.y > bounds.height + margin) {
|
|
454
|
+
p.y = -margin - Math.random() * 40;
|
|
455
|
+
p.x = Math.random() * bounds.width;
|
|
456
|
+
}
|
|
457
|
+
if (p.x < -margin)
|
|
458
|
+
p.x = bounds.width + margin;
|
|
459
|
+
if (p.x > bounds.width + margin)
|
|
460
|
+
p.x = -margin;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
function updateLeaves(particles, dtSec, tMs, bounds, wind) {
|
|
464
|
+
const margin = 80;
|
|
465
|
+
for (const p of particles) {
|
|
466
|
+
const turb = getSeededNoise(tMs, p.phase);
|
|
467
|
+
const sway = Math.sin(tMs * 0.0012 + p.phase) * (14 + p.z * 18);
|
|
468
|
+
const vx = wind.x * (28 + (1 - p.z) * 40) * p.windScale + turb * 22 + sway;
|
|
469
|
+
const vy = p.speed + wind.y * 10 + Math.cos(tMs * 0.001 + p.phase) * 10;
|
|
470
|
+
p.x += vx * dtSec;
|
|
471
|
+
p.y += vy * dtSec;
|
|
472
|
+
p.rotation += (p.rotationSpeed + turb * 0.6) * dtSec;
|
|
473
|
+
if (p.y > bounds.height + margin) {
|
|
474
|
+
p.y = -margin - Math.random() * 80;
|
|
475
|
+
p.x = Math.random() * bounds.width;
|
|
476
|
+
}
|
|
477
|
+
if (p.x < -margin)
|
|
478
|
+
p.x = bounds.width + margin;
|
|
479
|
+
if (p.x > bounds.width + margin)
|
|
480
|
+
p.x = -margin;
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
function drawSnow(ctx, particles, opacity, spriteCache) {
|
|
484
|
+
for (const p of particles) {
|
|
485
|
+
const sprite = getSprite(spriteCache, `snow:${p.spriteColor}:${p.spriteIndex}`, () => makeSnowSprite(p.spriteColor, p.spriteIndex));
|
|
486
|
+
const alpha = clamp(0, p.alpha * opacity, 1);
|
|
487
|
+
ctx.globalAlpha = alpha;
|
|
488
|
+
// Slightly soften near flakes.
|
|
489
|
+
const s = p.size;
|
|
490
|
+
const baseX = p.x - s / 2;
|
|
491
|
+
const baseY = p.y - s / 2;
|
|
492
|
+
ctx.drawImage(sprite, baseX, baseY, s, s);
|
|
493
|
+
if (p.z < 0.2 && s > 6) {
|
|
494
|
+
// Soft bokeh halo for very near flakes.
|
|
495
|
+
ctx.globalAlpha = alpha * 0.14;
|
|
496
|
+
ctx.drawImage(sprite, baseX - s * 0.25, baseY - s * 0.25, s * 1.5, s * 1.5);
|
|
497
|
+
}
|
|
498
|
+
if (p.z < 0.25 && s > 3.2) {
|
|
499
|
+
// Tiny motion trail for near flakes (cinematic depth).
|
|
500
|
+
ctx.globalAlpha = alpha * 0.28;
|
|
501
|
+
ctx.drawImage(sprite, baseX, baseY - s * 0.35, s, s);
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
function drawLeaves(ctx, particles, opacity, tMs, config, spriteCache) {
|
|
506
|
+
for (const p of particles) {
|
|
507
|
+
const leafColor = p.spriteColor || config.colors[0] || "#d4a373";
|
|
508
|
+
const key = `leaf:${leafColor}:${p.spriteIndex}`;
|
|
509
|
+
const sprite = getSprite(spriteCache, key, () => makeLeafSprite(leafColor, p.spriteIndex));
|
|
510
|
+
const alpha = clamp(0, p.alpha * opacity, 1);
|
|
511
|
+
const flutter = Math.sin(tMs * 0.001 * p.flutterSpeed + p.flutterPhase);
|
|
512
|
+
const tilt = flutter * 0.35;
|
|
513
|
+
const scale = (p.size / 52) * (0.78 + (1 - p.z) * 0.34);
|
|
514
|
+
const squash = 0.75 + Math.abs(flutter) * 0.25;
|
|
515
|
+
ctx.save();
|
|
516
|
+
ctx.globalAlpha = alpha;
|
|
517
|
+
ctx.translate(p.x, p.y);
|
|
518
|
+
ctx.rotate(p.rotation + tilt);
|
|
519
|
+
ctx.scale(scale, scale * squash);
|
|
520
|
+
ctx.drawImage(sprite, -sprite.width / 2, -sprite.height / 2);
|
|
521
|
+
ctx.restore();
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
function getCinematicCount(type, intensity, maxParticles) {
|
|
525
|
+
// getParticleCount already has cinematic multipliers for snow/leaves.
|
|
526
|
+
return getParticleCount(type, intensity, maxParticles, "cinematic");
|
|
527
|
+
}
|
|
528
|
+
export function WeatherLayerCinematicCanvas({ type, intensity = 0.5, stylePreset = "cinematic", wind = { x: 0, y: 0 }, color, colors, leafColorPreset, opacity = 1, blur = false, maxParticles: propMaxParticles, enabled = true, className, style, }) {
|
|
529
|
+
const perfConfig = getPerformanceConfig();
|
|
530
|
+
const maxParticles = propMaxParticles ?? perfConfig.maxParticles;
|
|
531
|
+
const colorsKeyProp = colorsKey(colors);
|
|
532
|
+
const config = WEATHER_CONFIGS[type];
|
|
533
|
+
const particleColors = React.useMemo(() => resolveWeatherColors({ type, colors, leafColorPreset, configColors: config.colors }), [type, leafColorPreset, colorsKeyProp, config]);
|
|
534
|
+
const containerRef = React.useRef(null);
|
|
535
|
+
const canvasRef = React.useRef(null);
|
|
536
|
+
const frameRef = React.useRef(0);
|
|
537
|
+
const lastRef = React.useRef(0);
|
|
538
|
+
const boundsRef = React.useRef({ width: 0, height: 0 });
|
|
539
|
+
const snowRef = React.useRef([]);
|
|
540
|
+
const leafRef = React.useRef([]);
|
|
541
|
+
const spriteCacheRef = React.useRef(new Map());
|
|
542
|
+
React.useEffect(() => {
|
|
543
|
+
if (stylePreset !== "cinematic" || !enabled)
|
|
544
|
+
return;
|
|
545
|
+
const container = containerRef.current;
|
|
546
|
+
const canvas = canvasRef.current;
|
|
547
|
+
if (!container || !canvas)
|
|
548
|
+
return;
|
|
549
|
+
const ctx = canvas.getContext("2d", { alpha: true });
|
|
550
|
+
if (!ctx)
|
|
551
|
+
return;
|
|
552
|
+
lastRef.current = 0;
|
|
553
|
+
const dpr = clamp(1, window.devicePixelRatio ?? 1, 2);
|
|
554
|
+
const resize = () => {
|
|
555
|
+
const width = Math.max(1, Math.floor(container.clientWidth));
|
|
556
|
+
const height = Math.max(1, Math.floor(container.clientHeight));
|
|
557
|
+
boundsRef.current = { width, height };
|
|
558
|
+
canvas.width = Math.floor(width * dpr);
|
|
559
|
+
canvas.height = Math.floor(height * dpr);
|
|
560
|
+
canvas.style.width = `${width}px`;
|
|
561
|
+
canvas.style.height = `${height}px`;
|
|
562
|
+
ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
|
|
563
|
+
};
|
|
564
|
+
resize();
|
|
565
|
+
let ro = null;
|
|
566
|
+
if (typeof ResizeObserver !== "undefined") {
|
|
567
|
+
ro = new ResizeObserver(resize);
|
|
568
|
+
ro.observe(container);
|
|
569
|
+
}
|
|
570
|
+
else {
|
|
571
|
+
window.addEventListener("resize", resize);
|
|
572
|
+
}
|
|
573
|
+
const bounds = boundsRef.current;
|
|
574
|
+
const count = getCinematicCount(type, intensity, maxParticles);
|
|
575
|
+
if (type === "snow") {
|
|
576
|
+
snowRef.current = createSnowParticles(count, config, bounds, { colorsOverride: particleColors, colorOverride: color });
|
|
577
|
+
leafRef.current = [];
|
|
578
|
+
}
|
|
579
|
+
else if (type === "leaves") {
|
|
580
|
+
leafRef.current = createLeafParticles(count, config, bounds, { colorsOverride: particleColors, colorOverride: color });
|
|
581
|
+
snowRef.current = [];
|
|
582
|
+
}
|
|
583
|
+
else {
|
|
584
|
+
snowRef.current = [];
|
|
585
|
+
leafRef.current = [];
|
|
586
|
+
}
|
|
587
|
+
const animate = (tMs) => {
|
|
588
|
+
if (!lastRef.current)
|
|
589
|
+
lastRef.current = tMs;
|
|
590
|
+
const dtMs = Math.min(tMs - lastRef.current, 40);
|
|
591
|
+
lastRef.current = tMs;
|
|
592
|
+
const dtSec = dtMs / 1000;
|
|
593
|
+
const b = boundsRef.current;
|
|
594
|
+
if (type === "snow") {
|
|
595
|
+
updateSnow(snowRef.current, dtSec, tMs, b, wind);
|
|
596
|
+
}
|
|
597
|
+
else if (type === "leaves") {
|
|
598
|
+
updateLeaves(leafRef.current, dtSec, tMs, b, wind);
|
|
599
|
+
}
|
|
600
|
+
ctx.clearRect(0, 0, b.width, b.height);
|
|
601
|
+
ctx.globalCompositeOperation = "source-over";
|
|
602
|
+
if (type === "snow") {
|
|
603
|
+
drawSnow(ctx, snowRef.current, opacity, spriteCacheRef.current);
|
|
604
|
+
}
|
|
605
|
+
else if (type === "leaves") {
|
|
606
|
+
drawLeaves(ctx, leafRef.current, opacity, tMs, WEATHER_CONFIGS[type], spriteCacheRef.current);
|
|
607
|
+
}
|
|
608
|
+
frameRef.current = requestAnimationFrame(animate);
|
|
609
|
+
};
|
|
610
|
+
frameRef.current = requestAnimationFrame(animate);
|
|
611
|
+
return () => {
|
|
612
|
+
if (ro)
|
|
613
|
+
ro.disconnect();
|
|
614
|
+
else
|
|
615
|
+
window.removeEventListener("resize", resize);
|
|
616
|
+
if (frameRef.current)
|
|
617
|
+
cancelAnimationFrame(frameRef.current);
|
|
618
|
+
};
|
|
619
|
+
}, [type, intensity, wind.x, wind.y, color, opacity, maxParticles, enabled, stylePreset, leafColorPreset, colorsKeyProp]);
|
|
620
|
+
return (_jsx("div", { ref: containerRef, className: cn("pointer-events-none absolute inset-0 overflow-hidden", className), style: {
|
|
621
|
+
opacity: 1,
|
|
622
|
+
filter: blur ? "blur(0.8px)" : undefined,
|
|
623
|
+
...style,
|
|
624
|
+
}, "aria-hidden": "true", children: _jsx("canvas", { ref: canvasRef, className: "absolute inset-0", "aria-hidden": "true" }) }));
|
|
625
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { AutumnLeafColorPreset } from "./leafPresets";
|
|
2
|
+
import type { WeatherType } from "./types";
|
|
3
|
+
export declare function resolveWeatherColors({ type, configColors, colors, leafColorPreset, }: {
|
|
4
|
+
type: WeatherType;
|
|
5
|
+
configColors: readonly string[];
|
|
6
|
+
colors?: readonly string[];
|
|
7
|
+
leafColorPreset?: AutumnLeafColorPreset;
|
|
8
|
+
}): readonly string[];
|
|
9
|
+
export declare function colorsKey(colors: readonly string[] | undefined): string;
|
|
10
|
+
//# sourceMappingURL=colors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../src/primitives/environment/WeatherLayer/colors.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,wBAAgB,oBAAoB,CAAC,EACnC,IAAI,EACJ,YAAY,EACZ,MAAM,EACN,eAAe,GAChB,EAAE;IACD,IAAI,EAAE,WAAW,CAAC;IAClB,YAAY,EAAE,SAAS,MAAM,EAAE,CAAC;IAChC,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC3B,eAAe,CAAC,EAAE,qBAAqB,CAAC;CACzC,GAAG,SAAS,MAAM,EAAE,CAMpB;AAED,wBAAgB,SAAS,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,GAAG,SAAS,UAG9D"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AUTUMN_LEAF_COLOR_PRESETS } from "./leafPresets";
|
|
2
|
+
export function resolveWeatherColors({ type, configColors, colors, leafColorPreset, }) {
|
|
3
|
+
if (colors && colors.length > 0)
|
|
4
|
+
return colors;
|
|
5
|
+
if (type === "leaves" && leafColorPreset) {
|
|
6
|
+
return AUTUMN_LEAF_COLOR_PRESETS[leafColorPreset] ?? configColors;
|
|
7
|
+
}
|
|
8
|
+
return configColors;
|
|
9
|
+
}
|
|
10
|
+
export function colorsKey(colors) {
|
|
11
|
+
if (!colors || colors.length === 0)
|
|
12
|
+
return "";
|
|
13
|
+
return colors.join("|");
|
|
14
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { WeatherLayer } from './WeatherLayer';
|
|
2
|
+
export type { WeatherLayerProps, WeatherType } from './types';
|
|
3
|
+
export { AUTUMN_LEAF_COLOR_PRESETS } from "./leafPresets";
|
|
4
|
+
export type { AutumnLeafColorPreset } from "./leafPresets";
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/primitives/environment/WeatherLayer/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAC9D,OAAO,EAAE,yBAAyB,EAAE,MAAM,eAAe,CAAC;AAC1D,YAAY,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const AUTUMN_LEAF_COLOR_PRESETS: {
|
|
2
|
+
readonly "early-autumn": readonly ["#6b8f3f", "#a9b84a", "#d8c35a", "#e5b04a", "#c97a2c"];
|
|
3
|
+
readonly "peak-autumn": readonly ["#b63a2b", "#d86b2c", "#e5a93a", "#c56b2b", "#7a3e1b"];
|
|
4
|
+
readonly "late-autumn": readonly ["#5a3d2b", "#7a563e", "#9a6f4b", "#b68a5e", "#8a6b4f"];
|
|
5
|
+
readonly golden: readonly ["#f2d27a", "#e9c15c", "#d8a93b", "#b9872a", "#e8b04a"];
|
|
6
|
+
readonly rust: readonly ["#a34a1f", "#c2602d", "#d6782f", "#e07b39", "#bc6c25"];
|
|
7
|
+
readonly "maple-red": readonly ["#7a1f1f", "#a02b2b", "#c0302b", "#d44a2c", "#e36a3a"];
|
|
8
|
+
readonly muted: readonly ["#d4a373", "#c08a5a", "#a66a3f", "#8c5a36", "#e3b07a"];
|
|
9
|
+
};
|
|
10
|
+
export type AutumnLeafColorPreset = keyof typeof AUTUMN_LEAF_COLOR_PRESETS;
|
|
11
|
+
//# sourceMappingURL=leafPresets.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leafPresets.d.ts","sourceRoot":"","sources":["../../../../src/primitives/environment/WeatherLayer/leafPresets.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,yBAAyB;;;;;;;;CAQ5B,CAAC;AAEX,MAAM,MAAM,qBAAqB,GAAG,MAAM,OAAO,yBAAyB,CAAC"}
|