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":"GlassAlert.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassAlert.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAqB1B,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC3E,oBAAoB;IACpB,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,aAAa,CAAC;IAC/E,iBAAiB;IACjB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,sBAAsB;IACtB,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IACtD,mCAAmC;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,6BAA6B;IAC7B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,uCAAuC;IACvC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB,kCAAkC;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,wBAAwB;IACxB,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC3D,sBAAsB;IACtB,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC7F,yBAAyB;IACzB,MAAM,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,UAAU,CAAC;IACnF,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,SAAS,GAAG,aAAa,GAAG,YAAY,GAAG,SAAS,GAAG,YAAY,CAAC;IAC/E,sBAAsB;IACtB,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,CAAC;IACjE,uBAAuB;IACvB,eAAe,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;IACtD,wCAAwC;IACxC,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,gCAAgC;IAChC,WAAW,CAAC,EAAE,QAAQ,GAAG,WAAW,GAAG,KAAK,CAAC;CAC9C;AAED,QAAA,MAAM,UAAU,wFAoIf,CAAC;AAIF,MAAM,WAAW,oBAAqB,SAAQ,KAAK,CAAC,cAAc,CAAC,kBAAkB,CAAC;IACpF,yBAAyB;IACzB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC3B;AAED,QAAA,MAAM,eAAe,mGAoBpB,CAAC;AAIF,MAAM,WAAW,0BAA2B,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACtF,+BAA+B;IAC/B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC3B;AAED,QAAA,MAAM,qBAAqB,yGAoB1B,CAAC;AAIF,MAAM,WAAW,sBAAuB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAClF,wBAAwB;IACxB,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IACpC,sBAAsB;IACtB,OAAO,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC9B;AAED,QAAA,MAAM,iBAAiB,+FA2BtB,CAAC;AAIF,OAAO,EACL,UAAU,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,eAAe,EACtE,CAAC;AAGF,OAAO,EACL,UAAU,IAAI,KAAK,EAAE,iBAAiB,IAAI,YAAY,EAAE,qBAAqB,IAAI,gBAAgB,EAAE,eAAe,IAAI,UAAU,EACjI,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassAnimatedNumberProps {
|
|
3
|
+
/** The target number to animate to */
|
|
4
|
+
value: number;
|
|
5
|
+
/** Starting value for animation */
|
|
6
|
+
from?: number;
|
|
7
|
+
/** Animation duration in milliseconds */
|
|
8
|
+
duration?: number;
|
|
9
|
+
/** Animation easing function */
|
|
10
|
+
easing?: 'linear' | 'easeIn' | 'easeOut' | 'easeInOut';
|
|
11
|
+
/** Number of decimal places to show */
|
|
12
|
+
decimals?: number;
|
|
13
|
+
/** Whether to use comma separators */
|
|
14
|
+
separator?: boolean;
|
|
15
|
+
/** Prefix to show before the number */
|
|
16
|
+
prefix?: string;
|
|
17
|
+
/** Suffix to show after the number */
|
|
18
|
+
suffix?: string;
|
|
19
|
+
/** Custom formatter function */
|
|
20
|
+
formatter?: (value: number) => string;
|
|
21
|
+
/** Whether to animate on value change */
|
|
22
|
+
animateOnChange?: boolean;
|
|
23
|
+
/** Custom className */
|
|
24
|
+
className?: string;
|
|
25
|
+
/** Font size */
|
|
26
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
27
|
+
/** Animation variant */
|
|
28
|
+
variant?: 'count' | 'scale' | 'glow';
|
|
29
|
+
/** Respect user's motion preferences */
|
|
30
|
+
respectMotionPreference?: boolean;
|
|
31
|
+
/** ARIA label for the animated number */
|
|
32
|
+
'aria-label'?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare const GlassAnimatedNumber: React.ForwardRefExoticComponent<GlassAnimatedNumberProps & React.RefAttributes<HTMLDivElement>>;
|
|
35
|
+
export declare const GlassAnimatedCounter: React.FC<{
|
|
36
|
+
value: number;
|
|
37
|
+
label?: string;
|
|
38
|
+
from?: number;
|
|
39
|
+
duration?: number;
|
|
40
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
41
|
+
className?: string;
|
|
42
|
+
}>;
|
|
43
|
+
export declare const GlassAnimatedStat: React.FC<{
|
|
44
|
+
value: number;
|
|
45
|
+
total?: number;
|
|
46
|
+
label?: string;
|
|
47
|
+
showPercentage?: boolean;
|
|
48
|
+
duration?: number;
|
|
49
|
+
className?: string;
|
|
50
|
+
}>;
|
|
51
|
+
export declare const useAnimatedNumber: (targetValue: number, options?: {
|
|
52
|
+
duration?: number;
|
|
53
|
+
easing?: "linear" | "easeIn" | "easeOut" | "easeInOut";
|
|
54
|
+
decimals?: number;
|
|
55
|
+
}) => {
|
|
56
|
+
value: number;
|
|
57
|
+
isAnimating: boolean;
|
|
58
|
+
animateTo: (newValue: number) => void;
|
|
59
|
+
};
|
|
60
|
+
//# sourceMappingURL=GlassAnimatedNumber.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassAnimatedNumber.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassAnimatedNumber.tsx"],"names":[],"mappings":"AACA,OAAO,KAAuE,MAAM,OAAO,CAAC;AAG5F,MAAM,WAAW,wBAAwB;IACvC,sCAAsC;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,mCAAmC;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,yCAAyC;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gCAAgC;IAChC,MAAM,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,CAAC;IACvD,uCAAuC;IACvC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,sCAAsC;IACtC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,uCAAuC;IACvC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,sCAAsC;IACtC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gCAAgC;IAChC,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IACtC,yCAAyC;IACzC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB;IAChB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACjC,wBAAwB;IACxB,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,MAAM,CAAC;IACrC,wCAAwC;IACxC,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,yCAAyC;IACzC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAUD,eAAO,MAAM,mBAAmB,iGA0I9B,CAAC;AAKH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC;IAC1C,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CA4BA,CAAC;AAGF,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC;IACvC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAsDA,CAAC;AAGF,eAAO,MAAM,iBAAiB,GAC5B,aAAa,MAAM,EACnB,UAAS;IACP,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,CAAC;IACvD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACd;;;0BAKuB,MAAM;CAiCpC,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassAvatarProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
|
3
|
+
/**
|
|
4
|
+
* Avatar variant
|
|
5
|
+
*/
|
|
6
|
+
variant?: 'default' | 'circle' | 'square' | 'glass-radius-md';
|
|
7
|
+
/**
|
|
8
|
+
* Avatar size
|
|
9
|
+
*/
|
|
10
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
11
|
+
/**
|
|
12
|
+
* Avatar status indicator
|
|
13
|
+
*/
|
|
14
|
+
status?: 'online' | 'offline' | 'away' | 'busy';
|
|
15
|
+
/**
|
|
16
|
+
* Show status indicator
|
|
17
|
+
*/
|
|
18
|
+
showStatus?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Glass elevation
|
|
21
|
+
*/
|
|
22
|
+
elevation?: 1 | 2 | 3;
|
|
23
|
+
/**
|
|
24
|
+
* Custom fallback content
|
|
25
|
+
*/
|
|
26
|
+
fallback?: React.ReactNode;
|
|
27
|
+
/**
|
|
28
|
+
* Fallback text (will generate initials)
|
|
29
|
+
*/
|
|
30
|
+
fallbackText?: string;
|
|
31
|
+
/**
|
|
32
|
+
* ARIA label for the avatar
|
|
33
|
+
*/
|
|
34
|
+
'aria-label'?: string;
|
|
35
|
+
}
|
|
36
|
+
export interface GlassAvatarGroupProps {
|
|
37
|
+
/**
|
|
38
|
+
* Maximum number of avatars to show
|
|
39
|
+
*/
|
|
40
|
+
max?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Spacing between avatars
|
|
43
|
+
*/
|
|
44
|
+
spacing?: 'tight' | 'normal' | 'loose';
|
|
45
|
+
/**
|
|
46
|
+
* Avatar size for group
|
|
47
|
+
*/
|
|
48
|
+
size?: GlassAvatarProps['size'];
|
|
49
|
+
/**
|
|
50
|
+
* Children (GlassAvatar components)
|
|
51
|
+
*/
|
|
52
|
+
children: React.ReactNode;
|
|
53
|
+
}
|
|
54
|
+
export interface GlassAvatarFallbackProps {
|
|
55
|
+
/**
|
|
56
|
+
* Delay before showing fallback (ms)
|
|
57
|
+
*/
|
|
58
|
+
delayMs?: number;
|
|
59
|
+
/**
|
|
60
|
+
* Children content
|
|
61
|
+
*/
|
|
62
|
+
children: React.ReactNode;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* GlassAvatar component
|
|
66
|
+
* A glassmorphism avatar with status indicators and fallbacks
|
|
67
|
+
*/
|
|
68
|
+
export declare const GlassAvatar: React.ForwardRefExoticComponent<GlassAvatarProps & React.RefAttributes<HTMLImageElement>>;
|
|
69
|
+
/**
|
|
70
|
+
* GlassAvatarGroup component
|
|
71
|
+
* Groups multiple avatars with overlap and max display
|
|
72
|
+
*/
|
|
73
|
+
export declare const GlassAvatarGroup: React.FC<GlassAvatarGroupProps>;
|
|
74
|
+
/**
|
|
75
|
+
* GlassAvatarFallback component
|
|
76
|
+
* Shows fallback content with optional delay
|
|
77
|
+
*/
|
|
78
|
+
export declare const GlassAvatarFallback: React.FC<GlassAvatarFallbackProps>;
|
|
79
|
+
//# sourceMappingURL=GlassAvatar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassAvatar.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassAvatar.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAI1C,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC;IAC/E;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,iBAAiB,CAAC;IAC9D;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;IAChD;;OAEG;IACH,MAAM,CAAC,EAAE,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;IAChD;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACvC;;OAEG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAChC;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED;;;GAGG;AACH,eAAO,MAAM,WAAW,2FAgJvB,CAAC;AAIF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA0C5D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CAsBlE,CAAC"}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassBadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
3
|
+
/**
|
|
4
|
+
* Badge variant
|
|
5
|
+
*/
|
|
6
|
+
variant?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'outline' | 'ghost' | (string & {});
|
|
7
|
+
/**
|
|
8
|
+
* Badge size
|
|
9
|
+
*/
|
|
10
|
+
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
11
|
+
/**
|
|
12
|
+
* Badge shape
|
|
13
|
+
*/
|
|
14
|
+
shape?: 'glass-radius-md' | 'pill' | 'square';
|
|
15
|
+
/**
|
|
16
|
+
* Whether badge has a dot indicator
|
|
17
|
+
*/
|
|
18
|
+
dot?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Left icon
|
|
21
|
+
*/
|
|
22
|
+
leftIcon?: React.ReactNode;
|
|
23
|
+
/**
|
|
24
|
+
* Right icon
|
|
25
|
+
*/
|
|
26
|
+
rightIcon?: React.ReactNode;
|
|
27
|
+
/**
|
|
28
|
+
* Whether badge is removable
|
|
29
|
+
*/
|
|
30
|
+
removable?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Remove callback
|
|
33
|
+
*/
|
|
34
|
+
onRemove?: () => void;
|
|
35
|
+
/**
|
|
36
|
+
* Animation on mount
|
|
37
|
+
*/
|
|
38
|
+
animate?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Animation preset
|
|
41
|
+
*/
|
|
42
|
+
animation?: 'scale' | 'fade' | 'bounce';
|
|
43
|
+
/**
|
|
44
|
+
* Respect user's motion preferences
|
|
45
|
+
*/
|
|
46
|
+
respectMotionPreference?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* ARIA label for the badge
|
|
49
|
+
*/
|
|
50
|
+
'aria-label'?: string;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* GlassBadge component
|
|
54
|
+
* A glassmorphism badge with various styles and states
|
|
55
|
+
*/
|
|
56
|
+
export declare const GlassBadge: React.ForwardRefExoticComponent<GlassBadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
57
|
+
/**
|
|
58
|
+
* StatusBadge component
|
|
59
|
+
*/
|
|
60
|
+
export interface StatusBadgeProps extends Omit<GlassBadgeProps, 'variant' | 'dot'> {
|
|
61
|
+
/**
|
|
62
|
+
* Status type
|
|
63
|
+
*/
|
|
64
|
+
status: 'online' | 'offline' | 'away' | 'busy' | 'pending' | 'active' | 'inactive';
|
|
65
|
+
/**
|
|
66
|
+
* Whether to show as dot only
|
|
67
|
+
*/
|
|
68
|
+
dotOnly?: boolean;
|
|
69
|
+
}
|
|
70
|
+
export declare const StatusBadge: React.ForwardRefExoticComponent<StatusBadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
71
|
+
/**
|
|
72
|
+
* CountBadge component
|
|
73
|
+
*/
|
|
74
|
+
export interface CountBadgeProps extends Omit<GlassBadgeProps, 'children'> {
|
|
75
|
+
/**
|
|
76
|
+
* Count value
|
|
77
|
+
*/
|
|
78
|
+
count: number;
|
|
79
|
+
/**
|
|
80
|
+
* Maximum count to display
|
|
81
|
+
*/
|
|
82
|
+
max?: number;
|
|
83
|
+
/**
|
|
84
|
+
* Whether to show zero count
|
|
85
|
+
*/
|
|
86
|
+
showZero?: boolean;
|
|
87
|
+
}
|
|
88
|
+
export declare const CountBadge: React.ForwardRefExoticComponent<CountBadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
89
|
+
/**
|
|
90
|
+
* BadgeGroup component
|
|
91
|
+
*/
|
|
92
|
+
export interface BadgeGroupProps {
|
|
93
|
+
/**
|
|
94
|
+
* Badges to display
|
|
95
|
+
*/
|
|
96
|
+
badges: Array<{
|
|
97
|
+
id: string;
|
|
98
|
+
label: string;
|
|
99
|
+
variant?: GlassBadgeProps['variant'];
|
|
100
|
+
removable?: boolean;
|
|
101
|
+
onRemove?: () => void;
|
|
102
|
+
}>;
|
|
103
|
+
/**
|
|
104
|
+
* Maximum badges to show
|
|
105
|
+
*/
|
|
106
|
+
max?: number;
|
|
107
|
+
/**
|
|
108
|
+
* Spacing between badges
|
|
109
|
+
*/
|
|
110
|
+
spacing?: 'tight' | 'normal' | 'relaxed';
|
|
111
|
+
/**
|
|
112
|
+
* Whether badges wrap to new lines
|
|
113
|
+
*/
|
|
114
|
+
wrap?: boolean;
|
|
115
|
+
className?: string;
|
|
116
|
+
}
|
|
117
|
+
export declare function BadgeGroup({ badges, max, spacing, wrap, className, }: BadgeGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
118
|
+
//# sourceMappingURL=GlassBadge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassBadge.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassBadge.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAM1C,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;IAC5E;;OAEG;IACH,OAAO,CAAC,EACN,SAAS,GACT,SAAS,GACT,WAAW,GACX,SAAS,GACT,SAAS,GACT,OAAO,GACP,MAAM,GACN,SAAS,GACT,OAAO,GACP,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACjC;;OAEG;IACH,KAAK,CAAC,EAAE,iBAAiB,GAAG,MAAM,GAAG,QAAQ,CAAC;IAC9C;;OAEG;IACH,GAAG,CAAC,EAAE,OAAO,CAAC;IACd;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC5B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,CAAC;IACxC;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,eAAO,MAAM,UAAU,yFAuLtB,CAAC;AAIF;;GAEG;AACH,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,eAAe,EAAE,SAAS,GAAG,KAAK,CAAC;IAChF;;OAEG;IACH,MAAM,EAAE,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,UAAU,CAAC;IACnF;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,WAAW,0FAyBvB,CAAC;AAIF;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,IAAI,CAAC,eAAe,EAAE,UAAU,CAAC;IACxE;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,UAAU,yFAoBtB,CAAC;AAIF;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC;QACZ,EAAE,EAAE,MAAM,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,CAAC;QACrC,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;KACvB,CAAC,CAAC;IACH;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,SAAS,CAAC;IACzC;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,UAAU,CAAC,EACzB,MAAM,EACN,GAAG,EACH,OAAkB,EAClB,IAAW,EACX,SAAS,GACV,EAAE,eAAe,2CAsCjB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassBadgeLineProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
items: {
|
|
4
|
+
label: string;
|
|
5
|
+
intent?: 'default' | 'success' | 'warning' | 'danger';
|
|
6
|
+
}[];
|
|
7
|
+
className?: string;
|
|
8
|
+
/** ARIA label for the badge line */
|
|
9
|
+
'aria-label'?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const GlassBadgeLine: React.ForwardRefExoticComponent<GlassBadgeLineProps & React.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
export default GlassBadgeLine;
|
|
13
|
+
//# sourceMappingURL=GlassBadgeLine.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassBadgeLine.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassBadgeLine.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAI1C,MAAM,WAAW,mBAAoB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC/E,KAAK,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAA;KAAE,EAAE,CAAC;IAClF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oCAAoC;IACpC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,eAAO,MAAM,cAAc,4FAmCzB,CAAC;AAIH,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassChipProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onSelect'> {
|
|
3
|
+
/** Chip content */
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
/** Visual variant */
|
|
6
|
+
variant?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'outline' | 'filled';
|
|
7
|
+
/** Size of the chip */
|
|
8
|
+
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
9
|
+
/** Whether the chip is removable */
|
|
10
|
+
removable?: boolean;
|
|
11
|
+
/** Whether the chip is selected/active */
|
|
12
|
+
selected?: boolean;
|
|
13
|
+
/** Whether the chip is disabled */
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
/** Whether the chip is clickable */
|
|
16
|
+
clickable?: boolean;
|
|
17
|
+
/** Left icon or avatar */
|
|
18
|
+
avatar?: React.ReactNode;
|
|
19
|
+
/** Left icon */
|
|
20
|
+
icon?: React.ReactNode;
|
|
21
|
+
/** Custom remove icon */
|
|
22
|
+
removeIcon?: React.ReactNode;
|
|
23
|
+
/** Remove handler */
|
|
24
|
+
onRemove?: (event: React.MouseEvent) => void;
|
|
25
|
+
/** Selection handler */
|
|
26
|
+
onSelect?: (selected: boolean) => void;
|
|
27
|
+
/** Click handler */
|
|
28
|
+
onClick?: (event: React.MouseEvent) => void;
|
|
29
|
+
/** Respect user's motion preferences */
|
|
30
|
+
respectMotionPreference?: boolean;
|
|
31
|
+
}
|
|
32
|
+
export declare const GlassChip: React.ForwardRefExoticComponent<GlassChipProps & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
export interface GlassChipGroupProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
34
|
+
/** Array of chip data */
|
|
35
|
+
chips: Array<{
|
|
36
|
+
id: string;
|
|
37
|
+
label: React.ReactNode;
|
|
38
|
+
value?: string;
|
|
39
|
+
removable?: boolean;
|
|
40
|
+
disabled?: boolean;
|
|
41
|
+
avatar?: React.ReactNode;
|
|
42
|
+
icon?: React.ReactNode;
|
|
43
|
+
}>;
|
|
44
|
+
/** Selection mode */
|
|
45
|
+
selectionMode?: 'none' | 'single' | 'multiple';
|
|
46
|
+
/** Selected values */
|
|
47
|
+
selectedValues?: string[];
|
|
48
|
+
/** Default selected values */
|
|
49
|
+
defaultSelectedValues?: string[];
|
|
50
|
+
/** Selection change handler */
|
|
51
|
+
onChange?: (selectedValues: string[]) => void;
|
|
52
|
+
/** Chip remove handler */
|
|
53
|
+
onRemove?: (chipId: string) => void;
|
|
54
|
+
/** Chip size */
|
|
55
|
+
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
56
|
+
/** Chip variant */
|
|
57
|
+
variant?: GlassChipProps['variant'];
|
|
58
|
+
/** Spacing between chips */
|
|
59
|
+
spacing?: 'tight' | 'normal' | 'relaxed';
|
|
60
|
+
/** Whether chips should wrap */
|
|
61
|
+
wrap?: boolean;
|
|
62
|
+
/** Respect user's motion preferences */
|
|
63
|
+
respectMotionPreference?: boolean;
|
|
64
|
+
}
|
|
65
|
+
export declare const GlassChipGroup: React.ForwardRefExoticComponent<GlassChipGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
66
|
+
export default GlassChip;
|
|
67
|
+
//# sourceMappingURL=GlassChip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassChip.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassChip.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassDataGrid.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassDataGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkG,MAAM,OAAO,CAAC;AACvH,OAAO,EAAE,kBAAkB,EAA+B,MAAM,SAAS,CAAC;AA6H1E,eAAO,MAAM,aAAa,2FAwMzB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface GlassDataGridProProps<T = any> {
|
|
2
|
+
columns: any[];
|
|
3
|
+
rows: T[];
|
|
4
|
+
grouping?: string[];
|
|
5
|
+
density?: 'compact' | 'normal' | 'spacious';
|
|
6
|
+
}
|
|
7
|
+
export declare function GlassDataGridPro<T = any>({ columns, rows }: GlassDataGridProProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default GlassDataGridPro;
|
|
9
|
+
//# sourceMappingURL=GlassDataGridPro.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassDataGridPro.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassDataGridPro.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,qBAAqB,CAAC,CAAC,GAAC,GAAG;IAC1C,OAAO,EAAE,GAAG,EAAE,CAAC;IACf,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,CAAC,EAAE,SAAS,GAAC,QAAQ,GAAC,UAAU,CAAC;CACzC;AAGD,wBAAgB,gBAAgB,CAAC,CAAC,GAAC,GAAG,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE,qBAAqB,CAAC,CAAC,CAAC,2CAElF;AAED,eAAe,gBAAgB,CAAC"}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ConsciousnessFeatures } from '../layout/GlassContainer';
|
|
3
|
+
export interface ColumnDef<T = any> {
|
|
4
|
+
id?: string;
|
|
5
|
+
header: string | ((props: any) => React.ReactNode);
|
|
6
|
+
accessorKey?: string;
|
|
7
|
+
accessorFn?: (row: T) => any;
|
|
8
|
+
cell?: (props: {
|
|
9
|
+
row: T;
|
|
10
|
+
value: any;
|
|
11
|
+
}) => React.ReactNode;
|
|
12
|
+
sortable?: boolean;
|
|
13
|
+
filterable?: boolean;
|
|
14
|
+
width?: string | number;
|
|
15
|
+
align?: 'left' | 'center' | 'right';
|
|
16
|
+
enableSorting?: boolean;
|
|
17
|
+
enableHiding?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface SortState {
|
|
20
|
+
id: string;
|
|
21
|
+
desc: boolean;
|
|
22
|
+
}
|
|
23
|
+
export interface FilterState {
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
}
|
|
26
|
+
export interface GlassDataTableProps<T = any> extends ConsciousnessFeatures {
|
|
27
|
+
/**
|
|
28
|
+
* Table data
|
|
29
|
+
*/
|
|
30
|
+
data?: T[];
|
|
31
|
+
/**
|
|
32
|
+
* Column definitions
|
|
33
|
+
*/
|
|
34
|
+
columns: ColumnDef<T>[];
|
|
35
|
+
/**
|
|
36
|
+
* Loading state
|
|
37
|
+
*/
|
|
38
|
+
loading?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Empty state message
|
|
41
|
+
*/
|
|
42
|
+
emptyMessage?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Table variant
|
|
45
|
+
*/
|
|
46
|
+
variant?: 'default' | 'striped' | 'bordered' | 'minimal';
|
|
47
|
+
/**
|
|
48
|
+
* Table size
|
|
49
|
+
*/
|
|
50
|
+
size?: 'sm' | 'md' | 'lg';
|
|
51
|
+
/**
|
|
52
|
+
* Enable sorting
|
|
53
|
+
*/
|
|
54
|
+
sortable?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Enable filtering
|
|
57
|
+
*/
|
|
58
|
+
filterable?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Enable search
|
|
61
|
+
*/
|
|
62
|
+
searchable?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Search placeholder
|
|
65
|
+
*/
|
|
66
|
+
searchPlaceholder?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Enable pagination
|
|
69
|
+
*/
|
|
70
|
+
pagination?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Page size options
|
|
73
|
+
*/
|
|
74
|
+
pageSizeOptions?: number[];
|
|
75
|
+
/**
|
|
76
|
+
* Initial page size
|
|
77
|
+
*/
|
|
78
|
+
initialPageSize?: number;
|
|
79
|
+
/**
|
|
80
|
+
* Enable row selection
|
|
81
|
+
*/
|
|
82
|
+
selectable?: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Selection mode
|
|
85
|
+
*/
|
|
86
|
+
selectionMode?: 'single' | 'multiple';
|
|
87
|
+
/**
|
|
88
|
+
* Selected rows
|
|
89
|
+
*/
|
|
90
|
+
selectedRows?: string[];
|
|
91
|
+
/**
|
|
92
|
+
* Selection change handler
|
|
93
|
+
*/
|
|
94
|
+
onSelectionChange?: (selectedRows: string[]) => void;
|
|
95
|
+
/**
|
|
96
|
+
* Row click handler
|
|
97
|
+
*/
|
|
98
|
+
onRowClick?: (row: T) => void;
|
|
99
|
+
/**
|
|
100
|
+
* Get row ID
|
|
101
|
+
*/
|
|
102
|
+
getRowId?: (row: T, index?: number) => string;
|
|
103
|
+
/**
|
|
104
|
+
* Custom row props
|
|
105
|
+
*/
|
|
106
|
+
getRowProps?: (row: T) => React.HTMLAttributes<HTMLTableRowElement>;
|
|
107
|
+
/**
|
|
108
|
+
* Sticky header
|
|
109
|
+
*/
|
|
110
|
+
stickyHeader?: boolean;
|
|
111
|
+
/**
|
|
112
|
+
* Table actions
|
|
113
|
+
*/
|
|
114
|
+
actions?: React.ReactNode;
|
|
115
|
+
className?: string;
|
|
116
|
+
/**
|
|
117
|
+
* Optional per-column cell renderers by column id or accessorKey
|
|
118
|
+
*/
|
|
119
|
+
cellRenderers?: Record<string, (value: any, row: T) => React.ReactNode>;
|
|
120
|
+
/**
|
|
121
|
+
* Optional rich empty state
|
|
122
|
+
*/
|
|
123
|
+
emptyState?: {
|
|
124
|
+
icon?: React.ReactNode;
|
|
125
|
+
message?: string;
|
|
126
|
+
description?: string;
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* GlassDataTable component
|
|
131
|
+
* A comprehensive data table with glassmorphism styling
|
|
132
|
+
*/
|
|
133
|
+
export declare const GlassDataTable: <T = any>(props: GlassDataTableProps<T> & {
|
|
134
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
135
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
136
|
+
/**
|
|
137
|
+
* Enhanced GlassDataTable with consciousness features enabled by default
|
|
138
|
+
* Use this for tables that should be intelligent and adaptive
|
|
139
|
+
*/
|
|
140
|
+
export declare const ConsciousGlassDataTable: <T = any>(props: GlassDataTableProps<T> & {
|
|
141
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
142
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
143
|
+
/**
|
|
144
|
+
* Predictive data table that learns user sorting and filtering patterns
|
|
145
|
+
*/
|
|
146
|
+
export declare const PredictiveDataTable: <T = any>(props: GlassDataTableProps<T> & {
|
|
147
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
148
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
149
|
+
/**
|
|
150
|
+
* Gaze-responsive data table with eye tracking for enhanced data exploration
|
|
151
|
+
*/
|
|
152
|
+
export declare const GazeResponsiveDataTable: <T = any>(props: GlassDataTableProps<T> & {
|
|
153
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
154
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
155
|
+
/**
|
|
156
|
+
* Accessibility-focused data table with biometric adaptation and spatial audio
|
|
157
|
+
*/
|
|
158
|
+
export declare const AccessibleDataTable: <T = any>(props: GlassDataTableProps<T> & {
|
|
159
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
160
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
161
|
+
/**
|
|
162
|
+
* Pre-configured consciousness data table presets
|
|
163
|
+
*/
|
|
164
|
+
export declare const DataTableConsciousnessPresets: {
|
|
165
|
+
/**
|
|
166
|
+
* Minimal consciousness features for performance-sensitive contexts
|
|
167
|
+
*/
|
|
168
|
+
readonly minimal: {
|
|
169
|
+
readonly predictive: true;
|
|
170
|
+
readonly trackAchievements: true;
|
|
171
|
+
};
|
|
172
|
+
/**
|
|
173
|
+
* Balanced consciousness features for general use
|
|
174
|
+
*/
|
|
175
|
+
readonly balanced: {
|
|
176
|
+
readonly predictive: true;
|
|
177
|
+
readonly adaptive: true;
|
|
178
|
+
readonly biometricResponsive: true;
|
|
179
|
+
readonly trackAchievements: true;
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* Full consciousness features for immersive data exploration
|
|
183
|
+
*/
|
|
184
|
+
readonly immersive: {
|
|
185
|
+
readonly predictive: true;
|
|
186
|
+
readonly preloadContent: true;
|
|
187
|
+
readonly eyeTracking: true;
|
|
188
|
+
readonly gazeResponsive: true;
|
|
189
|
+
readonly adaptive: true;
|
|
190
|
+
readonly biometricResponsive: true;
|
|
191
|
+
readonly spatialAudio: true;
|
|
192
|
+
readonly audioFeedback: true;
|
|
193
|
+
readonly trackAchievements: true;
|
|
194
|
+
};
|
|
195
|
+
/**
|
|
196
|
+
* Accessibility-focused consciousness features
|
|
197
|
+
*/
|
|
198
|
+
readonly accessible: {
|
|
199
|
+
readonly adaptive: true;
|
|
200
|
+
readonly biometricResponsive: true;
|
|
201
|
+
readonly spatialAudio: true;
|
|
202
|
+
readonly audioFeedback: true;
|
|
203
|
+
readonly trackAchievements: true;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
//# sourceMappingURL=GlassDataTable.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassDataTable.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassDataTable.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAwE,MAAM,OAAO,CAAC;AAU7F,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAEtE,MAAM,WAAW,SAAS,CAAC,CAAC,GAAG,GAAG;IAChC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE,GAAG,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IACnD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,GAAG,CAAC;IAC7B,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,GAAG,EAAE,CAAC,CAAC;QAAC,KAAK,EAAE,GAAG,CAAA;KAAE,KAAK,KAAK,CAAC,SAAS,CAAC;IAC1D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,OAAO,CAAC;CACf;AAED,MAAM,WAAW,WAAW;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB,CAAC,CAAC,GAAG,GAAG,CAAE,SAAQ,qBAAqB;IACzE;;OAEG;IACH,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC;IACX;;OAEG;IACH,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;IACxB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IACzD;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,aAAa,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;IACtC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB;;OAEG;IACH,iBAAiB,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IACrD;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,MAAM,KAAK,MAAM,CAAC;IAC9C;;OAEG;IACH,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,KAAK,CAAC,cAAc,CAAC,mBAAmB,CAAC,CAAC;IACpE;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IACxE;;OAEG;IACH,UAAU,CAAC,EAAE;QACX,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACvB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,WAAW,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;CACH;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,GAAI,CAAC,GAAG,GAAG,EAAG,OAAO,mBAAmB,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,4CAE3G,CAAC;AAynBF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,GAAI,CAAC,GAAG,GAAG,EAC7C,OAAO,mBAAmB,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,4CAWpE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB,GAAI,CAAC,GAAG,GAAG,EACzC,OAAO,mBAAmB,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,4CAUpE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAAI,CAAC,GAAG,GAAG,EAC7C,OAAO,mBAAmB,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,4CAYpE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB,GAAI,CAAC,GAAG,GAAG,EACzC,OAAO,mBAAmB,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;CAAE,4CAYpE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,6BAA6B;IACxC;;OAEG;;;;;IAMH;;OAEG;;;;;;;IAQH;;OAEG;;;;;;;;;;;;IAaH;;OAEG;;;;;;;;CAQK,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface GlassDiffViewerProps {
|
|
2
|
+
left: string;
|
|
3
|
+
right: string;
|
|
4
|
+
sideBySide?: boolean;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function GlassDiffViewer({ left, right, sideBySide, className }: GlassDiffViewerProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default GlassDiffViewer;
|
|
9
|
+
//# sourceMappingURL=GlassDiffViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassDiffViewer.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/GlassDiffViewer.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,eAAe,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,UAAiB,EAAE,SAAS,EAAE,EAAE,oBAAoB,2CAmBlG;AAED,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassDividerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/** Orientation of the divider */
|
|
4
|
+
orientation?: 'horizontal' | 'vertical';
|
|
5
|
+
/** Visual variant */
|
|
6
|
+
variant?: 'default' | 'gradient' | 'dashed' | 'dotted' | 'glow' | 'double';
|
|
7
|
+
/** Size/thickness of the divider */
|
|
8
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
9
|
+
/** Label/content to display in the middle */
|
|
10
|
+
label?: React.ReactNode;
|
|
11
|
+
/** Position of the label */
|
|
12
|
+
labelPosition?: 'left' | 'center' | 'right' | 'top' | 'bottom';
|
|
13
|
+
/** Color scheme */
|
|
14
|
+
color?: 'default' | 'primary' | 'secondary' | 'muted' | 'accent';
|
|
15
|
+
/** Opacity level */
|
|
16
|
+
opacity?: 'light' | 'medium' | 'strong';
|
|
17
|
+
/** Animation style */
|
|
18
|
+
animation?: 'none' | 'pulse' | 'shimmer' | 'glow';
|
|
19
|
+
/** Margin spacing */
|
|
20
|
+
spacing?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
21
|
+
/** Custom decorative elements */
|
|
22
|
+
startDecorator?: React.ReactNode;
|
|
23
|
+
endDecorator?: React.ReactNode;
|
|
24
|
+
/** Respect user's motion preferences */
|
|
25
|
+
respectMotionPreference?: boolean;
|
|
26
|
+
}
|
|
27
|
+
export declare const GlassDivider: React.ForwardRefExoticComponent<GlassDividerProps & React.RefAttributes<HTMLDivElement>>;
|
|
28
|
+
export declare const GlassTextDivider: React.ForwardRefExoticComponent<Omit<GlassDividerProps, "variant"> & {
|
|
29
|
+
text: string;
|
|
30
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
31
|
+
export declare const GlassIconDivider: React.ForwardRefExoticComponent<Omit<GlassDividerProps, "variant"> & {
|
|
32
|
+
icon: React.ReactNode;
|
|
33
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
export default GlassDivider;
|
|
35
|
+
//# sourceMappingURL=GlassDivider.d.ts.map
|