aura-glass 1.0.0
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 +1511 -0
- package/dist/docs/example.d.ts +3 -0
- package/dist/docs/example.d.ts.map +1 -0
- package/dist/index.js +82580 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +82137 -0
- package/dist/index.mjs.map +1 -0
- package/dist/playwright.config.d.ts +6 -0
- package/dist/playwright.config.d.ts.map +1 -0
- package/dist/src/animations/accessibleAnimation.d.ts +3 -0
- package/dist/src/animations/accessibleAnimation.d.ts.map +1 -0
- package/dist/src/animations/hooks/index.d.ts +8 -0
- package/dist/src/animations/hooks/index.d.ts.map +1 -0
- package/dist/src/animations/hooks/useAnimationSequenceBasic.d.ts +56 -0
- package/dist/src/animations/hooks/useAnimationSequenceBasic.d.ts.map +1 -0
- package/dist/src/animations/hooks/useMouseMagneticEffect.d.ts +75 -0
- package/dist/src/animations/hooks/useMouseMagneticEffect.d.ts.map +1 -0
- package/dist/src/animations/hooks/useMultiSpringBasic.d.ts +75 -0
- package/dist/src/animations/hooks/useMultiSpringBasic.d.ts.map +1 -0
- package/dist/src/animations/keyframes/basic.d.ts +37 -0
- package/dist/src/animations/keyframes/basic.d.ts.map +1 -0
- package/dist/src/animations/orchestration/index.d.ts +3 -0
- package/dist/src/animations/orchestration/index.d.ts.map +1 -0
- package/dist/src/animations/orchestration/useAnimationSequenceOrchestrator.d.ts +120 -0
- package/dist/src/animations/orchestration/useAnimationSequenceOrchestrator.d.ts.map +1 -0
- package/dist/src/animations/physics/chartAnimations.d.ts +121 -0
- package/dist/src/animations/physics/chartAnimations.d.ts.map +1 -0
- package/dist/src/animations/physics/galileoPhysicsSystem.d.ts +126 -0
- package/dist/src/animations/physics/galileoPhysicsSystem.d.ts.map +1 -0
- package/dist/src/animations/physics/index.d.ts +8 -0
- package/dist/src/animations/physics/index.d.ts.map +1 -0
- package/dist/src/animations/physics/interpolation.d.ts +101 -0
- package/dist/src/animations/physics/interpolation.d.ts.map +1 -0
- package/dist/src/animations/physics/springPhysics.d.ts +38 -0
- package/dist/src/animations/physics/springPhysics.d.ts.map +1 -0
- package/dist/src/animations/physics/useMultiSpringPhysics.d.ts +70 -0
- package/dist/src/animations/physics/useMultiSpringPhysics.d.ts.map +1 -0
- package/dist/src/animations/types/animation.d.ts +413 -0
- package/dist/src/animations/types/animation.d.ts.map +1 -0
- package/dist/src/animations/types.d.ts +19 -0
- package/dist/src/animations/types.d.ts.map +1 -0
- package/dist/src/components/GlassErrorBoundary.d.ts +24 -0
- package/dist/src/components/GlassErrorBoundary.d.ts.map +1 -0
- package/dist/src/components/accessibility/AccessibilityProvider.d.ts +27 -0
- package/dist/src/components/accessibility/AccessibilityProvider.d.ts.map +1 -0
- package/dist/src/components/accessibility/GlassA11y.d.ts +10 -0
- package/dist/src/components/accessibility/GlassA11y.d.ts.map +1 -0
- package/dist/src/components/accessibility/GlassFocusIndicators.d.ts +7 -0
- package/dist/src/components/accessibility/GlassFocusIndicators.d.ts.map +1 -0
- package/dist/src/components/accessibility/index.d.ts +4 -0
- package/dist/src/components/accessibility/index.d.ts.map +1 -0
- package/dist/src/components/advanced/BrandColorIntegration.d.ts +35 -0
- package/dist/src/components/advanced/BrandColorIntegration.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassAchievementSystem.d.ts +139 -0
- package/dist/src/components/advanced/GlassAchievementSystem.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassAutoComposer.d.ts +121 -0
- package/dist/src/components/advanced/GlassAutoComposer.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassBiometricAdaptation.d.ts +119 -0
- package/dist/src/components/advanced/GlassBiometricAdaptation.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassContextAware.d.ts +88 -0
- package/dist/src/components/advanced/GlassContextAware.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassContextualEngine.d.ts +198 -0
- package/dist/src/components/advanced/GlassContextualEngine.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassEngine.d.ts +91 -0
- package/dist/src/components/advanced/GlassEngine.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassEyeTracking.d.ts +103 -0
- package/dist/src/components/advanced/GlassEyeTracking.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassFoldableSupport.d.ts +102 -0
- package/dist/src/components/advanced/GlassFoldableSupport.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassLiquidTransition.d.ts +60 -0
- package/dist/src/components/advanced/GlassLiquidTransition.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassLiveCursorPresence.d.ts +85 -0
- package/dist/src/components/advanced/GlassLiveCursorPresence.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassMagneticCursor.d.ts +43 -0
- package/dist/src/components/advanced/GlassMagneticCursor.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassMeshGradient.d.ts +59 -0
- package/dist/src/components/advanced/GlassMeshGradient.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassMetaEngine.d.ts +146 -0
- package/dist/src/components/advanced/GlassMetaEngine.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassNeuroSync.d.ts +150 -0
- package/dist/src/components/advanced/GlassNeuroSync.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassOrientationEffects.d.ts +78 -0
- package/dist/src/components/advanced/GlassOrientationEffects.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassParallaxLayers.d.ts +59 -0
- package/dist/src/components/advanced/GlassParallaxLayers.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassParticles.d.ts +91 -0
- package/dist/src/components/advanced/GlassParticles.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassPerformanceOptimization.d.ts +69 -0
- package/dist/src/components/advanced/GlassPerformanceOptimization.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassPredictiveEngine.d.ts +154 -0
- package/dist/src/components/advanced/GlassPredictiveEngine.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassProgressiveEnhancement.d.ts +96 -0
- package/dist/src/components/advanced/GlassProgressiveEnhancement.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassQuantumStates.d.ts +170 -0
- package/dist/src/components/advanced/GlassQuantumStates.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassReactions.d.ts +68 -0
- package/dist/src/components/advanced/GlassReactions.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassSelfHealingSystem.d.ts +132 -0
- package/dist/src/components/advanced/GlassSelfHealingSystem.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassSpatialAudio.d.ts +124 -0
- package/dist/src/components/advanced/GlassSpatialAudio.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassTrophyCase.d.ts +38 -0
- package/dist/src/components/advanced/GlassTrophyCase.d.ts.map +1 -0
- package/dist/src/components/advanced/GlassWebGLShader.d.ts +15 -0
- package/dist/src/components/advanced/GlassWebGLShader.d.ts.map +1 -0
- package/dist/src/components/advanced/IntelligentColorSystem.d.ts +49 -0
- package/dist/src/components/advanced/IntelligentColorSystem.d.ts.map +1 -0
- package/dist/src/components/advanced/LiquidGlassGPU.d.ts +71 -0
- package/dist/src/components/advanced/LiquidGlassGPU.d.ts.map +1 -0
- package/dist/src/components/ai/AIGlassThemeProvider.d.ts +106 -0
- package/dist/src/components/ai/AIGlassThemeProvider.d.ts.map +1 -0
- package/dist/src/components/ai/GlassDeepDreamGlass.d.ts +40 -0
- package/dist/src/components/ai/GlassDeepDreamGlass.d.ts.map +1 -0
- package/dist/src/components/ai/GlassGANGenerator.d.ts +52 -0
- package/dist/src/components/ai/GlassGANGenerator.d.ts.map +1 -0
- package/dist/src/components/ai/GlassGenerativeArt.d.ts +34 -0
- package/dist/src/components/ai/GlassGenerativeArt.d.ts.map +1 -0
- package/dist/src/components/ai/GlassIntelligentFormBuilder.d.ts +52 -0
- package/dist/src/components/ai/GlassIntelligentFormBuilder.d.ts.map +1 -0
- package/dist/src/components/ai/GlassLiveFilter.d.ts +39 -0
- package/dist/src/components/ai/GlassLiveFilter.d.ts.map +1 -0
- package/dist/src/components/ai/GlassMusicVisualizer.d.ts +36 -0
- package/dist/src/components/ai/GlassMusicVisualizer.d.ts.map +1 -0
- package/dist/src/components/ai/GlassStyleTransfer.d.ts +29 -0
- package/dist/src/components/ai/GlassStyleTransfer.d.ts.map +1 -0
- package/dist/src/components/ai/ProductionAIIntegration.d.ts +9 -0
- package/dist/src/components/ai/ProductionAIIntegration.d.ts.map +1 -0
- package/dist/src/components/ai/examples/AIDemo.d.ts +10 -0
- package/dist/src/components/ai/examples/AIDemo.d.ts.map +1 -0
- package/dist/src/components/ai/index.d.ts +3 -0
- package/dist/src/components/ai/index.d.ts.map +1 -0
- package/dist/src/components/animations/AdvancedAnimations.d.ts +46 -0
- package/dist/src/components/animations/AdvancedAnimations.d.ts.map +1 -0
- package/dist/src/components/animations/GlassMotionController.d.ts +129 -0
- package/dist/src/components/animations/GlassMotionController.d.ts.map +1 -0
- package/dist/src/components/animations/GlassTransitions.d.ts +339 -0
- package/dist/src/components/animations/GlassTransitions.d.ts.map +1 -0
- package/dist/src/components/animations/OrganicAnimationEngine.d.ts +51 -0
- package/dist/src/components/animations/OrganicAnimationEngine.d.ts.map +1 -0
- package/dist/src/components/ar/ARGlassEffects.d.ts +25 -0
- package/dist/src/components/ar/ARGlassEffects.d.ts.map +1 -0
- package/dist/src/components/ar/index.d.ts +2 -0
- package/dist/src/components/ar/index.d.ts.map +1 -0
- package/dist/src/components/atmospheric/GlassAuroraDisplay.d.ts +94 -0
- package/dist/src/components/atmospheric/GlassAuroraDisplay.d.ts.map +1 -0
- package/dist/src/components/atmospheric/GlassBiomeSimulator.d.ts +88 -0
- package/dist/src/components/atmospheric/GlassBiomeSimulator.d.ts.map +1 -0
- package/dist/src/components/atmospheric/GlassNebulaClouds.d.ts +101 -0
- package/dist/src/components/atmospheric/GlassNebulaClouds.d.ts.map +1 -0
- package/dist/src/components/atmospheric/GlassWeatherGlass.d.ts +78 -0
- package/dist/src/components/atmospheric/GlassWeatherGlass.d.ts.map +1 -0
- package/dist/src/components/backgrounds/AtmosphericBackground.d.ts +15 -0
- package/dist/src/components/backgrounds/AtmosphericBackground.d.ts.map +1 -0
- package/dist/src/components/backgrounds/GlassDynamicAtmosphere.d.ts +99 -0
- package/dist/src/components/backgrounds/GlassDynamicAtmosphere.d.ts.map +1 -0
- package/dist/src/components/backgrounds/ParticleBackground.d.ts +10 -0
- package/dist/src/components/backgrounds/ParticleBackground.d.ts.map +1 -0
- package/dist/src/components/backgrounds/types.d.ts +66 -0
- package/dist/src/components/backgrounds/types.d.ts.map +1 -0
- package/dist/src/components/button/EnhancedGlassButton.d.ts +73 -0
- package/dist/src/components/button/EnhancedGlassButton.d.ts.map +1 -0
- package/dist/src/components/button/GlassButton.d.ts +287 -0
- package/dist/src/components/button/GlassButton.d.ts.map +1 -0
- package/dist/src/components/button/GlassFab.d.ts +104 -0
- package/dist/src/components/button/GlassFab.d.ts.map +1 -0
- package/dist/src/components/button/GlassMagneticButton.d.ts +45 -0
- package/dist/src/components/button/GlassMagneticButton.d.ts.map +1 -0
- package/dist/src/components/button/index.d.ts +5 -0
- package/dist/src/components/button/index.d.ts.map +1 -0
- package/dist/src/components/button/types.d.ts +226 -0
- package/dist/src/components/button/types.d.ts.map +1 -0
- package/dist/src/components/calendar/GlassCalendar.d.ts +81 -0
- package/dist/src/components/calendar/GlassCalendar.d.ts.map +1 -0
- package/dist/src/components/calendar/types.d.ts +23 -0
- package/dist/src/components/calendar/types.d.ts.map +1 -0
- package/dist/src/components/card/GlassCard.d.ts +151 -0
- package/dist/src/components/card/GlassCard.d.ts.map +1 -0
- package/dist/src/components/card/div.d.ts +13 -0
- package/dist/src/components/card/div.d.ts.map +1 -0
- package/dist/src/components/card/glass-card-link.d.ts +8 -0
- package/dist/src/components/card/glass-card-link.d.ts.map +1 -0
- package/dist/src/components/card/index.d.ts +7 -0
- package/dist/src/components/card/index.d.ts.map +1 -0
- package/dist/src/components/card/patterns.d.ts +112 -0
- package/dist/src/components/card/patterns.d.ts.map +1 -0
- package/dist/src/components/card/types.d.ts +302 -0
- package/dist/src/components/card/types.d.ts.map +1 -0
- package/dist/src/components/charts/GlassAreaChart.d.ts +95 -0
- package/dist/src/components/charts/GlassAreaChart.d.ts.map +1 -0
- package/dist/src/components/charts/GlassBarChart.d.ts +98 -0
- package/dist/src/components/charts/GlassBarChart.d.ts.map +1 -0
- package/dist/src/components/charts/GlassChart.d.ts +225 -0
- package/dist/src/components/charts/GlassChart.d.ts.map +1 -0
- package/dist/src/components/charts/GlassDataChart.d.ts +156 -0
- package/dist/src/components/charts/GlassDataChart.d.ts.map +1 -0
- package/dist/src/components/charts/GlassLineChart.d.ts +93 -0
- package/dist/src/components/charts/GlassLineChart.d.ts.map +1 -0
- package/dist/src/components/charts/GlassPieChart.d.ts +82 -0
- package/dist/src/components/charts/GlassPieChart.d.ts.map +1 -0
- package/dist/src/components/charts/ModularGlassDataChart.d.ts +140 -0
- package/dist/src/components/charts/ModularGlassDataChart.d.ts.map +1 -0
- package/dist/src/components/charts/components/AtmosphericEffects.d.ts +15 -0
- package/dist/src/components/charts/components/AtmosphericEffects.d.ts.map +1 -0
- package/dist/src/components/charts/components/ChartAxis.d.ts +12 -0
- package/dist/src/components/charts/components/ChartAxis.d.ts.map +1 -0
- package/dist/src/components/charts/components/ChartContainer.d.ts +15 -0
- package/dist/src/components/charts/components/ChartContainer.d.ts.map +1 -0
- package/dist/src/components/charts/components/ChartFilters.d.ts +15 -0
- package/dist/src/components/charts/components/ChartFilters.d.ts.map +1 -0
- package/dist/src/components/charts/components/ChartGrid.d.ts +12 -0
- package/dist/src/components/charts/components/ChartGrid.d.ts.map +1 -0
- package/dist/src/components/charts/components/ChartLegend.d.ts +13 -0
- package/dist/src/components/charts/components/ChartLegend.d.ts.map +1 -0
- package/dist/src/components/charts/components/ChartRenderer.d.ts +27 -0
- package/dist/src/components/charts/components/ChartRenderer.d.ts.map +1 -0
- package/dist/src/components/charts/components/ChartTooltip.d.ts +26 -0
- package/dist/src/components/charts/components/ChartTooltip.d.ts.map +1 -0
- package/dist/src/components/charts/components/KpiChart.d.ts +23 -0
- package/dist/src/components/charts/components/KpiChart.d.ts.map +1 -0
- package/dist/src/components/charts/components/index.d.ts +15 -0
- package/dist/src/components/charts/components/index.d.ts.map +1 -0
- package/dist/src/components/charts/hooks/index.d.ts +5 -0
- package/dist/src/components/charts/hooks/index.d.ts.map +1 -0
- package/dist/src/components/charts/hooks/usePhysicsAnimation.d.ts +52 -0
- package/dist/src/components/charts/hooks/usePhysicsAnimation.d.ts.map +1 -0
- package/dist/src/components/charts/hooks/useQualityTier.d.ts +34 -0
- package/dist/src/components/charts/hooks/useQualityTier.d.ts.map +1 -0
- package/dist/src/components/charts/plugins/GalileoElementInteractionPlugin.d.ts +64 -0
- package/dist/src/components/charts/plugins/GalileoElementInteractionPlugin.d.ts.map +1 -0
- package/dist/src/components/charts/styles/ChartContainerStyles.d.ts +23 -0
- package/dist/src/components/charts/styles/ChartContainerStyles.d.ts.map +1 -0
- package/dist/src/components/charts/styles/ChartElementStyles.d.ts +52 -0
- package/dist/src/components/charts/styles/ChartElementStyles.d.ts.map +1 -0
- package/dist/src/components/charts/styles/TooltipStyles.d.ts +52 -0
- package/dist/src/components/charts/styles/TooltipStyles.d.ts.map +1 -0
- package/dist/src/components/charts/types/ChartProps.d.ts +366 -0
- package/dist/src/components/charts/types/ChartProps.d.ts.map +1 -0
- package/dist/src/components/charts/types/ChartTypes.d.ts +186 -0
- package/dist/src/components/charts/types/ChartTypes.d.ts.map +1 -0
- package/dist/src/components/charts/types/index.d.ts +5 -0
- package/dist/src/components/charts/types/index.d.ts.map +1 -0
- package/dist/src/components/charts/utils/ChartAnimationUtils.d.ts +86 -0
- package/dist/src/components/charts/utils/ChartAnimationUtils.d.ts.map +1 -0
- package/dist/src/components/charts/utils/ChartDataUtils.d.ts +94 -0
- package/dist/src/components/charts/utils/ChartDataUtils.d.ts.map +1 -0
- package/dist/src/components/charts/utils/index.d.ts +7 -0
- package/dist/src/components/charts/utils/index.d.ts.map +1 -0
- package/dist/src/components/chat/GlassTypingIndicator.d.ts +55 -0
- package/dist/src/components/chat/GlassTypingIndicator.d.ts.map +1 -0
- package/dist/src/components/cms/GlassCanvas.d.ts +7 -0
- package/dist/src/components/cms/GlassCanvas.d.ts.map +1 -0
- package/dist/src/components/cms/GlassComponentPalette.d.ts +9 -0
- package/dist/src/components/cms/GlassComponentPalette.d.ts.map +1 -0
- package/dist/src/components/cms/GlassDragDropProvider.d.ts +90 -0
- package/dist/src/components/cms/GlassDragDropProvider.d.ts.map +1 -0
- package/dist/src/components/cms/GlassPageBuilder.d.ts +11 -0
- package/dist/src/components/cms/GlassPageBuilder.d.ts.map +1 -0
- package/dist/src/components/cms/GlassPageStructure.d.ts +9 -0
- package/dist/src/components/cms/GlassPageStructure.d.ts.map +1 -0
- package/dist/src/components/cms/GlassPropertyPanel.d.ts +9 -0
- package/dist/src/components/cms/GlassPropertyPanel.d.ts.map +1 -0
- package/dist/src/components/cms/index.d.ts +3 -0
- package/dist/src/components/cms/index.d.ts.map +1 -0
- package/dist/src/components/collaboration/CollaborativeGlassWorkspace.d.ts +34 -0
- package/dist/src/components/collaboration/CollaborativeGlassWorkspace.d.ts.map +1 -0
- package/dist/src/components/collaboration/GlassCollaborationDashboard.d.ts +11 -0
- package/dist/src/components/collaboration/GlassCollaborationDashboard.d.ts.map +1 -0
- package/dist/src/components/collaboration/GlassCollaborationProvider.d.ts +89 -0
- package/dist/src/components/collaboration/GlassCollaborationProvider.d.ts.map +1 -0
- package/dist/src/components/collaboration/GlassCollaborativeComments.d.ts +8 -0
- package/dist/src/components/collaboration/GlassCollaborativeComments.d.ts.map +1 -0
- package/dist/src/components/collaboration/GlassCollaborativeCursor.d.ts +7 -0
- package/dist/src/components/collaboration/GlassCollaborativeCursor.d.ts.map +1 -0
- package/dist/src/components/collaboration/index.d.ts +2 -0
- package/dist/src/components/collaboration/index.d.ts.map +1 -0
- package/dist/src/components/cookie-consent/CompactCookieNotice.d.ts +22 -0
- package/dist/src/components/cookie-consent/CompactCookieNotice.d.ts.map +1 -0
- package/dist/src/components/cookie-consent/CookieConsent.d.ts +8 -0
- package/dist/src/components/cookie-consent/CookieConsent.d.ts.map +1 -0
- package/dist/src/components/cookie-consent/GlobalCookieConsent.d.ts +8 -0
- package/dist/src/components/cookie-consent/GlobalCookieConsent.d.ts.map +1 -0
- package/dist/src/components/cookie-consent/types.d.ts +54 -0
- package/dist/src/components/cookie-consent/types.d.ts.map +1 -0
- package/dist/src/components/dashboard/GlassActivityFeed.d.ts +100 -0
- package/dist/src/components/dashboard/GlassActivityFeed.d.ts.map +1 -0
- package/dist/src/components/dashboard/GlassChartWidget.d.ts +119 -0
- package/dist/src/components/dashboard/GlassChartWidget.d.ts.map +1 -0
- package/dist/src/components/dashboard/GlassKPICard.d.ts +91 -0
- package/dist/src/components/dashboard/GlassKPICard.d.ts.map +1 -0
- package/dist/src/components/dashboard/GlassMetricCard.d.ts +92 -0
- package/dist/src/components/dashboard/GlassMetricCard.d.ts.map +1 -0
- package/dist/src/components/dashboard/GlassStatCard.d.ts +97 -0
- package/dist/src/components/dashboard/GlassStatCard.d.ts.map +1 -0
- package/dist/src/components/dashboard/types.d.ts +307 -0
- package/dist/src/components/dashboard/types.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassAccordion.d.ts +92 -0
- package/dist/src/components/data-display/GlassAccordion.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassAlert.d.ts +57 -0
- package/dist/src/components/data-display/GlassAlert.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassAnimatedNumber.d.ts +60 -0
- package/dist/src/components/data-display/GlassAnimatedNumber.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassAvatar.d.ts +79 -0
- package/dist/src/components/data-display/GlassAvatar.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassBadge.d.ts +118 -0
- package/dist/src/components/data-display/GlassBadge.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassBadgeLine.d.ts +13 -0
- package/dist/src/components/data-display/GlassBadgeLine.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassChip.d.ts +67 -0
- package/dist/src/components/data-display/GlassChip.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassDataGrid.d.ts +4 -0
- package/dist/src/components/data-display/GlassDataGrid.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassDataGridPro.d.ts +9 -0
- package/dist/src/components/data-display/GlassDataGridPro.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassDataTable.d.ts +206 -0
- package/dist/src/components/data-display/GlassDataTable.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassDiffViewer.d.ts +9 -0
- package/dist/src/components/data-display/GlassDiffViewer.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassDivider.d.ts +35 -0
- package/dist/src/components/data-display/GlassDivider.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassGanttChart.d.ts +86 -0
- package/dist/src/components/data-display/GlassGanttChart.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassHeatmap.d.ts +87 -0
- package/dist/src/components/data-display/GlassHeatmap.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassJSONViewer.d.ts +7 -0
- package/dist/src/components/data-display/GlassJSONViewer.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassKanbanBoard.d.ts +91 -0
- package/dist/src/components/data-display/GlassKanbanBoard.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassLoadingSkeleton.d.ts +31 -0
- package/dist/src/components/data-display/GlassLoadingSkeleton.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassMetricChip.d.ts +12 -0
- package/dist/src/components/data-display/GlassMetricChip.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassMetricsGrid.d.ts +96 -0
- package/dist/src/components/data-display/GlassMetricsGrid.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassNotificationCenter.d.ts +64 -0
- package/dist/src/components/data-display/GlassNotificationCenter.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassProgress.d.ts +142 -0
- package/dist/src/components/data-display/GlassProgress.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassSchemaViewer.d.ts +7 -0
- package/dist/src/components/data-display/GlassSchemaViewer.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassSkeleton.d.ts +42 -0
- package/dist/src/components/data-display/GlassSkeleton.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassSkeletonLoader.d.ts +27 -0
- package/dist/src/components/data-display/GlassSkeletonLoader.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassSparkline.d.ts +11 -0
- package/dist/src/components/data-display/GlassSparkline.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassStatusDot.d.ts +8 -0
- package/dist/src/components/data-display/GlassStatusDot.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassTimeline.d.ts +102 -0
- package/dist/src/components/data-display/GlassTimeline.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassToast.d.ts +102 -0
- package/dist/src/components/data-display/GlassToast.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassTreeView.d.ts +60 -0
- package/dist/src/components/data-display/GlassTreeView.d.ts.map +1 -0
- package/dist/src/components/data-display/GlassVirtualTable.d.ts +8 -0
- package/dist/src/components/data-display/GlassVirtualTable.d.ts.map +1 -0
- package/dist/src/components/data-display/Typography.d.ts +7 -0
- package/dist/src/components/data-display/Typography.d.ts.map +1 -0
- package/dist/src/components/data-display/index.d.ts +25 -0
- package/dist/src/components/data-display/index.d.ts.map +1 -0
- package/dist/src/components/data-display/types.d.ts +36 -0
- package/dist/src/components/data-display/types.d.ts.map +1 -0
- package/dist/src/components/demo/EnhancementShowcase.d.ts +15 -0
- package/dist/src/components/demo/EnhancementShowcase.d.ts.map +1 -0
- package/dist/src/components/ecommerce/GlassEcommerceProvider.d.ts +242 -0
- package/dist/src/components/ecommerce/GlassEcommerceProvider.d.ts.map +1 -0
- package/dist/src/components/ecommerce/GlassProductRecommendations.d.ts +17 -0
- package/dist/src/components/ecommerce/GlassProductRecommendations.d.ts.map +1 -0
- package/dist/src/components/ecommerce/GlassSmartShoppingCart.d.ts +14 -0
- package/dist/src/components/ecommerce/GlassSmartShoppingCart.d.ts.map +1 -0
- package/dist/src/components/ecommerce/index.d.ts +4 -0
- package/dist/src/components/ecommerce/index.d.ts.map +1 -0
- package/dist/src/components/editor/GlassRichTextEditor.d.ts +53 -0
- package/dist/src/components/editor/GlassRichTextEditor.d.ts.map +1 -0
- package/dist/src/components/effects/AuroraPro.d.ts +72 -0
- package/dist/src/components/effects/AuroraPro.d.ts.map +1 -0
- package/dist/src/components/effects/Glass3DEngine.d.ts +37 -0
- package/dist/src/components/effects/Glass3DEngine.d.ts.map +1 -0
- package/dist/src/components/effects/GlassMorphingEngine.d.ts +45 -0
- package/dist/src/components/effects/GlassMorphingEngine.d.ts.map +1 -0
- package/dist/src/components/effects/GlassPhysicsEngine.d.ts +35 -0
- package/dist/src/components/effects/GlassPhysicsEngine.d.ts.map +1 -0
- package/dist/src/components/effects/GlassShatterEffects.d.ts +48 -0
- package/dist/src/components/effects/GlassShatterEffects.d.ts.map +1 -0
- package/dist/src/components/effects/SeasonalParticles.d.ts +65 -0
- package/dist/src/components/effects/SeasonalParticles.d.ts.map +1 -0
- package/dist/src/components/effects/index.d.ts +4 -0
- package/dist/src/components/effects/index.d.ts.map +1 -0
- package/dist/src/components/experiential/GlassMoodRing.d.ts +45 -0
- package/dist/src/components/experiential/GlassMoodRing.d.ts.map +1 -0
- package/dist/src/components/feedback/GlassToast.d.ts +35 -0
- package/dist/src/components/feedback/GlassToast.d.ts.map +1 -0
- package/dist/src/components/houdini/HoudiniGlassCard.d.ts +17 -0
- package/dist/src/components/houdini/HoudiniGlassCard.d.ts.map +1 -0
- package/dist/src/components/houdini/HoudiniGlassProvider.d.ts +88 -0
- package/dist/src/components/houdini/HoudiniGlassProvider.d.ts.map +1 -0
- package/dist/src/components/houdini/index.d.ts +3 -0
- package/dist/src/components/houdini/index.d.ts.map +1 -0
- package/dist/src/components/icons/ClearIcon.d.ts +10 -0
- package/dist/src/components/icons/ClearIcon.d.ts.map +1 -0
- package/dist/src/components/icons/types.d.ts +16 -0
- package/dist/src/components/icons/types.d.ts.map +1 -0
- package/dist/src/components/image/GlassImageProcessingProvider.d.ts +188 -0
- package/dist/src/components/image/GlassImageProcessingProvider.d.ts.map +1 -0
- package/dist/src/components/image/GlassIntelligentImageUploader.d.ts +16 -0
- package/dist/src/components/image/GlassIntelligentImageUploader.d.ts.map +1 -0
- package/dist/src/components/image/index.d.ts +3 -0
- package/dist/src/components/image/index.d.ts.map +1 -0
- package/dist/src/components/image-list/ImageList.d.ts +32 -0
- package/dist/src/components/image-list/ImageList.d.ts.map +1 -0
- package/dist/src/components/image-list/ImageListItem.d.ts +24 -0
- package/dist/src/components/image-list/ImageListItem.d.ts.map +1 -0
- package/dist/src/components/image-list/ImageListItemBar.d.ts +22 -0
- package/dist/src/components/image-list/ImageListItemBar.d.ts.map +1 -0
- package/dist/src/components/image-list/types.d.ts +55 -0
- package/dist/src/components/image-list/types.d.ts.map +1 -0
- package/dist/src/components/immersive/Glass360Viewer.d.ts +84 -0
- package/dist/src/components/immersive/Glass360Viewer.d.ts.map +1 -0
- package/dist/src/components/immersive/GlassARPreview.d.ts +139 -0
- package/dist/src/components/immersive/GlassARPreview.d.ts.map +1 -0
- package/dist/src/components/immersive/GlassFluidSimulation.d.ts +74 -0
- package/dist/src/components/immersive/GlassFluidSimulation.d.ts.map +1 -0
- package/dist/src/components/immersive/GlassHologram.d.ts +98 -0
- package/dist/src/components/immersive/GlassHologram.d.ts.map +1 -0
- package/dist/src/components/immersive/GlassParticleField.d.ts +118 -0
- package/dist/src/components/immersive/GlassParticleField.d.ts.map +1 -0
- package/dist/src/components/immersive/GlassVortexPortal.d.ts +89 -0
- package/dist/src/components/immersive/GlassVortexPortal.d.ts.map +1 -0
- package/dist/src/components/input/GlassCheckbox.d.ts +42 -0
- package/dist/src/components/input/GlassCheckbox.d.ts.map +1 -0
- package/dist/src/components/input/GlassCheckboxGroup.d.ts +66 -0
- package/dist/src/components/input/GlassCheckboxGroup.d.ts.map +1 -0
- package/dist/src/components/input/GlassColorPicker.d.ts +78 -0
- package/dist/src/components/input/GlassColorPicker.d.ts.map +1 -0
- package/dist/src/components/input/GlassDatePicker.d.ts +110 -0
- package/dist/src/components/input/GlassDatePicker.d.ts.map +1 -0
- package/dist/src/components/input/GlassDateRangePicker.d.ts +77 -0
- package/dist/src/components/input/GlassDateRangePicker.d.ts.map +1 -0
- package/dist/src/components/input/GlassFileUpload.d.ts +61 -0
- package/dist/src/components/input/GlassFileUpload.d.ts.map +1 -0
- package/dist/src/components/input/GlassForm.d.ts +57 -0
- package/dist/src/components/input/GlassForm.d.ts.map +1 -0
- package/dist/src/components/input/GlassFormStepper.d.ts +71 -0
- package/dist/src/components/input/GlassFormStepper.d.ts.map +1 -0
- package/dist/src/components/input/GlassFormTable.d.ts +12 -0
- package/dist/src/components/input/GlassFormTable.d.ts.map +1 -0
- package/dist/src/components/input/GlassInput.d.ts +98 -0
- package/dist/src/components/input/GlassInput.d.ts.map +1 -0
- package/dist/src/components/input/GlassLabel.d.ts +20 -0
- package/dist/src/components/input/GlassLabel.d.ts.map +1 -0
- package/dist/src/components/input/GlassMultiSelect.d.ts +14 -0
- package/dist/src/components/input/GlassMultiSelect.d.ts.map +1 -0
- package/dist/src/components/input/GlassMultiStepForm.d.ts +117 -0
- package/dist/src/components/input/GlassMultiStepForm.d.ts.map +1 -0
- package/dist/src/components/input/GlassRadioGroup.d.ts +141 -0
- package/dist/src/components/input/GlassRadioGroup.d.ts.map +1 -0
- package/dist/src/components/input/GlassSelect.d.ts +108 -0
- package/dist/src/components/input/GlassSelect.d.ts.map +1 -0
- package/dist/src/components/input/GlassSelectCompound.d.ts +32 -0
- package/dist/src/components/input/GlassSelectCompound.d.ts.map +1 -0
- package/dist/src/components/input/GlassSlider.d.ts +60 -0
- package/dist/src/components/input/GlassSlider.d.ts.map +1 -0
- package/dist/src/components/input/GlassStep.d.ts +4 -0
- package/dist/src/components/input/GlassStep.d.ts.map +1 -0
- package/dist/src/components/input/GlassStepIcon.d.ts +20 -0
- package/dist/src/components/input/GlassStepIcon.d.ts.map +1 -0
- package/dist/src/components/input/GlassStepLabel.d.ts +20 -0
- package/dist/src/components/input/GlassStepLabel.d.ts.map +1 -0
- package/dist/src/components/input/GlassStepper.d.ts +62 -0
- package/dist/src/components/input/GlassStepper.d.ts.map +1 -0
- package/dist/src/components/input/GlassSwitch.d.ts +49 -0
- package/dist/src/components/input/GlassSwitch.d.ts.map +1 -0
- package/dist/src/components/input/GlassTextarea.d.ts +34 -0
- package/dist/src/components/input/GlassTextarea.d.ts.map +1 -0
- package/dist/src/components/input/GlassToggle.d.ts +133 -0
- package/dist/src/components/input/GlassToggle.d.ts.map +1 -0
- package/dist/src/components/input/GlassTransferList.d.ts +90 -0
- package/dist/src/components/input/GlassTransferList.d.ts.map +1 -0
- package/dist/src/components/input/GlassTreeSelect.d.ts +89 -0
- package/dist/src/components/input/GlassTreeSelect.d.ts.map +1 -0
- package/dist/src/components/input/GlassWizard.d.ts +125 -0
- package/dist/src/components/input/GlassWizard.d.ts.map +1 -0
- package/dist/src/components/input/types.d.ts +99 -0
- package/dist/src/components/input/types.d.ts.map +1 -0
- package/dist/src/components/interactive/ContextAwareGlass.d.ts +123 -0
- package/dist/src/components/interactive/ContextAwareGlass.d.ts.map +1 -0
- package/dist/src/components/interactive/CursorGlow.d.ts +29 -0
- package/dist/src/components/interactive/CursorGlow.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassA11yAuditor.d.ts +50 -0
- package/dist/src/components/interactive/GlassA11yAuditor.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassAdvancedSearch.d.ts +103 -0
- package/dist/src/components/interactive/GlassAdvancedSearch.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassAvatarGroup.d.ts +19 -0
- package/dist/src/components/interactive/GlassAvatarGroup.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassCardLink.d.ts +39 -0
- package/dist/src/components/interactive/GlassCardLink.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassCarousel.d.ts +117 -0
- package/dist/src/components/interactive/GlassCarousel.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassChat.d.ts +118 -0
- package/dist/src/components/interactive/GlassChat.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassChatInput.d.ts +93 -0
- package/dist/src/components/interactive/GlassChatInput.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassCoachmarks.d.ts +15 -0
- package/dist/src/components/interactive/GlassCoachmarks.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassCodeEditor.d.ts +51 -0
- package/dist/src/components/interactive/GlassCodeEditor.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassColorSchemeGenerator.d.ts +32 -0
- package/dist/src/components/interactive/GlassColorSchemeGenerator.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassColorWheel.d.ts +44 -0
- package/dist/src/components/interactive/GlassColorWheel.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassCommand.d.ts +126 -0
- package/dist/src/components/interactive/GlassCommand.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassCommandPalette.d.ts +158 -0
- package/dist/src/components/interactive/GlassCommandPalette.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassCommentThread.d.ts +14 -0
- package/dist/src/components/interactive/GlassCommentThread.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassComponentPlayground.d.ts +46 -0
- package/dist/src/components/interactive/GlassComponentPlayground.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassDraggable.d.ts +151 -0
- package/dist/src/components/interactive/GlassDraggable.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassDrawingCanvas.d.ts +60 -0
- package/dist/src/components/interactive/GlassDrawingCanvas.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassFacetSearch.d.ts +55 -0
- package/dist/src/components/interactive/GlassFacetSearch.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassFileExplorer.d.ts +53 -0
- package/dist/src/components/interactive/GlassFileExplorer.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassFileTree.d.ts +47 -0
- package/dist/src/components/interactive/GlassFileTree.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassFileUpload.d.ts +103 -0
- package/dist/src/components/interactive/GlassFileUpload.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassFilterPanel.d.ts +47 -0
- package/dist/src/components/interactive/GlassFilterPanel.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassFocusRing.d.ts +8 -0
- package/dist/src/components/interactive/GlassFocusRing.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassFormBuilder.d.ts +139 -0
- package/dist/src/components/interactive/GlassFormBuilder.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassGallery.d.ts +73 -0
- package/dist/src/components/interactive/GlassGallery.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassGestureZone.d.ts +85 -0
- package/dist/src/components/interactive/GlassGestureZone.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassGradientPicker.d.ts +61 -0
- package/dist/src/components/interactive/GlassGradientPicker.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassImageViewer.d.ts +110 -0
- package/dist/src/components/interactive/GlassImageViewer.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassInfiniteScroll.d.ts +58 -0
- package/dist/src/components/interactive/GlassInfiniteScroll.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassInlineEdit.d.ts +9 -0
- package/dist/src/components/interactive/GlassInlineEdit.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassKanban.d.ts +64 -0
- package/dist/src/components/interactive/GlassKanban.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassKeyValueEditor.d.ts +12 -0
- package/dist/src/components/interactive/GlassKeyValueEditor.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassLazyImage.d.ts +98 -0
- package/dist/src/components/interactive/GlassLazyImage.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassMentionList.d.ts +13 -0
- package/dist/src/components/interactive/GlassMentionList.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassMessageList.d.ts +70 -0
- package/dist/src/components/interactive/GlassMessageList.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassMindMap.d.ts +59 -0
- package/dist/src/components/interactive/GlassMindMap.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassPatternBuilder.d.ts +82 -0
- package/dist/src/components/interactive/GlassPatternBuilder.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassPresets.d.ts +68 -0
- package/dist/src/components/interactive/GlassPresets.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassQueryBuilder.d.ts +27 -0
- package/dist/src/components/interactive/GlassQueryBuilder.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassReactionBar.d.ts +13 -0
- package/dist/src/components/interactive/GlassReactionBar.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassSearchInterface.d.ts +122 -0
- package/dist/src/components/interactive/GlassSearchInterface.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassSignaturePad.d.ts +54 -0
- package/dist/src/components/interactive/GlassSignaturePad.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassSpotlight.d.ts +7 -0
- package/dist/src/components/interactive/GlassSpotlight.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassStepper.d.ts +14 -0
- package/dist/src/components/interactive/GlassStepper.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassTagInput.d.ts +10 -0
- package/dist/src/components/interactive/GlassTagInput.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassThemeDemo.d.ts +16 -0
- package/dist/src/components/interactive/GlassThemeDemo.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassThemeSwitcher.d.ts +57 -0
- package/dist/src/components/interactive/GlassThemeSwitcher.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassUserPresence.d.ts +81 -0
- package/dist/src/components/interactive/GlassUserPresence.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassVideoPlayer.d.ts +86 -0
- package/dist/src/components/interactive/GlassVideoPlayer.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassVirtualList.d.ts +79 -0
- package/dist/src/components/interactive/GlassVirtualList.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassVoiceInput.d.ts +121 -0
- package/dist/src/components/interactive/GlassVoiceInput.d.ts.map +1 -0
- package/dist/src/components/interactive/GlassWhiteboard.d.ts +60 -0
- package/dist/src/components/interactive/GlassWhiteboard.d.ts.map +1 -0
- package/dist/src/components/interactive/PageTransitionDemo.d.ts +4 -0
- package/dist/src/components/interactive/PageTransitionDemo.d.ts.map +1 -0
- package/dist/src/components/interactive/ThemedGlassComponents.d.ts +33 -0
- package/dist/src/components/interactive/ThemedGlassComponents.d.ts.map +1 -0
- package/dist/src/components/interactive/types.d.ts +399 -0
- package/dist/src/components/interactive/types.d.ts.map +1 -0
- package/dist/src/components/layout/Box.d.ts +25 -0
- package/dist/src/components/layout/Box.d.ts.map +1 -0
- package/dist/src/components/layout/GlassAppShell.d.ts +157 -0
- package/dist/src/components/layout/GlassAppShell.d.ts.map +1 -0
- package/dist/src/components/layout/GlassBox.d.ts +124 -0
- package/dist/src/components/layout/GlassBox.d.ts.map +1 -0
- package/dist/src/components/layout/GlassContainer.d.ts +171 -0
- package/dist/src/components/layout/GlassContainer.d.ts.map +1 -0
- package/dist/src/components/layout/GlassFlex.d.ts +114 -0
- package/dist/src/components/layout/GlassFlex.d.ts.map +1 -0
- package/dist/src/components/layout/GlassGrid.d.ts +128 -0
- package/dist/src/components/layout/GlassGrid.d.ts.map +1 -0
- package/dist/src/components/layout/GlassMasonry.d.ts +34 -0
- package/dist/src/components/layout/GlassMasonry.d.ts.map +1 -0
- package/dist/src/components/layout/GlassScrollArea.d.ts +98 -0
- package/dist/src/components/layout/GlassScrollArea.d.ts.map +1 -0
- package/dist/src/components/layout/GlassSeparator.d.ts +28 -0
- package/dist/src/components/layout/GlassSeparator.d.ts.map +1 -0
- package/dist/src/components/layout/GlassSplitPane.d.ts +46 -0
- package/dist/src/components/layout/GlassSplitPane.d.ts.map +1 -0
- package/dist/src/components/layout/GlassStack.d.ts +114 -0
- package/dist/src/components/layout/GlassStack.d.ts.map +1 -0
- package/dist/src/components/layout/HStack.d.ts +31 -0
- package/dist/src/components/layout/HStack.d.ts.map +1 -0
- package/dist/src/components/layout/OptimizedGlassContainer.d.ts +38 -0
- package/dist/src/components/layout/OptimizedGlassContainer.d.ts.map +1 -0
- package/dist/src/components/layout/VStack.d.ts +31 -0
- package/dist/src/components/layout/VStack.d.ts.map +1 -0
- package/dist/src/components/layout/index.d.ts +11 -0
- package/dist/src/components/layout/index.d.ts.map +1 -0
- package/dist/src/components/layout/types.d.ts +351 -0
- package/dist/src/components/layout/types.d.ts.map +1 -0
- package/dist/src/components/layouts/GlassFractalLayout.d.ts +41 -0
- package/dist/src/components/layouts/GlassFractalLayout.d.ts.map +1 -0
- package/dist/src/components/layouts/GlassGoldenRatioGrid.d.ts +53 -0
- package/dist/src/components/layouts/GlassGoldenRatioGrid.d.ts.map +1 -0
- package/dist/src/components/layouts/GlassIslandLayout.d.ts +58 -0
- package/dist/src/components/layouts/GlassIslandLayout.d.ts.map +1 -0
- package/dist/src/components/layouts/GlassMasonryGrid.d.ts +45 -0
- package/dist/src/components/layouts/GlassMasonryGrid.d.ts.map +1 -0
- package/dist/src/components/layouts/GlassOrbitalMenu.d.ts +37 -0
- package/dist/src/components/layouts/GlassOrbitalMenu.d.ts.map +1 -0
- package/dist/src/components/layouts/GlassTessellation.d.ts +44 -0
- package/dist/src/components/layouts/GlassTessellation.d.ts.map +1 -0
- package/dist/src/components/media/GlassAdvancedAudioPlayer.d.ts +21 -0
- package/dist/src/components/media/GlassAdvancedAudioPlayer.d.ts.map +1 -0
- package/dist/src/components/media/GlassAdvancedVideoPlayer.d.ts +20 -0
- package/dist/src/components/media/GlassAdvancedVideoPlayer.d.ts.map +1 -0
- package/dist/src/components/media/GlassMediaProvider.d.ts +145 -0
- package/dist/src/components/media/GlassMediaProvider.d.ts.map +1 -0
- package/dist/src/components/media/index.d.ts +4 -0
- package/dist/src/components/media/index.d.ts.map +1 -0
- package/dist/src/components/mobile/GlassActionSheet.d.ts +75 -0
- package/dist/src/components/mobile/GlassActionSheet.d.ts.map +1 -0
- package/dist/src/components/mobile/GlassPullToRefresh.d.ts +62 -0
- package/dist/src/components/mobile/GlassPullToRefresh.d.ts.map +1 -0
- package/dist/src/components/mobile/TouchGlassOptimization.d.ts +50 -0
- package/dist/src/components/mobile/TouchGlassOptimization.d.ts.map +1 -0
- package/dist/src/components/modal/GlassBottomSheet.d.ts +35 -0
- package/dist/src/components/modal/GlassBottomSheet.d.ts.map +1 -0
- package/dist/src/components/modal/GlassDialog.d.ts +145 -0
- package/dist/src/components/modal/GlassDialog.d.ts.map +1 -0
- package/dist/src/components/modal/GlassDrawer.d.ts +155 -0
- package/dist/src/components/modal/GlassDrawer.d.ts.map +1 -0
- package/dist/src/components/modal/GlassHoverCard.d.ts +133 -0
- package/dist/src/components/modal/GlassHoverCard.d.ts.map +1 -0
- package/dist/src/components/modal/GlassModal.d.ts +136 -0
- package/dist/src/components/modal/GlassModal.d.ts.map +1 -0
- package/dist/src/components/modal/GlassPopover.d.ts +126 -0
- package/dist/src/components/modal/GlassPopover.d.ts.map +1 -0
- package/dist/src/components/modal/GlassTooltip.d.ts +41 -0
- package/dist/src/components/modal/GlassTooltip.d.ts.map +1 -0
- package/dist/src/components/modal/types.d.ts +327 -0
- package/dist/src/components/modal/types.d.ts.map +1 -0
- package/dist/src/components/navigation/EnhancedGlassTabs.d.ts +117 -0
- package/dist/src/components/navigation/EnhancedGlassTabs.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassBottomNav.d.ts +68 -0
- package/dist/src/components/navigation/GlassBottomNav.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassBreadcrumb.d.ts +108 -0
- package/dist/src/components/navigation/GlassBreadcrumb.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassCommandBar.d.ts +20 -0
- package/dist/src/components/navigation/GlassCommandBar.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassContextMenu.d.ts +121 -0
- package/dist/src/components/navigation/GlassContextMenu.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassDropdownMenu.d.ts +52 -0
- package/dist/src/components/navigation/GlassDropdownMenu.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassHeader.d.ts +189 -0
- package/dist/src/components/navigation/GlassHeader.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassMenubar.d.ts +125 -0
- package/dist/src/components/navigation/GlassMenubar.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassMobileNav.d.ts +81 -0
- package/dist/src/components/navigation/GlassMobileNav.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassNavigation.d.ts +7 -0
- package/dist/src/components/navigation/GlassNavigation.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassNavigationMenu.d.ts +129 -0
- package/dist/src/components/navigation/GlassNavigationMenu.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassPagination.d.ts +153 -0
- package/dist/src/components/navigation/GlassPagination.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassResponsiveNav.d.ts +93 -0
- package/dist/src/components/navigation/GlassResponsiveNav.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassSegmentedControl.d.ts +22 -0
- package/dist/src/components/navigation/GlassSegmentedControl.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassSidebar.d.ts +105 -0
- package/dist/src/components/navigation/GlassSidebar.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassTabBar.d.ts +15 -0
- package/dist/src/components/navigation/GlassTabBar.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassTabs.d.ts +28 -0
- package/dist/src/components/navigation/GlassTabs.d.ts.map +1 -0
- package/dist/src/components/navigation/GlassToolbar.d.ts +15 -0
- package/dist/src/components/navigation/GlassToolbar.d.ts.map +1 -0
- package/dist/src/components/navigation/HeaderUserMenu.d.ts +34 -0
- package/dist/src/components/navigation/HeaderUserMenu.d.ts.map +1 -0
- package/dist/src/components/navigation/components/CollapsedMenu.d.ts +13 -0
- package/dist/src/components/navigation/components/CollapsedMenu.d.ts.map +1 -0
- package/dist/src/components/navigation/components/ScrollButtons.d.ts +10 -0
- package/dist/src/components/navigation/components/ScrollButtons.d.ts.map +1 -0
- package/dist/src/components/navigation/components/TabItem.d.ts +13 -0
- package/dist/src/components/navigation/components/TabItem.d.ts.map +1 -0
- package/dist/src/components/navigation/hooks/useResponsive.d.ts +13 -0
- package/dist/src/components/navigation/hooks/useResponsive.d.ts.map +1 -0
- package/dist/src/components/navigation/hooks/useTabAnimations.d.ts +16 -0
- package/dist/src/components/navigation/hooks/useTabAnimations.d.ts.map +1 -0
- package/dist/src/components/navigation/styled.d.ts +22 -0
- package/dist/src/components/navigation/styled.d.ts.map +1 -0
- package/dist/src/components/navigation/types.d.ts +141 -0
- package/dist/src/components/navigation/types.d.ts.map +1 -0
- package/dist/src/components/navigation/utils/tabUtils.d.ts +14 -0
- package/dist/src/components/navigation/utils/tabUtils.d.ts.map +1 -0
- package/dist/src/components/quantum/GlassCoherenceIndicator.d.ts +30 -0
- package/dist/src/components/quantum/GlassCoherenceIndicator.d.ts.map +1 -0
- package/dist/src/components/quantum/GlassProbabilityCloud.d.ts +36 -0
- package/dist/src/components/quantum/GlassProbabilityCloud.d.ts.map +1 -0
- package/dist/src/components/quantum/GlassQuantumField.d.ts +104 -0
- package/dist/src/components/quantum/GlassQuantumField.d.ts.map +1 -0
- package/dist/src/components/quantum/GlassQuantumTunnel.d.ts +46 -0
- package/dist/src/components/quantum/GlassQuantumTunnel.d.ts.map +1 -0
- package/dist/src/components/quantum/GlassSuperpositionalMenu.d.ts +28 -0
- package/dist/src/components/quantum/GlassSuperpositionalMenu.d.ts.map +1 -0
- package/dist/src/components/quantum/GlassWaveFunction.d.ts +35 -0
- package/dist/src/components/quantum/GlassWaveFunction.d.ts.map +1 -0
- package/dist/src/components/rating/GlassRating.d.ts +75 -0
- package/dist/src/components/rating/GlassRating.d.ts.map +1 -0
- package/dist/src/components/search/GlassIntelligentSearch.d.ts +51 -0
- package/dist/src/components/search/GlassIntelligentSearch.d.ts.map +1 -0
- package/dist/src/components/search/GlassSpotlightSearch.d.ts +87 -0
- package/dist/src/components/search/GlassSpotlightSearch.d.ts.map +1 -0
- package/dist/src/components/search/index.d.ts +3 -0
- package/dist/src/components/search/index.d.ts.map +1 -0
- package/dist/src/components/social/GlassCollaborativeCursor.d.ts +37 -0
- package/dist/src/components/social/GlassCollaborativeCursor.d.ts.map +1 -0
- package/dist/src/components/social/GlassPresenceIndicator.d.ts +37 -0
- package/dist/src/components/social/GlassPresenceIndicator.d.ts.map +1 -0
- package/dist/src/components/social/GlassReactionBubbles.d.ts +40 -0
- package/dist/src/components/social/GlassReactionBubbles.d.ts.map +1 -0
- package/dist/src/components/social/GlassSharedWhiteboard.d.ts +55 -0
- package/dist/src/components/social/GlassSharedWhiteboard.d.ts.map +1 -0
- package/dist/src/components/social/GlassSocialFeed.d.ts +49 -0
- package/dist/src/components/social/GlassSocialFeed.d.ts.map +1 -0
- package/dist/src/components/social/GlassVoiceWaveform.d.ts +35 -0
- package/dist/src/components/social/GlassVoiceWaveform.d.ts.map +1 -0
- package/dist/src/components/spatial/SpatialComputingEngine.d.ts +93 -0
- package/dist/src/components/spatial/SpatialComputingEngine.d.ts.map +1 -0
- package/dist/src/components/speed-dial/SpeedDial.d.ts +22 -0
- package/dist/src/components/speed-dial/SpeedDial.d.ts.map +1 -0
- package/dist/src/components/speed-dial/SpeedDialAction.d.ts +15 -0
- package/dist/src/components/speed-dial/SpeedDialAction.d.ts.map +1 -0
- package/dist/src/components/speed-dial/SpeedDialIcon.d.ts +15 -0
- package/dist/src/components/speed-dial/SpeedDialIcon.d.ts.map +1 -0
- package/dist/src/components/speed-dial/types.d.ts +195 -0
- package/dist/src/components/speed-dial/types.d.ts.map +1 -0
- package/dist/src/components/status/GlassConnectionStatus.d.ts +58 -0
- package/dist/src/components/status/GlassConnectionStatus.d.ts.map +1 -0
- package/dist/src/components/surfaces/DimensionalGlass.d.ts +9 -0
- package/dist/src/components/surfaces/DimensionalGlass.d.ts.map +1 -0
- package/dist/src/components/surfaces/FrostedGlass.d.ts +15 -0
- package/dist/src/components/surfaces/FrostedGlass.d.ts.map +1 -0
- package/dist/src/components/surfaces/GlassDepthLayer.d.ts +69 -0
- package/dist/src/components/surfaces/GlassDepthLayer.d.ts.map +1 -0
- package/dist/src/components/surfaces/HeatGlass.d.ts +15 -0
- package/dist/src/components/surfaces/HeatGlass.d.ts.map +1 -0
- package/dist/src/components/surfaces/PageGlassContainer.d.ts +15 -0
- package/dist/src/components/surfaces/PageGlassContainer.d.ts.map +1 -0
- package/dist/src/components/surfaces/WidgetGlass.d.ts +15 -0
- package/dist/src/components/surfaces/WidgetGlass.d.ts.map +1 -0
- package/dist/src/components/surfaces/types.d.ts +487 -0
- package/dist/src/components/surfaces/types.d.ts.map +1 -0
- package/dist/src/components/templates/dashboard/GlassDashboard.d.ts +102 -0
- package/dist/src/components/templates/dashboard/GlassDashboard.d.ts.map +1 -0
- package/dist/src/components/templates/dashboard/index.d.ts +7 -0
- package/dist/src/components/templates/dashboard/index.d.ts.map +1 -0
- package/dist/src/components/templates/dashboard/widgets/ChartWidget.d.ts +69 -0
- package/dist/src/components/templates/dashboard/widgets/ChartWidget.d.ts.map +1 -0
- package/dist/src/components/templates/dashboard/widgets/MetricWidget.d.ts +58 -0
- package/dist/src/components/templates/dashboard/widgets/MetricWidget.d.ts.map +1 -0
- package/dist/src/components/templates/dashboard/widgets/TableWidget.d.ts +91 -0
- package/dist/src/components/templates/dashboard/widgets/TableWidget.d.ts.map +1 -0
- package/dist/src/components/templates/dashboard/widgets/index.d.ts +10 -0
- package/dist/src/components/templates/dashboard/widgets/index.d.ts.map +1 -0
- package/dist/src/components/templates/detail/GlassDetailView.d.ts +110 -0
- package/dist/src/components/templates/detail/GlassDetailView.d.ts.map +1 -0
- package/dist/src/components/templates/detail/index.d.ts +6 -0
- package/dist/src/components/templates/detail/index.d.ts.map +1 -0
- package/dist/src/components/templates/forms/FormValidationUtils.d.ts +101 -0
- package/dist/src/components/templates/forms/FormValidationUtils.d.ts.map +1 -0
- package/dist/src/components/templates/forms/GlassFormTemplate.d.ts +113 -0
- package/dist/src/components/templates/forms/GlassFormTemplate.d.ts.map +1 -0
- package/dist/src/components/templates/forms/GlassFormWizardSteps.d.ts +60 -0
- package/dist/src/components/templates/forms/GlassFormWizardSteps.d.ts.map +1 -0
- package/dist/src/components/templates/forms/GlassWizardTemplate.d.ts +100 -0
- package/dist/src/components/templates/forms/GlassWizardTemplate.d.ts.map +1 -0
- package/dist/src/components/templates/forms/index.d.ts +10 -0
- package/dist/src/components/templates/forms/index.d.ts.map +1 -0
- package/dist/src/components/templates/interactive/GlassDataTable.d.ts +24 -0
- package/dist/src/components/templates/interactive/GlassDataTable.d.ts.map +1 -0
- package/dist/src/components/templates/list/GlassListView.d.ts +160 -0
- package/dist/src/components/templates/list/GlassListView.d.ts.map +1 -0
- package/dist/src/components/templates/list/index.d.ts +6 -0
- package/dist/src/components/templates/list/index.d.ts.map +1 -0
- package/dist/src/components/templates/types.d.ts +44 -0
- package/dist/src/components/templates/types.d.ts.map +1 -0
- package/dist/src/components/toggle-button/ToggleButton.d.ts +39 -0
- package/dist/src/components/toggle-button/ToggleButton.d.ts.map +1 -0
- package/dist/src/components/toggle-button/ToggleButtonGroup.d.ts +22 -0
- package/dist/src/components/toggle-button/ToggleButtonGroup.d.ts.map +1 -0
- package/dist/src/components/toggle-button/types.d.ts +42 -0
- package/dist/src/components/toggle-button/types.d.ts.map +1 -0
- package/dist/src/components/tree-view/TreeItem.d.ts +36 -0
- package/dist/src/components/tree-view/TreeItem.d.ts.map +1 -0
- package/dist/src/components/tree-view/TreeView.d.ts +23 -0
- package/dist/src/components/tree-view/TreeView.d.ts.map +1 -0
- package/dist/src/components/tree-view/types.d.ts +48 -0
- package/dist/src/components/tree-view/types.d.ts.map +1 -0
- package/dist/src/components/ui-components/GlassAccordionUI.d.ts +12 -0
- package/dist/src/components/ui-components/GlassAccordionUI.d.ts.map +1 -0
- package/dist/src/components/ui-components/GlassCheckboxUI.d.ts +3 -0
- package/dist/src/components/ui-components/GlassCheckboxUI.d.ts.map +1 -0
- package/dist/src/components/ui-components/glass-panel.d.ts +31 -0
- package/dist/src/components/ui-components/glass-panel.d.ts.map +1 -0
- package/dist/src/components/ui-components/types.d.ts +33 -0
- package/dist/src/components/ui-components/types.d.ts.map +1 -0
- package/dist/src/components/visual-feedback/FocusIndicator.d.ts +15 -0
- package/dist/src/components/visual-feedback/FocusIndicator.d.ts.map +1 -0
- package/dist/src/components/visual-feedback/RippleButton.d.ts +17 -0
- package/dist/src/components/visual-feedback/RippleButton.d.ts.map +1 -0
- package/dist/src/components/visual-feedback/StateIndicator.d.ts +15 -0
- package/dist/src/components/visual-feedback/StateIndicator.d.ts.map +1 -0
- package/dist/src/components/visual-feedback/VisualFeedback.d.ts +15 -0
- package/dist/src/components/visual-feedback/VisualFeedback.d.ts.map +1 -0
- package/dist/src/components/visual-feedback/types.d.ts +60 -0
- package/dist/src/components/visual-feedback/types.d.ts.map +1 -0
- package/dist/src/components/visualization/GlassAdvancedDataViz.d.ts +55 -0
- package/dist/src/components/visualization/GlassAdvancedDataViz.d.ts.map +1 -0
- package/dist/src/components/visualization/index.d.ts +3 -0
- package/dist/src/components/visualization/index.d.ts.map +1 -0
- package/dist/src/components/voice/VoiceGlassControl.d.ts +15 -0
- package/dist/src/components/voice/VoiceGlassControl.d.ts.map +1 -0
- package/dist/src/components/voice/index.d.ts +2 -0
- package/dist/src/components/voice/index.d.ts.map +1 -0
- package/dist/src/components/website-components/GlassChartsDemo.d.ts +52 -0
- package/dist/src/components/website-components/GlassChartsDemo.d.ts.map +1 -0
- package/dist/src/components/website-components/GlassLinkButton.d.ts +13 -0
- package/dist/src/components/website-components/GlassLinkButton.d.ts.map +1 -0
- package/dist/src/components/website-components/GlassPrismComparison.d.ts +2 -0
- package/dist/src/components/website-components/GlassPrismComparison.d.ts.map +1 -0
- package/dist/src/components/website-components/GlassWipeSlider.d.ts +143 -0
- package/dist/src/components/website-components/GlassWipeSlider.d.ts.map +1 -0
- package/dist/src/components/website-components/GlassWipeSliderExamples.d.ts +25 -0
- package/dist/src/components/website-components/GlassWipeSliderExamples.d.ts.map +1 -0
- package/dist/src/components/website-components/MotionAwareGlass.d.ts +25 -0
- package/dist/src/components/website-components/MotionAwareGlass.d.ts.map +1 -0
- package/dist/src/components/website-components/types.d.ts +29 -0
- package/dist/src/components/website-components/types.d.ts.map +1 -0
- package/dist/src/contexts/AnimationContext.d.ts +24 -0
- package/dist/src/contexts/AnimationContext.d.ts.map +1 -0
- package/dist/src/contexts/MotionPreferenceContext.d.ts +12 -0
- package/dist/src/contexts/MotionPreferenceContext.d.ts.map +1 -0
- package/dist/src/core/foundation/glassFoundation.d.ts +89 -0
- package/dist/src/core/foundation/glassFoundation.d.ts.map +1 -0
- package/dist/src/core/mixins/edgeEffects.d.ts +15 -0
- package/dist/src/core/mixins/edgeEffects.d.ts.map +1 -0
- package/dist/src/core/mixins/glassBorder.d.ts +22 -0
- package/dist/src/core/mixins/glassBorder.d.ts.map +1 -0
- package/dist/src/core/mixins/glassMixins.d.ts +88 -0
- package/dist/src/core/mixins/glassMixins.d.ts.map +1 -0
- package/dist/src/core/mixins/glassSurface.d.ts +44 -0
- package/dist/src/core/mixins/glassSurface.d.ts.map +1 -0
- package/dist/src/core/mixins/glowEffects.d.ts +75 -0
- package/dist/src/core/mixins/glowEffects.d.ts.map +1 -0
- package/dist/src/core/mixins/interactiveGlass.d.ts +63 -0
- package/dist/src/core/mixins/interactiveGlass.d.ts.map +1 -0
- package/dist/src/core/mixins/performanceMixins.d.ts +96 -0
- package/dist/src/core/mixins/performanceMixins.d.ts.map +1 -0
- package/dist/src/core/mixins/zSpaceLayer.d.ts +59 -0
- package/dist/src/core/mixins/zSpaceLayer.d.ts.map +1 -0
- package/dist/src/core/productionCore.d.ts +83 -0
- package/dist/src/core/productionCore.d.ts.map +1 -0
- package/dist/src/core/themeContext.d.ts +10 -0
- package/dist/src/core/themeContext.d.ts.map +1 -0
- package/dist/src/core/themeUtils.d.ts +8 -0
- package/dist/src/core/themeUtils.d.ts.map +1 -0
- package/dist/src/core/types.d.ts +46 -0
- package/dist/src/core/types.d.ts.map +1 -0
- package/dist/src/core/zspace.d.ts +17 -0
- package/dist/src/core/zspace.d.ts.map +1 -0
- package/dist/src/design-system/utilsCore.d.ts +3 -0
- package/dist/src/design-system/utilsCore.d.ts.map +1 -0
- package/dist/src/hooks/extended/index.d.ts +13 -0
- package/dist/src/hooks/extended/index.d.ts.map +1 -0
- package/dist/src/hooks/extended/useDraggableListPhysics.d.ts +86 -0
- package/dist/src/hooks/extended/useDraggableListPhysics.d.ts.map +1 -0
- package/dist/src/hooks/extended/useGalileoSprings.d.ts +243 -0
- package/dist/src/hooks/extended/useGalileoSprings.d.ts.map +1 -0
- package/dist/src/hooks/extended/useGlassFocus.d.ts +107 -0
- package/dist/src/hooks/extended/useGlassFocus.d.ts.map +1 -0
- package/dist/src/hooks/extended/useGlassPerformance.d.ts +117 -0
- package/dist/src/hooks/extended/useGlassPerformance.d.ts.map +1 -0
- package/dist/src/hooks/extended/useSortableData.d.ts +115 -0
- package/dist/src/hooks/extended/useSortableData.d.ts.map +1 -0
- package/dist/src/hooks/extended/useZSpaceAnimation.d.ts +317 -0
- package/dist/src/hooks/extended/useZSpaceAnimation.d.ts.map +1 -0
- package/dist/src/hooks/useAccessibility.d.ts +32 -0
- package/dist/src/hooks/useAccessibility.d.ts.map +1 -0
- package/dist/src/hooks/useAccessibilitySettings.d.ts +44 -0
- package/dist/src/hooks/useAccessibilitySettings.d.ts.map +1 -0
- package/dist/src/hooks/useAutoTextContrast.d.ts +7 -0
- package/dist/src/hooks/useAutoTextContrast.d.ts.map +1 -0
- package/dist/src/hooks/useEnhancedPerformance.d.ts +73 -0
- package/dist/src/hooks/useEnhancedPerformance.d.ts.map +1 -0
- package/dist/src/hooks/useEnhancedReducedMotion.d.ts +2 -0
- package/dist/src/hooks/useEnhancedReducedMotion.d.ts.map +1 -0
- package/dist/src/hooks/useErrorBoundary.d.ts +76 -0
- package/dist/src/hooks/useErrorBoundary.d.ts.map +1 -0
- package/dist/src/hooks/useGalileoStateSpring.d.ts +12 -0
- package/dist/src/hooks/useGalileoStateSpring.d.ts.map +1 -0
- package/dist/src/hooks/useGlassIntersection.d.ts +57 -0
- package/dist/src/hooks/useGlassIntersection.d.ts.map +1 -0
- package/dist/src/hooks/useGlassOptimization.d.ts +52 -0
- package/dist/src/hooks/useGlassOptimization.d.ts.map +1 -0
- package/dist/src/hooks/useGlassParallax.d.ts +12 -0
- package/dist/src/hooks/useGlassParallax.d.ts.map +1 -0
- package/dist/src/hooks/useGlassProbes.d.ts +38 -0
- package/dist/src/hooks/useGlassProbes.d.ts.map +1 -0
- package/dist/src/hooks/useGlassTheme.d.ts +2 -0
- package/dist/src/hooks/useGlassTheme.d.ts.map +1 -0
- package/dist/src/hooks/useMotionPreference.d.ts +14 -0
- package/dist/src/hooks/useMotionPreference.d.ts.map +1 -0
- package/dist/src/hooks/useParallax.d.ts +13 -0
- package/dist/src/hooks/useParallax.d.ts.map +1 -0
- package/dist/src/hooks/usePerformance.d.ts +63 -0
- package/dist/src/hooks/usePerformance.d.ts.map +1 -0
- package/dist/src/hooks/usePhysicsInteraction.d.ts +69 -0
- package/dist/src/hooks/usePhysicsInteraction.d.ts.map +1 -0
- package/dist/src/hooks/useReducedMotion.d.ts +2 -0
- package/dist/src/hooks/useReducedMotion.d.ts.map +1 -0
- package/dist/src/hooks/useVirtualization.d.ts +149 -0
- package/dist/src/hooks/useVirtualization.d.ts.map +1 -0
- package/dist/src/index.d.ts +222 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/lib/GlassLocalizationProvider.d.ts +29 -0
- package/dist/src/lib/GlassLocalizationProvider.d.ts.map +1 -0
- package/dist/src/lib/ai-client.d.ts +206 -0
- package/dist/src/lib/ai-client.d.ts.map +1 -0
- package/dist/src/lib/index.d.ts +4 -0
- package/dist/src/lib/index.d.ts.map +1 -0
- package/dist/src/lib/motionPrimitives.d.ts +100 -0
- package/dist/src/lib/motionPrimitives.d.ts.map +1 -0
- package/dist/src/lib/utils.d.ts +2 -0
- package/dist/src/lib/utils.d.ts.map +1 -0
- package/dist/src/lib/utilsComprehensive.d.ts +87 -0
- package/dist/src/lib/utilsComprehensive.d.ts.map +1 -0
- package/dist/src/primitives/GlassCore.d.ts +33 -0
- package/dist/src/primitives/GlassCore.d.ts.map +1 -0
- package/dist/src/primitives/LiquidGlassMaterial.d.ts +129 -0
- package/dist/src/primitives/LiquidGlassMaterial.d.ts.map +1 -0
- package/dist/src/primitives/MotionNative.d.ts +45 -0
- package/dist/src/primitives/MotionNative.d.ts.map +1 -0
- package/dist/src/primitives/OptimizedGlassCore.d.ts +70 -0
- package/dist/src/primitives/OptimizedGlassCore.d.ts.map +1 -0
- package/dist/src/primitives/focus/FocusTrap.d.ts +50 -0
- package/dist/src/primitives/focus/FocusTrap.d.ts.map +1 -0
- package/dist/src/primitives/focus/ScreenReader.d.ts +634 -0
- package/dist/src/primitives/focus/ScreenReader.d.ts.map +1 -0
- package/dist/src/primitives/focus/SkipLinks.d.ts +61 -0
- package/dist/src/primitives/focus/SkipLinks.d.ts.map +1 -0
- package/dist/src/primitives/focus/index.d.ts +63 -0
- package/dist/src/primitives/focus/index.d.ts.map +1 -0
- package/dist/src/primitives/glass/GlassAdvanced.d.ts +65 -0
- package/dist/src/primitives/glass/GlassAdvanced.d.ts.map +1 -0
- package/dist/src/primitives/glass/OptimizedGlassAdvanced.d.ts +48 -0
- package/dist/src/primitives/glass/OptimizedGlassAdvanced.d.ts.map +1 -0
- package/dist/src/primitives/index.d.ts +17 -0
- package/dist/src/primitives/index.d.ts.map +1 -0
- package/dist/src/primitives/motion/MotionFramer.d.ts +17 -0
- package/dist/src/primitives/motion/MotionFramer.d.ts.map +1 -0
- package/dist/src/primitives/motion/ReducedMotionProvider.d.ts +6 -0
- package/dist/src/primitives/motion/ReducedMotionProvider.d.ts.map +1 -0
- package/dist/src/primitives/motion/index.d.ts +7 -0
- package/dist/src/primitives/motion/index.d.ts.map +1 -0
- package/dist/src/primitives/motion/presets.d.ts +813 -0
- package/dist/src/primitives/motion/presets.d.ts.map +1 -0
- package/dist/src/services/ai/cache-service.d.ts +18 -0
- package/dist/src/services/ai/cache-service.d.ts.map +1 -0
- package/dist/src/services/ai/config.d.ts +160 -0
- package/dist/src/services/ai/config.d.ts.map +1 -0
- package/dist/src/services/ai/error-handler.d.ts +33 -0
- package/dist/src/services/ai/error-handler.d.ts.map +1 -0
- package/dist/src/services/ai/openai-service.d.ts +89 -0
- package/dist/src/services/ai/openai-service.d.ts.map +1 -0
- package/dist/src/services/ai/semantic-search-service.d.ts +49 -0
- package/dist/src/services/ai/semantic-search-service.d.ts.map +1 -0
- package/dist/src/services/ai/vision-service.d.ts +94 -0
- package/dist/src/services/ai/vision-service.d.ts.map +1 -0
- package/dist/src/services/auth/auth-service.d.ts +103 -0
- package/dist/src/services/auth/auth-service.d.ts.map +1 -0
- package/dist/src/services/auth/middleware.d.ts +33 -0
- package/dist/src/services/auth/middleware.d.ts.map +1 -0
- package/dist/src/services/websocket/collaboration-service.d.ts +67 -0
- package/dist/src/services/websocket/collaboration-service.d.ts.map +1 -0
- package/dist/src/tests/consciousness/ConsciousnessAccessibilityTests.d.ts +51 -0
- package/dist/src/tests/consciousness/ConsciousnessAccessibilityTests.d.ts.map +1 -0
- package/dist/src/tests/consciousness/ConsciousnessCompatibilityTestSuite.d.ts +44 -0
- package/dist/src/tests/consciousness/ConsciousnessCompatibilityTestSuite.d.ts.map +1 -0
- package/dist/src/tests/consciousness/ConsciousnessPerformanceBenchmark.d.ts +41 -0
- package/dist/src/tests/consciousness/ConsciousnessPerformanceBenchmark.d.ts.map +1 -0
- package/dist/src/theme/GlassContext.d.ts +34 -0
- package/dist/src/theme/GlassContext.d.ts.map +1 -0
- package/dist/src/theme/ThemeProvider.d.ts +175 -0
- package/dist/src/theme/ThemeProvider.d.ts.map +1 -0
- package/dist/src/theme/themeConstants.d.ts +6 -0
- package/dist/src/theme/themeConstants.d.ts.map +1 -0
- package/dist/src/theme/tokens.d.ts +79 -0
- package/dist/src/theme/tokens.d.ts.map +1 -0
- package/dist/src/tokens/designConstants.d.ts +660 -0
- package/dist/src/tokens/designConstants.d.ts.map +1 -0
- package/dist/src/tokens/glass.d.ts +470 -0
- package/dist/src/tokens/glass.d.ts.map +1 -0
- package/dist/src/tokens/index.d.ts +8 -0
- package/dist/src/tokens/index.d.ts.map +1 -0
- package/dist/src/tokens/themeTokens.d.ts +217 -0
- package/dist/src/tokens/themeTokens.d.ts.map +1 -0
- package/dist/src/tools/GlassDevTools.d.ts +9 -0
- package/dist/src/tools/GlassDevTools.d.ts.map +1 -0
- package/dist/src/types/accessibility.d.ts +89 -0
- package/dist/src/types/accessibility.d.ts.map +1 -0
- package/dist/src/types/animations.d.ts +96 -0
- package/dist/src/types/animations.d.ts.map +1 -0
- package/dist/src/types/components/button.d.ts +20 -0
- package/dist/src/types/components/button.d.ts.map +1 -0
- package/dist/src/types/components/data-display.d.ts +112 -0
- package/dist/src/types/components/data-display.d.ts.map +1 -0
- package/dist/src/types/components/form.d.ts +62 -0
- package/dist/src/types/components/form.d.ts.map +1 -0
- package/dist/src/types/components/layout.d.ts +39 -0
- package/dist/src/types/components/layout.d.ts.map +1 -0
- package/dist/src/types/components.d.ts +125 -0
- package/dist/src/types/components.d.ts.map +1 -0
- package/dist/src/types/consciousness.d.ts +316 -0
- package/dist/src/types/consciousness.d.ts.map +1 -0
- package/dist/src/types/glass-api-stable.d.ts +260 -0
- package/dist/src/types/glass-api-stable.d.ts.map +1 -0
- package/dist/src/types/index.d.ts +113 -0
- package/dist/src/types/index.d.ts.map +1 -0
- package/dist/src/types/productionTypes.d.ts +614 -0
- package/dist/src/types/productionTypes.d.ts.map +1 -0
- package/dist/src/types/themeTypes.d.ts +96 -0
- package/dist/src/types/themeTypes.d.ts.map +1 -0
- package/dist/src/types.d.ts +269 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/utils/a11y.d.ts +464 -0
- package/dist/src/utils/a11y.d.ts.map +1 -0
- package/dist/src/utils/a11yEnhancers.d.ts +146 -0
- package/dist/src/utils/a11yEnhancers.d.ts.map +1 -0
- package/dist/src/utils/a11yHooks.d.ts +154 -0
- package/dist/src/utils/a11yHooks.d.ts.map +1 -0
- package/dist/src/utils/a11yTesting.d.ts +103 -0
- package/dist/src/utils/a11yTesting.d.ts.map +1 -0
- package/dist/src/utils/adaptiveAI.d.ts +163 -0
- package/dist/src/utils/adaptiveAI.d.ts.map +1 -0
- package/dist/src/utils/aiPersonalization.d.ts +135 -0
- package/dist/src/utils/aiPersonalization.d.ts.map +1 -0
- package/dist/src/utils/browserCompatibility.d.ts +97 -0
- package/dist/src/utils/browserCompatibility.d.ts.map +1 -0
- package/dist/src/utils/compatibility.d.ts +61 -0
- package/dist/src/utils/compatibility.d.ts.map +1 -0
- package/dist/src/utils/consciousnessOptimization.d.ts +76 -0
- package/dist/src/utils/consciousnessOptimization.d.ts.map +1 -0
- package/dist/src/utils/contrast.d.ts +88 -0
- package/dist/src/utils/contrast.d.ts.map +1 -0
- package/dist/src/utils/contrastGuard.d.ts +124 -0
- package/dist/src/utils/contrastGuard.d.ts.map +1 -0
- package/dist/src/utils/createGlassStyle.d.ts +52 -0
- package/dist/src/utils/createGlassStyle.d.ts.map +1 -0
- package/dist/src/utils/deviceCapabilities.d.ts +128 -0
- package/dist/src/utils/deviceCapabilities.d.ts.map +1 -0
- package/dist/src/utils/dynamicTheme.d.ts +75 -0
- package/dist/src/utils/dynamicTheme.d.ts.map +1 -0
- package/dist/src/utils/elementTypes.d.ts +39 -0
- package/dist/src/utils/elementTypes.d.ts.map +1 -0
- package/dist/src/utils/emotionalIntelligence.d.ts +97 -0
- package/dist/src/utils/emotionalIntelligence.d.ts.map +1 -0
- package/dist/src/utils/errorBoundary.d.ts +82 -0
- package/dist/src/utils/errorBoundary.d.ts.map +1 -0
- package/dist/src/utils/focus.d.ts +69 -0
- package/dist/src/utils/focus.d.ts.map +1 -0
- package/dist/src/utils/glassStyleProbes.d.ts +61 -0
- package/dist/src/utils/glassStyleProbes.d.ts.map +1 -0
- package/dist/src/utils/index.d.ts +12 -0
- package/dist/src/utils/index.d.ts.map +1 -0
- package/dist/src/utils/performance.d.ts +138 -0
- package/dist/src/utils/performance.d.ts.map +1 -0
- package/dist/src/utils/performanceOptimizations.d.ts +112 -0
- package/dist/src/utils/performanceOptimizations.d.ts.map +1 -0
- package/dist/src/utils/productionUtils.d.ts +130 -0
- package/dist/src/utils/productionUtils.d.ts.map +1 -0
- package/dist/src/utils/refUtils.d.ts +10 -0
- package/dist/src/utils/refUtils.d.ts.map +1 -0
- package/dist/src/utils/smartColorExtraction.d.ts +211 -0
- package/dist/src/utils/smartColorExtraction.d.ts.map +1 -0
- package/dist/src/utils/soundDesign.d.ts +116 -0
- package/dist/src/utils/soundDesign.d.ts.map +1 -0
- package/dist/src/utils/testSetup.d.ts +7 -0
- package/dist/src/utils/testSetup.d.ts.map +1 -0
- package/dist/src/utils/themeHelpers.d.ts +70 -0
- package/dist/src/utils/themeHelpers.d.ts.map +1 -0
- package/dist/vite.config.d.ts +3 -0
- package/dist/vite.config.d.ts.map +1 -0
- package/package.json +242 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassCheckboxUI.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-components/GlassCheckboxUI.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,IAAI,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AACnE,YAAY,EAAE,kBAAkB,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { OptimizedGlassProps } from '../../primitives/OptimizedGlassCore';
|
|
3
|
+
export interface GlassPanelProps extends Omit<OptimizedGlassProps, 'variant' | 'elevation'> {
|
|
4
|
+
/**
|
|
5
|
+
* Panel variant style
|
|
6
|
+
*/
|
|
7
|
+
variant?: 'default' | 'primary' | 'success' | 'warning' | 'error';
|
|
8
|
+
/**
|
|
9
|
+
* Panel elevation
|
|
10
|
+
*/
|
|
11
|
+
elevation?: 'level1' | 'level2' | 'level3' | 'level4';
|
|
12
|
+
/**
|
|
13
|
+
* Whether the panel is interactive
|
|
14
|
+
*/
|
|
15
|
+
interactive?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Panel padding
|
|
18
|
+
*/
|
|
19
|
+
padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
20
|
+
/**
|
|
21
|
+
* Panel content
|
|
22
|
+
*/
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* GlassPanel component
|
|
27
|
+
* A glassmorphism panel using the proper PerformantGlass primitive
|
|
28
|
+
*/
|
|
29
|
+
declare const GlassPanel: React.ForwardRefExoticComponent<GlassPanelProps & React.RefAttributes<HTMLDivElement>>;
|
|
30
|
+
export { GlassPanel };
|
|
31
|
+
//# sourceMappingURL=glass-panel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glass-panel.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-components/glass-panel.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAwC,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAGhH,MAAM,WAAW,eAAgB,SAAQ,IAAI,CAAC,mBAAmB,EAAE,SAAS,GAAG,WAAW,CAAC;IACzF;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;IAClE;;OAEG;IACH,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IACtD;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC7C;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED;;;GAGG;AACH,QAAA,MAAM,UAAU,wFA+Cf,CAAC;AAIF,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassPanelProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
title?: string;
|
|
4
|
+
collapsible?: boolean;
|
|
5
|
+
collapsed?: boolean;
|
|
6
|
+
onCollapse?: (collapsed: boolean) => void;
|
|
7
|
+
glassVariant?: 'frosted' | 'dynamic' | 'clear' | 'tinted' | 'luminous';
|
|
8
|
+
blurStrength?: 'none' | 'light' | 'standard' | 'heavy';
|
|
9
|
+
/** Glass surface intent */
|
|
10
|
+
intent?: 'neutral' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
11
|
+
/** Glass surface elevation */
|
|
12
|
+
elevation?: 'level1' | 'level2' | 'level3' | 'level4';
|
|
13
|
+
/** Performance tier */
|
|
14
|
+
tier?: 'low' | 'medium' | 'high';
|
|
15
|
+
}
|
|
16
|
+
export interface GlassAccordionUIProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
17
|
+
items?: Array<{
|
|
18
|
+
id: string;
|
|
19
|
+
title: string;
|
|
20
|
+
content: React.ReactNode;
|
|
21
|
+
expanded?: boolean;
|
|
22
|
+
}>;
|
|
23
|
+
allowMultiple?: boolean;
|
|
24
|
+
glassVariant?: 'frosted' | 'dynamic' | 'clear' | 'tinted' | 'luminous';
|
|
25
|
+
blurStrength?: 'none' | 'light' | 'standard' | 'heavy';
|
|
26
|
+
}
|
|
27
|
+
export interface GlassCheckboxUIProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
28
|
+
label?: string;
|
|
29
|
+
indeterminate?: boolean;
|
|
30
|
+
glassVariant?: 'frosted' | 'dynamic' | 'clear' | 'tinted' | 'luminous';
|
|
31
|
+
blurStrength?: 'none' | 'light' | 'standard' | 'heavy';
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-components/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC3E,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;IAC1C,YAAY,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,CAAC;IACvE,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;IAEvD,2BAA2B;IAC3B,MAAM,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;IAE3E,8BAA8B;IAC9B,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAEtD,uBAAuB;IACvB,IAAI,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC;CAClC;AAED,MAAM,WAAW,qBAAsB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACjF,KAAK,CAAC,EAAE,KAAK,CAAC;QACZ,EAAE,EAAE,MAAM,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,KAAK,CAAC,SAAS,CAAC;QACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;KACpB,CAAC,CAAC;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,YAAY,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,CAAC;IACvE,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;CACxD;AAED,MAAM,WAAW,oBAAqB,SAAQ,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC;IACvF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,YAAY,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,CAAC;IACvE,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;CACxD"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FocusIndicator Component
|
|
3
|
+
*
|
|
4
|
+
* A component that provides accessible focus indicators.
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { FocusIndicatorProps } from './types';
|
|
8
|
+
/**
|
|
9
|
+
* FocusIndicator Component
|
|
10
|
+
*
|
|
11
|
+
* A component that provides accessible focus indicators.
|
|
12
|
+
*/
|
|
13
|
+
declare const FocusIndicator: React.ForwardRefExoticComponent<FocusIndicatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
export default FocusIndicator;
|
|
15
|
+
//# sourceMappingURL=FocusIndicator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FocusIndicator.d.ts","sourceRoot":"","sources":["../../../../src/components/visual-feedback/FocusIndicator.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAA8B,MAAM,OAAO,CAAC;AAUnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAgL9C;;;;GAIG;AACH,QAAA,MAAM,cAAc,4FAAsC,CAAC;AAE3D,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* RippleButton Component
|
|
3
|
+
*
|
|
4
|
+
* A button component with ripple effect feedback.
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { GlassButtonProps as ButtonProps } from '../button/types';
|
|
8
|
+
import { RippleButtonProps } from './types';
|
|
9
|
+
/**
|
|
10
|
+
* RippleButton Component
|
|
11
|
+
*
|
|
12
|
+
* A button component that wraps the base Button to add a ripple effect feedback.
|
|
13
|
+
* It inherits physics interactions from the base Button.
|
|
14
|
+
*/
|
|
15
|
+
declare const RippleButton: React.ForwardRefExoticComponent<RippleButtonProps & Omit<ButtonProps, "onClick" | "onMouseDown"> & React.RefAttributes<HTMLButtonElement>>;
|
|
16
|
+
export default RippleButton;
|
|
17
|
+
//# sourceMappingURL=RippleButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RippleButton.d.ts","sourceRoot":"","sources":["../../../../src/components/visual-feedback/RippleButton.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAoD,MAAM,OAAO,CAAC;AASzE,OAAO,EAAE,gBAAgB,IAAI,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAElE,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAqO5C;;;;;GAKG;AACH,QAAA,MAAM,YAAY,4IAAoC,CAAC;AAEvD,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* StateIndicator Component
|
|
3
|
+
*
|
|
4
|
+
* A component that visually indicates the current state of a UI element.
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { StateIndicatorProps } from './types';
|
|
8
|
+
/**
|
|
9
|
+
* StateIndicator Component
|
|
10
|
+
*
|
|
11
|
+
* A component that visually indicates the current state of a UI element.
|
|
12
|
+
*/
|
|
13
|
+
declare const StateIndicator: React.ForwardRefExoticComponent<StateIndicatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
export default StateIndicator;
|
|
15
|
+
//# sourceMappingURL=StateIndicator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StateIndicator.d.ts","sourceRoot":"","sources":["../../../../src/components/visual-feedback/StateIndicator.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAqB,MAAM,OAAO,CAAC;AAO1C,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AA4J9C;;;;GAIG;AACH,QAAA,MAAM,cAAc,4FAAsC,CAAC;AAE3D,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VisualFeedback Component
|
|
3
|
+
*
|
|
4
|
+
* A component that provides visual feedback effects.
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { VisualFeedbackProps } from './types';
|
|
8
|
+
/**
|
|
9
|
+
* VisualFeedback Component
|
|
10
|
+
*
|
|
11
|
+
* A component that provides visual feedback effects.
|
|
12
|
+
*/
|
|
13
|
+
declare const VisualFeedback: React.ForwardRefExoticComponent<VisualFeedbackProps & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
export default VisualFeedback;
|
|
15
|
+
//# sourceMappingURL=VisualFeedback.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VisualFeedback.d.ts","sourceRoot":"","sources":["../../../../src/components/visual-feedback/VisualFeedback.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAkD,MAAM,OAAO,CAAC;AAOvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAoP9C;;;;GAIG;AACH,QAAA,MAAM,cAAc,4FAAsC,CAAC;AAE3D,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface FocusIndicatorProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'style'> {
|
|
3
|
+
target?: HTMLElement | React.RefObject<HTMLElement>;
|
|
4
|
+
color?: string;
|
|
5
|
+
width?: number;
|
|
6
|
+
thickness?: number;
|
|
7
|
+
style?: 'solid' | 'dashed' | 'dotted' | 'glow';
|
|
8
|
+
shape?: 'rectangle' | 'rounded' | 'circle' | 'pill';
|
|
9
|
+
animated?: boolean;
|
|
10
|
+
glass?: boolean;
|
|
11
|
+
highContrast?: boolean;
|
|
12
|
+
componentStyle?: React.CSSProperties;
|
|
13
|
+
disableAnimation?: boolean;
|
|
14
|
+
animationConfig?: any;
|
|
15
|
+
visible?: boolean;
|
|
16
|
+
glassVariant?: 'frosted' | 'dynamic' | 'clear' | 'tinted' | 'luminous';
|
|
17
|
+
blurStrength?: 'none' | 'light' | 'standard' | 'heavy';
|
|
18
|
+
/** Glass surface intent */
|
|
19
|
+
intent?: 'neutral' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
20
|
+
/** Glass surface elevation */
|
|
21
|
+
elevation?: 'level1' | 'level2' | 'level3' | 'level4';
|
|
22
|
+
/** Performance tier */
|
|
23
|
+
tier?: 'low' | 'medium' | 'high';
|
|
24
|
+
}
|
|
25
|
+
export interface RippleButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
26
|
+
rippleColor?: string;
|
|
27
|
+
rippleDuration?: number;
|
|
28
|
+
rippleSize?: string;
|
|
29
|
+
rippleSpeed?: string;
|
|
30
|
+
centerRipple?: boolean;
|
|
31
|
+
disabled?: boolean;
|
|
32
|
+
glassVariant?: 'frosted' | 'dynamic' | 'clear' | 'tinted' | 'luminous';
|
|
33
|
+
blurStrength?: 'none' | 'light' | 'standard' | 'heavy';
|
|
34
|
+
}
|
|
35
|
+
export interface StateIndicatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
36
|
+
state?: 'success' | 'warning' | 'error' | 'info' | 'loading' | 'default' | 'hover' | 'active' | 'focus' | 'disabled';
|
|
37
|
+
size?: 'sm' | 'md' | 'lg';
|
|
38
|
+
animated?: boolean;
|
|
39
|
+
glass?: boolean;
|
|
40
|
+
blend?: boolean;
|
|
41
|
+
intensity?: number;
|
|
42
|
+
color?: string;
|
|
43
|
+
animationDuration?: number;
|
|
44
|
+
glassVariant?: 'frosted' | 'dynamic' | 'clear' | 'tinted' | 'luminous';
|
|
45
|
+
blurStrength?: 'none' | 'light' | 'standard' | 'heavy';
|
|
46
|
+
}
|
|
47
|
+
export interface VisualFeedbackProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
48
|
+
effect?: 'highlight' | 'glow' | 'pulse' | 'bounce' | 'shake' | 'ripple';
|
|
49
|
+
active?: boolean;
|
|
50
|
+
type?: 'success' | 'error' | 'warning' | 'info' | 'loading';
|
|
51
|
+
message?: string;
|
|
52
|
+
duration?: number;
|
|
53
|
+
position?: 'top' | 'bottom' | 'left' | 'right' | 'center';
|
|
54
|
+
color?: string;
|
|
55
|
+
glass?: boolean;
|
|
56
|
+
intensity?: number;
|
|
57
|
+
glassVariant?: 'frosted' | 'dynamic' | 'clear' | 'tinted' | 'luminous';
|
|
58
|
+
blurStrength?: 'none' | 'light' | 'standard' | 'heavy';
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/visual-feedback/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface DataPoint {
|
|
3
|
+
id: string | number;
|
|
4
|
+
x: number | string | Date;
|
|
5
|
+
y: number;
|
|
6
|
+
category?: string;
|
|
7
|
+
label?: string;
|
|
8
|
+
metadata?: Record<string, any>;
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ChartSeries {
|
|
12
|
+
id: string;
|
|
13
|
+
name: string;
|
|
14
|
+
data: DataPoint[];
|
|
15
|
+
color?: string;
|
|
16
|
+
type?: 'line' | 'bar' | 'area' | 'scatter';
|
|
17
|
+
visible?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface DrillDownLevel {
|
|
20
|
+
id: string;
|
|
21
|
+
name: string;
|
|
22
|
+
dataKey: string;
|
|
23
|
+
aggregation?: 'sum' | 'avg' | 'count' | 'min' | 'max';
|
|
24
|
+
}
|
|
25
|
+
export interface ChartFilter {
|
|
26
|
+
field: string;
|
|
27
|
+
operator: 'equals' | 'contains' | 'greaterThan' | 'lessThan' | 'between';
|
|
28
|
+
value: any;
|
|
29
|
+
}
|
|
30
|
+
export interface AdvancedDataVizProps {
|
|
31
|
+
data: ChartSeries[];
|
|
32
|
+
type?: 'line' | 'bar' | 'pie' | 'scatter' | 'heatmap' | 'combo';
|
|
33
|
+
title?: string;
|
|
34
|
+
subtitle?: string;
|
|
35
|
+
xAxisLabel?: string;
|
|
36
|
+
yAxisLabel?: string;
|
|
37
|
+
showLegend?: boolean;
|
|
38
|
+
showTooltip?: boolean;
|
|
39
|
+
showDataLabels?: boolean;
|
|
40
|
+
enableZoom?: boolean;
|
|
41
|
+
enablePan?: boolean;
|
|
42
|
+
enableCrosshair?: boolean;
|
|
43
|
+
enableAnimation?: boolean;
|
|
44
|
+
enableDrillDown?: boolean;
|
|
45
|
+
drillDownLevels?: DrillDownLevel[];
|
|
46
|
+
filters?: ChartFilter[];
|
|
47
|
+
onDataPointClick?: (point: DataPoint, series: ChartSeries) => void;
|
|
48
|
+
onDrillDown?: (level: DrillDownLevel, filters: ChartFilter[]) => void;
|
|
49
|
+
onExport?: (format: 'png' | 'svg' | 'csv' | 'json') => void;
|
|
50
|
+
width?: number;
|
|
51
|
+
height?: number;
|
|
52
|
+
className?: string;
|
|
53
|
+
}
|
|
54
|
+
export declare const GlassAdvancedDataViz: React.FC<AdvancedDataVizProps>;
|
|
55
|
+
//# sourceMappingURL=GlassAdvancedDataViz.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassAdvancedDataViz.d.ts","sourceRoot":"","sources":["../../../../src/components/visualization/GlassAdvancedDataViz.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAKjF,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IAC1B,CAAC,EAAE,MAAM,CAAC;IACV,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,SAAS,EAAE,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,MAAM,GAAG,SAAS,CAAC;IAC3C,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,OAAO,GAAG,KAAK,GAAG,KAAK,CAAC;CACvD;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,QAAQ,GAAG,UAAU,GAAG,aAAa,GAAG,UAAU,GAAG,SAAS,CAAC;IACzE,KAAK,EAAE,GAAG,CAAC;CACZ;AAED,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,WAAW,EAAE,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;IAChE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IACnC,OAAO,CAAC,EAAE,WAAW,EAAE,CAAC;IACxB,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,WAAW,KAAK,IAAI,CAAC;IACnE,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,EAAE,WAAW,EAAE,KAAK,IAAI,CAAC;IACtE,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,KAAK,IAAI,CAAC;IAC5D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAoED,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA8lB/D,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/visualization/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,YAAY,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface VoiceGlassControlProps {
|
|
2
|
+
className?: string;
|
|
3
|
+
position?: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
4
|
+
autoEnable?: boolean;
|
|
5
|
+
showTranscript?: boolean;
|
|
6
|
+
onVoiceCommand?: (command: string, result: any) => void;
|
|
7
|
+
onToggleControls?: (show: boolean) => void;
|
|
8
|
+
wakeWord?: string;
|
|
9
|
+
enableFeedback?: boolean;
|
|
10
|
+
showHelp?: boolean;
|
|
11
|
+
maxTranscriptLength?: number;
|
|
12
|
+
}
|
|
13
|
+
export default function VoiceGlassControl({ className, position, autoEnable, showTranscript, onVoiceCommand, onToggleControls, wakeWord, enableFeedback, showHelp, maxTranscriptLength }: VoiceGlassControlProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=VoiceGlassControl.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VoiceGlassControl.d.ts","sourceRoot":"","sources":["../../../../src/components/voice/VoiceGlassControl.tsx"],"names":[],"mappings":"AAmBA,UAAU,sBAAsB;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,aAAa,GAAG,cAAc,GAAG,UAAU,GAAG,WAAW,CAAC;IACrE,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;IACxD,gBAAgB,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAqID,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACxC,SAAS,EACT,QAAqB,EACrB,UAAkB,EAClB,cAAqB,EACrB,cAAc,EACd,gBAAgB,EAChB,QAAwB,EACxB,cAAqB,EACrB,QAAe,EACf,mBAAyB,EAC1B,EAAE,sBAAsB,2CAmlBxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/voice/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare function GlassDefs({ id }: {
|
|
3
|
+
id: string;
|
|
4
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const chartGlass: {
|
|
6
|
+
grid: string;
|
|
7
|
+
axis: string;
|
|
8
|
+
tick: {
|
|
9
|
+
fill: string;
|
|
10
|
+
fontSize: number;
|
|
11
|
+
};
|
|
12
|
+
yTick: {
|
|
13
|
+
fill: string;
|
|
14
|
+
fontSize: number;
|
|
15
|
+
};
|
|
16
|
+
label: (text: string) => {
|
|
17
|
+
value: string;
|
|
18
|
+
fill: string;
|
|
19
|
+
fontSize: number;
|
|
20
|
+
};
|
|
21
|
+
tooltip: {
|
|
22
|
+
cursor: {
|
|
23
|
+
stroke: string;
|
|
24
|
+
};
|
|
25
|
+
contentStyle: React.CSSProperties;
|
|
26
|
+
itemStyle: React.CSSProperties;
|
|
27
|
+
labelStyle: React.CSSProperties;
|
|
28
|
+
};
|
|
29
|
+
brandGrad: (base: string) => string;
|
|
30
|
+
brandArea: (base: string) => string;
|
|
31
|
+
glow: (base: string) => string;
|
|
32
|
+
sweep: (base: string) => string;
|
|
33
|
+
comp: string[];
|
|
34
|
+
};
|
|
35
|
+
export declare const axisTokens: {
|
|
36
|
+
margin: {
|
|
37
|
+
top: number;
|
|
38
|
+
right: number;
|
|
39
|
+
bottom: number;
|
|
40
|
+
left: number;
|
|
41
|
+
};
|
|
42
|
+
tickMargin: number;
|
|
43
|
+
xLabelDy: number;
|
|
44
|
+
yLabelDx: number;
|
|
45
|
+
tickFontSize: number;
|
|
46
|
+
};
|
|
47
|
+
export interface GlassChartsDemoProps {
|
|
48
|
+
className?: string;
|
|
49
|
+
children?: React.ReactNode;
|
|
50
|
+
}
|
|
51
|
+
export declare function GlassChartsDemo({ className, children }: GlassChartsDemoProps): import("react/jsx-runtime").JSX.Element;
|
|
52
|
+
//# sourceMappingURL=GlassChartsDemo.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassChartsDemo.d.ts","sourceRoot":"","sources":["../../../../src/components/website-components/GlassChartsDemo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAgB1B,wBAAgB,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE;IAAE,EAAE,EAAE,MAAM,CAAA;CAAE,2CAoC/C;AAED,eAAO,MAAM,UAAU;;;;;;;;;;;kBAKP,MAAM;;;;;;;;;sBAG4D,KAAK,CAAC,aAAa;mBACjE,KAAK,CAAC,aAAa;oBACA,KAAK,CAAC,aAAa;;sBAEtD,MAAM;sBACN,MAAM;iBACX,MAAM;kBACL,MAAM;;CAGrB,CAAC;AAGF,eAAO,MAAM,UAAU;;;;;;;;;;;CAMtB,CAAC;AAGF,MAAM,WAAW,oBAAoB;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,wBAAgB,eAAe,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,oBAAoB,2CAO5E"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { AnchorHTMLAttributes } from "react";
|
|
3
|
+
interface GlassLinkButtonProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
4
|
+
variant?: "primary" | "secondary" | "ghost";
|
|
5
|
+
size?: "sm" | "md" | "lg";
|
|
6
|
+
intent?: "primary" | "neutral" | "success" | "warning";
|
|
7
|
+
noise?: boolean;
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
declare const GlassLinkButton: React.ForwardRefExoticComponent<GlassLinkButtonProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
11
|
+
export { GlassLinkButton };
|
|
12
|
+
export type { GlassLinkButtonProps };
|
|
13
|
+
//# sourceMappingURL=GlassLinkButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassLinkButton.d.ts","sourceRoot":"","sources":["../../../../src/components/website-components/GlassLinkButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAc,oBAAoB,EAAE,MAAM,OAAO,CAAC;AAGzD,UAAU,oBAAqB,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC5E,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,OAAO,CAAC;IAC5C,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,MAAM,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;IACvD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,QAAA,MAAM,eAAe,gGAmEpB,CAAC;AAIF,OAAO,EAAE,eAAe,EAAE,CAAC;AAC3B,YAAY,EAAE,oBAAoB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassPrismComparison.d.ts","sourceRoot":"","sources":["../../../../src/components/website-components/GlassPrismComparison.tsx"],"names":[],"mappings":"AAoFA,wBAAgB,oBAAoB,4CAwWnC"}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const SLIDER_PRESETS: {
|
|
3
|
+
readonly BEFORE_ONLY: 0;
|
|
4
|
+
readonly QUARTER: 25;
|
|
5
|
+
readonly HALF: 50;
|
|
6
|
+
readonly THREE_QUARTER: 75;
|
|
7
|
+
readonly AFTER_ONLY: 100;
|
|
8
|
+
};
|
|
9
|
+
type PresetPosition = typeof SLIDER_PRESETS[keyof typeof SLIDER_PRESETS];
|
|
10
|
+
export interface SliderMetric {
|
|
11
|
+
label: string;
|
|
12
|
+
beforeValue: string | number;
|
|
13
|
+
afterValue: string | number;
|
|
14
|
+
unit?: string;
|
|
15
|
+
format?: 'number' | 'percentage' | 'currency' | 'time';
|
|
16
|
+
highlight?: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface ComparisonLabels {
|
|
19
|
+
before: string;
|
|
20
|
+
after: string;
|
|
21
|
+
beforeDescription?: string;
|
|
22
|
+
afterDescription?: string;
|
|
23
|
+
}
|
|
24
|
+
interface GlassWipeSliderProps {
|
|
25
|
+
beforeContent: React.ReactNode;
|
|
26
|
+
afterContent: React.ReactNode;
|
|
27
|
+
className?: string;
|
|
28
|
+
initialPosition?: number;
|
|
29
|
+
orientation?: 'horizontal' | 'vertical';
|
|
30
|
+
enableSnapping?: boolean;
|
|
31
|
+
snapThreshold?: number;
|
|
32
|
+
enableMomentum?: boolean;
|
|
33
|
+
momentumMultiplier?: number;
|
|
34
|
+
debounceMs?: number;
|
|
35
|
+
handleSize?: 'sm' | 'md' | 'lg';
|
|
36
|
+
showLabels?: boolean;
|
|
37
|
+
showProgress?: boolean;
|
|
38
|
+
showMetrics?: boolean;
|
|
39
|
+
labels?: ComparisonLabels;
|
|
40
|
+
metrics?: SliderMetric[];
|
|
41
|
+
trackStyle?: 'default' | 'minimal' | 'bold';
|
|
42
|
+
gradientOverlay?: boolean;
|
|
43
|
+
height?: string | number;
|
|
44
|
+
minHeight?: string | number;
|
|
45
|
+
onPositionChange?: (position: number) => void;
|
|
46
|
+
onSnapToPreset?: (preset: PresetPosition) => void;
|
|
47
|
+
onDragStart?: () => void;
|
|
48
|
+
onDragEnd?: () => void;
|
|
49
|
+
}
|
|
50
|
+
export declare const GlassWipeSlider: React.MemoExoticComponent<({ beforeContent, afterContent, className, initialPosition, orientation, enableSnapping, snapThreshold, enableMomentum, momentumMultiplier, debounceMs, handleSize, showLabels, showProgress, showMetrics, labels, metrics, trackStyle, gradientOverlay, height, minHeight, onPositionChange, onSnapToPreset, onDragStart, onDragEnd, }: GlassWipeSliderProps) => import("react/jsx-runtime").JSX.Element>;
|
|
51
|
+
export declare function ComparisonImage({ src, alt, className, loading }: {
|
|
52
|
+
src: string;
|
|
53
|
+
alt: string;
|
|
54
|
+
className?: string;
|
|
55
|
+
loading?: 'lazy' | 'eager';
|
|
56
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
57
|
+
export declare function ComparisonContent({ children, className, background }: {
|
|
58
|
+
children: React.ReactNode;
|
|
59
|
+
className?: string;
|
|
60
|
+
background?: 'gradient' | 'solid' | 'glass' | 'transparent';
|
|
61
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
62
|
+
export declare function FeatureComparison({ beforeFeatures, afterFeatures, title, className }: {
|
|
63
|
+
beforeFeatures: Array<{
|
|
64
|
+
name: string;
|
|
65
|
+
available: boolean;
|
|
66
|
+
highlight?: boolean;
|
|
67
|
+
}>;
|
|
68
|
+
afterFeatures: Array<{
|
|
69
|
+
name: string;
|
|
70
|
+
available: boolean;
|
|
71
|
+
highlight?: boolean;
|
|
72
|
+
}>;
|
|
73
|
+
title?: string;
|
|
74
|
+
className?: string;
|
|
75
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
76
|
+
export declare function MetricsComparison({ metrics, title, className }: {
|
|
77
|
+
metrics: SliderMetric[];
|
|
78
|
+
title?: string;
|
|
79
|
+
className?: string;
|
|
80
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
81
|
+
export declare const AURAONE_COMPARISON_EXAMPLES: {
|
|
82
|
+
readonly SCALE_AI: {
|
|
83
|
+
readonly labels: {
|
|
84
|
+
readonly before: "Scale AI";
|
|
85
|
+
readonly after: "AuraOne";
|
|
86
|
+
readonly beforeDescription: "Traditional approach";
|
|
87
|
+
readonly afterDescription: "Next-gen platform";
|
|
88
|
+
};
|
|
89
|
+
readonly metrics: readonly [{
|
|
90
|
+
readonly label: "Model Training Speed";
|
|
91
|
+
readonly beforeValue: "2-4";
|
|
92
|
+
readonly afterValue: "< 1";
|
|
93
|
+
readonly unit: " weeks";
|
|
94
|
+
readonly highlight: true;
|
|
95
|
+
}, {
|
|
96
|
+
readonly label: "Accuracy Improvement";
|
|
97
|
+
readonly beforeValue: "85";
|
|
98
|
+
readonly afterValue: "97";
|
|
99
|
+
readonly unit: "%";
|
|
100
|
+
readonly highlight: true;
|
|
101
|
+
}, {
|
|
102
|
+
readonly label: "Infrastructure Cost";
|
|
103
|
+
readonly beforeValue: "$10K";
|
|
104
|
+
readonly afterValue: "$2K";
|
|
105
|
+
readonly unit: "/month";
|
|
106
|
+
readonly highlight: true;
|
|
107
|
+
}, {
|
|
108
|
+
readonly label: "Setup Complexity";
|
|
109
|
+
readonly beforeValue: "High";
|
|
110
|
+
readonly afterValue: "Low";
|
|
111
|
+
readonly unit: "";
|
|
112
|
+
}];
|
|
113
|
+
};
|
|
114
|
+
readonly OPENAI_GYM: {
|
|
115
|
+
readonly labels: {
|
|
116
|
+
readonly before: "OpenAI Gym";
|
|
117
|
+
readonly after: "AuraOne";
|
|
118
|
+
readonly beforeDescription: "Research-focused";
|
|
119
|
+
readonly afterDescription: "Production-ready";
|
|
120
|
+
};
|
|
121
|
+
readonly metrics: readonly [{
|
|
122
|
+
readonly label: "Environment Setup";
|
|
123
|
+
readonly beforeValue: "Hours";
|
|
124
|
+
readonly afterValue: "Minutes";
|
|
125
|
+
readonly unit: "";
|
|
126
|
+
readonly highlight: true;
|
|
127
|
+
}, {
|
|
128
|
+
readonly label: "Scalability";
|
|
129
|
+
readonly beforeValue: "Limited";
|
|
130
|
+
readonly afterValue: "Unlimited";
|
|
131
|
+
readonly unit: "";
|
|
132
|
+
readonly highlight: true;
|
|
133
|
+
}, {
|
|
134
|
+
readonly label: "Production Features";
|
|
135
|
+
readonly beforeValue: "Basic";
|
|
136
|
+
readonly afterValue: "Enterprise";
|
|
137
|
+
readonly unit: "";
|
|
138
|
+
readonly highlight: true;
|
|
139
|
+
}];
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
export {};
|
|
143
|
+
//# sourceMappingURL=GlassWipeSlider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassWipeSlider.d.ts","sourceRoot":"","sources":["../../../../src/components/website-components/GlassWipeSlider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAkC1B,eAAO,MAAM,cAAc;;;;;;CAMjB,CAAC;AAEX,KAAK,cAAc,GAAG,OAAO,cAAc,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAEzE,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,GAAG,MAAM,CAAC;IAC7B,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,QAAQ,GAAG,YAAY,GAAG,UAAU,GAAG,MAAM,CAAC;IACvD,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,UAAU,oBAAoB;IAE5B,aAAa,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,YAAY,EAAE,KAAK,CAAC,SAAS,CAAC;IAG9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IAGxC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IAGpB,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAChC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAGzB,UAAU,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,MAAM,CAAC;IAC5C,eAAe,CAAC,EAAE,OAAO,CAAC;IAG1B,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAG5B,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAC;IAClD,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB;AAwqBD,eAAO,MAAM,eAAe,qWA7oBzB,oBAAoB,6CA6oBsC,CAAC;AAG9D,wBAAgB,eAAe,CAAC,EAC9B,GAAG,EACH,GAAG,EACH,SAAS,EACT,OAAgB,EACjB,EAAE;IACD,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CAC5B,2CAWA;AAED,wBAAgB,iBAAiB,CAAC,EAChC,QAAQ,EACR,SAAS,EACT,UAAuB,EACxB,EAAE;IACD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,aAAa,CAAC;CAC7D,2CAiBA;AAGD,wBAAgB,iBAAiB,CAAC,EAChC,cAAc,EACd,aAAa,EACb,KAAK,EACL,SAAS,EACV,EAAE;IACD,cAAc,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,OAAO,CAAC;QAAC,SAAS,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC,CAAC;IACjF,aAAa,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,OAAO,CAAC;QAAC,SAAS,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC,CAAC;IAChF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,2CAwCA;AAGD,wBAAgB,iBAAiB,CAAC,EAChC,OAAO,EACP,KAAK,EACL,SAAS,EACV,EAAE;IACD,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,2CAuCA;AAGD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqE9B,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare function AuraOneVsScaleAIComparison({ className }: {
|
|
3
|
+
className?: string;
|
|
4
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare function VerticalFeatureComparison({ className }: {
|
|
6
|
+
className?: string;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function PerformanceMetricsComparison({ className }: {
|
|
9
|
+
className?: string;
|
|
10
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare function ImageBeforeAfterComparison({ className }: {
|
|
12
|
+
className?: string;
|
|
13
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare function PresetPositionDemo({ className }: {
|
|
15
|
+
className?: string;
|
|
16
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export declare function GlassWipeSliderShowcase({ className }: {
|
|
18
|
+
className?: string;
|
|
19
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export interface GlassWipeSliderExamplesProps {
|
|
21
|
+
className?: string;
|
|
22
|
+
children?: React.ReactNode;
|
|
23
|
+
}
|
|
24
|
+
export declare function GlassWipeSliderExamples({ className, children }: GlassWipeSliderExamplesProps): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
//# sourceMappingURL=GlassWipeSliderExamples.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassWipeSliderExamples.d.ts","sourceRoot":"","sources":["../../../../src/components/website-components/GlassWipeSliderExamples.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAkBjD,wBAAgB,0BAA0B,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,2CAgE/E;AAGD,wBAAgB,yBAAyB,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,2CA2D9E;AAGD,wBAAgB,4BAA4B,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,2CAkHjF;AAGD,wBAAgB,0BAA0B,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,2CAyC/E;AAGD,wBAAgB,kBAAkB,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,2CAmHvE;AAGD,wBAAgB,uBAAuB,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,2CA2B5E;AAGD,MAAM,WAAW,4BAA4B;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,wBAAgB,uBAAuB,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,4BAA4B,2CAO5F"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { motion } from 'framer-motion';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
interface MotionAwareGlassProps extends Omit<React.ComponentProps<typeof motion.div>, 'variants' | 'initial' | 'animate' | 'whileHover' | 'whileTap'> {
|
|
4
|
+
variant?: 'base' | 'subtle' | 'strong' | 'card' | 'button' | 'input';
|
|
5
|
+
interactive?: boolean;
|
|
6
|
+
animationType?: 'fadeInUp' | 'fadeInScale' | 'slideLeft' | 'slideRight';
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
className?: string;
|
|
9
|
+
asButton?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Motion-aware Glass component that automatically respects user's motion preferences
|
|
14
|
+
* Provides beautiful glass morphism effects while being fully accessible
|
|
15
|
+
*/
|
|
16
|
+
export declare const MotionAwareGlass: React.ForwardRefExoticComponent<Omit<MotionAwareGlassProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
export declare const MotionAwareGlassCard: React.ForwardRefExoticComponent<Omit<Omit<MotionAwareGlassProps, "variant">, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
export declare const MotionAwareGlassButton: React.ForwardRefExoticComponent<Omit<Omit<MotionAwareGlassProps, "variant" | "interactive" | "asButton">, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
export declare const MotionAwareGlassInput: React.ForwardRefExoticComponent<Omit<Omit<MotionAwareGlassProps, "variant">, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
export declare const useMotionAwareGlassStyles: () => {
|
|
21
|
+
getGlassStyle: (variant?: MotionAwareGlassProps['variant']) => React.CSSProperties;
|
|
22
|
+
prefersReducedMotion: boolean;
|
|
23
|
+
};
|
|
24
|
+
export default MotionAwareGlass;
|
|
25
|
+
//# sourceMappingURL=MotionAwareGlass.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MotionAwareGlass.d.ts","sourceRoot":"","sources":["../../../../src/components/website-components/MotionAwareGlass.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,KAAqB,MAAM,OAAO,CAAC;AAG1C,UAAU,qBAAsB,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,MAAM,CAAC,GAAG,CAAC,EAAE,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,YAAY,GAAG,UAAU,CAAC;IACnJ,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACrE,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,aAAa,CAAC,EAAE,UAAU,GAAG,aAAa,GAAG,WAAW,GAAG,YAAY,CAAC;IACxE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED;;;GAGG;AACH,eAAO,MAAM,gBAAgB,2GAmJ5B,CAAC;AAKF,eAAO,MAAM,oBAAoB,4HAIhC,CAAC;AAGF,eAAO,MAAM,sBAAsB,yJAIlC,CAAC;AAGF,eAAO,MAAM,qBAAqB,4HAIjC,CAAC;AAIF,eAAO,MAAM,yBAAyB,EAAE,MAAM;IAC5C,aAAa,EAAE,CAAC,OAAO,CAAC,EAAE,qBAAqB,CAAC,SAAS,CAAC,KAAK,KAAK,CAAC,aAAa,CAAC;IACnF,oBAAoB,EAAE,OAAO,CAAC;CA0B/B,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|