@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,159 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { Html, Line } from "@react-three/drei";
|
|
5
|
+
import { useFrame } from "@react-three/fiber";
|
|
6
|
+
import * as THREE from "three";
|
|
7
|
+
import { ATTACK_CHAIN_STATUS_COLORS, ATTACK_DETECTION_COLORS, ATTACK_TACTIC_LABELS, ATTACK_TACTIC_ORDER, } from "./types";
|
|
8
|
+
const TECHNIQUE_BASE_SIZE = 0.22;
|
|
9
|
+
function buildTechniqueIndex(chains) {
|
|
10
|
+
const techniqueMap = new Map();
|
|
11
|
+
const chainIndexMap = new Map();
|
|
12
|
+
chains.forEach((chain, chainIndex) => {
|
|
13
|
+
chain.techniques.forEach((technique) => {
|
|
14
|
+
if (!techniqueMap.has(technique.id)) {
|
|
15
|
+
techniqueMap.set(technique.id, technique);
|
|
16
|
+
}
|
|
17
|
+
if (!chainIndexMap.has(technique.id)) {
|
|
18
|
+
chainIndexMap.set(technique.id, chainIndex);
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
return {
|
|
23
|
+
techniques: Array.from(techniqueMap.values()),
|
|
24
|
+
chainIndexMap,
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
function layoutKillchain(techniques, chainIndexMap, chainCount, layout) {
|
|
28
|
+
const positions = new Map();
|
|
29
|
+
const tacticGroups = new Map();
|
|
30
|
+
techniques.forEach((technique) => {
|
|
31
|
+
const list = tacticGroups.get(technique.tactic) ?? [];
|
|
32
|
+
list.push(technique);
|
|
33
|
+
tacticGroups.set(technique.tactic, list);
|
|
34
|
+
});
|
|
35
|
+
const spacingX = layout === "matrix" ? 1.3 : 1.6;
|
|
36
|
+
const spacingY = layout === "matrix" ? 0.7 : 0.9;
|
|
37
|
+
const maxTactics = ATTACK_TACTIC_ORDER.length;
|
|
38
|
+
ATTACK_TACTIC_ORDER.forEach((tactic, tacticIndex) => {
|
|
39
|
+
const group = tacticGroups.get(tactic) ?? [];
|
|
40
|
+
group.sort((a, b) => a.id.localeCompare(b.id));
|
|
41
|
+
group.forEach((technique, index) => {
|
|
42
|
+
const x = (tacticIndex - (maxTactics - 1) / 2) * spacingX;
|
|
43
|
+
const y = ((group.length - 1) / 2 - index) * spacingY;
|
|
44
|
+
const chainIndex = chainIndexMap.get(technique.id) ?? 0;
|
|
45
|
+
const z = (chainIndex - (chainCount - 1) / 2) * 0.5;
|
|
46
|
+
positions.set(technique.id, new THREE.Vector3(x, y, z));
|
|
47
|
+
});
|
|
48
|
+
});
|
|
49
|
+
return positions;
|
|
50
|
+
}
|
|
51
|
+
function layoutTimeline(techniques, chainIndexMap, chainCount) {
|
|
52
|
+
const positions = new Map();
|
|
53
|
+
const withTimestamp = techniques.filter((technique) => technique.timestamp);
|
|
54
|
+
const timelineWidth = 12;
|
|
55
|
+
const timestamps = withTimestamp.map((technique) => technique.timestamp.getTime());
|
|
56
|
+
const minTime = timestamps.length ? Math.min(...timestamps) : 0;
|
|
57
|
+
const maxTime = timestamps.length ? Math.max(...timestamps) : 1;
|
|
58
|
+
const range = Math.max(1, maxTime - minTime);
|
|
59
|
+
techniques
|
|
60
|
+
.slice()
|
|
61
|
+
.sort((a, b) => {
|
|
62
|
+
if (a.timestamp && b.timestamp) {
|
|
63
|
+
return a.timestamp.getTime() - b.timestamp.getTime();
|
|
64
|
+
}
|
|
65
|
+
if (a.timestamp)
|
|
66
|
+
return -1;
|
|
67
|
+
if (b.timestamp)
|
|
68
|
+
return 1;
|
|
69
|
+
return a.id.localeCompare(b.id);
|
|
70
|
+
})
|
|
71
|
+
.forEach((technique, index) => {
|
|
72
|
+
const timeValue = technique.timestamp ? technique.timestamp.getTime() : minTime + index * 1000;
|
|
73
|
+
const x = ((timeValue - minTime) / range - 0.5) * timelineWidth;
|
|
74
|
+
const chainIndex = chainIndexMap.get(technique.id) ?? 0;
|
|
75
|
+
const y = (chainIndex - (chainCount - 1) / 2) * 1.2;
|
|
76
|
+
positions.set(technique.id, new THREE.Vector3(x, y, 0));
|
|
77
|
+
});
|
|
78
|
+
return positions;
|
|
79
|
+
}
|
|
80
|
+
function TechniqueNode({ technique, position, isSelected, showMitreIds, highlightDetected, animateProgression, isActive, onClick, }) {
|
|
81
|
+
const meshRef = React.useRef(null);
|
|
82
|
+
const [hovered, setHovered] = React.useState(false);
|
|
83
|
+
const baseColor = technique.detected
|
|
84
|
+
? ATTACK_DETECTION_COLORS.detected
|
|
85
|
+
: ATTACK_DETECTION_COLORS.undetected;
|
|
86
|
+
const baseSize = TECHNIQUE_BASE_SIZE + technique.confidence * 0.12;
|
|
87
|
+
const dimmed = highlightDetected && !technique.detected;
|
|
88
|
+
useFrame(({ clock }) => {
|
|
89
|
+
if (!meshRef.current)
|
|
90
|
+
return;
|
|
91
|
+
const t = clock.elapsedTime;
|
|
92
|
+
let pulse = 1;
|
|
93
|
+
if (animateProgression && isActive) {
|
|
94
|
+
pulse = 1 + Math.sin(t * 3) * 0.12;
|
|
95
|
+
}
|
|
96
|
+
else if (technique.detected) {
|
|
97
|
+
pulse = 1 + Math.sin(t * 1.5) * 0.04;
|
|
98
|
+
}
|
|
99
|
+
meshRef.current.scale.setScalar(baseSize * pulse);
|
|
100
|
+
});
|
|
101
|
+
return (_jsxs("group", { position: position, children: [_jsxs("mesh", { ref: meshRef, onClick: (event) => {
|
|
102
|
+
event.stopPropagation();
|
|
103
|
+
onClick?.(technique);
|
|
104
|
+
}, onPointerOver: (event) => {
|
|
105
|
+
event.stopPropagation();
|
|
106
|
+
setHovered(true);
|
|
107
|
+
document.body.style.cursor = "pointer";
|
|
108
|
+
}, onPointerOut: () => {
|
|
109
|
+
setHovered(false);
|
|
110
|
+
document.body.style.cursor = "auto";
|
|
111
|
+
}, scale: [baseSize, baseSize, baseSize], children: [_jsx("sphereGeometry", { args: [0.6, 24, 24] }), _jsx("meshStandardMaterial", { color: baseColor, emissive: baseColor, emissiveIntensity: technique.detected ? 0.8 : 0.35, roughness: 0.3, metalness: 0.5, transparent: true, opacity: dimmed ? 0.2 : 0.9 })] }), (isSelected || hovered || showMitreIds) && (_jsx(Html, { distanceFactor: 10, position: [0, 0.7, 0], children: _jsxs("div", { className: "rounded-md border border-white/10 bg-slate-950/85 px-2 py-1 text-[10px] uppercase text-white/80", children: [_jsx("div", { className: "font-semibold", children: showMitreIds ? technique.id : "Technique" }), _jsx("div", { className: "text-[9px] opacity-70", children: technique.name })] }) })), isSelected && (_jsxs("mesh", { rotation: [Math.PI / 2, 0, 0], children: [_jsx("ringGeometry", { args: [baseSize * 1.4, baseSize * 1.55, 32] }), _jsx("meshBasicMaterial", { color: baseColor, transparent: true, opacity: 0.6, side: THREE.DoubleSide })] }))] }));
|
|
112
|
+
}
|
|
113
|
+
function ChainPath({ chain, points, animate }) {
|
|
114
|
+
const lineRef = React.useRef(null);
|
|
115
|
+
const color = ATTACK_CHAIN_STATUS_COLORS[chain.status];
|
|
116
|
+
const dashed = chain.status === "active";
|
|
117
|
+
useFrame((_state, delta) => {
|
|
118
|
+
if (!lineRef.current || !dashed || !animate)
|
|
119
|
+
return;
|
|
120
|
+
if (lineRef.current.material) {
|
|
121
|
+
lineRef.current.material.dashOffset -= delta * 0.6;
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
return (_jsx(Line, { ref: lineRef, points: points, color: color, transparent: true, opacity: chain.status === "remediated" ? 0.3 : 0.6, lineWidth: chain.status === "active" ? 2.5 : 1.5, dashed: dashed, dashSize: 0.2, gapSize: 0.16 }));
|
|
125
|
+
}
|
|
126
|
+
export function AttackGraph({ chains, layout = "killchain", selectedTechnique, onTechniqueClick, showMitreIds = false, highlightDetected = false, animateProgression = true, position = [0, 0, 0], rotation = [0, 0, 0], }) {
|
|
127
|
+
const { techniques, chainIndexMap } = React.useMemo(() => buildTechniqueIndex(chains), [chains]);
|
|
128
|
+
const chainCount = chains.length || 1;
|
|
129
|
+
const labelSpacing = layout === "matrix" ? 1.3 : 1.6;
|
|
130
|
+
const positions = React.useMemo(() => {
|
|
131
|
+
if (layout === "timeline") {
|
|
132
|
+
return layoutTimeline(techniques, chainIndexMap, chainCount);
|
|
133
|
+
}
|
|
134
|
+
return layoutKillchain(techniques, chainIndexMap, chainCount, layout);
|
|
135
|
+
}, [techniques, chainIndexMap, chainCount, layout]);
|
|
136
|
+
const activeTechniqueIds = React.useMemo(() => {
|
|
137
|
+
const activeIds = new Set();
|
|
138
|
+
chains
|
|
139
|
+
.filter((chain) => chain.status === "active")
|
|
140
|
+
.forEach((chain) => {
|
|
141
|
+
chain.techniques.forEach((technique) => activeIds.add(technique.id));
|
|
142
|
+
});
|
|
143
|
+
return activeIds;
|
|
144
|
+
}, [chains]);
|
|
145
|
+
return (_jsxs("group", { position: position, rotation: rotation, children: [layout !== "timeline" &&
|
|
146
|
+
ATTACK_TACTIC_ORDER.map((tactic, index) => (_jsx(Html, { distanceFactor: 15, position: [(index - (ATTACK_TACTIC_ORDER.length - 1) / 2) * labelSpacing, 2.6, -1], children: _jsx("div", { className: "rounded bg-slate-900/70 px-2 py-1 text-[9px] font-semibold uppercase text-white/70", children: ATTACK_TACTIC_LABELS[tactic] }) }, tactic))), chains.map((chain) => {
|
|
147
|
+
const points = chain.techniques
|
|
148
|
+
.map((technique) => positions.get(technique.id))
|
|
149
|
+
.filter(Boolean);
|
|
150
|
+
if (points.length < 2)
|
|
151
|
+
return null;
|
|
152
|
+
return (_jsx(ChainPath, { chain: chain, points: points, animate: animateProgression }, chain.id));
|
|
153
|
+
}), techniques.map((technique) => {
|
|
154
|
+
const positionVector = positions.get(technique.id);
|
|
155
|
+
if (!positionVector)
|
|
156
|
+
return null;
|
|
157
|
+
return (_jsx(TechniqueNode, { technique: technique, position: positionVector, isSelected: selectedTechnique === technique.id, showMitreIds: showMitreIds, highlightDetected: highlightDetected, animateProgression: animateProgression, isActive: activeTechniqueIds.has(technique.id), onClick: onTechniqueClick }, technique.id));
|
|
158
|
+
})] }));
|
|
159
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AttackGraph - MITRE ATT&CK attack chain visualization
|
|
3
|
+
*
|
|
4
|
+
* @example
|
|
5
|
+
* ```tsx
|
|
6
|
+
* import { AttackGraph } from "@backbay/glia/primitives/three/AttackGraph";
|
|
7
|
+
*
|
|
8
|
+
* <AttackGraph chains={chains} layout="killchain" showMitreIds />
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
export { AttackGraph } from "./AttackGraph";
|
|
12
|
+
export type { AttackGraphProps, AttackChain, AttackTechnique, AttackTactic } from "./types";
|
|
13
|
+
export { ATTACK_TACTIC_ORDER, ATTACK_TACTIC_LABELS, ATTACK_CHAIN_STATUS_COLORS, ATTACK_DETECTION_COLORS, } from "./types";
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/primitives/three/AttackGraph/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,YAAY,EAAE,gBAAgB,EAAE,WAAW,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAC5F,OAAO,EACL,mBAAmB,EACnB,oBAAoB,EACpB,0BAA0B,EAC1B,uBAAuB,GACxB,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AttackGraph - MITRE ATT&CK attack chain visualization
|
|
3
|
+
*
|
|
4
|
+
* @example
|
|
5
|
+
* ```tsx
|
|
6
|
+
* import { AttackGraph } from "@backbay/glia/primitives/three/AttackGraph";
|
|
7
|
+
*
|
|
8
|
+
* <AttackGraph chains={chains} layout="killchain" showMitreIds />
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
export { AttackGraph } from "./AttackGraph";
|
|
12
|
+
export { ATTACK_TACTIC_ORDER, ATTACK_TACTIC_LABELS, ATTACK_CHAIN_STATUS_COLORS, ATTACK_DETECTION_COLORS, } from "./types";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AttackGraph Types
|
|
3
|
+
*
|
|
4
|
+
* Type definitions for MITRE ATT&CK attack graph visualization.
|
|
5
|
+
*/
|
|
6
|
+
export type AttackTactic = "reconnaissance" | "resource-development" | "initial-access" | "execution" | "persistence" | "privilege-escalation" | "defense-evasion" | "credential-access" | "discovery" | "lateral-movement" | "collection" | "command-and-control" | "exfiltration" | "impact";
|
|
7
|
+
export interface AttackTechnique {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
tactic: AttackTactic;
|
|
11
|
+
detected: boolean;
|
|
12
|
+
confidence: number;
|
|
13
|
+
timestamp?: Date;
|
|
14
|
+
evidence?: string[];
|
|
15
|
+
}
|
|
16
|
+
export interface AttackChain {
|
|
17
|
+
id: string;
|
|
18
|
+
name: string;
|
|
19
|
+
techniques: AttackTechnique[];
|
|
20
|
+
actor?: string;
|
|
21
|
+
campaign?: string;
|
|
22
|
+
status: "active" | "contained" | "remediated";
|
|
23
|
+
}
|
|
24
|
+
export interface AttackGraphProps {
|
|
25
|
+
chains: AttackChain[];
|
|
26
|
+
layout?: "killchain" | "matrix" | "timeline";
|
|
27
|
+
selectedTechnique?: string;
|
|
28
|
+
onTechniqueClick?: (technique: AttackTechnique) => void;
|
|
29
|
+
showMitreIds?: boolean;
|
|
30
|
+
highlightDetected?: boolean;
|
|
31
|
+
animateProgression?: boolean;
|
|
32
|
+
position?: [number, number, number];
|
|
33
|
+
rotation?: [number, number, number];
|
|
34
|
+
}
|
|
35
|
+
export declare const ATTACK_TACTIC_ORDER: AttackTactic[];
|
|
36
|
+
export declare const ATTACK_TACTIC_LABELS: Record<AttackTactic, string>;
|
|
37
|
+
export declare const ATTACK_CHAIN_STATUS_COLORS: Record<AttackChain["status"], string>;
|
|
38
|
+
export declare const ATTACK_DETECTION_COLORS: {
|
|
39
|
+
detected: string;
|
|
40
|
+
undetected: string;
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/primitives/three/AttackGraph/types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,MAAM,YAAY,GACpB,gBAAgB,GAChB,sBAAsB,GACtB,gBAAgB,GAChB,WAAW,GACX,aAAa,GACb,sBAAsB,GACtB,iBAAiB,GACjB,mBAAmB,GACnB,WAAW,GACX,kBAAkB,GAClB,YAAY,GACZ,qBAAqB,GACrB,cAAc,GACd,QAAQ,CAAC;AAEb,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAED,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,eAAe,EAAE,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,QAAQ,GAAG,WAAW,GAAG,YAAY,CAAC;CAC/C;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,WAAW,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,WAAW,GAAG,QAAQ,GAAG,UAAU,CAAC;IAC7C,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,gBAAgB,CAAC,EAAE,CAAC,SAAS,EAAE,eAAe,KAAK,IAAI,CAAC;IACxD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;IACpC,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;CACrC;AAED,eAAO,MAAM,mBAAmB,EAAE,YAAY,EAe7C,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAe7D,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,MAAM,CAI5E,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;CAGnC,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AttackGraph Types
|
|
3
|
+
*
|
|
4
|
+
* Type definitions for MITRE ATT&CK attack graph visualization.
|
|
5
|
+
*/
|
|
6
|
+
export const ATTACK_TACTIC_ORDER = [
|
|
7
|
+
"reconnaissance",
|
|
8
|
+
"resource-development",
|
|
9
|
+
"initial-access",
|
|
10
|
+
"execution",
|
|
11
|
+
"persistence",
|
|
12
|
+
"privilege-escalation",
|
|
13
|
+
"defense-evasion",
|
|
14
|
+
"credential-access",
|
|
15
|
+
"discovery",
|
|
16
|
+
"lateral-movement",
|
|
17
|
+
"collection",
|
|
18
|
+
"command-and-control",
|
|
19
|
+
"exfiltration",
|
|
20
|
+
"impact",
|
|
21
|
+
];
|
|
22
|
+
export const ATTACK_TACTIC_LABELS = {
|
|
23
|
+
reconnaissance: "Recon",
|
|
24
|
+
"resource-development": "Resource Dev",
|
|
25
|
+
"initial-access": "Initial Access",
|
|
26
|
+
execution: "Execution",
|
|
27
|
+
persistence: "Persistence",
|
|
28
|
+
"privilege-escalation": "Priv Esc",
|
|
29
|
+
"defense-evasion": "Defense Evasion",
|
|
30
|
+
"credential-access": "Credential Access",
|
|
31
|
+
discovery: "Discovery",
|
|
32
|
+
"lateral-movement": "Lateral Movement",
|
|
33
|
+
collection: "Collection",
|
|
34
|
+
"command-and-control": "C2",
|
|
35
|
+
exfiltration: "Exfiltration",
|
|
36
|
+
impact: "Impact",
|
|
37
|
+
};
|
|
38
|
+
export const ATTACK_CHAIN_STATUS_COLORS = {
|
|
39
|
+
active: "#ff4455",
|
|
40
|
+
contained: "#ffb84d",
|
|
41
|
+
remediated: "#22ff88",
|
|
42
|
+
};
|
|
43
|
+
export const ATTACK_DETECTION_COLORS = {
|
|
44
|
+
detected: "#22ff88",
|
|
45
|
+
undetected: "#ffb347",
|
|
46
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { AuditTrailProps } from "./types";
|
|
2
|
+
export declare function AuditTrail({ events, maxEvents, length, position, orientation, showDetails, onEventClick, onEventHover, autoScroll, theme, showSummary, enableParticles, rotation, }: AuditTrailProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare namespace AuditTrail {
|
|
4
|
+
var displayName: string;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=AuditTrail.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuditTrail.d.ts","sourceRoot":"","sources":["../../../../src/primitives/three/AuditTrail/AuditTrail.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAEV,eAAe,EAGhB,MAAM,SAAS,CAAC;AA8VjB,wBAAgB,UAAU,CAAC,EACzB,MAAM,EACN,SAAc,EACd,MAAW,EACX,QAAoB,EACpB,WAA0B,EAC1B,WAAmB,EACnB,YAAY,EACZ,YAAY,EACZ,UAAiB,EACjB,KAAe,EACf,WAAkB,EAClB,eAAsB,EACtB,QAAoB,GACrB,EAAE,eAAe,2CAmQjB;yBAjRe,UAAU"}
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
3
|
+
/**
|
|
4
|
+
* AuditTrail - 3D scrolling audit event timeline visualization
|
|
5
|
+
*
|
|
6
|
+
* Displays security audit events as a vertical or horizontal timeline
|
|
7
|
+
* with color-coded severity and interactive event cards.
|
|
8
|
+
*/
|
|
9
|
+
import * as React from "react";
|
|
10
|
+
import { useFrame } from "@react-three/fiber";
|
|
11
|
+
import { Html, Line } from "@react-three/drei";
|
|
12
|
+
import * as THREE from "three";
|
|
13
|
+
import { SEVERITY_COLORS, EVENT_GEOMETRIES, EVENT_TYPE_LABELS, THEME_COLORS, } from "./types";
|
|
14
|
+
// -----------------------------------------------------------------------------
|
|
15
|
+
// Flow Particles Sub-component
|
|
16
|
+
// -----------------------------------------------------------------------------
|
|
17
|
+
function FlowParticles({ length, orientation, particleCount = 30, speed = 0.5, color = "#00ccff", }) {
|
|
18
|
+
const particlesRef = React.useRef(null);
|
|
19
|
+
const particles = React.useMemo(() => {
|
|
20
|
+
const positions = new Float32Array(particleCount * 3);
|
|
21
|
+
const speeds = new Float32Array(particleCount);
|
|
22
|
+
for (let i = 0; i < particleCount; i++) {
|
|
23
|
+
const progress = Math.random();
|
|
24
|
+
if (orientation === "horizontal") {
|
|
25
|
+
positions[i * 3] = -length / 2 + progress * length;
|
|
26
|
+
positions[i * 3 + 1] = (Math.random() - 0.5) * 0.2;
|
|
27
|
+
positions[i * 3 + 2] = (Math.random() - 0.5) * 0.2;
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
positions[i * 3] = (Math.random() - 0.5) * 0.2;
|
|
31
|
+
positions[i * 3 + 1] = length / 2 - progress * length;
|
|
32
|
+
positions[i * 3 + 2] = (Math.random() - 0.5) * 0.2;
|
|
33
|
+
}
|
|
34
|
+
speeds[i] = 0.3 + Math.random() * 0.7;
|
|
35
|
+
}
|
|
36
|
+
return { positions, speeds };
|
|
37
|
+
}, [length, orientation, particleCount]);
|
|
38
|
+
useFrame((_, delta) => {
|
|
39
|
+
if (!particlesRef.current)
|
|
40
|
+
return;
|
|
41
|
+
const posAttr = particlesRef.current.geometry.attributes.position;
|
|
42
|
+
const positions = posAttr.array;
|
|
43
|
+
for (let i = 0; i < particleCount; i++) {
|
|
44
|
+
const idx = orientation === "horizontal" ? i * 3 : i * 3 + 1;
|
|
45
|
+
const direction = orientation === "horizontal" ? 1 : -1;
|
|
46
|
+
positions[idx] += delta * speed * particles.speeds[i] * direction;
|
|
47
|
+
// Wrap around
|
|
48
|
+
if (orientation === "horizontal") {
|
|
49
|
+
if (positions[idx] > length / 2)
|
|
50
|
+
positions[idx] = -length / 2;
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
if (positions[idx] < -length / 2)
|
|
54
|
+
positions[idx] = length / 2;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
posAttr.needsUpdate = true;
|
|
58
|
+
});
|
|
59
|
+
return (_jsxs("points", { ref: particlesRef, children: [_jsx("bufferGeometry", { children: _jsx("bufferAttribute", { attach: "attributes-position", args: [particles.positions, 3] }) }), _jsx("pointsMaterial", { color: color, size: 0.03, transparent: true, opacity: 0.6, sizeAttenuation: true, blending: THREE.AdditiveBlending, depthWrite: false })] }));
|
|
60
|
+
}
|
|
61
|
+
// -----------------------------------------------------------------------------
|
|
62
|
+
// Event Node Sub-component
|
|
63
|
+
// -----------------------------------------------------------------------------
|
|
64
|
+
function EventNode({ event, position, onEventClick, onEventHover, showDetails, theme = "cyber", }) {
|
|
65
|
+
const meshRef = React.useRef(null);
|
|
66
|
+
const [isHovered, setIsHovered] = React.useState(false);
|
|
67
|
+
const themeColors = THEME_COLORS[theme];
|
|
68
|
+
const severityColor = new THREE.Color(SEVERITY_COLORS[event.severity]);
|
|
69
|
+
const geometryType = EVENT_GEOMETRIES[event.type];
|
|
70
|
+
useFrame((state) => {
|
|
71
|
+
if (!meshRef.current)
|
|
72
|
+
return;
|
|
73
|
+
const t = state.clock.elapsedTime;
|
|
74
|
+
// Rotation animation
|
|
75
|
+
meshRef.current.rotation.y = t * 0.5;
|
|
76
|
+
meshRef.current.rotation.z = Math.sin(t * 0.3) * 0.1;
|
|
77
|
+
// Pulse for critical/error events
|
|
78
|
+
if (event.severity === "critical" || event.severity === "error") {
|
|
79
|
+
const pulse = 1 + Math.sin(t * 5) * 0.15;
|
|
80
|
+
meshRef.current.scale.setScalar(pulse * (isHovered ? 1.3 : 1));
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
meshRef.current.scale.setScalar(isHovered ? 1.3 : 1);
|
|
84
|
+
}
|
|
85
|
+
// Update emissive
|
|
86
|
+
const material = meshRef.current.material;
|
|
87
|
+
if (material) {
|
|
88
|
+
material.emissiveIntensity = isHovered ? 1.2 : 0.6;
|
|
89
|
+
}
|
|
90
|
+
});
|
|
91
|
+
const handlePointerEnter = React.useCallback((e) => {
|
|
92
|
+
e.stopPropagation();
|
|
93
|
+
setIsHovered(true);
|
|
94
|
+
onEventHover?.(event);
|
|
95
|
+
document.body.style.cursor = "pointer";
|
|
96
|
+
}, [event, onEventHover]);
|
|
97
|
+
const handlePointerLeave = React.useCallback(() => {
|
|
98
|
+
setIsHovered(false);
|
|
99
|
+
onEventHover?.(null);
|
|
100
|
+
document.body.style.cursor = "auto";
|
|
101
|
+
}, [onEventHover]);
|
|
102
|
+
const handleClick = React.useCallback((e) => {
|
|
103
|
+
e.stopPropagation();
|
|
104
|
+
onEventClick?.(event);
|
|
105
|
+
}, [event, onEventClick]);
|
|
106
|
+
const formatTime = (date) => {
|
|
107
|
+
return date.toLocaleTimeString("en-US", {
|
|
108
|
+
hour: "2-digit",
|
|
109
|
+
minute: "2-digit",
|
|
110
|
+
second: "2-digit",
|
|
111
|
+
hour12: false,
|
|
112
|
+
});
|
|
113
|
+
};
|
|
114
|
+
// Create geometry based on event type
|
|
115
|
+
const renderGeometry = () => {
|
|
116
|
+
const size = 0.08;
|
|
117
|
+
switch (geometryType) {
|
|
118
|
+
case "torus":
|
|
119
|
+
return _jsx("torusGeometry", { args: [size, size * 0.4, 8, 16] });
|
|
120
|
+
case "box":
|
|
121
|
+
return _jsx("boxGeometry", { args: [size * 1.5, size * 1.5, size * 1.5] });
|
|
122
|
+
case "octahedron":
|
|
123
|
+
return _jsx("octahedronGeometry", { args: [size * 1.2] });
|
|
124
|
+
case "icosahedron":
|
|
125
|
+
return _jsx("icosahedronGeometry", { args: [size * 1.1] });
|
|
126
|
+
case "cone":
|
|
127
|
+
return _jsx("coneGeometry", { args: [size, size * 2, 8] });
|
|
128
|
+
default:
|
|
129
|
+
return _jsx("sphereGeometry", { args: [size, 16, 16] });
|
|
130
|
+
}
|
|
131
|
+
};
|
|
132
|
+
return (_jsxs("group", { position: position, children: [_jsxs("mesh", { ref: meshRef, onPointerEnter: handlePointerEnter, onPointerLeave: handlePointerLeave, onClick: handleClick, children: [renderGeometry(), _jsx("meshStandardMaterial", { color: severityColor, emissive: severityColor, emissiveIntensity: 0.6, transparent: true, opacity: event.success ? 0.9 : 0.6, metalness: 0.3, roughness: 0.4 })] }), _jsxs("mesh", { scale: 2.5, children: [_jsx("sphereGeometry", { args: [0.08, 12, 12] }), _jsx("meshBasicMaterial", { color: severityColor, transparent: true, opacity: 0.12, blending: THREE.AdditiveBlending, depthWrite: false })] }), !event.success && (_jsxs("group", { scale: 0.15, children: [_jsx(Line, { points: [
|
|
133
|
+
[-1, -1, 0],
|
|
134
|
+
[1, 1, 0],
|
|
135
|
+
], color: "#ff0000", lineWidth: 3 }), _jsx(Line, { points: [
|
|
136
|
+
[-1, 1, 0],
|
|
137
|
+
[1, -1, 0],
|
|
138
|
+
], color: "#ff0000", lineWidth: 3 })] })), (showDetails || isHovered) && (_jsx(Html, { position: [0.25, 0.15, 0], center: false, children: _jsxs("div", { style: {
|
|
139
|
+
background: "rgba(0, 0, 0, 0.92)",
|
|
140
|
+
border: `1px solid ${isHovered ? severityColor.getStyle() : themeColors.primary}`,
|
|
141
|
+
borderRadius: "4px",
|
|
142
|
+
padding: isHovered ? "10px 14px" : "4px 8px",
|
|
143
|
+
fontFamily: "'JetBrains Mono', 'SF Mono', monospace",
|
|
144
|
+
fontSize: isHovered ? "11px" : "9px",
|
|
145
|
+
color: "#ffffff",
|
|
146
|
+
minWidth: isHovered ? "200px" : "auto",
|
|
147
|
+
boxShadow: `0 0 20px ${severityColor.getStyle()}30`,
|
|
148
|
+
transition: "all 0.15s ease",
|
|
149
|
+
}, children: [_jsxs("div", { style: { display: "flex", alignItems: "center", gap: "8px" }, children: [_jsx("span", { style: {
|
|
150
|
+
color: severityColor.getStyle(),
|
|
151
|
+
fontWeight: 700,
|
|
152
|
+
fontSize: "8px",
|
|
153
|
+
padding: "2px 5px",
|
|
154
|
+
background: `${severityColor.getStyle()}25`,
|
|
155
|
+
borderRadius: "3px",
|
|
156
|
+
}, children: EVENT_TYPE_LABELS[event.type] }), _jsx("span", { style: {
|
|
157
|
+
fontSize: "8px",
|
|
158
|
+
opacity: 0.45,
|
|
159
|
+
textTransform: "uppercase",
|
|
160
|
+
}, children: event.severity }), !event.success && (_jsx("span", { style: {
|
|
161
|
+
color: "#ff4444",
|
|
162
|
+
fontSize: "7px",
|
|
163
|
+
fontWeight: 700,
|
|
164
|
+
marginLeft: "auto",
|
|
165
|
+
opacity: 0.7,
|
|
166
|
+
}, children: "FAILED" }))] }), isHovered && (_jsxs(_Fragment, { children: [_jsxs("div", { style: {
|
|
167
|
+
marginTop: "8px",
|
|
168
|
+
paddingTop: "8px",
|
|
169
|
+
borderTop: "1px solid #333",
|
|
170
|
+
}, children: [_jsxs("div", { style: { marginBottom: "6px" }, children: [_jsx("span", { style: { color: "#666", fontSize: "9px" }, children: "Actor" }), _jsx("div", { style: { color: themeColors.primary }, children: event.actor })] }), _jsxs("div", { style: { marginBottom: "6px" }, children: [_jsx("span", { style: { color: "#666", fontSize: "9px" }, children: "Resource" }), _jsx("div", { style: {
|
|
171
|
+
wordBreak: "break-all",
|
|
172
|
+
opacity: 0.9,
|
|
173
|
+
fontSize: "10px",
|
|
174
|
+
}, children: event.resource })] }), _jsxs("div", { style: { marginBottom: "6px" }, children: [_jsx("span", { style: { color: "#666", fontSize: "9px" }, children: "Action" }), _jsx("div", { style: { opacity: 0.9, fontSize: "10px" }, children: event.action })] }), event.details && (_jsxs("div", { children: [_jsx("span", { style: { color: "#666", fontSize: "9px" }, children: "Details" }), _jsx("div", { style: { opacity: 0.7, fontSize: "10px" }, children: event.details })] }))] }), _jsx("div", { style: {
|
|
175
|
+
marginTop: "8px",
|
|
176
|
+
paddingTop: "6px",
|
|
177
|
+
borderTop: "1px solid #222",
|
|
178
|
+
fontSize: "9px",
|
|
179
|
+
opacity: 0.5,
|
|
180
|
+
}, children: formatTime(event.timestamp) })] }))] }) }))] }));
|
|
181
|
+
}
|
|
182
|
+
// -----------------------------------------------------------------------------
|
|
183
|
+
// Main AuditTrail Component
|
|
184
|
+
// -----------------------------------------------------------------------------
|
|
185
|
+
export function AuditTrail({ events, maxEvents = 20, length = 10, position = [0, 0, 0], orientation = "horizontal", showDetails = false, onEventClick, onEventHover, autoScroll = true, theme = "cyber", showSummary = true, enableParticles = true, rotation = [0, 0, 0], }) {
|
|
186
|
+
const groupRef = React.useRef(null);
|
|
187
|
+
// Limit displayed events
|
|
188
|
+
const displayedEvents = React.useMemo(() => {
|
|
189
|
+
return events.slice(-maxEvents);
|
|
190
|
+
}, [events, maxEvents]);
|
|
191
|
+
// Theme colors
|
|
192
|
+
const themeColors = THEME_COLORS[theme];
|
|
193
|
+
// Calculate positions for events along the timeline
|
|
194
|
+
const eventPositions = React.useMemo(() => {
|
|
195
|
+
if (displayedEvents.length === 0)
|
|
196
|
+
return [];
|
|
197
|
+
const spacing = length / Math.max(1, displayedEvents.length);
|
|
198
|
+
return displayedEvents.map((_, i) => {
|
|
199
|
+
if (orientation === "horizontal") {
|
|
200
|
+
const x = -length / 2 + spacing / 2 + i * spacing;
|
|
201
|
+
return [x, 0, 0];
|
|
202
|
+
}
|
|
203
|
+
else {
|
|
204
|
+
const y = length / 2 - spacing / 2 - i * spacing;
|
|
205
|
+
return [0, y, 0];
|
|
206
|
+
}
|
|
207
|
+
});
|
|
208
|
+
}, [displayedEvents.length, length, orientation]);
|
|
209
|
+
// Timeline spine points
|
|
210
|
+
const spinePoints = React.useMemo(() => {
|
|
211
|
+
const padding = 0.5;
|
|
212
|
+
if (orientation === "horizontal") {
|
|
213
|
+
return [
|
|
214
|
+
[-length / 2 - padding, 0, 0],
|
|
215
|
+
[length / 2 + padding, 0, 0],
|
|
216
|
+
];
|
|
217
|
+
}
|
|
218
|
+
else {
|
|
219
|
+
return [
|
|
220
|
+
[0, length / 2 + padding, 0],
|
|
221
|
+
[0, -length / 2 - padding, 0],
|
|
222
|
+
];
|
|
223
|
+
}
|
|
224
|
+
}, [length, orientation]);
|
|
225
|
+
// Count severities
|
|
226
|
+
const severityCounts = React.useMemo(() => {
|
|
227
|
+
return displayedEvents.reduce((acc, e) => {
|
|
228
|
+
acc[e.severity]++;
|
|
229
|
+
if (!e.success)
|
|
230
|
+
acc.failed++;
|
|
231
|
+
return acc;
|
|
232
|
+
}, { info: 0, warning: 0, error: 0, critical: 0, failed: 0 });
|
|
233
|
+
}, [displayedEvents]);
|
|
234
|
+
return (_jsxs("group", { ref: groupRef, position: position, rotation: rotation, children: [_jsx(Line, { points: spinePoints, color: themeColors.spine, lineWidth: 3, transparent: true, opacity: 0.8 }), _jsx(Line, { points: spinePoints, color: themeColors.primary, lineWidth: 8, transparent: true, opacity: 0.15 }), enableParticles && (_jsx(FlowParticles, { length: length, orientation: orientation, color: themeColors.particle, particleCount: 40, speed: 0.8 })), displayedEvents.map((event, index) => (_jsx(EventNode, { event: event, position: eventPositions[index], onEventClick: onEventClick, onEventHover: onEventHover, showDetails: showDetails, theme: theme }, event.id))), displayedEvents.map((event, index) => {
|
|
235
|
+
const pos = eventPositions[index];
|
|
236
|
+
const lineEnd = orientation === "horizontal"
|
|
237
|
+
? [pos[0], -0.15, 0]
|
|
238
|
+
: [-0.15, pos[1], 0];
|
|
239
|
+
return (_jsx(Line, { points: [pos, lineEnd], color: SEVERITY_COLORS[event.severity], lineWidth: 1, transparent: true, opacity: 0.3 }, `line-${event.id}`));
|
|
240
|
+
}), _jsx("group", { position: orientation === "horizontal"
|
|
241
|
+
? [length / 2 + 0.7, 0, 0]
|
|
242
|
+
: [0, -length / 2 - 0.7, 0], children: _jsxs("mesh", { rotation: orientation === "horizontal"
|
|
243
|
+
? [0, 0, -Math.PI / 2]
|
|
244
|
+
: [0, 0, Math.PI], children: [_jsx("coneGeometry", { args: [0.08, 0.2, 6] }), _jsx("meshBasicMaterial", { color: themeColors.primary, transparent: true, opacity: 0.6 })] }) }), showSummary && (_jsx(Html, { position: orientation === "horizontal"
|
|
245
|
+
? [-length / 2 - 1.5, 0.5, 0]
|
|
246
|
+
: [0.8, length / 2 + 0.3, 0], center: true, children: _jsxs("div", { style: {
|
|
247
|
+
background: "rgba(0, 8, 12, 0.95)",
|
|
248
|
+
border: `1px solid ${themeColors.primary}50`,
|
|
249
|
+
borderRadius: "5px",
|
|
250
|
+
padding: "10px 14px",
|
|
251
|
+
fontFamily: "'JetBrains Mono', 'SF Mono', monospace",
|
|
252
|
+
fontSize: "10px",
|
|
253
|
+
color: themeColors.primary,
|
|
254
|
+
boxShadow: `0 0 20px ${themeColors.glow}, inset 0 0 15px ${themeColors.glow}`,
|
|
255
|
+
minWidth: "110px",
|
|
256
|
+
}, children: [_jsx("div", { style: {
|
|
257
|
+
fontWeight: 700,
|
|
258
|
+
fontSize: "11px",
|
|
259
|
+
marginBottom: "8px",
|
|
260
|
+
letterSpacing: "1.5px",
|
|
261
|
+
borderBottom: `1px solid ${themeColors.primary}40`,
|
|
262
|
+
paddingBottom: "6px",
|
|
263
|
+
textAlign: "center",
|
|
264
|
+
}, children: "AUDIT LOG" }), _jsxs("div", { style: {
|
|
265
|
+
display: "flex",
|
|
266
|
+
justifyContent: "space-between",
|
|
267
|
+
marginBottom: "2px",
|
|
268
|
+
}, children: [_jsx("span", { style: { opacity: 0.6 }, children: "Events:" }), _jsx("span", { style: { fontWeight: 600 }, children: displayedEvents.length })] }), _jsxs("div", { style: {
|
|
269
|
+
display: "flex",
|
|
270
|
+
justifyContent: "space-between",
|
|
271
|
+
marginBottom: "2px",
|
|
272
|
+
color: SEVERITY_COLORS.warning,
|
|
273
|
+
}, children: [_jsx("span", { style: { opacity: 0.7 }, children: "Warn:" }), _jsx("span", { style: { fontWeight: 600 }, children: severityCounts.warning })] }), _jsxs("div", { style: {
|
|
274
|
+
display: "flex",
|
|
275
|
+
justifyContent: "space-between",
|
|
276
|
+
marginBottom: "2px",
|
|
277
|
+
color: SEVERITY_COLORS.error,
|
|
278
|
+
}, children: [_jsx("span", { style: { opacity: 0.7 }, children: "Error:" }), _jsx("span", { style: { fontWeight: 600 }, children: severityCounts.error })] }), _jsxs("div", { style: {
|
|
279
|
+
display: "flex",
|
|
280
|
+
justifyContent: "space-between",
|
|
281
|
+
marginBottom: "2px",
|
|
282
|
+
color: SEVERITY_COLORS.critical,
|
|
283
|
+
}, children: [_jsx("span", { style: { opacity: 0.7 }, children: "Critical:" }), _jsx("span", { style: { fontWeight: 600 }, children: severityCounts.critical })] }), severityCounts.failed > 0 && (_jsxs("div", { style: {
|
|
284
|
+
display: "flex",
|
|
285
|
+
justifyContent: "space-between",
|
|
286
|
+
marginTop: "4px",
|
|
287
|
+
paddingTop: "4px",
|
|
288
|
+
borderTop: "1px solid #333",
|
|
289
|
+
color: "#ff4444",
|
|
290
|
+
}, children: [_jsx("span", { style: { opacity: 0.7 }, children: "Failed:" }), _jsx("span", { style: { fontWeight: 600 }, children: severityCounts.failed })] }))] }) })), _jsxs("mesh", { position: [0, 0, -0.1], children: [_jsx("planeGeometry", { args: orientation === "horizontal"
|
|
291
|
+
? [length + 2, 1.5]
|
|
292
|
+
: [1.5, length + 2] }), _jsx("meshBasicMaterial", { color: themeColors.primary, transparent: true, opacity: 0.02, side: THREE.DoubleSide, blending: THREE.AdditiveBlending, depthWrite: false })] })] }));
|
|
293
|
+
}
|
|
294
|
+
AuditTrail.displayName = "AuditTrail";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AuditTrail - 3D audit event timeline visualization
|
|
3
|
+
*
|
|
4
|
+
* @example
|
|
5
|
+
* ```tsx
|
|
6
|
+
* import { AuditTrail } from "@backbay/glia/primitives/three/AuditTrail";
|
|
7
|
+
*
|
|
8
|
+
* <AuditTrail
|
|
9
|
+
* events={auditEvents}
|
|
10
|
+
* maxEvents={20}
|
|
11
|
+
* length={10}
|
|
12
|
+
* orientation="horizontal"
|
|
13
|
+
* theme="cyber"
|
|
14
|
+
* onEventClick={(event) => console.log('Clicked:', event)}
|
|
15
|
+
* />
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export { AuditTrail } from "./AuditTrail";
|
|
19
|
+
export type { AuditEvent, AuditEventType, AuditSeverity, AuditTrailProps, EventNodeProps, FlowParticlesProps, } from "./types";
|
|
20
|
+
export { SEVERITY_COLORS, EVENT_GEOMETRIES, EVENT_TYPE_LABELS, THEME_COLORS, } from "./types";
|
|
21
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/primitives/three/AuditTrail/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,YAAY,EACV,UAAU,EACV,cAAc,EACd,aAAa,EACb,eAAe,EACf,cAAc,EACd,kBAAkB,GACnB,MAAM,SAAS,CAAC;AACjB,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,GACb,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AuditTrail - 3D audit event timeline visualization
|
|
3
|
+
*
|
|
4
|
+
* @example
|
|
5
|
+
* ```tsx
|
|
6
|
+
* import { AuditTrail } from "@backbay/glia/primitives/three/AuditTrail";
|
|
7
|
+
*
|
|
8
|
+
* <AuditTrail
|
|
9
|
+
* events={auditEvents}
|
|
10
|
+
* maxEvents={20}
|
|
11
|
+
* length={10}
|
|
12
|
+
* orientation="horizontal"
|
|
13
|
+
* theme="cyber"
|
|
14
|
+
* onEventClick={(event) => console.log('Clicked:', event)}
|
|
15
|
+
* />
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export { AuditTrail } from "./AuditTrail";
|
|
19
|
+
export { SEVERITY_COLORS, EVENT_GEOMETRIES, EVENT_TYPE_LABELS, THEME_COLORS, } from "./types";
|