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,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface BoxProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/**
|
|
4
|
+
* The HTML element or React component to render as
|
|
5
|
+
*/
|
|
6
|
+
as?: keyof JSX.IntrinsicElements;
|
|
7
|
+
/**
|
|
8
|
+
* The content to render inside the box
|
|
9
|
+
*/
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
/**
|
|
12
|
+
* Accessibility label for screen readers
|
|
13
|
+
*/
|
|
14
|
+
'aria-label'?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Accessibility role for semantic meaning
|
|
17
|
+
*/
|
|
18
|
+
role?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Whether to respect user's motion preferences
|
|
21
|
+
*/
|
|
22
|
+
respectMotionPreference?: boolean;
|
|
23
|
+
}
|
|
24
|
+
export declare const Box: React.ForwardRefExoticComponent<BoxProps & React.RefAttributes<HTMLDivElement>>;
|
|
25
|
+
//# sourceMappingURL=Box.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Box.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/Box.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,QAAS,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACpE;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,GAAG,CAAC,iBAAiB,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACnC;AAED,eAAO,MAAM,GAAG,iFA6Bf,CAAC"}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassAppShellProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/**
|
|
4
|
+
* App shell variant
|
|
5
|
+
*/
|
|
6
|
+
variant?: 'default' | 'floating' | 'minimal';
|
|
7
|
+
/**
|
|
8
|
+
* Header component
|
|
9
|
+
*/
|
|
10
|
+
header?: React.ReactNode;
|
|
11
|
+
/**
|
|
12
|
+
* Sidebar component
|
|
13
|
+
*/
|
|
14
|
+
sidebar?: React.ReactNode;
|
|
15
|
+
/**
|
|
16
|
+
* Footer component
|
|
17
|
+
*/
|
|
18
|
+
footer?: React.ReactNode;
|
|
19
|
+
/**
|
|
20
|
+
* Whether sidebar is collapsible
|
|
21
|
+
*/
|
|
22
|
+
collapsible?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Whether sidebar is collapsed by default
|
|
25
|
+
*/
|
|
26
|
+
defaultCollapsed?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Sidebar width
|
|
29
|
+
*/
|
|
30
|
+
sidebarWidth?: 'sm' | 'md' | 'lg';
|
|
31
|
+
/**
|
|
32
|
+
* Whether to show sidebar on mobile as overlay
|
|
33
|
+
*/
|
|
34
|
+
mobileOverlay?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Mobile breakpoint
|
|
37
|
+
*/
|
|
38
|
+
mobileBreakpoint?: number;
|
|
39
|
+
/**
|
|
40
|
+
* Page padding
|
|
41
|
+
*/
|
|
42
|
+
padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
43
|
+
/**
|
|
44
|
+
* Content max width
|
|
45
|
+
*/
|
|
46
|
+
maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
47
|
+
/**
|
|
48
|
+
* Whether content should be centered
|
|
49
|
+
*/
|
|
50
|
+
centered?: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Glass elevation for main content
|
|
53
|
+
*/
|
|
54
|
+
contentElevation?: 0 | 1 | 2 | 3 | 4;
|
|
55
|
+
/**
|
|
56
|
+
* Loading state
|
|
57
|
+
*/
|
|
58
|
+
loading?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Loading component
|
|
61
|
+
*/
|
|
62
|
+
loadingComponent?: React.ReactNode;
|
|
63
|
+
/**
|
|
64
|
+
* Page transition animation
|
|
65
|
+
*/
|
|
66
|
+
pageTransition?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* Whether to respect user's motion preferences
|
|
69
|
+
*/
|
|
70
|
+
respectMotionPreference?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Accessibility label for the main application shell
|
|
73
|
+
*/
|
|
74
|
+
'aria-label'?: string;
|
|
75
|
+
/**
|
|
76
|
+
* Accessibility role for the shell
|
|
77
|
+
*/
|
|
78
|
+
role?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface BreadcrumbItem {
|
|
81
|
+
label: string;
|
|
82
|
+
href?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface PageHeaderProps {
|
|
85
|
+
/**
|
|
86
|
+
* Page title
|
|
87
|
+
*/
|
|
88
|
+
title: string;
|
|
89
|
+
/**
|
|
90
|
+
* Page description
|
|
91
|
+
*/
|
|
92
|
+
description?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Breadcrumb navigation - can be an array of breadcrumb items or any React node
|
|
95
|
+
*/
|
|
96
|
+
breadcrumb?: BreadcrumbItem[] | React.ReactNode;
|
|
97
|
+
/**
|
|
98
|
+
* Page actions
|
|
99
|
+
*/
|
|
100
|
+
actions?: React.ReactNode;
|
|
101
|
+
/**
|
|
102
|
+
* Header variant
|
|
103
|
+
*/
|
|
104
|
+
variant?: 'default' | 'centered' | 'minimal';
|
|
105
|
+
className?: string;
|
|
106
|
+
}
|
|
107
|
+
export interface ContentSectionProps {
|
|
108
|
+
/**
|
|
109
|
+
* Section title
|
|
110
|
+
*/
|
|
111
|
+
title?: string;
|
|
112
|
+
/**
|
|
113
|
+
* Section description
|
|
114
|
+
*/
|
|
115
|
+
description?: string;
|
|
116
|
+
/**
|
|
117
|
+
* Section actions
|
|
118
|
+
*/
|
|
119
|
+
actions?: React.ReactNode;
|
|
120
|
+
/**
|
|
121
|
+
* Section content
|
|
122
|
+
*/
|
|
123
|
+
children: React.ReactNode;
|
|
124
|
+
/**
|
|
125
|
+
* Section variant
|
|
126
|
+
*/
|
|
127
|
+
variant?: 'default' | 'card' | 'minimal';
|
|
128
|
+
/**
|
|
129
|
+
* Glass elevation (for card variant)
|
|
130
|
+
*/
|
|
131
|
+
elevation?: 0 | 1 | 2 | 3 | 4;
|
|
132
|
+
/**
|
|
133
|
+
* Whether to respect user's motion preferences
|
|
134
|
+
*/
|
|
135
|
+
respectMotionPreference?: boolean;
|
|
136
|
+
/**
|
|
137
|
+
* Section ID for accessibility
|
|
138
|
+
*/
|
|
139
|
+
id?: string;
|
|
140
|
+
className?: string;
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* GlassAppShell component
|
|
144
|
+
* Modern application shell with glassmorphism design
|
|
145
|
+
*/
|
|
146
|
+
export declare const GlassAppShell: React.ForwardRefExoticComponent<GlassAppShellProps & React.RefAttributes<HTMLDivElement>>;
|
|
147
|
+
/**
|
|
148
|
+
* PageHeader component
|
|
149
|
+
* Consistent page header with title, description, and actions
|
|
150
|
+
*/
|
|
151
|
+
export declare const PageHeader: React.ForwardRefExoticComponent<PageHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
152
|
+
/**
|
|
153
|
+
* ContentSection component
|
|
154
|
+
* Reusable content section with optional glassmorphism
|
|
155
|
+
*/
|
|
156
|
+
export declare const ContentSection: React.ForwardRefExoticComponent<ContentSectionProps & React.RefAttributes<HTMLDivElement>>;
|
|
157
|
+
//# sourceMappingURL=GlassAppShell.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassAppShell.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassAppShell.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface BoxProps {
|
|
3
|
+
/**
|
|
4
|
+
* The content of the box
|
|
5
|
+
*/
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* The component to render the box as
|
|
9
|
+
*/
|
|
10
|
+
component?: React.ElementType;
|
|
11
|
+
/**
|
|
12
|
+
* Display property
|
|
13
|
+
*/
|
|
14
|
+
display?: 'block' | 'flex' | 'inline' | 'inline-block' | 'inline-flex' | 'grid' | 'inline-grid' | 'none';
|
|
15
|
+
/**
|
|
16
|
+
* Flex direction
|
|
17
|
+
*/
|
|
18
|
+
flexDirection?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
|
|
19
|
+
/**
|
|
20
|
+
* Flex wrap
|
|
21
|
+
*/
|
|
22
|
+
flexWrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
23
|
+
/**
|
|
24
|
+
* Justify content
|
|
25
|
+
*/
|
|
26
|
+
justifyContent?: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly';
|
|
27
|
+
/**
|
|
28
|
+
* Align items
|
|
29
|
+
*/
|
|
30
|
+
alignItems?: 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch';
|
|
31
|
+
/**
|
|
32
|
+
* Align content
|
|
33
|
+
*/
|
|
34
|
+
alignContent?: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'stretch';
|
|
35
|
+
/**
|
|
36
|
+
* Align self
|
|
37
|
+
*/
|
|
38
|
+
alignSelf?: 'auto' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch';
|
|
39
|
+
/**
|
|
40
|
+
* Padding
|
|
41
|
+
*/
|
|
42
|
+
p?: number | string;
|
|
43
|
+
pt?: number | string;
|
|
44
|
+
pr?: number | string;
|
|
45
|
+
pb?: number | string;
|
|
46
|
+
pl?: number | string;
|
|
47
|
+
px?: number | string;
|
|
48
|
+
py?: number | string;
|
|
49
|
+
/**
|
|
50
|
+
* Margin
|
|
51
|
+
*/
|
|
52
|
+
m?: number | string;
|
|
53
|
+
mt?: number | string;
|
|
54
|
+
mr?: number | string;
|
|
55
|
+
mb?: number | string;
|
|
56
|
+
ml?: number | string;
|
|
57
|
+
mx?: number | string;
|
|
58
|
+
my?: number | string;
|
|
59
|
+
/**
|
|
60
|
+
* Width
|
|
61
|
+
*/
|
|
62
|
+
width?: number | string;
|
|
63
|
+
/**
|
|
64
|
+
* Height
|
|
65
|
+
*/
|
|
66
|
+
height?: number | string;
|
|
67
|
+
/**
|
|
68
|
+
* Min width
|
|
69
|
+
*/
|
|
70
|
+
minWidth?: number | string;
|
|
71
|
+
/**
|
|
72
|
+
* Min height
|
|
73
|
+
*/
|
|
74
|
+
minHeight?: number | string;
|
|
75
|
+
/**
|
|
76
|
+
* Max width
|
|
77
|
+
*/
|
|
78
|
+
maxWidth?: number | string;
|
|
79
|
+
/**
|
|
80
|
+
* Max height
|
|
81
|
+
*/
|
|
82
|
+
maxHeight?: number | string;
|
|
83
|
+
/**
|
|
84
|
+
* Border radius
|
|
85
|
+
*/
|
|
86
|
+
borderRadius?: number | string;
|
|
87
|
+
/**
|
|
88
|
+
* Background color
|
|
89
|
+
*/
|
|
90
|
+
bgcolor?: string;
|
|
91
|
+
/**
|
|
92
|
+
* If true, the box will have a glass effect
|
|
93
|
+
*/
|
|
94
|
+
glass?: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* The elevation of the glass effect
|
|
97
|
+
*/
|
|
98
|
+
elevation?: 0 | 1 | 2 | 3 | 4 | 5 | 'level1' | 'level2' | 'level3' | 'level4';
|
|
99
|
+
/**
|
|
100
|
+
* Additional CSS class name
|
|
101
|
+
*/
|
|
102
|
+
className?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Additional CSS styles
|
|
105
|
+
*/
|
|
106
|
+
style?: React.CSSProperties;
|
|
107
|
+
/**
|
|
108
|
+
* Click handler
|
|
109
|
+
*/
|
|
110
|
+
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Box Component
|
|
114
|
+
*
|
|
115
|
+
* A flexible container with system props for layout and styling.
|
|
116
|
+
*/
|
|
117
|
+
export declare const Box: React.ForwardRefExoticComponent<BoxProps & React.RefAttributes<HTMLDivElement>>;
|
|
118
|
+
/**
|
|
119
|
+
* GlassBox Component
|
|
120
|
+
*
|
|
121
|
+
* A box component with glass morphism styling.
|
|
122
|
+
*/
|
|
123
|
+
export declare const GlassBox: React.ForwardRefExoticComponent<BoxProps & React.RefAttributes<HTMLDivElement>>;
|
|
124
|
+
//# sourceMappingURL=GlassBox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassBox.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassBox.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAK1C,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IAE9B;;OAEG;IACH,OAAO,CAAC,EACJ,OAAO,GACP,MAAM,GACN,QAAQ,GACR,cAAc,GACd,aAAa,GACb,MAAM,GACN,aAAa,GACb,MAAM,CAAC;IAEX;;OAEG;IACH,aAAa,CAAC,EAAE,KAAK,GAAG,aAAa,GAAG,QAAQ,GAAG,gBAAgB,CAAC;IAEpE;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,cAAc,CAAC;IAE9C;;OAEG;IACH,cAAc,CAAC,EACX,YAAY,GACZ,UAAU,GACV,QAAQ,GACR,eAAe,GACf,cAAc,GACd,cAAc,CAAC;IAEnB;;OAEG;IACH,UAAU,CAAC,EAAE,YAAY,GAAG,UAAU,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;IAE3E;;OAEG;IACH,YAAY,CAAC,EACT,YAAY,GACZ,UAAU,GACV,QAAQ,GACR,eAAe,GACf,cAAc,GACd,SAAS,CAAC;IAEd;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,UAAU,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;IAEnF;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAErB;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAErB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAExB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAEzB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAE5B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAE5B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAE/B;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAE9E;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAE5B;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC;CAC7D;AAyBD;;;;GAIG;AACH,eAAO,MAAM,GAAG,iFA8Ld,CAAC;AAIH;;;;GAIG;AACH,eAAO,MAAM,QAAQ,iFAmBnB,CAAC"}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface ConsciousnessFeatures {
|
|
3
|
+
/**
|
|
4
|
+
* Master consciousness toggle
|
|
5
|
+
*/
|
|
6
|
+
consciousness?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Enable predictive UI features
|
|
9
|
+
*/
|
|
10
|
+
predictive?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Enable content preloading
|
|
13
|
+
*/
|
|
14
|
+
preloadContent?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Enable eye tracking integration
|
|
17
|
+
*/
|
|
18
|
+
eyeTracking?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Enable gaze-responsive features
|
|
21
|
+
*/
|
|
22
|
+
gazeResponsive?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Enable biometric adaptation
|
|
25
|
+
*/
|
|
26
|
+
adaptive?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Enable biometric responsive features
|
|
29
|
+
*/
|
|
30
|
+
biometricResponsive?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Enable spatial audio
|
|
33
|
+
*/
|
|
34
|
+
spatialAudio?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Enable audio feedback
|
|
37
|
+
*/
|
|
38
|
+
audioFeedback?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Enable achievement tracking
|
|
41
|
+
*/
|
|
42
|
+
trackAchievements?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Achievement identifier
|
|
45
|
+
*/
|
|
46
|
+
achievementId?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Container usage context for consciousness features
|
|
49
|
+
*/
|
|
50
|
+
usageContext?: 'main' | 'sidebar' | 'modal' | 'card' | 'list' | 'form';
|
|
51
|
+
}
|
|
52
|
+
export interface GlassContainerProps extends React.HTMLAttributes<HTMLDivElement>, ConsciousnessFeatures {
|
|
53
|
+
/**
|
|
54
|
+
* Container size
|
|
55
|
+
*/
|
|
56
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
57
|
+
/**
|
|
58
|
+
* Container centering
|
|
59
|
+
*/
|
|
60
|
+
centered?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Container padding
|
|
63
|
+
*/
|
|
64
|
+
padding?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
65
|
+
/**
|
|
66
|
+
* Responsive padding
|
|
67
|
+
*/
|
|
68
|
+
responsivePadding?: {
|
|
69
|
+
sm?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
70
|
+
md?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
71
|
+
lg?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
72
|
+
xl?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
73
|
+
'2xl'?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Container variant
|
|
77
|
+
*/
|
|
78
|
+
variant?: 'default' | 'fluid' | 'breakout';
|
|
79
|
+
/**
|
|
80
|
+
* Whether to apply glassmorphism background
|
|
81
|
+
*/
|
|
82
|
+
glass?: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Glass elevation level
|
|
85
|
+
*/
|
|
86
|
+
elevation?: 0 | 1 | 2 | 3 | 4 | 'float' | 'modal';
|
|
87
|
+
/**
|
|
88
|
+
* Border radius
|
|
89
|
+
*/
|
|
90
|
+
radius?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
91
|
+
/**
|
|
92
|
+
* Glass material variant
|
|
93
|
+
*/
|
|
94
|
+
material?: 'glass' | 'liquid';
|
|
95
|
+
/**
|
|
96
|
+
* Material properties for liquid glass
|
|
97
|
+
*/
|
|
98
|
+
materialProps?: {
|
|
99
|
+
ior?: number;
|
|
100
|
+
thickness?: number;
|
|
101
|
+
tint?: {
|
|
102
|
+
r: number;
|
|
103
|
+
g: number;
|
|
104
|
+
b: number;
|
|
105
|
+
a: number;
|
|
106
|
+
};
|
|
107
|
+
variant?: 'regular' | 'clear';
|
|
108
|
+
quality?: 'ultra' | 'high' | 'balanced' | 'efficient';
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* GlassContainer component
|
|
113
|
+
* Responsive container with glassmorphism styling, flexible sizing, and consciousness interface integration
|
|
114
|
+
*/
|
|
115
|
+
export declare const GlassContainer: React.ForwardRefExoticComponent<GlassContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
116
|
+
export declare const Container: React.ForwardRefExoticComponent<GlassContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
117
|
+
/**
|
|
118
|
+
* Enhanced GlassContainer with consciousness features enabled by default
|
|
119
|
+
* Use this for containers that should be intelligent and adaptive
|
|
120
|
+
*/
|
|
121
|
+
export declare const ConsciousGlassContainer: React.ForwardRefExoticComponent<GlassContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
122
|
+
/**
|
|
123
|
+
* Utility function to create consciousness-enhanced variants of any container
|
|
124
|
+
*/
|
|
125
|
+
export declare function withConsciousness<T extends GlassContainerProps>(defaultProps?: Partial<ConsciousnessFeatures>): (props: T) => import("react/jsx-runtime").JSX.Element;
|
|
126
|
+
/**
|
|
127
|
+
* Pre-configured consciousness container presets
|
|
128
|
+
*/
|
|
129
|
+
export declare const ConsciousnessPresets: {
|
|
130
|
+
/**
|
|
131
|
+
* Minimal consciousness features for performance-sensitive contexts
|
|
132
|
+
*/
|
|
133
|
+
readonly minimal: {
|
|
134
|
+
readonly predictive: true;
|
|
135
|
+
readonly trackAchievements: true;
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Balanced consciousness features for general use
|
|
139
|
+
*/
|
|
140
|
+
readonly balanced: {
|
|
141
|
+
readonly predictive: true;
|
|
142
|
+
readonly adaptive: true;
|
|
143
|
+
readonly biometricResponsive: true;
|
|
144
|
+
readonly trackAchievements: true;
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* Full consciousness features for immersive experiences
|
|
148
|
+
*/
|
|
149
|
+
readonly immersive: {
|
|
150
|
+
readonly predictive: true;
|
|
151
|
+
readonly preloadContent: true;
|
|
152
|
+
readonly eyeTracking: true;
|
|
153
|
+
readonly gazeResponsive: true;
|
|
154
|
+
readonly adaptive: true;
|
|
155
|
+
readonly biometricResponsive: true;
|
|
156
|
+
readonly spatialAudio: true;
|
|
157
|
+
readonly audioFeedback: true;
|
|
158
|
+
readonly trackAchievements: true;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* Accessibility-focused consciousness features
|
|
162
|
+
*/
|
|
163
|
+
readonly accessible: {
|
|
164
|
+
readonly adaptive: true;
|
|
165
|
+
readonly biometricResponsive: true;
|
|
166
|
+
readonly spatialAudio: true;
|
|
167
|
+
readonly audioFeedback: true;
|
|
168
|
+
readonly trackAchievements: true;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
//# sourceMappingURL=GlassContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassContainer.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassContainer.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassFlexProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/**
|
|
4
|
+
* Flex direction
|
|
5
|
+
*/
|
|
6
|
+
direction?: 'row' | 'row-reverse' | 'col' | 'col-reverse';
|
|
7
|
+
/**
|
|
8
|
+
* Responsive direction
|
|
9
|
+
*/
|
|
10
|
+
responsive?: {
|
|
11
|
+
sm?: 'row' | 'row-reverse' | 'col' | 'col-reverse';
|
|
12
|
+
md?: 'row' | 'row-reverse' | 'col' | 'col-reverse';
|
|
13
|
+
lg?: 'row' | 'row-reverse' | 'col' | 'col-reverse';
|
|
14
|
+
xl?: 'row' | 'row-reverse' | 'col' | 'col-reverse';
|
|
15
|
+
'2xl'?: 'row' | 'row-reverse' | 'col' | 'col-reverse';
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Flex wrap
|
|
19
|
+
*/
|
|
20
|
+
wrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
21
|
+
/**
|
|
22
|
+
* Justify content
|
|
23
|
+
*/
|
|
24
|
+
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
|
|
25
|
+
/**
|
|
26
|
+
* Align items
|
|
27
|
+
*/
|
|
28
|
+
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
29
|
+
/**
|
|
30
|
+
* Align content (for wrapped items)
|
|
31
|
+
*/
|
|
32
|
+
alignContent?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly' | 'stretch';
|
|
33
|
+
/**
|
|
34
|
+
* Gap between items
|
|
35
|
+
*/
|
|
36
|
+
gap?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
37
|
+
/**
|
|
38
|
+
* Horizontal gap
|
|
39
|
+
*/
|
|
40
|
+
gapX?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
41
|
+
/**
|
|
42
|
+
* Vertical gap
|
|
43
|
+
*/
|
|
44
|
+
gapY?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
45
|
+
/**
|
|
46
|
+
* Whether flex container should grow to fill available space
|
|
47
|
+
*/
|
|
48
|
+
fullWidth?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Whether flex container should grow to fill available height
|
|
51
|
+
*/
|
|
52
|
+
fullHeight?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Whether to respect user's motion preferences
|
|
55
|
+
*/
|
|
56
|
+
respectMotionPreference?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Accessibility label for screen readers
|
|
59
|
+
*/
|
|
60
|
+
'aria-label'?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Accessibility role for semantic meaning
|
|
63
|
+
*/
|
|
64
|
+
role?: string;
|
|
65
|
+
}
|
|
66
|
+
export interface GlassFlexItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
67
|
+
/**
|
|
68
|
+
* Flex grow
|
|
69
|
+
*/
|
|
70
|
+
grow?: boolean | 0 | 1;
|
|
71
|
+
/**
|
|
72
|
+
* Flex shrink
|
|
73
|
+
*/
|
|
74
|
+
shrink?: boolean | 0 | 1;
|
|
75
|
+
/**
|
|
76
|
+
* Flex basis
|
|
77
|
+
*/
|
|
78
|
+
basis?: 'auto' | 'full' | '1/2' | '1/3' | '2/3' | '1/4' | '3/4' | '1/5' | '2/5' | '3/5' | '4/5' | '1/6' | '5/6' | '1/12' | '5/12' | '7/12' | '11/12';
|
|
79
|
+
/**
|
|
80
|
+
* Flex shorthand (grow shrink basis)
|
|
81
|
+
*/
|
|
82
|
+
flex?: 'none' | 'auto' | 'initial' | '1';
|
|
83
|
+
/**
|
|
84
|
+
* Align self
|
|
85
|
+
*/
|
|
86
|
+
alignSelf?: 'auto' | 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
87
|
+
/**
|
|
88
|
+
* Order
|
|
89
|
+
*/
|
|
90
|
+
order?: 'none' | 'first' | 'last' | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
91
|
+
/**
|
|
92
|
+
* Whether to respect user's motion preferences
|
|
93
|
+
*/
|
|
94
|
+
respectMotionPreference?: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Accessibility label for screen readers
|
|
97
|
+
*/
|
|
98
|
+
'aria-label'?: string;
|
|
99
|
+
/**
|
|
100
|
+
* Accessibility role for semantic meaning
|
|
101
|
+
*/
|
|
102
|
+
role?: string;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* GlassFlex component
|
|
106
|
+
* Flexible layout container with glassmorphism styling
|
|
107
|
+
*/
|
|
108
|
+
export declare const GlassFlex: React.ForwardRefExoticComponent<GlassFlexProps & React.RefAttributes<HTMLDivElement>>;
|
|
109
|
+
/**
|
|
110
|
+
* GlassFlexItem component
|
|
111
|
+
* Flex item with control over flex properties
|
|
112
|
+
*/
|
|
113
|
+
export declare const GlassFlexItem: React.ForwardRefExoticComponent<GlassFlexItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
114
|
+
//# sourceMappingURL=GlassFlex.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassFlex.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/GlassFlex.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAK1C,MAAM,WAAW,cAAe,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC1E;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,GAAG,aAAa,GAAG,KAAK,GAAG,aAAa,CAAC;IAC1D;;OAEG;IACH,UAAU,CAAC,EAAE;QACX,EAAE,CAAC,EAAE,KAAK,GAAG,aAAa,GAAG,KAAK,GAAG,aAAa,CAAC;QACnD,EAAE,CAAC,EAAE,KAAK,GAAG,aAAa,GAAG,KAAK,GAAG,aAAa,CAAC;QACnD,EAAE,CAAC,EAAE,KAAK,GAAG,aAAa,GAAG,KAAK,GAAG,aAAa,CAAC;QACnD,EAAE,CAAC,EAAE,KAAK,GAAG,aAAa,GAAG,KAAK,GAAG,aAAa,CAAC;QACnD,KAAK,CAAC,EAAE,KAAK,GAAG,aAAa,GAAG,KAAK,GAAG,aAAa,CAAC;KACvD,CAAC;IACF;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,cAAc,CAAC;IAC1C;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,CAAC;IACvE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;IAC5D;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;IACxF;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;IACxD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;IACzD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;IACzD;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;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,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC9E;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,CAAC,GAAG,CAAC,CAAC;IACvB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,GAAG,CAAC,GAAG,CAAC,CAAC;IACzB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;IACrJ;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,GAAG,GAAG,CAAC;IACzC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;IACzE;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACrF;;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,SAAS,uFAqIrB,CAAC;AAIF;;;GAGG;AACH,eAAO,MAAM,aAAa,2FAkHzB,CAAC"}
|