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,128 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassGridProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/**
|
|
4
|
+
* Number of columns (1-12)
|
|
5
|
+
*/
|
|
6
|
+
cols?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
7
|
+
/**
|
|
8
|
+
* Responsive column configuration
|
|
9
|
+
*/
|
|
10
|
+
responsive?: {
|
|
11
|
+
sm?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
12
|
+
md?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
13
|
+
lg?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
14
|
+
xl?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
15
|
+
'2xl'?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Gap between grid items
|
|
19
|
+
*/
|
|
20
|
+
gap?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
21
|
+
/**
|
|
22
|
+
* Horizontal gap
|
|
23
|
+
*/
|
|
24
|
+
gapX?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
25
|
+
/**
|
|
26
|
+
* Vertical gap
|
|
27
|
+
*/
|
|
28
|
+
gapY?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
29
|
+
/**
|
|
30
|
+
* Auto-fit columns with minimum width
|
|
31
|
+
*/
|
|
32
|
+
autoFit?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Minimum column width (for auto-fit)
|
|
35
|
+
*/
|
|
36
|
+
minColWidth?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Grid flow direction
|
|
39
|
+
*/
|
|
40
|
+
flow?: 'row' | 'col' | 'row-dense' | 'col-dense';
|
|
41
|
+
/**
|
|
42
|
+
* Alignment
|
|
43
|
+
*/
|
|
44
|
+
align?: 'start' | 'end' | 'center' | 'stretch';
|
|
45
|
+
/**
|
|
46
|
+
* Justify content
|
|
47
|
+
*/
|
|
48
|
+
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
|
|
49
|
+
/**
|
|
50
|
+
* Whether to respect user's motion preferences
|
|
51
|
+
*/
|
|
52
|
+
respectMotionPreference?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Accessibility label for screen readers
|
|
55
|
+
*/
|
|
56
|
+
'aria-label'?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Accessibility role for semantic meaning
|
|
59
|
+
*/
|
|
60
|
+
role?: string;
|
|
61
|
+
}
|
|
62
|
+
export interface GlassGridItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
63
|
+
/**
|
|
64
|
+
* Column span (1-12)
|
|
65
|
+
*/
|
|
66
|
+
colSpan?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full' | 'auto';
|
|
67
|
+
/**
|
|
68
|
+
* Row span
|
|
69
|
+
*/
|
|
70
|
+
rowSpan?: 1 | 2 | 3 | 4 | 5 | 6 | 'auto';
|
|
71
|
+
/**
|
|
72
|
+
* Responsive column span
|
|
73
|
+
*/
|
|
74
|
+
responsive?: {
|
|
75
|
+
sm?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full' | 'auto';
|
|
76
|
+
md?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full' | 'auto';
|
|
77
|
+
lg?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full' | 'auto';
|
|
78
|
+
xl?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full' | 'auto';
|
|
79
|
+
'2xl'?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full' | 'auto';
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Column start position
|
|
83
|
+
*/
|
|
84
|
+
colStart?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 'auto';
|
|
85
|
+
/**
|
|
86
|
+
* Column end position
|
|
87
|
+
*/
|
|
88
|
+
colEnd?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 'auto';
|
|
89
|
+
/**
|
|
90
|
+
* Row start position
|
|
91
|
+
*/
|
|
92
|
+
rowStart?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 'auto';
|
|
93
|
+
/**
|
|
94
|
+
* Row end position
|
|
95
|
+
*/
|
|
96
|
+
rowEnd?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 'auto';
|
|
97
|
+
/**
|
|
98
|
+
* Item alignment
|
|
99
|
+
*/
|
|
100
|
+
alignSelf?: 'auto' | 'start' | 'end' | 'center' | 'stretch';
|
|
101
|
+
/**
|
|
102
|
+
* Item justification
|
|
103
|
+
*/
|
|
104
|
+
justifySelf?: 'auto' | 'start' | 'end' | 'center' | 'stretch';
|
|
105
|
+
/**
|
|
106
|
+
* Whether to respect user's motion preferences
|
|
107
|
+
*/
|
|
108
|
+
respectMotionPreference?: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Accessibility label for screen readers
|
|
111
|
+
*/
|
|
112
|
+
'aria-label'?: string;
|
|
113
|
+
/**
|
|
114
|
+
* Accessibility role for semantic meaning
|
|
115
|
+
*/
|
|
116
|
+
role?: string;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* GlassGrid component
|
|
120
|
+
* Responsive CSS Grid layout with glassmorphism styling
|
|
121
|
+
*/
|
|
122
|
+
export declare const GlassGrid: React.ForwardRefExoticComponent<GlassGridProps & React.RefAttributes<HTMLDivElement>>;
|
|
123
|
+
/**
|
|
124
|
+
* GlassGridItem component
|
|
125
|
+
* Grid item with responsive column/row spanning
|
|
126
|
+
*/
|
|
127
|
+
export declare const GlassGridItem: React.ForwardRefExoticComponent<GlassGridItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
128
|
+
//# sourceMappingURL=GlassGrid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassGrid.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassGrid.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassMasonryProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/**
|
|
4
|
+
* Number of columns in the masonry layout
|
|
5
|
+
*/
|
|
6
|
+
columns?: number;
|
|
7
|
+
/**
|
|
8
|
+
* Gap between items in pixels
|
|
9
|
+
*/
|
|
10
|
+
gap?: number;
|
|
11
|
+
/**
|
|
12
|
+
* Content to render in the masonry layout
|
|
13
|
+
*/
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
/**
|
|
16
|
+
* Whether to respect user's motion preferences
|
|
17
|
+
*/
|
|
18
|
+
respectMotionPreference?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Accessibility label for screen readers
|
|
21
|
+
*/
|
|
22
|
+
'aria-label'?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Accessibility role for semantic meaning
|
|
25
|
+
*/
|
|
26
|
+
role?: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* GlassMasonry component
|
|
30
|
+
* CSS Masonry layout for displaying content in a column-based grid
|
|
31
|
+
*/
|
|
32
|
+
export declare const GlassMasonry: React.ForwardRefExoticComponent<GlassMasonryProps & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
export default GlassMasonry;
|
|
34
|
+
//# sourceMappingURL=GlassMasonry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassMasonry.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassMasonry.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAK1C,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC7E;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;GAGG;AACH,eAAO,MAAM,YAAY,0FAiDxB,CAAC;AAIF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassScrollAreaProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onScroll'> {
|
|
3
|
+
/**
|
|
4
|
+
* Scroll area content
|
|
5
|
+
*/
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* Maximum height
|
|
9
|
+
*/
|
|
10
|
+
maxHeight?: string | number;
|
|
11
|
+
/**
|
|
12
|
+
* Maximum width
|
|
13
|
+
*/
|
|
14
|
+
maxWidth?: string | number;
|
|
15
|
+
/**
|
|
16
|
+
* Scroll direction
|
|
17
|
+
*/
|
|
18
|
+
direction?: 'vertical' | 'horizontal' | 'both';
|
|
19
|
+
/**
|
|
20
|
+
* Show scrollbars
|
|
21
|
+
*/
|
|
22
|
+
showScrollbars?: 'always' | 'hover' | 'auto' | 'never';
|
|
23
|
+
/**
|
|
24
|
+
* Scrollbar size
|
|
25
|
+
*/
|
|
26
|
+
scrollbarSize?: 'sm' | 'md' | 'lg';
|
|
27
|
+
/**
|
|
28
|
+
* Scrollbar position
|
|
29
|
+
*/
|
|
30
|
+
scrollbarPosition?: 'inside' | 'outside';
|
|
31
|
+
/**
|
|
32
|
+
* Custom scrollbar styling
|
|
33
|
+
*/
|
|
34
|
+
scrollbarClassName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Callback when scroll position changes
|
|
37
|
+
*/
|
|
38
|
+
onScroll?: (scrollTop: number, scrollLeft: number) => void;
|
|
39
|
+
/**
|
|
40
|
+
* Enable smooth scrolling
|
|
41
|
+
*/
|
|
42
|
+
smoothScrolling?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Whether to respect user's motion preferences
|
|
45
|
+
*/
|
|
46
|
+
respectMotionPreference?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Accessibility label for screen readers
|
|
49
|
+
*/
|
|
50
|
+
'aria-label'?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Accessibility role for semantic meaning
|
|
53
|
+
*/
|
|
54
|
+
role?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface GlassScrollBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
57
|
+
/**
|
|
58
|
+
* Scrollbar orientation
|
|
59
|
+
*/
|
|
60
|
+
orientation: 'vertical' | 'horizontal';
|
|
61
|
+
/**
|
|
62
|
+
* Scrollbar size
|
|
63
|
+
*/
|
|
64
|
+
size?: 'sm' | 'md' | 'lg';
|
|
65
|
+
/**
|
|
66
|
+
* Show scrollbar thumb
|
|
67
|
+
*/
|
|
68
|
+
showThumb?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Whether to respect user's motion preferences
|
|
71
|
+
*/
|
|
72
|
+
respectMotionPreference?: boolean;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* GlassScrollArea component
|
|
76
|
+
* A glassmorphism scrollable area with custom scrollbars
|
|
77
|
+
*/
|
|
78
|
+
export declare const GlassScrollArea: React.ForwardRefExoticComponent<GlassScrollAreaProps & React.RefAttributes<HTMLDivElement>>;
|
|
79
|
+
/**
|
|
80
|
+
* GlassScrollBar component
|
|
81
|
+
* Custom scrollbar with glassmorphism styling
|
|
82
|
+
*/
|
|
83
|
+
export declare const GlassScrollBar: React.ForwardRefExoticComponent<GlassScrollBarProps & React.RefAttributes<HTMLDivElement>>;
|
|
84
|
+
/**
|
|
85
|
+
* Hook for managing scroll area state
|
|
86
|
+
*/
|
|
87
|
+
export declare const useScrollArea: () => {
|
|
88
|
+
scrollTop: number;
|
|
89
|
+
scrollLeft: number;
|
|
90
|
+
isAtTop: boolean;
|
|
91
|
+
isAtBottom: boolean;
|
|
92
|
+
isAtLeft: boolean;
|
|
93
|
+
isAtRight: boolean;
|
|
94
|
+
handleScroll: (newScrollTop: number, newScrollLeft: number) => void;
|
|
95
|
+
scrollToTop: () => void;
|
|
96
|
+
scrollToBottom: () => void;
|
|
97
|
+
};
|
|
98
|
+
//# sourceMappingURL=GlassScrollArea.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassScrollArea.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassScrollArea.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAKvE,MAAM,WAAW,oBAAqB,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,UAAU,CAAC;IAChG;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3B;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,GAAG,MAAM,CAAC;IAC/C;;OAEG;IACH,cAAc,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;IACvD;;OAEG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACnC;;OAEG;IACH,iBAAiB,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACzC;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3D;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,mBAAoB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC7E;;OAEG;IACH,WAAW,EAAE,UAAU,GAAG,YAAY,CAAC;IACvC;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACrC;AAED;;;GAGG;AACH,eAAO,MAAM,eAAe,6FAqM1B,CAAC;AAIH;;;GAGG;AACH,eAAO,MAAM,cAAc,4FAiLzB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;iCAQc,MAAM,iBAAiB,MAAM;;;CAmCpE,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassSeparatorProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'content'> {
|
|
3
|
+
/** Orientation of the separator */
|
|
4
|
+
orientation?: 'horizontal' | 'vertical';
|
|
5
|
+
/** Visual variant */
|
|
6
|
+
variant?: 'default' | 'gradient' | 'dashed' | 'dotted' | 'glow';
|
|
7
|
+
/** Size/thickness of the separator */
|
|
8
|
+
size?: 'sm' | 'md' | 'lg';
|
|
9
|
+
/** Length of the separator (for vertical separators) */
|
|
10
|
+
length?: string | number;
|
|
11
|
+
/** Whether to add decorative elements */
|
|
12
|
+
decorative?: boolean;
|
|
13
|
+
/** Content to display in the center (for horizontal separators) */
|
|
14
|
+
content?: React.ReactNode;
|
|
15
|
+
/** Spacing around the content */
|
|
16
|
+
spacing?: 'sm' | 'md' | 'lg';
|
|
17
|
+
/** Whether to respect user's motion preferences */
|
|
18
|
+
respectMotionPreference?: boolean;
|
|
19
|
+
/** Accessibility label for screen readers */
|
|
20
|
+
'aria-label'?: string;
|
|
21
|
+
}
|
|
22
|
+
export declare const GlassSeparator: React.ForwardRefExoticComponent<GlassSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
export declare const GlassHorizontalSeparator: React.ForwardRefExoticComponent<Omit<GlassSeparatorProps, "orientation"> & React.RefAttributes<HTMLDivElement>>;
|
|
24
|
+
export declare const GlassVerticalSeparator: React.ForwardRefExoticComponent<Omit<GlassSeparatorProps, "orientation"> & React.RefAttributes<HTMLDivElement>>;
|
|
25
|
+
export declare const GlassGradientSeparator: React.ForwardRefExoticComponent<Omit<GlassSeparatorProps, "variant"> & React.RefAttributes<HTMLDivElement>>;
|
|
26
|
+
export declare const GlassGlowSeparator: React.ForwardRefExoticComponent<Omit<GlassSeparatorProps, "variant"> & React.RefAttributes<HTMLDivElement>>;
|
|
27
|
+
export default GlassSeparator;
|
|
28
|
+
//# sourceMappingURL=GlassSeparator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassSeparator.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassSeparator.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAK1C,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,SAAS,CAAC;IAChG,mCAAmC;IACnC,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACxC,qBAAqB;IACrB,OAAO,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,CAAC;IAChE,sCAAsC;IACtC,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,wDAAwD;IACxD,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,yCAAyC;IACzC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,mEAAmE;IACnE,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,iCAAiC;IACjC,OAAO,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC7B,mDAAmD;IACnD,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,6CAA6C;IAC7C,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,eAAO,MAAM,cAAc,4FAoJ1B,CAAC;AAKF,eAAO,MAAM,wBAAwB,iHAEpC,CAAC;AAEF,eAAO,MAAM,sBAAsB,iHAElC,CAAC;AAEF,eAAO,MAAM,sBAAsB,6GAElC,CAAC;AAEF,eAAO,MAAM,kBAAkB,6GAE9B,CAAC;AAOF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassSplitPaneProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/**
|
|
4
|
+
* Split direction
|
|
5
|
+
*/
|
|
6
|
+
direction?: 'horizontal' | 'vertical';
|
|
7
|
+
/**
|
|
8
|
+
* Initial split percentage for first pane
|
|
9
|
+
*/
|
|
10
|
+
initial?: number;
|
|
11
|
+
/**
|
|
12
|
+
* Minimum percentage for first pane
|
|
13
|
+
*/
|
|
14
|
+
min?: number;
|
|
15
|
+
/**
|
|
16
|
+
* Maximum percentage for first pane
|
|
17
|
+
*/
|
|
18
|
+
max?: number;
|
|
19
|
+
/**
|
|
20
|
+
* Content for the left/top pane
|
|
21
|
+
*/
|
|
22
|
+
left?: React.ReactNode;
|
|
23
|
+
/**
|
|
24
|
+
* Content for the right/bottom pane
|
|
25
|
+
*/
|
|
26
|
+
right?: React.ReactNode;
|
|
27
|
+
/**
|
|
28
|
+
* Whether to respect user's motion preferences
|
|
29
|
+
*/
|
|
30
|
+
respectMotionPreference?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Accessibility label for screen readers
|
|
33
|
+
*/
|
|
34
|
+
'aria-label'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Callback when split percentage changes
|
|
37
|
+
*/
|
|
38
|
+
onSplitChange?: (percentage: number) => void;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* GlassSplitPane component
|
|
42
|
+
* Resizable split pane with glassmorphism styling
|
|
43
|
+
*/
|
|
44
|
+
export declare const GlassSplitPane: React.ForwardRefExoticComponent<GlassSplitPaneProps & React.RefAttributes<HTMLDivElement>>;
|
|
45
|
+
export default GlassSplitPane;
|
|
46
|
+
//# sourceMappingURL=GlassSplitPane.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassSplitPane.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassSplitPane.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAK1C,MAAM,WAAW,mBAAoB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC/E;;OAEG;IACH,SAAS,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACtC;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9C;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,4FA0I1B,CAAC;AAIF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassStackProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/**
|
|
4
|
+
* Stack direction
|
|
5
|
+
*/
|
|
6
|
+
direction?: 'vertical' | 'horizontal';
|
|
7
|
+
/**
|
|
8
|
+
* Responsive direction
|
|
9
|
+
*/
|
|
10
|
+
responsive?: {
|
|
11
|
+
sm?: 'vertical' | 'horizontal';
|
|
12
|
+
md?: 'vertical' | 'horizontal';
|
|
13
|
+
lg?: 'vertical' | 'horizontal';
|
|
14
|
+
xl?: 'vertical' | 'horizontal';
|
|
15
|
+
'2xl'?: 'vertical' | 'horizontal';
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Space between items
|
|
19
|
+
*/
|
|
20
|
+
space?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
21
|
+
/**
|
|
22
|
+
* Alias for space (compat)
|
|
23
|
+
*/
|
|
24
|
+
spacing?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
25
|
+
/**
|
|
26
|
+
* Responsive spacing
|
|
27
|
+
*/
|
|
28
|
+
responsiveSpace?: {
|
|
29
|
+
sm?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
30
|
+
md?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
31
|
+
lg?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
32
|
+
xl?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
33
|
+
'2xl'?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Alignment of items
|
|
37
|
+
*/
|
|
38
|
+
align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
|
|
39
|
+
/**
|
|
40
|
+
* Justify content
|
|
41
|
+
*/
|
|
42
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
43
|
+
/**
|
|
44
|
+
* Whether items should wrap
|
|
45
|
+
*/
|
|
46
|
+
wrap?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Divider between items
|
|
49
|
+
*/
|
|
50
|
+
divider?: React.ReactNode;
|
|
51
|
+
/**
|
|
52
|
+
* Custom divider render function
|
|
53
|
+
*/
|
|
54
|
+
renderDivider?: (index: number) => React.ReactNode;
|
|
55
|
+
/**
|
|
56
|
+
* Whether to respect user's motion preferences
|
|
57
|
+
*/
|
|
58
|
+
respectMotionPreference?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Accessibility label for screen readers
|
|
61
|
+
*/
|
|
62
|
+
'aria-label'?: string;
|
|
63
|
+
/**
|
|
64
|
+
* Accessibility role for semantic meaning
|
|
65
|
+
*/
|
|
66
|
+
role?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface GlassStackItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
69
|
+
/**
|
|
70
|
+
* Whether this item should grow to fill available space
|
|
71
|
+
*/
|
|
72
|
+
grow?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Whether this item should shrink
|
|
75
|
+
*/
|
|
76
|
+
shrink?: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Align this item differently from the stack alignment
|
|
79
|
+
*/
|
|
80
|
+
alignSelf?: 'auto' | 'start' | 'center' | 'end' | 'stretch' | 'baseline';
|
|
81
|
+
/**
|
|
82
|
+
* Whether to respect user's motion preferences
|
|
83
|
+
*/
|
|
84
|
+
respectMotionPreference?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Accessibility label for screen readers
|
|
87
|
+
*/
|
|
88
|
+
'aria-label'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Accessibility role for semantic meaning
|
|
91
|
+
*/
|
|
92
|
+
role?: string;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* GlassStack component
|
|
96
|
+
* Layout component for stacking items with consistent spacing
|
|
97
|
+
*/
|
|
98
|
+
export declare const GlassStack: React.ForwardRefExoticComponent<GlassStackProps & React.RefAttributes<HTMLDivElement>>;
|
|
99
|
+
/**
|
|
100
|
+
* GlassStackItem component
|
|
101
|
+
* Individual item within a stack with flex control
|
|
102
|
+
*/
|
|
103
|
+
export declare const GlassStackItem: React.ForwardRefExoticComponent<GlassStackItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
104
|
+
/**
|
|
105
|
+
* VStack component
|
|
106
|
+
* Vertical stack (shorthand for GlassStack with direction="vertical")
|
|
107
|
+
*/
|
|
108
|
+
export declare const VStack: React.ForwardRefExoticComponent<Omit<GlassStackProps, "direction"> & React.RefAttributes<HTMLDivElement>>;
|
|
109
|
+
/**
|
|
110
|
+
* HStack component
|
|
111
|
+
* Horizontal stack (shorthand for GlassStack with direction="horizontal")
|
|
112
|
+
*/
|
|
113
|
+
export declare const HStack: React.ForwardRefExoticComponent<Omit<GlassStackProps, "direction"> & React.RefAttributes<HTMLDivElement>>;
|
|
114
|
+
//# sourceMappingURL=GlassStack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassStack.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassStack.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type GlassStackProps } from './GlassStack';
|
|
2
|
+
export interface HStackProps extends Omit<GlassStackProps, 'direction'> {
|
|
3
|
+
/**
|
|
4
|
+
* Spacing between items (for backward compatibility)
|
|
5
|
+
*/
|
|
6
|
+
spacing?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
7
|
+
/** Glass surface intent */
|
|
8
|
+
intent?: 'neutral' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
9
|
+
/** Glass surface elevation */
|
|
10
|
+
elevation?: 'level1' | 'level2' | 'level3' | 'level4';
|
|
11
|
+
/** Performance tier */
|
|
12
|
+
tier?: 'low' | 'medium' | 'high';
|
|
13
|
+
/**
|
|
14
|
+
* Whether to respect user's motion preferences
|
|
15
|
+
*/
|
|
16
|
+
respectMotionPreference?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Accessibility label for screen readers
|
|
19
|
+
*/
|
|
20
|
+
'aria-label'?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Accessibility role for semantic meaning
|
|
23
|
+
*/
|
|
24
|
+
role?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Horizontal Stack component
|
|
28
|
+
* Wrapper around GlassStack with direction set to horizontal
|
|
29
|
+
*/
|
|
30
|
+
export declare const HStack: import("react").ForwardRefExoticComponent<HStackProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
31
|
+
//# sourceMappingURL=HStack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HStack.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/HStack.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAc,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAEhE,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,eAAe,EAAE,WAAW,CAAC;IACrE;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;IAE5D,2BAA2B;IAC3B,MAAM,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;IAE3E,8BAA8B;IAC9B,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAEtD,uBAAuB;IACvB,IAAI,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC;IAEjC;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;GAGG;AACH,eAAO,MAAM,MAAM,wGAkBlB,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare enum OptimizationLevel {
|
|
3
|
+
NONE = "none",
|
|
4
|
+
LIGHT = "light",
|
|
5
|
+
MODERATE = "moderate",
|
|
6
|
+
HEAVY = "heavy",
|
|
7
|
+
MAXIMUM = "heavy",
|
|
8
|
+
AGGRESSIVE = "heavy"
|
|
9
|
+
}
|
|
10
|
+
export interface OptimizedGlassContainerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
11
|
+
children?: React.ReactNode;
|
|
12
|
+
initialOptimizationLevel?: 'none' | 'light' | 'moderate' | 'heavy';
|
|
13
|
+
autoOptimize?: boolean;
|
|
14
|
+
performanceThreshold?: number;
|
|
15
|
+
glassIntensity?: number;
|
|
16
|
+
targetFps?: number;
|
|
17
|
+
checkInterval?: number;
|
|
18
|
+
showIndicator?: boolean;
|
|
19
|
+
preferReducedMotion?: boolean;
|
|
20
|
+
preserveBlur?: boolean;
|
|
21
|
+
onOptimizationChange?: (level: string) => void;
|
|
22
|
+
maxOptimizationLevel?: 'none' | 'light' | 'moderate' | 'heavy';
|
|
23
|
+
/**
|
|
24
|
+
* Accessibility label for screen readers
|
|
25
|
+
*/
|
|
26
|
+
'aria-label'?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Accessibility role for semantic meaning
|
|
29
|
+
*/
|
|
30
|
+
role?: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* OptimizedGlassContainer Component
|
|
34
|
+
* A container that automatically adjusts glass effects based on performance
|
|
35
|
+
*/
|
|
36
|
+
export declare const OptimizedGlassContainer: React.ForwardRefExoticComponent<OptimizedGlassContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
37
|
+
export default OptimizedGlassContainer;
|
|
38
|
+
//# sourceMappingURL=OptimizedGlassContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptimizedGlassContainer.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/OptimizedGlassContainer.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA+D,MAAM,OAAO,CAAC;AAOpF,oBAAY,iBAAiB;IAC3B,IAAI,SAAS;IACb,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,OAAO,UAAU;IACjB,UAAU,UAAU;CACrB;AAED,MAAM,WAAW,4BAA6B,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACxF,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,wBAAwB,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;IACnE,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/C,oBAAoB,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;IAC/D;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AA4CD;;;GAGG;AACH,eAAO,MAAM,uBAAuB,qGA4KnC,CAAC;AAIF,eAAe,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type GlassStackProps } from './GlassStack';
|
|
2
|
+
export interface VStackProps extends Omit<GlassStackProps, 'direction'> {
|
|
3
|
+
/**
|
|
4
|
+
* Spacing between items (for backward compatibility)
|
|
5
|
+
*/
|
|
6
|
+
spacing?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
7
|
+
/** Glass surface intent */
|
|
8
|
+
intent?: 'neutral' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
9
|
+
/** Glass surface elevation */
|
|
10
|
+
elevation?: 'level1' | 'level2' | 'level3' | 'level4';
|
|
11
|
+
/** Performance tier */
|
|
12
|
+
tier?: 'low' | 'medium' | 'high';
|
|
13
|
+
/**
|
|
14
|
+
* Whether to respect user's motion preferences
|
|
15
|
+
*/
|
|
16
|
+
respectMotionPreference?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Accessibility label for screen readers
|
|
19
|
+
*/
|
|
20
|
+
'aria-label'?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Accessibility role for semantic meaning
|
|
23
|
+
*/
|
|
24
|
+
role?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Vertical Stack component
|
|
28
|
+
* Wrapper around GlassStack with direction set to vertical
|
|
29
|
+
*/
|
|
30
|
+
export declare const VStack: import("react").ForwardRefExoticComponent<VStackProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
31
|
+
//# sourceMappingURL=VStack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VStack.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/VStack.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAc,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAEhE,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,eAAe,EAAE,WAAW,CAAC;IACrE;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;IAE5D,2BAA2B;IAC3B,MAAM,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;IAE3E,8BAA8B;IAC9B,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAEtD,uBAAuB;IACvB,IAAI,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC;IAEjC;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;GAGG;AACH,eAAO,MAAM,MAAM,wGAkBlB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { GlassBox, type BoxProps as GlassBoxProps } from './GlassBox';
|
|
2
|
+
export { GlassContainer, type GlassContainerProps } from './GlassContainer';
|
|
3
|
+
export { GlassFlex, type GlassFlexProps } from './GlassFlex';
|
|
4
|
+
export { GlassGrid, GlassGridItem, type GlassGridProps, type GlassGridItemProps } from './GlassGrid';
|
|
5
|
+
export { GlassMasonry, type GlassMasonryProps } from './GlassMasonry';
|
|
6
|
+
export { GlassScrollArea, type GlassScrollAreaProps } from './GlassScrollArea';
|
|
7
|
+
export { GlassSplitPane, type GlassSplitPaneProps } from './GlassSplitPane';
|
|
8
|
+
export { GlassStack, type GlassStackProps, VStack, HStack } from './GlassStack';
|
|
9
|
+
export { OptimizedGlassContainer, type OptimizedGlassContainerProps } from './OptimizedGlassContainer';
|
|
10
|
+
export { Box, type BoxProps } from './Box';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,KAAK,QAAQ,IAAI,aAAa,EAAE,MAAM,YAAY,CAAC;AACtE,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,KAAK,cAAc,EAAE,KAAK,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACrG,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAC/E,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAChF,OAAO,EAAE,uBAAuB,EAAE,KAAK,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AAGvG,OAAO,EAAE,GAAG,EAAE,KAAK,QAAQ,EAAE,MAAM,OAAO,CAAC"}
|