@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,189 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useRef } from "react";
|
|
4
|
+
import { motion, useScroll, useTransform } from "framer-motion";
|
|
5
|
+
import { cn } from "../../lib/utils";
|
|
6
|
+
import { ClusterHero } from "./ClusterHero.js";
|
|
7
|
+
import { getClusterConfigWithResolvedUrls } from "./config.js";
|
|
8
|
+
// ============================================================================
|
|
9
|
+
// Feature Cards Section
|
|
10
|
+
// ============================================================================
|
|
11
|
+
const FEATURE_DATA = {
|
|
12
|
+
alexandria: [
|
|
13
|
+
{ title: "Knowledge Graph", description: "Interconnected data structures that compound understanding over time", icon: "book" },
|
|
14
|
+
{ title: "Semantic Search", description: "Query across documents with natural language understanding", icon: "search" },
|
|
15
|
+
{ title: "Version History", description: "Every edit preserved, every branch trackable", icon: "history" },
|
|
16
|
+
],
|
|
17
|
+
alpha: [
|
|
18
|
+
{ title: "Genesis Protocol", description: "The foundational layer from which all clusters derive", icon: "origin" },
|
|
19
|
+
{ title: "Core APIs", description: "Stable interfaces that power the entire ecosystem", icon: "api" },
|
|
20
|
+
{ title: "Identity Layer", description: "Sovereign authentication across all surfaces", icon: "key" },
|
|
21
|
+
],
|
|
22
|
+
opus: [
|
|
23
|
+
{ title: "Diagnostic Engines", description: "AI-powered analysis pipelines for medical imaging and patient data", icon: "scan" },
|
|
24
|
+
{ title: "Care Protocols", description: "Autonomous coordination of treatment workflows and provider networks", icon: "workflow" },
|
|
25
|
+
{ title: "Compliance Layer", description: "Built-in HIPAA, SOC2, and regulatory framework adherence", icon: "shield" },
|
|
26
|
+
],
|
|
27
|
+
baia: [
|
|
28
|
+
{ title: "Neural Canvas", description: "Generative models that transform prompts into visual masterpieces", icon: "palette" },
|
|
29
|
+
{ title: "Sound Synthesis", description: "AI composition engines for music, ambience, and audio design", icon: "waveform" },
|
|
30
|
+
{ title: "Style Transfer", description: "Cross-modal translation between artistic mediums and formats", icon: "layers" },
|
|
31
|
+
],
|
|
32
|
+
kdot: [
|
|
33
|
+
{ title: "Mesh Network", description: "Distributed connectivity that routes around failures", icon: "network" },
|
|
34
|
+
{ title: "Protocol Layer", description: "Universal translation between disparate systems", icon: "protocol" },
|
|
35
|
+
{ title: "Node Discovery", description: "Automatic peer detection and topology mapping", icon: "discovery" },
|
|
36
|
+
],
|
|
37
|
+
aegis: [
|
|
38
|
+
{ title: "Threat Detection", description: "Real-time monitoring for anomalous patterns", icon: "shield" },
|
|
39
|
+
{ title: "Access Control", description: "Fine-grained permissions and authentication flows", icon: "lock" },
|
|
40
|
+
{ title: "Audit Trail", description: "Immutable logs of every action and decision", icon: "log" },
|
|
41
|
+
],
|
|
42
|
+
providence: [
|
|
43
|
+
{ title: "Threat Intelligence", description: "Predictive analysis and proactive defense postures", icon: "radar" },
|
|
44
|
+
{ title: "Incident Response", description: "Automated containment and remediation workflows", icon: "alert" },
|
|
45
|
+
{ title: "Compliance Engine", description: "Continuous verification against security frameworks", icon: "certificate" },
|
|
46
|
+
],
|
|
47
|
+
};
|
|
48
|
+
function FeatureCard({ title, description, accentColor, index }) {
|
|
49
|
+
return (_jsxs(motion.article, { initial: { opacity: 0, y: 40 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true, margin: "-100px" }, transition: {
|
|
50
|
+
duration: 0.6,
|
|
51
|
+
delay: index * 0.15,
|
|
52
|
+
ease: [0.22, 1, 0.36, 1]
|
|
53
|
+
}, className: "group relative p-8 bg-zinc-900/80 backdrop-blur-sm border border-zinc-800 hover:border-zinc-700 transition-colors duration-300", children: [_jsx("div", { className: "absolute top-0 left-0 w-1 h-0 group-hover:h-full transition-all duration-500", style: { backgroundColor: accentColor } }), _jsx("h3", { className: "font-serif text-2xl text-white mb-3 tracking-wide", children: title }), _jsx("p", { className: "text-zinc-400 leading-relaxed", children: description })] }));
|
|
54
|
+
}
|
|
55
|
+
export function FeatureCardsSection({ clusterId, config }) {
|
|
56
|
+
const features = FEATURE_DATA[clusterId];
|
|
57
|
+
return (_jsx("section", { className: "relative z-10 bg-zinc-950 py-32 px-16", children: _jsxs("div", { className: "max-w-7xl mx-auto", children: [_jsxs(motion.header, { initial: { opacity: 0, y: 20 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true }, transition: { duration: 0.6 }, className: "mb-16", children: [_jsx("span", { className: "font-mono text-xs uppercase tracking-[0.2em]", style: { color: config.accentColor }, children: "Capabilities" }), _jsxs("h2", { className: "font-serif text-5xl text-white mt-4 tracking-wide", children: ["What defines ", config.name] })] }), _jsx("div", { className: "grid grid-cols-1 md:grid-cols-3 gap-6", children: features.map((feature, index) => (_jsx(FeatureCard, { title: feature.title, description: feature.description, accentColor: config.accentColor, index: index }, feature.title))) })] }) }));
|
|
58
|
+
}
|
|
59
|
+
// ============================================================================
|
|
60
|
+
// Cluster Stats Section
|
|
61
|
+
// ============================================================================
|
|
62
|
+
const STATS_DATA = {
|
|
63
|
+
alexandria: [
|
|
64
|
+
{ value: "2.4M", label: "Documents Indexed" },
|
|
65
|
+
{ value: "847K", label: "Active Queries/Day" },
|
|
66
|
+
{ value: "99.97%", label: "Uptime" },
|
|
67
|
+
{ value: "12ms", label: "Avg Response" },
|
|
68
|
+
],
|
|
69
|
+
alpha: [
|
|
70
|
+
{ value: "1.0", label: "Protocol Version" },
|
|
71
|
+
{ value: "∞", label: "Scalability" },
|
|
72
|
+
{ value: "100%", label: "Backwards Compatible" },
|
|
73
|
+
{ value: "0", label: "Breaking Changes" },
|
|
74
|
+
],
|
|
75
|
+
opus: [
|
|
76
|
+
{ value: "2.4M", label: "Diagnostics Processed" },
|
|
77
|
+
{ value: "847", label: "Active Protocols" },
|
|
78
|
+
{ value: "99.97%", label: "Compliance Rate" },
|
|
79
|
+
{ value: "< 2s", label: "Analysis Latency" },
|
|
80
|
+
],
|
|
81
|
+
baia: [
|
|
82
|
+
{ value: "4.2M", label: "Works Generated" },
|
|
83
|
+
{ value: "156K", label: "Active Artists" },
|
|
84
|
+
{ value: "847K", label: "Daily Renders" },
|
|
85
|
+
{ value: "12TB", label: "Media Produced" },
|
|
86
|
+
],
|
|
87
|
+
kdot: [
|
|
88
|
+
{ value: "1.2M", label: "Connected Nodes" },
|
|
89
|
+
{ value: "47ms", label: "Avg Latency" },
|
|
90
|
+
{ value: "99.99%", label: "Uptime" },
|
|
91
|
+
{ value: "8.4PB", label: "Daily Throughput" },
|
|
92
|
+
],
|
|
93
|
+
aegis: [
|
|
94
|
+
{ value: "0", label: "Breaches" },
|
|
95
|
+
{ value: "2.1B", label: "Threats Blocked" },
|
|
96
|
+
{ value: "99.97%", label: "Detection Rate" },
|
|
97
|
+
{ value: "< 1s", label: "Response Time" },
|
|
98
|
+
],
|
|
99
|
+
providence: [
|
|
100
|
+
{ value: "24/7", label: "Monitoring" },
|
|
101
|
+
{ value: "847K", label: "Threats Analyzed" },
|
|
102
|
+
{ value: "99.99%", label: "Uptime" },
|
|
103
|
+
{ value: "< 50ms", label: "Alert Latency" },
|
|
104
|
+
],
|
|
105
|
+
};
|
|
106
|
+
function StatBlock({ value, label, accentColor, index }) {
|
|
107
|
+
return (_jsxs(motion.div, { initial: { opacity: 0, scale: 0.9 }, whileInView: { opacity: 1, scale: 1 }, viewport: { once: true, margin: "-50px" }, transition: {
|
|
108
|
+
duration: 0.5,
|
|
109
|
+
delay: index * 0.1,
|
|
110
|
+
ease: [0.22, 1, 0.36, 1]
|
|
111
|
+
}, className: "text-center p-8", children: [_jsx("div", { className: "font-mono text-5xl md:text-6xl font-light mb-3", style: { color: accentColor }, children: value }), _jsx("div", { className: "text-zinc-500 uppercase tracking-[0.15em] text-sm", children: label })] }));
|
|
112
|
+
}
|
|
113
|
+
export function ClusterStatsSection({ clusterId, config }) {
|
|
114
|
+
const stats = STATS_DATA[clusterId];
|
|
115
|
+
return (_jsx("section", { className: "relative z-10 bg-black py-32 px-16", children: _jsxs("div", { className: "max-w-6xl mx-auto", children: [_jsx(motion.div, { initial: { scaleX: 0 }, whileInView: { scaleX: 1 }, viewport: { once: true }, transition: { duration: 1, ease: [0.22, 1, 0.36, 1] }, className: "h-px mb-16 origin-left", style: { backgroundColor: config.accentColor } }), _jsx("div", { className: "grid grid-cols-2 md:grid-cols-4 gap-8", children: stats.map((stat, index) => (_jsx(StatBlock, { value: stat.value, label: stat.label, accentColor: config.accentColor, index: index }, stat.label))) }), _jsx(motion.div, { initial: { scaleX: 0 }, whileInView: { scaleX: 1 }, viewport: { once: true }, transition: { duration: 1, ease: [0.22, 1, 0.36, 1] }, className: "h-px mt-16 origin-right", style: { backgroundColor: config.accentColor } })] }) }));
|
|
116
|
+
}
|
|
117
|
+
// ============================================================================
|
|
118
|
+
// CTA Section
|
|
119
|
+
// ============================================================================
|
|
120
|
+
const CTA_DATA = {
|
|
121
|
+
alexandria: {
|
|
122
|
+
headline: "Begin your research",
|
|
123
|
+
subtext: "Join thousands of scholars building the world's knowledge commons",
|
|
124
|
+
buttonLabel: "Enter Alexandria",
|
|
125
|
+
},
|
|
126
|
+
alpha: {
|
|
127
|
+
headline: "Start from the source",
|
|
128
|
+
subtext: "Everything begins here. Every journey starts with Alpha.",
|
|
129
|
+
buttonLabel: "Initialize",
|
|
130
|
+
},
|
|
131
|
+
opus: {
|
|
132
|
+
headline: "Healthcare, autonomous",
|
|
133
|
+
subtext: "Diagnostic pipelines and care protocols that run themselves.",
|
|
134
|
+
buttonLabel: "Enter Opus",
|
|
135
|
+
},
|
|
136
|
+
baia: {
|
|
137
|
+
headline: "Art from the machine",
|
|
138
|
+
subtext: "Generative works that blur the line between human and artificial creativity.",
|
|
139
|
+
buttonLabel: "Open Studio",
|
|
140
|
+
},
|
|
141
|
+
kdot: {
|
|
142
|
+
headline: "Join the mesh",
|
|
143
|
+
subtext: "Connect to the network that never sleeps.",
|
|
144
|
+
buttonLabel: "Connect Now",
|
|
145
|
+
},
|
|
146
|
+
aegis: {
|
|
147
|
+
headline: "Secure your realm",
|
|
148
|
+
subtext: "Protection that scales with your ambition.",
|
|
149
|
+
buttonLabel: "Activate Shield",
|
|
150
|
+
},
|
|
151
|
+
providence: {
|
|
152
|
+
headline: "Foresee. Prevent. Prevail.",
|
|
153
|
+
subtext: "Security through foresight. Protection before the threat arrives.",
|
|
154
|
+
buttonLabel: "Enter Providence",
|
|
155
|
+
},
|
|
156
|
+
};
|
|
157
|
+
export function CTASection({ clusterId, config }) {
|
|
158
|
+
const cta = CTA_DATA[clusterId];
|
|
159
|
+
return (_jsx("section", { className: "relative z-10 bg-zinc-950 py-48 px-16", children: _jsxs(motion.div, { initial: { opacity: 0, y: 60 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true, margin: "-100px" }, transition: { duration: 0.8, ease: [0.22, 1, 0.36, 1] }, className: "max-w-4xl mx-auto text-center", children: [_jsx("h2", { className: "font-serif text-6xl md:text-7xl text-white tracking-wide mb-8 leading-[1.1]", children: cta.headline }), _jsx("p", { className: "text-xl text-zinc-400 mb-12 max-w-2xl mx-auto leading-relaxed", children: cta.subtext }), _jsx("a", { href: `/clusters/${clusterId}`, className: "inline-block px-12 py-5 text-lg font-medium tracking-wider uppercase text-black transition-all duration-300 hover:brightness-110 hover:scale-105", style: { backgroundColor: config.accentColor }, children: cta.buttonLabel })] }) }));
|
|
160
|
+
}
|
|
161
|
+
// ============================================================================
|
|
162
|
+
// Main ClusterHeroPage Component
|
|
163
|
+
// ============================================================================
|
|
164
|
+
/**
|
|
165
|
+
* ClusterHeroPage composes a full landing page experience for a cluster.
|
|
166
|
+
*
|
|
167
|
+
* Structure:
|
|
168
|
+
* - Sticky hero (100vh) with scroll-based parallax and dimming
|
|
169
|
+
* - Feature cards section scrolling over the hero
|
|
170
|
+
* - Stats section with animated counters
|
|
171
|
+
* - CTA section with final call to action
|
|
172
|
+
*
|
|
173
|
+
* The hero uses sticky positioning so it remains as a background while
|
|
174
|
+
* subsequent sections with solid backgrounds scroll over it.
|
|
175
|
+
*/
|
|
176
|
+
export function ClusterHeroPage({ clusterId, className }) {
|
|
177
|
+
const containerRef = useRef(null);
|
|
178
|
+
const config = getClusterConfigWithResolvedUrls(clusterId);
|
|
179
|
+
const { scrollYProgress } = useScroll({
|
|
180
|
+
target: containerRef,
|
|
181
|
+
offset: ["start start", "end start"],
|
|
182
|
+
});
|
|
183
|
+
// Hero dims from opacity 1 to 0.3 as you scroll through first 20% of page
|
|
184
|
+
const heroOpacity = useTransform(scrollYProgress, [0, 0.15], [1, 0.3]);
|
|
185
|
+
// Content has subtle parallax - moves up slower than scroll
|
|
186
|
+
const heroY = useTransform(scrollYProgress, [0, 0.3], [0, -100]);
|
|
187
|
+
return (_jsxs("main", { ref: containerRef, className: cn("relative scroll-smooth", className), children: [_jsx(motion.div, { className: "sticky top-0 h-screen overflow-hidden", style: { opacity: heroOpacity }, children: _jsx(motion.div, { style: { y: heroY }, className: "h-full", children: _jsx(ClusterHero, { cluster: clusterId, className: "h-full" }) }) }), _jsxs("div", { className: "relative", children: [_jsx(FeatureCardsSection, { clusterId: clusterId, config: config }), _jsx(ClusterStatsSection, { clusterId: clusterId, config: config }), _jsx(CTASection, { clusterId: clusterId, config: config })] })] }));
|
|
188
|
+
}
|
|
189
|
+
export default ClusterHeroPage;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ClusterRailProps } from "./types.js";
|
|
2
|
+
/**
|
|
3
|
+
* ClusterRail renders the bottom-left cluster identity panel with:
|
|
4
|
+
* - Cluster name in small caps with wide tracking
|
|
5
|
+
* - Italic tagline at reduced opacity
|
|
6
|
+
* - Metrics row with dot separators (monospace)
|
|
7
|
+
* - Vertically stacked CTA buttons (primary/secondary/ghost)
|
|
8
|
+
*
|
|
9
|
+
* Uses CSS variable --cluster-accent for theming.
|
|
10
|
+
*/
|
|
11
|
+
export declare function ClusterRail({ name, tagline, metrics, buttons, accentColor, className, }: ClusterRailProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default ClusterRail;
|
|
13
|
+
//# sourceMappingURL=ClusterRail.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClusterRail.d.ts","sourceRoot":"","sources":["../../../src/components/ClusterHero/ClusterRail.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,gBAAgB,EAAgB,MAAM,YAAY,CAAC;AAuIjE;;;;;;;;GAQG;AACH,wBAAgB,WAAW,CAAC,EAC1B,IAAI,EACJ,OAAO,EACP,OAAO,EACP,OAAO,EACP,WAAW,EACX,SAAS,GACV,EAAE,gBAAgB,2CAmBlB;AAED,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
3
|
+
import { motion } from "framer-motion";
|
|
4
|
+
import { cn } from "../../lib/utils";
|
|
5
|
+
// ============================================================================
|
|
6
|
+
// Animation Variants
|
|
7
|
+
// ============================================================================
|
|
8
|
+
const fadeUpVariants = {
|
|
9
|
+
hidden: { opacity: 0, y: 20 },
|
|
10
|
+
visible: { opacity: 1, y: 0 },
|
|
11
|
+
};
|
|
12
|
+
const fadeUpTransition = {
|
|
13
|
+
duration: 0.6,
|
|
14
|
+
ease: [0.22, 1, 0.36, 1],
|
|
15
|
+
};
|
|
16
|
+
const staggerContainer = {
|
|
17
|
+
hidden: { opacity: 0 },
|
|
18
|
+
visible: {
|
|
19
|
+
opacity: 1,
|
|
20
|
+
transition: {
|
|
21
|
+
staggerChildren: 0.12,
|
|
22
|
+
delayChildren: 0.1,
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
};
|
|
26
|
+
// ============================================================================
|
|
27
|
+
// Sub-components
|
|
28
|
+
// ============================================================================
|
|
29
|
+
function ClusterName({ name }) {
|
|
30
|
+
return (_jsx(motion.h2, { variants: fadeUpVariants, className: "text-4xl md:text-5xl lg:text-6xl font-semibold uppercase text-white", style: {
|
|
31
|
+
fontVariant: "small-caps",
|
|
32
|
+
letterSpacing: "0.12em",
|
|
33
|
+
}, children: name }));
|
|
34
|
+
}
|
|
35
|
+
function Tagline({ text }) {
|
|
36
|
+
return (_jsx(motion.p, { variants: fadeUpVariants, className: "text-lg md:text-xl text-white/70 font-light italic leading-relaxed mt-3", children: text }));
|
|
37
|
+
}
|
|
38
|
+
function MetricsRow({ metrics, }) {
|
|
39
|
+
const formattedRealms = metrics.realms.toLocaleString();
|
|
40
|
+
return (_jsxs(motion.div, { variants: fadeUpVariants, className: "flex items-center gap-2 font-mono text-xs text-white/50 mt-4 tracking-wide", children: [_jsxs("span", { children: [formattedRealms, " realms"] }), _jsx("span", { className: "text-white/30", children: "\u2022" }), _jsxs("span", { children: [metrics.output24h, " output"] }), metrics.rank !== undefined && (_jsxs(_Fragment, { children: [_jsx("span", { className: "text-white/30", children: "\u2022" }), _jsxs("span", { children: ["Rank #", metrics.rank] })] }))] }));
|
|
41
|
+
}
|
|
42
|
+
function RailButton({ button }) {
|
|
43
|
+
const baseClasses = "w-full px-6 py-3 text-sm font-medium tracking-wider uppercase transition-all duration-300 text-center";
|
|
44
|
+
const variantClasses = {
|
|
45
|
+
primary: "text-black hover:brightness-110 hover:scale-[1.02]",
|
|
46
|
+
secondary: "bg-transparent border hover:bg-[var(--cluster-accent)]/10",
|
|
47
|
+
ghost: "bg-transparent border-none text-white/50 hover:text-white/80",
|
|
48
|
+
};
|
|
49
|
+
const variantStyles = {
|
|
50
|
+
primary: {
|
|
51
|
+
backgroundColor: "var(--cluster-accent)",
|
|
52
|
+
},
|
|
53
|
+
secondary: {
|
|
54
|
+
borderColor: "var(--cluster-accent)",
|
|
55
|
+
color: "var(--cluster-accent)",
|
|
56
|
+
},
|
|
57
|
+
ghost: {},
|
|
58
|
+
};
|
|
59
|
+
return (_jsx(motion.a, { variants: fadeUpVariants, href: button.href, className: cn(baseClasses, variantClasses[button.variant]), style: variantStyles[button.variant], ...(button.external && {
|
|
60
|
+
target: "_blank",
|
|
61
|
+
rel: "noopener noreferrer",
|
|
62
|
+
}), children: button.label }));
|
|
63
|
+
}
|
|
64
|
+
function ButtonStack({ buttons }) {
|
|
65
|
+
return (_jsx("div", { className: "flex flex-col gap-3 mt-8 w-full max-w-xs", children: buttons.map((button) => (_jsx(RailButton, { button: button }, button.label))) }));
|
|
66
|
+
}
|
|
67
|
+
// ============================================================================
|
|
68
|
+
// Main Component
|
|
69
|
+
// ============================================================================
|
|
70
|
+
/**
|
|
71
|
+
* ClusterRail renders the bottom-left cluster identity panel with:
|
|
72
|
+
* - Cluster name in small caps with wide tracking
|
|
73
|
+
* - Italic tagline at reduced opacity
|
|
74
|
+
* - Metrics row with dot separators (monospace)
|
|
75
|
+
* - Vertically stacked CTA buttons (primary/secondary/ghost)
|
|
76
|
+
*
|
|
77
|
+
* Uses CSS variable --cluster-accent for theming.
|
|
78
|
+
*/
|
|
79
|
+
export function ClusterRail({ name, tagline, metrics, buttons, accentColor, className, }) {
|
|
80
|
+
return (_jsxs(motion.aside, { variants: staggerContainer, initial: "hidden", animate: "visible", className: cn("flex flex-col items-start", className), style: {
|
|
81
|
+
"--cluster-accent": accentColor,
|
|
82
|
+
}, children: [_jsx(ClusterName, { name: name }), _jsx(Tagline, { text: tagline }), _jsx(MetricsRow, { metrics: metrics }), _jsx(ButtonStack, { buttons: buttons })] }));
|
|
83
|
+
}
|
|
84
|
+
export default ClusterRail;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface GradientVeilProps {
|
|
2
|
+
className?: string;
|
|
3
|
+
/** Intensity of the gradient (0-1, default 1) */
|
|
4
|
+
intensity?: number;
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* A bottom-anchored gradient overlay for text legibility over video backgrounds.
|
|
8
|
+
* The gradient fades from opaque black at the bottom to transparent at the top.
|
|
9
|
+
*/
|
|
10
|
+
export declare function GradientVeil({ className, intensity }: GradientVeilProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
//# sourceMappingURL=GradientVeil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GradientVeil.d.ts","sourceRoot":"","sources":["../../../src/components/ClusterHero/GradientVeil.tsx"],"names":[],"mappings":"AAIA,MAAM,WAAW,iBAAiB;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iDAAiD;IACjD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAAC,EAAE,SAAS,EAAE,SAAa,EAAE,EAAE,iBAAiB,2CAoB3E"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { cn } from "../../lib/utils";
|
|
4
|
+
/**
|
|
5
|
+
* A bottom-anchored gradient overlay for text legibility over video backgrounds.
|
|
6
|
+
* The gradient fades from opaque black at the bottom to transparent at the top.
|
|
7
|
+
*/
|
|
8
|
+
export function GradientVeil({ className, intensity = 1 }) {
|
|
9
|
+
// Scale alpha values by intensity
|
|
10
|
+
const a1 = (0.85 * intensity).toFixed(2);
|
|
11
|
+
const a2 = (0.5 * intensity).toFixed(2);
|
|
12
|
+
const a3 = (0.2 * intensity).toFixed(2);
|
|
13
|
+
return (_jsx("div", { className: cn("absolute inset-0 pointer-events-none", className), style: {
|
|
14
|
+
background: `linear-gradient(
|
|
15
|
+
to top,
|
|
16
|
+
rgba(0, 0, 0, ${a1}) 0%,
|
|
17
|
+
rgba(0, 0, 0, ${a2}) 30%,
|
|
18
|
+
rgba(0, 0, 0, ${a3}) 50%,
|
|
19
|
+
transparent 70%
|
|
20
|
+
)`,
|
|
21
|
+
} }));
|
|
22
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ClusterConfig } from "./types.js";
|
|
2
|
+
export interface HeroContentProps {
|
|
3
|
+
/** Cluster configuration containing name, tagline, buttons, and accent color */
|
|
4
|
+
config: ClusterConfig;
|
|
5
|
+
/** Additional CSS classes */
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* HeroContent renders the text overlay for the ClusterHero component.
|
|
10
|
+
* Includes the badge, title, tagline, and action buttons with staggered
|
|
11
|
+
* fade-up animations on load.
|
|
12
|
+
*/
|
|
13
|
+
export declare function HeroContent({ config, className }: HeroContentProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
//# sourceMappingURL=HeroContent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HeroContent.d.ts","sourceRoot":"","sources":["../../../src/components/ClusterHero/HeroContent.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAgB,MAAM,YAAY,CAAC;AAE9D,MAAM,WAAW,gBAAgB;IAC/B,gFAAgF;IAChF,MAAM,EAAE,aAAa,CAAC;IACtB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAgHD;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,EAAE,gBAAgB,2CAelE"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { motion } from "framer-motion";
|
|
4
|
+
import { cn } from "../../lib/utils";
|
|
5
|
+
const fadeUpVariants = {
|
|
6
|
+
hidden: { opacity: 0, y: 24 },
|
|
7
|
+
visible: { opacity: 1, y: 0 },
|
|
8
|
+
};
|
|
9
|
+
const fadeUpTransition = {
|
|
10
|
+
duration: 0.7,
|
|
11
|
+
ease: [0.22, 1, 0.36, 1], // Custom ease-out curve
|
|
12
|
+
};
|
|
13
|
+
function ClusterBadge({ delay }) {
|
|
14
|
+
return (_jsxs(motion.div, { variants: fadeUpVariants, initial: "hidden", animate: "visible", transition: { ...fadeUpTransition, delay }, className: "mb-6", children: [_jsx("span", { className: "font-mono text-xs uppercase tracking-[0.2em] text-white/80", children: "CLUSTERS" }), _jsx("div", { className: "mt-2 h-px w-12", style: { backgroundColor: "var(--cluster-accent)" } })] }));
|
|
15
|
+
}
|
|
16
|
+
function ClusterTitle({ name, delay }) {
|
|
17
|
+
return (_jsx(motion.h1, { variants: fadeUpVariants, initial: "hidden", animate: "visible", transition: { ...fadeUpTransition, delay }, className: "font-serif text-7xl md:text-8xl uppercase tracking-[0.15em] text-white mb-6 leading-[0.9]", children: name }));
|
|
18
|
+
}
|
|
19
|
+
function Tagline({ text, delay }) {
|
|
20
|
+
return (_jsx(motion.p, { variants: fadeUpVariants, initial: "hidden", animate: "visible", transition: { ...fadeUpTransition, delay }, className: "font-serif text-xl md:text-2xl text-white/70 max-w-md italic mb-10 leading-relaxed", children: text }));
|
|
21
|
+
}
|
|
22
|
+
function HeroButton({ button }) {
|
|
23
|
+
const baseClasses = "px-6 py-3 text-sm font-medium tracking-wider uppercase transition-all duration-300";
|
|
24
|
+
const variantClasses = {
|
|
25
|
+
primary: "text-black hover:brightness-110",
|
|
26
|
+
secondary: "border hover:bg-[var(--cluster-accent)]/10",
|
|
27
|
+
ghost: "border border-white/20 text-white/70 hover:border-white/40 hover:text-white",
|
|
28
|
+
};
|
|
29
|
+
const variantStyles = {
|
|
30
|
+
primary: { backgroundColor: "var(--cluster-accent)" },
|
|
31
|
+
secondary: {
|
|
32
|
+
borderColor: "var(--cluster-accent)",
|
|
33
|
+
color: "var(--cluster-accent)",
|
|
34
|
+
},
|
|
35
|
+
ghost: {},
|
|
36
|
+
};
|
|
37
|
+
return (_jsx("a", { href: button.href, className: cn(baseClasses, variantClasses[button.variant]), style: variantStyles[button.variant], children: button.label }));
|
|
38
|
+
}
|
|
39
|
+
function ButtonGroup({ buttons, delay, }) {
|
|
40
|
+
return (_jsx(motion.div, { variants: fadeUpVariants, initial: "hidden", animate: "visible", transition: { ...fadeUpTransition, delay }, className: "flex flex-wrap gap-4", children: buttons.map((button) => (_jsx(HeroButton, { button: button }, button.label))) }));
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* HeroContent renders the text overlay for the ClusterHero component.
|
|
44
|
+
* Includes the badge, title, tagline, and action buttons with staggered
|
|
45
|
+
* fade-up animations on load.
|
|
46
|
+
*/
|
|
47
|
+
export function HeroContent({ config, className }) {
|
|
48
|
+
return (_jsxs("div", { className: cn("absolute bottom-0 left-0 pb-20 pl-16 z-10", className), style: { "--cluster-accent": config.accentColor }, children: [_jsx(ClusterBadge, { delay: 0.2 }), _jsx(ClusterTitle, { name: config.name, delay: 0.4 }), _jsx(Tagline, { text: config.tagline, delay: 0.6 }), _jsx(ButtonGroup, { buttons: config.buttons, delay: 0.8 })] }));
|
|
49
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { LiveStripProps } from "./types.js";
|
|
2
|
+
/**
|
|
3
|
+
* LiveStrip renders a single horizontal activity strip with a contextual
|
|
4
|
+
* icon, message text, and an animated arrow indicator.
|
|
5
|
+
*/
|
|
6
|
+
export declare function LiveStrip({ moduleType, content, accentColor, className, }: LiveStripProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default LiveStrip;
|
|
8
|
+
//# sourceMappingURL=LiveStrip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LiveStrip.d.ts","sourceRoot":"","sources":["../../../src/components/ClusterHero/LiveStrip.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAkB,MAAM,YAAY,CAAC;AAgBjE;;;GAGG;AACH,wBAAgB,SAAS,CAAC,EACxB,UAAU,EACV,OAAO,EACP,WAAW,EACX,SAAS,GACV,EAAE,cAAc,2CAiChB;AAED,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { FileText, Zap, Vote, Trophy, ArrowRight } from "lucide-react";
|
|
4
|
+
import { cn } from "../../lib/utils";
|
|
5
|
+
const DEFAULT_CONTENT = {
|
|
6
|
+
market: "3 new blueprints published today",
|
|
7
|
+
live: "24 active workflows running",
|
|
8
|
+
governance: "Proposal #18 — Voting ends in 6h",
|
|
9
|
+
progress: "You minted 4 verified artifacts this week",
|
|
10
|
+
};
|
|
11
|
+
const MODULE_ICONS = {
|
|
12
|
+
market: FileText,
|
|
13
|
+
live: Zap,
|
|
14
|
+
governance: Vote,
|
|
15
|
+
progress: Trophy,
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* LiveStrip renders a single horizontal activity strip with a contextual
|
|
19
|
+
* icon, message text, and an animated arrow indicator.
|
|
20
|
+
*/
|
|
21
|
+
export function LiveStrip({ moduleType, content, accentColor, className, }) {
|
|
22
|
+
const Icon = MODULE_ICONS[moduleType];
|
|
23
|
+
const displayContent = content ?? DEFAULT_CONTENT[moduleType];
|
|
24
|
+
return (_jsxs("div", { className: cn("group flex items-center gap-3 px-4 py-2.5 rounded-lg bg-white/5 backdrop-blur-sm", "transition-colors duration-200 hover:bg-white/10 cursor-pointer", className), children: [_jsx(Icon, { className: "w-4 h-4 shrink-0 transition-colors duration-200", style: { color: accentColor } }), _jsx("span", { className: "text-sm text-white/80 font-normal flex-1 truncate", children: displayContent }), _jsx(ArrowRight, { className: cn("w-4 h-4 shrink-0 text-white/40", "transition-all duration-200 ease-out", "group-hover:translate-x-1 group-hover:text-white/60") })] }));
|
|
25
|
+
}
|
|
26
|
+
export default LiveStrip;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface ScrollIndicatorProps {
|
|
2
|
+
/** Additional CSS classes */
|
|
3
|
+
className?: string;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* An animated scroll indicator that hints users to scroll down.
|
|
7
|
+
* Features a continuous bobbing animation and fades out as the user scrolls.
|
|
8
|
+
*/
|
|
9
|
+
export declare function ScrollIndicator({ className }: ScrollIndicatorProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
//# sourceMappingURL=ScrollIndicator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScrollIndicator.d.ts","sourceRoot":"","sources":["../../../src/components/ClusterHero/ScrollIndicator.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,oBAAoB;IACnC,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,EAAE,SAAS,EAAE,EAAE,oBAAoB,2CA2BlE"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { motion, useScroll, useTransform } from "framer-motion";
|
|
4
|
+
import { ChevronDown } from "lucide-react";
|
|
5
|
+
import { cn } from "../../lib/utils";
|
|
6
|
+
/**
|
|
7
|
+
* An animated scroll indicator that hints users to scroll down.
|
|
8
|
+
* Features a continuous bobbing animation and fades out as the user scrolls.
|
|
9
|
+
*/
|
|
10
|
+
export function ScrollIndicator({ className }) {
|
|
11
|
+
const { scrollY } = useScroll();
|
|
12
|
+
const opacity = useTransform(scrollY, [0, 100], [1, 0]);
|
|
13
|
+
return (_jsx(motion.div, { className: cn("absolute bottom-8 left-1/2 -translate-x-1/2 pointer-events-none", className), style: { opacity }, children: _jsx(motion.div, { animate: { y: [0, 8, 0] }, transition: {
|
|
14
|
+
duration: 1.5,
|
|
15
|
+
repeat: Infinity,
|
|
16
|
+
ease: "easeInOut",
|
|
17
|
+
}, children: _jsx(ChevronDown, { className: "w-8 h-8 text-white/50", strokeWidth: 1.5 }) }) }));
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { SigilMonumentProps } from "./types.js";
|
|
2
|
+
/**
|
|
3
|
+
* SigilMonument renders a large cluster sigil/emblem with parallax effect.
|
|
4
|
+
*
|
|
5
|
+
* Features:
|
|
6
|
+
* - Large sigil image (35-45% viewport height)
|
|
7
|
+
* - 2-6px parallax drift on mouse movement
|
|
8
|
+
* - Subtle CSS shimmer animation (10s cycle)
|
|
9
|
+
* - Plaque below with cluster name, tagline, and optional Latin motto
|
|
10
|
+
*/
|
|
11
|
+
export declare function SigilMonument({ name, tagline, latinMotto, sigilSrc, accentColor, className, }: SigilMonumentProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default SigilMonument;
|
|
13
|
+
//# sourceMappingURL=SigilMonument.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SigilMonument.d.ts","sourceRoot":"","sources":["../../../src/components/ClusterHero/SigilMonument.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAErD;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAAC,EAC5B,IAAI,EACJ,OAAO,EACP,UAAU,EACV,QAAQ,EACR,WAAW,EACX,SAAS,GACV,EAAE,kBAAkB,2CA0KpB;AAED,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useEffect, useMemo, useRef, useId, useState } from "react";
|
|
4
|
+
import { motion, useMotionValue, useTransform, useSpring, } from "framer-motion";
|
|
5
|
+
import { cn } from "../../lib/utils";
|
|
6
|
+
/**
|
|
7
|
+
* SigilMonument renders a large cluster sigil/emblem with parallax effect.
|
|
8
|
+
*
|
|
9
|
+
* Features:
|
|
10
|
+
* - Large sigil image (35-45% viewport height)
|
|
11
|
+
* - 2-6px parallax drift on mouse movement
|
|
12
|
+
* - Subtle CSS shimmer animation (10s cycle)
|
|
13
|
+
* - Plaque below with cluster name, tagline, and optional Latin motto
|
|
14
|
+
*/
|
|
15
|
+
export function SigilMonument({ name, tagline, latinMotto, sigilSrc, accentColor, className, }) {
|
|
16
|
+
const containerRef = useRef(null);
|
|
17
|
+
const styleId = useId();
|
|
18
|
+
const [sigilFailed, setSigilFailed] = useState(false);
|
|
19
|
+
const initials = useMemo(() => {
|
|
20
|
+
const parts = name.trim().split(/\s+/).filter(Boolean);
|
|
21
|
+
const letters = parts.map((p) => p[0] ?? "").join("");
|
|
22
|
+
return letters.slice(0, 2).toUpperCase() || name.slice(0, 2).toUpperCase();
|
|
23
|
+
}, [name]);
|
|
24
|
+
useEffect(() => {
|
|
25
|
+
setSigilFailed(false);
|
|
26
|
+
}, [sigilSrc]);
|
|
27
|
+
// Mouse position tracking for parallax
|
|
28
|
+
const mouseX = useMotionValue(0);
|
|
29
|
+
const mouseY = useMotionValue(0);
|
|
30
|
+
// Spring-smoothed parallax offsets (2-6px range)
|
|
31
|
+
const springConfig = { damping: 25, stiffness: 150 };
|
|
32
|
+
const parallaxX = useSpring(useTransform(mouseX, [-1, 1], [-4, 4]), springConfig);
|
|
33
|
+
const parallaxY = useSpring(useTransform(mouseY, [-1, 1], [-4, 4]), springConfig);
|
|
34
|
+
const handleMouseMove = (e) => {
|
|
35
|
+
if (!containerRef.current)
|
|
36
|
+
return;
|
|
37
|
+
const rect = containerRef.current.getBoundingClientRect();
|
|
38
|
+
const centerX = rect.left + rect.width / 2;
|
|
39
|
+
const centerY = rect.top + rect.height / 2;
|
|
40
|
+
// Normalize to -1 to 1 range
|
|
41
|
+
const normalizedX = (e.clientX - centerX) / (rect.width / 2);
|
|
42
|
+
const normalizedY = (e.clientY - centerY) / (rect.height / 2);
|
|
43
|
+
mouseX.set(Math.max(-1, Math.min(1, normalizedX)));
|
|
44
|
+
mouseY.set(Math.max(-1, Math.min(1, normalizedY)));
|
|
45
|
+
};
|
|
46
|
+
const handleMouseLeave = () => {
|
|
47
|
+
mouseX.set(0);
|
|
48
|
+
mouseY.set(0);
|
|
49
|
+
};
|
|
50
|
+
// Unique class name for scoped keyframes
|
|
51
|
+
const shimmerClass = `sigil-shimmer-${styleId.replace(/:/g, "")}`;
|
|
52
|
+
return (_jsxs("div", { ref: containerRef, onMouseMove: handleMouseMove, onMouseLeave: handleMouseLeave, className: cn("relative flex flex-col items-center justify-center", className), style: { "--sigil-accent": accentColor }, children: [_jsx("style", { dangerouslySetInnerHTML: {
|
|
53
|
+
__html: `
|
|
54
|
+
@keyframes ${shimmerClass}-anim {
|
|
55
|
+
0% { background-position: 200% 0; }
|
|
56
|
+
100% { background-position: -200% 0; }
|
|
57
|
+
}
|
|
58
|
+
.${shimmerClass} {
|
|
59
|
+
animation: ${shimmerClass}-anim 10s ease-in-out infinite;
|
|
60
|
+
}
|
|
61
|
+
`,
|
|
62
|
+
} }), _jsxs(motion.div, { className: "relative", style: {
|
|
63
|
+
x: parallaxX,
|
|
64
|
+
y: parallaxY,
|
|
65
|
+
}, children: [_jsx("div", { className: "absolute inset-0 pointer-events-none overflow-hidden", "aria-hidden": "true", children: _jsx("div", { className: `absolute inset-0 ${shimmerClass}`, style: {
|
|
66
|
+
background: `linear-gradient(
|
|
67
|
+
105deg,
|
|
68
|
+
transparent 40%,
|
|
69
|
+
${accentColor}15 45%,
|
|
70
|
+
${accentColor}25 50%,
|
|
71
|
+
${accentColor}15 55%,
|
|
72
|
+
transparent 60%
|
|
73
|
+
)`,
|
|
74
|
+
backgroundSize: "200% 100%",
|
|
75
|
+
} }) }), !sigilFailed && sigilSrc ? (_jsx("img", { src: sigilSrc, alt: `${name} sigil`, className: "h-[35vh] min-h-[280px] max-h-[45vh] w-auto object-contain drop-shadow-2xl", style: {
|
|
76
|
+
filter: `drop-shadow(0 0 60px ${accentColor}40)`,
|
|
77
|
+
}, onError: () => setSigilFailed(true) })) : (_jsx("div", { className: "h-[35vh] min-h-[280px] max-h-[45vh] aspect-square rounded-full flex items-center justify-center", style: {
|
|
78
|
+
background: `radial-gradient(circle at 30% 30%, ${accentColor}35, transparent 65%), radial-gradient(circle at 70% 80%, ${accentColor}18, transparent 60%), rgba(255,255,255,0.02)`,
|
|
79
|
+
border: `1px solid ${accentColor}40`,
|
|
80
|
+
boxShadow: `0 0 60px ${accentColor}30, inset 0 0 40px rgba(255,255,255,0.08)`,
|
|
81
|
+
filter: `drop-shadow(0 0 60px ${accentColor}40)`,
|
|
82
|
+
}, "aria-hidden": "true", children: _jsx("div", { className: "font-serif text-6xl text-white/70 tracking-[0.18em]", style: { textShadow: `0 0 30px ${accentColor}30` }, children: initials }) }))] }), _jsxs("div", { className: "mt-10 text-center", children: [_jsx("h2", { className: "font-serif text-3xl md:text-4xl text-white/95 mb-3", style: {
|
|
83
|
+
fontVariant: "small-caps",
|
|
84
|
+
letterSpacing: "0.12em",
|
|
85
|
+
}, children: name }), _jsx("p", { className: "font-serif text-lg md:text-xl text-white/60 italic max-w-md leading-relaxed", children: tagline }), latinMotto && (_jsx("p", { className: "mt-4 font-mono text-[10px] uppercase tracking-[0.2em] text-white/30", "aria-label": "Latin motto", children: latinMotto }))] })] }));
|
|
86
|
+
}
|
|
87
|
+
export default SigilMonument;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { StructuralElementsProps } from "./types.js";
|
|
2
|
+
export type { StructuralElementsProps } from "./types.js";
|
|
3
|
+
/**
|
|
4
|
+
* Atmospheric structural elements for ClusterHero.
|
|
5
|
+
* Renders corner brackets, radial vignette, and subtle dot grid overlay.
|
|
6
|
+
*/
|
|
7
|
+
export declare function StructuralElements({ accentColor, className, }: StructuralElementsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=StructuralElements.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StructuralElements.d.ts","sourceRoot":"","sources":["../../../src/components/ClusterHero/StructuralElements.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AAC1D,YAAY,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AAE1D;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,EACjC,WAAW,EACX,SAAS,GACV,EAAE,uBAAuB,2CAqBzB"}
|