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,58 @@
|
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
|
+
export interface GlassInfiniteScrollProps {
|
|
3
|
+
/**
|
|
4
|
+
* Children to render
|
|
5
|
+
*/
|
|
6
|
+
children: ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* Load more handler
|
|
9
|
+
*/
|
|
10
|
+
onLoadMore: () => void | Promise<void>;
|
|
11
|
+
/**
|
|
12
|
+
* Has more items to load
|
|
13
|
+
*/
|
|
14
|
+
hasMore: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Loading state
|
|
17
|
+
*/
|
|
18
|
+
loading?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Error state
|
|
21
|
+
*/
|
|
22
|
+
error?: string | null;
|
|
23
|
+
/**
|
|
24
|
+
* Threshold distance from bottom to trigger load (pixels)
|
|
25
|
+
*/
|
|
26
|
+
threshold?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Custom loading indicator
|
|
29
|
+
*/
|
|
30
|
+
loadingIndicator?: ReactNode;
|
|
31
|
+
/**
|
|
32
|
+
* Custom error indicator
|
|
33
|
+
*/
|
|
34
|
+
errorIndicator?: ReactNode;
|
|
35
|
+
/**
|
|
36
|
+
* End of list message
|
|
37
|
+
*/
|
|
38
|
+
endMessage?: ReactNode;
|
|
39
|
+
/**
|
|
40
|
+
* Scroll container className
|
|
41
|
+
*/
|
|
42
|
+
className?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Reverse scroll direction (for chat-like interfaces)
|
|
45
|
+
*/
|
|
46
|
+
reverse?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Auto-scroll to bottom on new content
|
|
49
|
+
*/
|
|
50
|
+
autoScroll?: boolean;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* GlassInfiniteScroll component
|
|
54
|
+
* Infinite scrolling container with loading states and error handling
|
|
55
|
+
*/
|
|
56
|
+
export declare const GlassInfiniteScroll: React.FC<GlassInfiniteScrollProps>;
|
|
57
|
+
export default GlassInfiniteScroll;
|
|
58
|
+
//# sourceMappingURL=GlassInfiniteScroll.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassInfiniteScroll.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassInfiniteScroll.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,EAAE,SAAS,EAA4C,MAAM,OAAO,CAAC;AAGnF,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,UAAU,EAAE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACvC;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,gBAAgB,CAAC,EAAE,SAAS,CAAC;IAC7B;;OAEG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED;;;GAGG;AACH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CAoNlE,CAAC;AAEF,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface GlassInlineEditProps {
|
|
2
|
+
value: string;
|
|
3
|
+
onChange: (v: string) => void;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function GlassInlineEdit({ value, onChange, placeholder, className }: GlassInlineEditProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default GlassInlineEdit;
|
|
9
|
+
//# sourceMappingURL=GlassInlineEdit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassInlineEdit.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassInlineEdit.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAqB,EAAE,SAAS,EAAE,EAAE,oBAAoB,2CA6B1G;AAED,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ConsciousnessFeatures } from '../layout/GlassContainer';
|
|
3
|
+
declare global {
|
|
4
|
+
interface Window {
|
|
5
|
+
_kanbanSpatialAudio?: (type: 'card-click' | 'column-click' | 'card-move') => void;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export interface KanbanCard {
|
|
9
|
+
id: string;
|
|
10
|
+
title: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
priority?: 'low' | 'medium' | 'high';
|
|
13
|
+
assignee?: string;
|
|
14
|
+
dueDate?: Date;
|
|
15
|
+
tags?: string[];
|
|
16
|
+
}
|
|
17
|
+
export interface KanbanColumn {
|
|
18
|
+
id: string;
|
|
19
|
+
title: string;
|
|
20
|
+
cards: KanbanCard[];
|
|
21
|
+
color?: string;
|
|
22
|
+
limit?: number;
|
|
23
|
+
}
|
|
24
|
+
export interface GlassKanbanProps extends ConsciousnessFeatures {
|
|
25
|
+
columns: KanbanColumn[];
|
|
26
|
+
className?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Enable drag and drop
|
|
29
|
+
*/
|
|
30
|
+
enableDragDrop?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Show column limits
|
|
33
|
+
*/
|
|
34
|
+
showLimits?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Show card metrics
|
|
37
|
+
*/
|
|
38
|
+
showMetrics?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Card click handler
|
|
41
|
+
*/
|
|
42
|
+
onCardClick?: (cardId: string, columnId: string) => void;
|
|
43
|
+
/**
|
|
44
|
+
* Column click handler
|
|
45
|
+
*/
|
|
46
|
+
onColumnClick?: (columnId: string) => void;
|
|
47
|
+
/**
|
|
48
|
+
* Card move handler
|
|
49
|
+
*/
|
|
50
|
+
onCardMove?: (cardId: string, fromColumn: string, toColumn: string) => void;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* GlassKanban component
|
|
54
|
+
* A comprehensive Kanban board with consciousness interface features
|
|
55
|
+
*/
|
|
56
|
+
export declare function GlassKanban({ columns, className, enableDragDrop, showLimits, showMetrics, onCardClick, onColumnClick, onCardMove, consciousness, predictive, adaptive, eyeTracking, spatialAudio, trackAchievements, }: GlassKanbanProps): import("react/jsx-runtime").JSX.Element;
|
|
57
|
+
export declare const GlassPredictiveKanban: React.FC<GlassKanbanProps>;
|
|
58
|
+
export declare const GlassAdaptiveKanban: React.FC<GlassKanbanProps>;
|
|
59
|
+
export declare const GlassEyeTrackingKanban: React.FC<GlassKanbanProps>;
|
|
60
|
+
export declare const GlassSpatialAudioKanban: React.FC<GlassKanbanProps>;
|
|
61
|
+
export declare const GlassAchievementKanban: React.FC<GlassKanbanProps>;
|
|
62
|
+
export declare const GlassConsciousnessKanban: React.FC<GlassKanbanProps>;
|
|
63
|
+
export default GlassKanban;
|
|
64
|
+
//# sourceMappingURL=GlassKanban.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassKanban.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassKanban.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAGhE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAWtE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,mBAAmB,CAAC,EAAE,CAAC,IAAI,EAAE,YAAY,GAAG,cAAc,GAAG,WAAW,KAAK,IAAI,CAAC;KACnF;CACF;AAED,MAAM,WAAW,UAAU;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC;IACrC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,YAAY;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,UAAU,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,gBAAiB,SAAQ,qBAAqB;IAC3D,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,WAAW,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IACzD;;OAEG;IACH,aAAa,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;CAC/E;AAED;;;GAGG;AACH,wBAAgB,WAAW,CAAC,EACxB,OAAO,EACP,SAAS,EACT,cAAqB,EACrB,UAAiB,EACjB,WAAmB,EACnB,WAAW,EACX,aAAa,EACb,UAAU,EAEV,aAAqB,EACrB,UAAkB,EAClB,QAAgB,EAChB,WAAmB,EACnB,YAAoB,EACpB,iBAAyB,GAC5B,EAAE,gBAAgB,2CA0clB;AAGD,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAE5D,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAE1D,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAE7D,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAE9D,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAE7D,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAU/D,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface Pair {
|
|
2
|
+
key: string;
|
|
3
|
+
value: string;
|
|
4
|
+
}
|
|
5
|
+
export interface GlassKeyValueEditorProps {
|
|
6
|
+
value: Pair[];
|
|
7
|
+
onChange: (pairs: Pair[]) => void;
|
|
8
|
+
className?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function GlassKeyValueEditor({ value, onChange, className }: GlassKeyValueEditorProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default GlassKeyValueEditor;
|
|
12
|
+
//# sourceMappingURL=GlassKeyValueEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassKeyValueEditor.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassKeyValueEditor.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,IAAI;IAAG,GAAG,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE;AACpD,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,IAAI,EAAE,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,KAAK,IAAI,CAAC;IAClC,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,mBAAmB,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,wBAAwB,2CAqB3F;AAED,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface GlassLazyImageProps {
|
|
3
|
+
/**
|
|
4
|
+
* Image source URL
|
|
5
|
+
*/
|
|
6
|
+
src: string;
|
|
7
|
+
/**
|
|
8
|
+
* Low quality placeholder image
|
|
9
|
+
*/
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Alt text for the image
|
|
13
|
+
*/
|
|
14
|
+
alt?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Image title
|
|
17
|
+
*/
|
|
18
|
+
title?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Image width
|
|
21
|
+
*/
|
|
22
|
+
width?: number | string;
|
|
23
|
+
/**
|
|
24
|
+
* Image height
|
|
25
|
+
*/
|
|
26
|
+
height?: number | string;
|
|
27
|
+
/**
|
|
28
|
+
* CSS object-fit property
|
|
29
|
+
*/
|
|
30
|
+
objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
|
|
31
|
+
/**
|
|
32
|
+
* Enable blur placeholder
|
|
33
|
+
*/
|
|
34
|
+
blur?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Blur intensity (0-10)
|
|
37
|
+
*/
|
|
38
|
+
blurIntensity?: number;
|
|
39
|
+
/**
|
|
40
|
+
* Root margin for intersection observer
|
|
41
|
+
*/
|
|
42
|
+
rootMargin?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Threshold for intersection observer
|
|
45
|
+
*/
|
|
46
|
+
threshold?: number;
|
|
47
|
+
/**
|
|
48
|
+
* Custom loading component
|
|
49
|
+
*/
|
|
50
|
+
loadingComponent?: React.ReactNode;
|
|
51
|
+
/**
|
|
52
|
+
* Custom error component
|
|
53
|
+
*/
|
|
54
|
+
errorComponent?: React.ReactNode;
|
|
55
|
+
/**
|
|
56
|
+
* Enable click to zoom
|
|
57
|
+
*/
|
|
58
|
+
enableZoom?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Enable image actions (download, share, etc.)
|
|
61
|
+
*/
|
|
62
|
+
enableActions?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Show image stats (views, likes)
|
|
65
|
+
*/
|
|
66
|
+
showStats?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* Image statistics
|
|
69
|
+
*/
|
|
70
|
+
stats?: {
|
|
71
|
+
views?: number;
|
|
72
|
+
likes?: number;
|
|
73
|
+
downloads?: number;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Image load callback
|
|
77
|
+
*/
|
|
78
|
+
onLoad?: () => void;
|
|
79
|
+
/**
|
|
80
|
+
* Image error callback
|
|
81
|
+
*/
|
|
82
|
+
onError?: (error: string) => void;
|
|
83
|
+
/**
|
|
84
|
+
* Image click callback
|
|
85
|
+
*/
|
|
86
|
+
onClick?: (event: React.MouseEvent) => void;
|
|
87
|
+
/**
|
|
88
|
+
* Custom className
|
|
89
|
+
*/
|
|
90
|
+
className?: string;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* GlassLazyImage component
|
|
94
|
+
* Lazy loading image with blur placeholder and performance optimizations
|
|
95
|
+
*/
|
|
96
|
+
export declare const GlassLazyImage: React.FC<GlassLazyImageProps>;
|
|
97
|
+
export default GlassLazyImage;
|
|
98
|
+
//# sourceMappingURL=GlassLazyImage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassLazyImage.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassLazyImage.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAGxE,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,YAAY,CAAC;IACjE;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACnC;;OAEG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACjC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,KAAK,CAAC,EAAE;QACJ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,SAAS,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;IACF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAAC;IAC5C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA0UxD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface MentionItem {
|
|
2
|
+
id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
meta?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface GlassMentionListProps {
|
|
7
|
+
items: MentionItem[];
|
|
8
|
+
onSelect: (id: string) => void;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function GlassMentionList({ items, onSelect, className }: GlassMentionListProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default GlassMentionList;
|
|
13
|
+
//# sourceMappingURL=GlassMentionList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassMentionList.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassMentionList.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,WAAW;IAAG,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE;AACzE,MAAM,WAAW,qBAAqB;IAAG,KAAK,EAAE,WAAW,EAAE,CAAC;IAAC,QAAQ,EAAE,CAAC,EAAE,EAAC,MAAM,KAAG,IAAI,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE;AAEhH,wBAAgB,gBAAgB,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,qBAAqB,2CAerF;AAED,eAAe,gBAAgB,CAAC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ChatMessage } from './GlassChat';
|
|
3
|
+
export interface GlassMessageListProps {
|
|
4
|
+
/**
|
|
5
|
+
* Messages to display
|
|
6
|
+
*/
|
|
7
|
+
messages: ChatMessage[];
|
|
8
|
+
/**
|
|
9
|
+
* Current user ID
|
|
10
|
+
*/
|
|
11
|
+
currentUserId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Enable message reactions
|
|
14
|
+
*/
|
|
15
|
+
enableReactions?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Enable message replies
|
|
18
|
+
*/
|
|
19
|
+
enableReplies?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Show message status
|
|
22
|
+
*/
|
|
23
|
+
showMessageStatus?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Show timestamps
|
|
26
|
+
*/
|
|
27
|
+
showTimestamps?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Show user avatars
|
|
30
|
+
*/
|
|
31
|
+
showAvatars?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Enable message search
|
|
34
|
+
*/
|
|
35
|
+
enableSearch?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Virtual scrolling
|
|
38
|
+
*/
|
|
39
|
+
virtualScroll?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Message click handler
|
|
42
|
+
*/
|
|
43
|
+
onMessageClick?: (message: ChatMessage) => void;
|
|
44
|
+
/**
|
|
45
|
+
* Message reaction handler
|
|
46
|
+
*/
|
|
47
|
+
onMessageReaction?: (messageId: string, emoji: string) => void;
|
|
48
|
+
/**
|
|
49
|
+
* Message reply handler
|
|
50
|
+
*/
|
|
51
|
+
onMessageReply?: (messageId: string) => void;
|
|
52
|
+
/**
|
|
53
|
+
* Attachment download handler
|
|
54
|
+
*/
|
|
55
|
+
onAttachmentDownload?: (attachment: {
|
|
56
|
+
url: string;
|
|
57
|
+
name: string;
|
|
58
|
+
}) => void;
|
|
59
|
+
/**
|
|
60
|
+
* Custom className
|
|
61
|
+
*/
|
|
62
|
+
className?: string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* GlassMessageList component
|
|
66
|
+
* A scrollable list of chat messages with reactions, replies, and attachments
|
|
67
|
+
*/
|
|
68
|
+
export declare const GlassMessageList: React.FC<GlassMessageListProps>;
|
|
69
|
+
export default GlassMessageList;
|
|
70
|
+
//# sourceMappingURL=GlassMessageList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassMessageList.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassMessageList.tsx"],"names":[],"mappings":"AAgBA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAIxE,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,WAAW,KAAK,IAAI,CAAC;IAChD;;OAEG;IACH,iBAAiB,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/D;;OAEG;IACH,cAAc,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C;;OAEG;IACH,oBAAoB,CAAC,EAAE,CAAC,UAAU,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IAC3E;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAmU5D,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface MindMapNode {
|
|
3
|
+
id: string;
|
|
4
|
+
label: string;
|
|
5
|
+
children?: MindMapNode[];
|
|
6
|
+
color?: string;
|
|
7
|
+
position?: {
|
|
8
|
+
x: number;
|
|
9
|
+
y: number;
|
|
10
|
+
};
|
|
11
|
+
size?: 'sm' | 'md' | 'lg';
|
|
12
|
+
shape?: 'circle' | 'rectangle' | 'diamond';
|
|
13
|
+
icon?: React.ReactNode;
|
|
14
|
+
data?: any;
|
|
15
|
+
}
|
|
16
|
+
export interface MindMapConnection {
|
|
17
|
+
from: string;
|
|
18
|
+
to: string;
|
|
19
|
+
label?: string;
|
|
20
|
+
type?: 'solid' | 'dashed' | 'dotted';
|
|
21
|
+
color?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface GlassMindMapProps {
|
|
24
|
+
/** Root node of the mind map */
|
|
25
|
+
data: MindMapNode;
|
|
26
|
+
/** Custom connections between nodes */
|
|
27
|
+
connections?: MindMapConnection[];
|
|
28
|
+
/** Whether nodes are editable */
|
|
29
|
+
editable?: boolean;
|
|
30
|
+
/** Whether to show mini-map */
|
|
31
|
+
showMinimap?: boolean;
|
|
32
|
+
/** Whether to enable zoom and pan */
|
|
33
|
+
zoomable?: boolean;
|
|
34
|
+
/** Layout direction */
|
|
35
|
+
direction?: 'horizontal' | 'vertical' | 'radial';
|
|
36
|
+
/** Node spacing */
|
|
37
|
+
nodeSpacing?: number;
|
|
38
|
+
/** Custom className */
|
|
39
|
+
className?: string;
|
|
40
|
+
/** Node click handler */
|
|
41
|
+
onNodeClick?: (node: MindMapNode) => void;
|
|
42
|
+
/** Node double-click handler */
|
|
43
|
+
onNodeDoubleClick?: (node: MindMapNode) => void;
|
|
44
|
+
/** Node change handler (for editing) */
|
|
45
|
+
onNodeChange?: (nodeId: string, changes: Partial<MindMapNode>) => void;
|
|
46
|
+
/** Node add handler */
|
|
47
|
+
onNodeAdd?: (parentId: string, newNode: MindMapNode) => void;
|
|
48
|
+
/** Node delete handler */
|
|
49
|
+
onNodeDelete?: (nodeId: string) => void;
|
|
50
|
+
}
|
|
51
|
+
export declare const GlassMindMap: React.FC<GlassMindMapProps>;
|
|
52
|
+
export declare const useMindMap: (initialData: MindMapNode) => {
|
|
53
|
+
data: MindMapNode;
|
|
54
|
+
addNode: (parentId: string, newNode: MindMapNode) => void;
|
|
55
|
+
updateNode: (nodeId: string, changes: Partial<MindMapNode>) => void;
|
|
56
|
+
deleteNode: (nodeId: string) => void;
|
|
57
|
+
setData: React.Dispatch<React.SetStateAction<MindMapNode>>;
|
|
58
|
+
};
|
|
59
|
+
//# sourceMappingURL=GlassMindMap.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassMindMap.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassMindMap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAIxE,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACpC,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,KAAK,CAAC,EAAE,QAAQ,GAAG,WAAW,GAAG,SAAS,CAAC;IAC3C,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,EAAE,GAAG,CAAC;CACZ;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,iBAAiB;IAChC,gCAAgC;IAChC,IAAI,EAAE,WAAW,CAAC;IAClB,uCAAuC;IACvC,WAAW,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAClC,iCAAiC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,+BAA+B;IAC/B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,qCAAqC;IACrC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,SAAS,CAAC,EAAE,YAAY,GAAG,UAAU,GAAG,QAAQ,CAAC;IACjD,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yBAAyB;IACzB,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,IAAI,CAAC;IAC1C,gCAAgC;IAChC,iBAAiB,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,IAAI,CAAC;IAChD,wCAAwC;IACxC,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;IACvE,uBAAuB;IACvB,SAAS,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,WAAW,KAAK,IAAI,CAAC;IAC7D,0BAA0B;IAC1B,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACzC;AAQD,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAqapD,CAAC;AAGF,eAAO,MAAM,UAAU,GAAI,aAAa,WAAW;;wBAGtB,MAAM,WAAW,WAAW;yBAiB3B,MAAM,WAAW,OAAO,CAAC,WAAW,CAAC;yBAcrC,MAAM;;CAqBnC,CAAC"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface PatternElement {
|
|
3
|
+
type: 'circle' | 'square' | 'triangle' | 'line' | 'arc' | 'polygon' | 'text';
|
|
4
|
+
x: number;
|
|
5
|
+
y: number;
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
rotation: number;
|
|
9
|
+
color: string;
|
|
10
|
+
opacity: number;
|
|
11
|
+
strokeColor: string;
|
|
12
|
+
strokeWidth: number;
|
|
13
|
+
id: string;
|
|
14
|
+
properties?: Record<string, any>;
|
|
15
|
+
}
|
|
16
|
+
export interface PatternLayer {
|
|
17
|
+
name: string;
|
|
18
|
+
elements: PatternElement[];
|
|
19
|
+
visible: boolean;
|
|
20
|
+
locked: boolean;
|
|
21
|
+
opacity: number;
|
|
22
|
+
blendMode: string;
|
|
23
|
+
id: string;
|
|
24
|
+
}
|
|
25
|
+
export interface PatternTemplate {
|
|
26
|
+
name: string;
|
|
27
|
+
category: string;
|
|
28
|
+
preview: string;
|
|
29
|
+
layers: PatternLayer[];
|
|
30
|
+
id: string;
|
|
31
|
+
}
|
|
32
|
+
export interface GlassPatternBuilderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
33
|
+
/** Canvas width */
|
|
34
|
+
width?: number;
|
|
35
|
+
/** Canvas height */
|
|
36
|
+
height?: number;
|
|
37
|
+
/** Current pattern layers */
|
|
38
|
+
layers?: PatternLayer[];
|
|
39
|
+
/** Active layer index */
|
|
40
|
+
activeLayerIndex?: number;
|
|
41
|
+
/** Selected element IDs */
|
|
42
|
+
selectedElements?: string[];
|
|
43
|
+
/** Whether grid is visible */
|
|
44
|
+
showGrid?: boolean;
|
|
45
|
+
/** Grid size */
|
|
46
|
+
gridSize?: number;
|
|
47
|
+
/** Whether to snap to grid */
|
|
48
|
+
snapToGrid?: boolean;
|
|
49
|
+
/** Zoom level */
|
|
50
|
+
zoom?: number;
|
|
51
|
+
/** Pattern templates */
|
|
52
|
+
templates?: PatternTemplate[];
|
|
53
|
+
/** Available colors */
|
|
54
|
+
colorPalette?: string[];
|
|
55
|
+
/** Whether to show rulers */
|
|
56
|
+
showRulers?: boolean;
|
|
57
|
+
/** Background color */
|
|
58
|
+
backgroundColor?: string;
|
|
59
|
+
/** Export format */
|
|
60
|
+
exportFormat?: 'png' | 'svg' | 'json';
|
|
61
|
+
/** Pattern change handler */
|
|
62
|
+
onChange?: (layers: PatternLayer[]) => void;
|
|
63
|
+
/** Layer change handler */
|
|
64
|
+
onLayerChange?: (layers: PatternLayer[], activeIndex: number) => void;
|
|
65
|
+
/** Element selection handler */
|
|
66
|
+
onElementSelect?: (elementIds: string[]) => void;
|
|
67
|
+
/** Template apply handler */
|
|
68
|
+
onTemplateApply?: (template: PatternTemplate) => void;
|
|
69
|
+
/** Export handler */
|
|
70
|
+
onExport?: (data: string, format: string) => void;
|
|
71
|
+
/** Show controls */
|
|
72
|
+
showControls?: boolean;
|
|
73
|
+
/** Show layer panel */
|
|
74
|
+
showLayerPanel?: boolean;
|
|
75
|
+
/** Show element properties */
|
|
76
|
+
showProperties?: boolean;
|
|
77
|
+
/** Respect user's motion preferences */
|
|
78
|
+
respectMotionPreference?: boolean;
|
|
79
|
+
}
|
|
80
|
+
export declare const GlassPatternBuilder: React.ForwardRefExoticComponent<GlassPatternBuilderProps & React.RefAttributes<HTMLDivElement>>;
|
|
81
|
+
export default GlassPatternBuilder;
|
|
82
|
+
//# sourceMappingURL=GlassPatternBuilder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassPatternBuilder.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassPatternBuilder.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA+D,MAAM,OAAO,CAAC;AAQpF,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,GAAG,KAAK,GAAG,SAAS,GAAG,MAAM,CAAC;IAC7E,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,cAAc,EAAE,CAAC;IAC3B,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,YAAY,EAAE,CAAC;IACvB,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,wBAAyB,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,UAAU,CAAC;IACtG,mBAAmB;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oBAAoB;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,6BAA6B;IAC7B,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC;IACxB,yBAAyB;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,2BAA2B;IAC3B,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B,8BAA8B;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,iBAAiB;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,wBAAwB;IACxB,SAAS,CAAC,EAAE,eAAe,EAAE,CAAC;IAC9B,uBAAuB;IACvB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,6BAA6B;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,uBAAuB;IACvB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,oBAAoB;IACpB,YAAY,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,MAAM,CAAC;IACtC,6BAA6B;IAC7B,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,YAAY,EAAE,KAAK,IAAI,CAAC;IAC5C,2BAA2B;IAC3B,aAAa,CAAC,EAAE,CAAC,MAAM,EAAE,YAAY,EAAE,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IACtE,gCAAgC;IAChC,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IACjD,6BAA6B;IAC7B,eAAe,CAAC,EAAE,CAAC,QAAQ,EAAE,eAAe,KAAK,IAAI,CAAC;IACtD,qBAAqB;IACrB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,oBAAoB;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,uBAAuB;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,8BAA8B;IAC9B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,wCAAwC;IACxC,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACnC;AAED,eAAO,MAAM,mBAAmB,iGAqvB/B,CAAC;AAIF,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ContextAwareGlassProps } from './ContextAwareGlass';
|
|
3
|
+
/**
|
|
4
|
+
* CleanGlassContainer Props
|
|
5
|
+
*
|
|
6
|
+
* A minimal, clean glass container with high transparency.
|
|
7
|
+
*/
|
|
8
|
+
export interface CleanGlassContainerProps extends Omit<ContextAwareGlassProps, 'adaptationMode'> {
|
|
9
|
+
/**
|
|
10
|
+
* If true, use the darkest possible settings
|
|
11
|
+
*/
|
|
12
|
+
extraDark?: boolean;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* CleanGlassContainer Component
|
|
16
|
+
*
|
|
17
|
+
* A minimal, clean glass container with high transparency.
|
|
18
|
+
*/
|
|
19
|
+
export declare const CleanGlassContainer: React.ForwardRefExoticComponent<CleanGlassContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
/**
|
|
21
|
+
* FrostedGlassContainer Component
|
|
22
|
+
*
|
|
23
|
+
* A frosted glass container with moderate blur and opacity.
|
|
24
|
+
*/
|
|
25
|
+
export declare const FrostedGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
26
|
+
/**
|
|
27
|
+
* TexturedGlassContainer Component
|
|
28
|
+
*
|
|
29
|
+
* A textured glass container with noise pattern.
|
|
30
|
+
*/
|
|
31
|
+
export declare const TexturedGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
32
|
+
/**
|
|
33
|
+
* SubtleGlassContainer Component
|
|
34
|
+
*
|
|
35
|
+
* A subtle glass container with minimal effects.
|
|
36
|
+
*/
|
|
37
|
+
export declare const SubtleGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
38
|
+
/**
|
|
39
|
+
* StandardGlassContainer Component
|
|
40
|
+
*
|
|
41
|
+
* A standard glass container with balanced effects.
|
|
42
|
+
*/
|
|
43
|
+
export declare const StandardGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
44
|
+
/**
|
|
45
|
+
* ImmersiveGlassContainer Component
|
|
46
|
+
*
|
|
47
|
+
* An immersive glass container with strong effects.
|
|
48
|
+
*/
|
|
49
|
+
export declare const ImmersiveGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
50
|
+
/**
|
|
51
|
+
* DashboardGlassContainer Component
|
|
52
|
+
*
|
|
53
|
+
* A glass container optimized for dashboard UIs.
|
|
54
|
+
*/
|
|
55
|
+
export declare const DashboardGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
56
|
+
/**
|
|
57
|
+
* FormGlassContainer Component
|
|
58
|
+
*
|
|
59
|
+
* A glass container optimized for forms.
|
|
60
|
+
*/
|
|
61
|
+
export declare const FormGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
62
|
+
/**
|
|
63
|
+
* ModalGlassContainer Component
|
|
64
|
+
*
|
|
65
|
+
* A glass container optimized for modals and dialogs.
|
|
66
|
+
*/
|
|
67
|
+
export declare const ModalGlassContainer: React.ForwardRefExoticComponent<ContextAwareGlassProps & React.RefAttributes<HTMLDivElement>>;
|
|
68
|
+
//# sourceMappingURL=GlassPresets.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassPresets.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassPresets.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAK1C,OAAO,EAAqB,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAEhF;;;;GAIG;AACH,MAAM,WAAW,wBAAyB,SAAQ,IAAI,CAAC,sBAAsB,EAAE,gBAAgB,CAAC;IAC9F;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,iGAyB/B,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,+FAwBjC,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,+FA8ClC,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,+FAwBhC,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,+FAwBlC,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,+FA4BnC,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,+FAwBnC,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,+FAyB9B,CAAC;AAIF;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,+FA4B/B,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface FieldDef {
|
|
2
|
+
id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
type: 'text' | 'number' | 'select';
|
|
5
|
+
options?: {
|
|
6
|
+
label: string;
|
|
7
|
+
value: string;
|
|
8
|
+
}[];
|
|
9
|
+
}
|
|
10
|
+
export interface Rule {
|
|
11
|
+
field: string;
|
|
12
|
+
op: string;
|
|
13
|
+
value: any;
|
|
14
|
+
}
|
|
15
|
+
export interface RuleGroup {
|
|
16
|
+
combinator: 'AND' | 'OR';
|
|
17
|
+
rules: (Rule | RuleGroup)[];
|
|
18
|
+
}
|
|
19
|
+
export interface GlassQueryBuilderProps {
|
|
20
|
+
fields: FieldDef[];
|
|
21
|
+
value: RuleGroup;
|
|
22
|
+
onChange: (v: RuleGroup) => void;
|
|
23
|
+
className?: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function GlassQueryBuilder({ fields, value, onChange, className }: GlassQueryBuilderProps): import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export default GlassQueryBuilder;
|
|
27
|
+
//# sourceMappingURL=GlassQueryBuilder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassQueryBuilder.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassQueryBuilder.tsx"],"names":[],"mappings":"AAaA,MAAM,WAAW,QAAQ;IAAG,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,GAAC,QAAQ,GAAC,QAAQ,CAAC;IAAC,OAAO,CAAC,EAAE;QAAC,KAAK,EAAC,MAAM,CAAC;QAAA,KAAK,EAAC,MAAM,CAAA;KAAC,EAAE,CAAA;CAAE;AAChI,MAAM,WAAW,IAAI;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,GAAG,CAAA;CAAE;AAC/D,MAAM,WAAW,SAAS;IAAG,UAAU,EAAE,KAAK,GAAC,IAAI,CAAC;IAAC,KAAK,EAAE,CAAC,IAAI,GAAC,SAAS,CAAC,EAAE,CAAA;CAAE;AAEhF,MAAM,WAAW,sBAAsB;IACrC,MAAM,EAAE,QAAQ,EAAE,CAAC;IACnB,KAAK,EAAE,SAAS,CAAC;IACjB,QAAQ,EAAE,CAAC,CAAC,EAAE,SAAS,KAAK,IAAI,CAAC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAID,wBAAgB,iBAAiB,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,sBAAsB,2CA2E/F;AAED,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface Reaction {
|
|
2
|
+
key: string;
|
|
3
|
+
label: string;
|
|
4
|
+
count: number;
|
|
5
|
+
}
|
|
6
|
+
export interface GlassReactionBarProps {
|
|
7
|
+
reactions: Reaction[];
|
|
8
|
+
onReact?: (key: string) => void;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function GlassReactionBar({ reactions, onReact, className }: GlassReactionBarProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default GlassReactionBar;
|
|
13
|
+
//# sourceMappingURL=GlassReactionBar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GlassReactionBar.d.ts","sourceRoot":"","sources":["../../../../src/components/interactive/GlassReactionBar.tsx"],"names":[],"mappings":"AAMA,MAAM,WAAW,QAAQ;IAAG,GAAG,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE;AACvE,MAAM,WAAW,qBAAqB;IAAG,SAAS,EAAE,QAAQ,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC,GAAG,EAAC,MAAM,KAAG,IAAI,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE;AAElH,wBAAgB,gBAAgB,CAAC,EAAE,SAAS,EAAE,OAAO,EAAE,SAAS,EAAE,EAAE,qBAAqB,2CAaxF;AAED,eAAe,gBAAgB,CAAC"}
|