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.
Files changed (1125) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +1511 -0
  3. package/dist/docs/example.d.ts +3 -0
  4. package/dist/docs/example.d.ts.map +1 -0
  5. package/dist/index.js +82580 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.mjs +82137 -0
  8. package/dist/index.mjs.map +1 -0
  9. package/dist/playwright.config.d.ts +6 -0
  10. package/dist/playwright.config.d.ts.map +1 -0
  11. package/dist/src/animations/accessibleAnimation.d.ts +3 -0
  12. package/dist/src/animations/accessibleAnimation.d.ts.map +1 -0
  13. package/dist/src/animations/hooks/index.d.ts +8 -0
  14. package/dist/src/animations/hooks/index.d.ts.map +1 -0
  15. package/dist/src/animations/hooks/useAnimationSequenceBasic.d.ts +56 -0
  16. package/dist/src/animations/hooks/useAnimationSequenceBasic.d.ts.map +1 -0
  17. package/dist/src/animations/hooks/useMouseMagneticEffect.d.ts +75 -0
  18. package/dist/src/animations/hooks/useMouseMagneticEffect.d.ts.map +1 -0
  19. package/dist/src/animations/hooks/useMultiSpringBasic.d.ts +75 -0
  20. package/dist/src/animations/hooks/useMultiSpringBasic.d.ts.map +1 -0
  21. package/dist/src/animations/keyframes/basic.d.ts +37 -0
  22. package/dist/src/animations/keyframes/basic.d.ts.map +1 -0
  23. package/dist/src/animations/orchestration/index.d.ts +3 -0
  24. package/dist/src/animations/orchestration/index.d.ts.map +1 -0
  25. package/dist/src/animations/orchestration/useAnimationSequenceOrchestrator.d.ts +120 -0
  26. package/dist/src/animations/orchestration/useAnimationSequenceOrchestrator.d.ts.map +1 -0
  27. package/dist/src/animations/physics/chartAnimations.d.ts +121 -0
  28. package/dist/src/animations/physics/chartAnimations.d.ts.map +1 -0
  29. package/dist/src/animations/physics/galileoPhysicsSystem.d.ts +126 -0
  30. package/dist/src/animations/physics/galileoPhysicsSystem.d.ts.map +1 -0
  31. package/dist/src/animations/physics/index.d.ts +8 -0
  32. package/dist/src/animations/physics/index.d.ts.map +1 -0
  33. package/dist/src/animations/physics/interpolation.d.ts +101 -0
  34. package/dist/src/animations/physics/interpolation.d.ts.map +1 -0
  35. package/dist/src/animations/physics/springPhysics.d.ts +38 -0
  36. package/dist/src/animations/physics/springPhysics.d.ts.map +1 -0
  37. package/dist/src/animations/physics/useMultiSpringPhysics.d.ts +70 -0
  38. package/dist/src/animations/physics/useMultiSpringPhysics.d.ts.map +1 -0
  39. package/dist/src/animations/types/animation.d.ts +413 -0
  40. package/dist/src/animations/types/animation.d.ts.map +1 -0
  41. package/dist/src/animations/types.d.ts +19 -0
  42. package/dist/src/animations/types.d.ts.map +1 -0
  43. package/dist/src/components/GlassErrorBoundary.d.ts +24 -0
  44. package/dist/src/components/GlassErrorBoundary.d.ts.map +1 -0
  45. package/dist/src/components/accessibility/AccessibilityProvider.d.ts +27 -0
  46. package/dist/src/components/accessibility/AccessibilityProvider.d.ts.map +1 -0
  47. package/dist/src/components/accessibility/GlassA11y.d.ts +10 -0
  48. package/dist/src/components/accessibility/GlassA11y.d.ts.map +1 -0
  49. package/dist/src/components/accessibility/GlassFocusIndicators.d.ts +7 -0
  50. package/dist/src/components/accessibility/GlassFocusIndicators.d.ts.map +1 -0
  51. package/dist/src/components/accessibility/index.d.ts +4 -0
  52. package/dist/src/components/accessibility/index.d.ts.map +1 -0
  53. package/dist/src/components/advanced/BrandColorIntegration.d.ts +35 -0
  54. package/dist/src/components/advanced/BrandColorIntegration.d.ts.map +1 -0
  55. package/dist/src/components/advanced/GlassAchievementSystem.d.ts +139 -0
  56. package/dist/src/components/advanced/GlassAchievementSystem.d.ts.map +1 -0
  57. package/dist/src/components/advanced/GlassAutoComposer.d.ts +121 -0
  58. package/dist/src/components/advanced/GlassAutoComposer.d.ts.map +1 -0
  59. package/dist/src/components/advanced/GlassBiometricAdaptation.d.ts +119 -0
  60. package/dist/src/components/advanced/GlassBiometricAdaptation.d.ts.map +1 -0
  61. package/dist/src/components/advanced/GlassContextAware.d.ts +88 -0
  62. package/dist/src/components/advanced/GlassContextAware.d.ts.map +1 -0
  63. package/dist/src/components/advanced/GlassContextualEngine.d.ts +198 -0
  64. package/dist/src/components/advanced/GlassContextualEngine.d.ts.map +1 -0
  65. package/dist/src/components/advanced/GlassEngine.d.ts +91 -0
  66. package/dist/src/components/advanced/GlassEngine.d.ts.map +1 -0
  67. package/dist/src/components/advanced/GlassEyeTracking.d.ts +103 -0
  68. package/dist/src/components/advanced/GlassEyeTracking.d.ts.map +1 -0
  69. package/dist/src/components/advanced/GlassFoldableSupport.d.ts +102 -0
  70. package/dist/src/components/advanced/GlassFoldableSupport.d.ts.map +1 -0
  71. package/dist/src/components/advanced/GlassLiquidTransition.d.ts +60 -0
  72. package/dist/src/components/advanced/GlassLiquidTransition.d.ts.map +1 -0
  73. package/dist/src/components/advanced/GlassLiveCursorPresence.d.ts +85 -0
  74. package/dist/src/components/advanced/GlassLiveCursorPresence.d.ts.map +1 -0
  75. package/dist/src/components/advanced/GlassMagneticCursor.d.ts +43 -0
  76. package/dist/src/components/advanced/GlassMagneticCursor.d.ts.map +1 -0
  77. package/dist/src/components/advanced/GlassMeshGradient.d.ts +59 -0
  78. package/dist/src/components/advanced/GlassMeshGradient.d.ts.map +1 -0
  79. package/dist/src/components/advanced/GlassMetaEngine.d.ts +146 -0
  80. package/dist/src/components/advanced/GlassMetaEngine.d.ts.map +1 -0
  81. package/dist/src/components/advanced/GlassNeuroSync.d.ts +150 -0
  82. package/dist/src/components/advanced/GlassNeuroSync.d.ts.map +1 -0
  83. package/dist/src/components/advanced/GlassOrientationEffects.d.ts +78 -0
  84. package/dist/src/components/advanced/GlassOrientationEffects.d.ts.map +1 -0
  85. package/dist/src/components/advanced/GlassParallaxLayers.d.ts +59 -0
  86. package/dist/src/components/advanced/GlassParallaxLayers.d.ts.map +1 -0
  87. package/dist/src/components/advanced/GlassParticles.d.ts +91 -0
  88. package/dist/src/components/advanced/GlassParticles.d.ts.map +1 -0
  89. package/dist/src/components/advanced/GlassPerformanceOptimization.d.ts +69 -0
  90. package/dist/src/components/advanced/GlassPerformanceOptimization.d.ts.map +1 -0
  91. package/dist/src/components/advanced/GlassPredictiveEngine.d.ts +154 -0
  92. package/dist/src/components/advanced/GlassPredictiveEngine.d.ts.map +1 -0
  93. package/dist/src/components/advanced/GlassProgressiveEnhancement.d.ts +96 -0
  94. package/dist/src/components/advanced/GlassProgressiveEnhancement.d.ts.map +1 -0
  95. package/dist/src/components/advanced/GlassQuantumStates.d.ts +170 -0
  96. package/dist/src/components/advanced/GlassQuantumStates.d.ts.map +1 -0
  97. package/dist/src/components/advanced/GlassReactions.d.ts +68 -0
  98. package/dist/src/components/advanced/GlassReactions.d.ts.map +1 -0
  99. package/dist/src/components/advanced/GlassSelfHealingSystem.d.ts +132 -0
  100. package/dist/src/components/advanced/GlassSelfHealingSystem.d.ts.map +1 -0
  101. package/dist/src/components/advanced/GlassSpatialAudio.d.ts +124 -0
  102. package/dist/src/components/advanced/GlassSpatialAudio.d.ts.map +1 -0
  103. package/dist/src/components/advanced/GlassTrophyCase.d.ts +38 -0
  104. package/dist/src/components/advanced/GlassTrophyCase.d.ts.map +1 -0
  105. package/dist/src/components/advanced/GlassWebGLShader.d.ts +15 -0
  106. package/dist/src/components/advanced/GlassWebGLShader.d.ts.map +1 -0
  107. package/dist/src/components/advanced/IntelligentColorSystem.d.ts +49 -0
  108. package/dist/src/components/advanced/IntelligentColorSystem.d.ts.map +1 -0
  109. package/dist/src/components/advanced/LiquidGlassGPU.d.ts +71 -0
  110. package/dist/src/components/advanced/LiquidGlassGPU.d.ts.map +1 -0
  111. package/dist/src/components/ai/AIGlassThemeProvider.d.ts +106 -0
  112. package/dist/src/components/ai/AIGlassThemeProvider.d.ts.map +1 -0
  113. package/dist/src/components/ai/GlassDeepDreamGlass.d.ts +40 -0
  114. package/dist/src/components/ai/GlassDeepDreamGlass.d.ts.map +1 -0
  115. package/dist/src/components/ai/GlassGANGenerator.d.ts +52 -0
  116. package/dist/src/components/ai/GlassGANGenerator.d.ts.map +1 -0
  117. package/dist/src/components/ai/GlassGenerativeArt.d.ts +34 -0
  118. package/dist/src/components/ai/GlassGenerativeArt.d.ts.map +1 -0
  119. package/dist/src/components/ai/GlassIntelligentFormBuilder.d.ts +52 -0
  120. package/dist/src/components/ai/GlassIntelligentFormBuilder.d.ts.map +1 -0
  121. package/dist/src/components/ai/GlassLiveFilter.d.ts +39 -0
  122. package/dist/src/components/ai/GlassLiveFilter.d.ts.map +1 -0
  123. package/dist/src/components/ai/GlassMusicVisualizer.d.ts +36 -0
  124. package/dist/src/components/ai/GlassMusicVisualizer.d.ts.map +1 -0
  125. package/dist/src/components/ai/GlassStyleTransfer.d.ts +29 -0
  126. package/dist/src/components/ai/GlassStyleTransfer.d.ts.map +1 -0
  127. package/dist/src/components/ai/ProductionAIIntegration.d.ts +9 -0
  128. package/dist/src/components/ai/ProductionAIIntegration.d.ts.map +1 -0
  129. package/dist/src/components/ai/examples/AIDemo.d.ts +10 -0
  130. package/dist/src/components/ai/examples/AIDemo.d.ts.map +1 -0
  131. package/dist/src/components/ai/index.d.ts +3 -0
  132. package/dist/src/components/ai/index.d.ts.map +1 -0
  133. package/dist/src/components/animations/AdvancedAnimations.d.ts +46 -0
  134. package/dist/src/components/animations/AdvancedAnimations.d.ts.map +1 -0
  135. package/dist/src/components/animations/GlassMotionController.d.ts +129 -0
  136. package/dist/src/components/animations/GlassMotionController.d.ts.map +1 -0
  137. package/dist/src/components/animations/GlassTransitions.d.ts +339 -0
  138. package/dist/src/components/animations/GlassTransitions.d.ts.map +1 -0
  139. package/dist/src/components/animations/OrganicAnimationEngine.d.ts +51 -0
  140. package/dist/src/components/animations/OrganicAnimationEngine.d.ts.map +1 -0
  141. package/dist/src/components/ar/ARGlassEffects.d.ts +25 -0
  142. package/dist/src/components/ar/ARGlassEffects.d.ts.map +1 -0
  143. package/dist/src/components/ar/index.d.ts +2 -0
  144. package/dist/src/components/ar/index.d.ts.map +1 -0
  145. package/dist/src/components/atmospheric/GlassAuroraDisplay.d.ts +94 -0
  146. package/dist/src/components/atmospheric/GlassAuroraDisplay.d.ts.map +1 -0
  147. package/dist/src/components/atmospheric/GlassBiomeSimulator.d.ts +88 -0
  148. package/dist/src/components/atmospheric/GlassBiomeSimulator.d.ts.map +1 -0
  149. package/dist/src/components/atmospheric/GlassNebulaClouds.d.ts +101 -0
  150. package/dist/src/components/atmospheric/GlassNebulaClouds.d.ts.map +1 -0
  151. package/dist/src/components/atmospheric/GlassWeatherGlass.d.ts +78 -0
  152. package/dist/src/components/atmospheric/GlassWeatherGlass.d.ts.map +1 -0
  153. package/dist/src/components/backgrounds/AtmosphericBackground.d.ts +15 -0
  154. package/dist/src/components/backgrounds/AtmosphericBackground.d.ts.map +1 -0
  155. package/dist/src/components/backgrounds/GlassDynamicAtmosphere.d.ts +99 -0
  156. package/dist/src/components/backgrounds/GlassDynamicAtmosphere.d.ts.map +1 -0
  157. package/dist/src/components/backgrounds/ParticleBackground.d.ts +10 -0
  158. package/dist/src/components/backgrounds/ParticleBackground.d.ts.map +1 -0
  159. package/dist/src/components/backgrounds/types.d.ts +66 -0
  160. package/dist/src/components/backgrounds/types.d.ts.map +1 -0
  161. package/dist/src/components/button/EnhancedGlassButton.d.ts +73 -0
  162. package/dist/src/components/button/EnhancedGlassButton.d.ts.map +1 -0
  163. package/dist/src/components/button/GlassButton.d.ts +287 -0
  164. package/dist/src/components/button/GlassButton.d.ts.map +1 -0
  165. package/dist/src/components/button/GlassFab.d.ts +104 -0
  166. package/dist/src/components/button/GlassFab.d.ts.map +1 -0
  167. package/dist/src/components/button/GlassMagneticButton.d.ts +45 -0
  168. package/dist/src/components/button/GlassMagneticButton.d.ts.map +1 -0
  169. package/dist/src/components/button/index.d.ts +5 -0
  170. package/dist/src/components/button/index.d.ts.map +1 -0
  171. package/dist/src/components/button/types.d.ts +226 -0
  172. package/dist/src/components/button/types.d.ts.map +1 -0
  173. package/dist/src/components/calendar/GlassCalendar.d.ts +81 -0
  174. package/dist/src/components/calendar/GlassCalendar.d.ts.map +1 -0
  175. package/dist/src/components/calendar/types.d.ts +23 -0
  176. package/dist/src/components/calendar/types.d.ts.map +1 -0
  177. package/dist/src/components/card/GlassCard.d.ts +151 -0
  178. package/dist/src/components/card/GlassCard.d.ts.map +1 -0
  179. package/dist/src/components/card/div.d.ts +13 -0
  180. package/dist/src/components/card/div.d.ts.map +1 -0
  181. package/dist/src/components/card/glass-card-link.d.ts +8 -0
  182. package/dist/src/components/card/glass-card-link.d.ts.map +1 -0
  183. package/dist/src/components/card/index.d.ts +7 -0
  184. package/dist/src/components/card/index.d.ts.map +1 -0
  185. package/dist/src/components/card/patterns.d.ts +112 -0
  186. package/dist/src/components/card/patterns.d.ts.map +1 -0
  187. package/dist/src/components/card/types.d.ts +302 -0
  188. package/dist/src/components/card/types.d.ts.map +1 -0
  189. package/dist/src/components/charts/GlassAreaChart.d.ts +95 -0
  190. package/dist/src/components/charts/GlassAreaChart.d.ts.map +1 -0
  191. package/dist/src/components/charts/GlassBarChart.d.ts +98 -0
  192. package/dist/src/components/charts/GlassBarChart.d.ts.map +1 -0
  193. package/dist/src/components/charts/GlassChart.d.ts +225 -0
  194. package/dist/src/components/charts/GlassChart.d.ts.map +1 -0
  195. package/dist/src/components/charts/GlassDataChart.d.ts +156 -0
  196. package/dist/src/components/charts/GlassDataChart.d.ts.map +1 -0
  197. package/dist/src/components/charts/GlassLineChart.d.ts +93 -0
  198. package/dist/src/components/charts/GlassLineChart.d.ts.map +1 -0
  199. package/dist/src/components/charts/GlassPieChart.d.ts +82 -0
  200. package/dist/src/components/charts/GlassPieChart.d.ts.map +1 -0
  201. package/dist/src/components/charts/ModularGlassDataChart.d.ts +140 -0
  202. package/dist/src/components/charts/ModularGlassDataChart.d.ts.map +1 -0
  203. package/dist/src/components/charts/components/AtmosphericEffects.d.ts +15 -0
  204. package/dist/src/components/charts/components/AtmosphericEffects.d.ts.map +1 -0
  205. package/dist/src/components/charts/components/ChartAxis.d.ts +12 -0
  206. package/dist/src/components/charts/components/ChartAxis.d.ts.map +1 -0
  207. package/dist/src/components/charts/components/ChartContainer.d.ts +15 -0
  208. package/dist/src/components/charts/components/ChartContainer.d.ts.map +1 -0
  209. package/dist/src/components/charts/components/ChartFilters.d.ts +15 -0
  210. package/dist/src/components/charts/components/ChartFilters.d.ts.map +1 -0
  211. package/dist/src/components/charts/components/ChartGrid.d.ts +12 -0
  212. package/dist/src/components/charts/components/ChartGrid.d.ts.map +1 -0
  213. package/dist/src/components/charts/components/ChartLegend.d.ts +13 -0
  214. package/dist/src/components/charts/components/ChartLegend.d.ts.map +1 -0
  215. package/dist/src/components/charts/components/ChartRenderer.d.ts +27 -0
  216. package/dist/src/components/charts/components/ChartRenderer.d.ts.map +1 -0
  217. package/dist/src/components/charts/components/ChartTooltip.d.ts +26 -0
  218. package/dist/src/components/charts/components/ChartTooltip.d.ts.map +1 -0
  219. package/dist/src/components/charts/components/KpiChart.d.ts +23 -0
  220. package/dist/src/components/charts/components/KpiChart.d.ts.map +1 -0
  221. package/dist/src/components/charts/components/index.d.ts +15 -0
  222. package/dist/src/components/charts/components/index.d.ts.map +1 -0
  223. package/dist/src/components/charts/hooks/index.d.ts +5 -0
  224. package/dist/src/components/charts/hooks/index.d.ts.map +1 -0
  225. package/dist/src/components/charts/hooks/usePhysicsAnimation.d.ts +52 -0
  226. package/dist/src/components/charts/hooks/usePhysicsAnimation.d.ts.map +1 -0
  227. package/dist/src/components/charts/hooks/useQualityTier.d.ts +34 -0
  228. package/dist/src/components/charts/hooks/useQualityTier.d.ts.map +1 -0
  229. package/dist/src/components/charts/plugins/GalileoElementInteractionPlugin.d.ts +64 -0
  230. package/dist/src/components/charts/plugins/GalileoElementInteractionPlugin.d.ts.map +1 -0
  231. package/dist/src/components/charts/styles/ChartContainerStyles.d.ts +23 -0
  232. package/dist/src/components/charts/styles/ChartContainerStyles.d.ts.map +1 -0
  233. package/dist/src/components/charts/styles/ChartElementStyles.d.ts +52 -0
  234. package/dist/src/components/charts/styles/ChartElementStyles.d.ts.map +1 -0
  235. package/dist/src/components/charts/styles/TooltipStyles.d.ts +52 -0
  236. package/dist/src/components/charts/styles/TooltipStyles.d.ts.map +1 -0
  237. package/dist/src/components/charts/types/ChartProps.d.ts +366 -0
  238. package/dist/src/components/charts/types/ChartProps.d.ts.map +1 -0
  239. package/dist/src/components/charts/types/ChartTypes.d.ts +186 -0
  240. package/dist/src/components/charts/types/ChartTypes.d.ts.map +1 -0
  241. package/dist/src/components/charts/types/index.d.ts +5 -0
  242. package/dist/src/components/charts/types/index.d.ts.map +1 -0
  243. package/dist/src/components/charts/utils/ChartAnimationUtils.d.ts +86 -0
  244. package/dist/src/components/charts/utils/ChartAnimationUtils.d.ts.map +1 -0
  245. package/dist/src/components/charts/utils/ChartDataUtils.d.ts +94 -0
  246. package/dist/src/components/charts/utils/ChartDataUtils.d.ts.map +1 -0
  247. package/dist/src/components/charts/utils/index.d.ts +7 -0
  248. package/dist/src/components/charts/utils/index.d.ts.map +1 -0
  249. package/dist/src/components/chat/GlassTypingIndicator.d.ts +55 -0
  250. package/dist/src/components/chat/GlassTypingIndicator.d.ts.map +1 -0
  251. package/dist/src/components/cms/GlassCanvas.d.ts +7 -0
  252. package/dist/src/components/cms/GlassCanvas.d.ts.map +1 -0
  253. package/dist/src/components/cms/GlassComponentPalette.d.ts +9 -0
  254. package/dist/src/components/cms/GlassComponentPalette.d.ts.map +1 -0
  255. package/dist/src/components/cms/GlassDragDropProvider.d.ts +90 -0
  256. package/dist/src/components/cms/GlassDragDropProvider.d.ts.map +1 -0
  257. package/dist/src/components/cms/GlassPageBuilder.d.ts +11 -0
  258. package/dist/src/components/cms/GlassPageBuilder.d.ts.map +1 -0
  259. package/dist/src/components/cms/GlassPageStructure.d.ts +9 -0
  260. package/dist/src/components/cms/GlassPageStructure.d.ts.map +1 -0
  261. package/dist/src/components/cms/GlassPropertyPanel.d.ts +9 -0
  262. package/dist/src/components/cms/GlassPropertyPanel.d.ts.map +1 -0
  263. package/dist/src/components/cms/index.d.ts +3 -0
  264. package/dist/src/components/cms/index.d.ts.map +1 -0
  265. package/dist/src/components/collaboration/CollaborativeGlassWorkspace.d.ts +34 -0
  266. package/dist/src/components/collaboration/CollaborativeGlassWorkspace.d.ts.map +1 -0
  267. package/dist/src/components/collaboration/GlassCollaborationDashboard.d.ts +11 -0
  268. package/dist/src/components/collaboration/GlassCollaborationDashboard.d.ts.map +1 -0
  269. package/dist/src/components/collaboration/GlassCollaborationProvider.d.ts +89 -0
  270. package/dist/src/components/collaboration/GlassCollaborationProvider.d.ts.map +1 -0
  271. package/dist/src/components/collaboration/GlassCollaborativeComments.d.ts +8 -0
  272. package/dist/src/components/collaboration/GlassCollaborativeComments.d.ts.map +1 -0
  273. package/dist/src/components/collaboration/GlassCollaborativeCursor.d.ts +7 -0
  274. package/dist/src/components/collaboration/GlassCollaborativeCursor.d.ts.map +1 -0
  275. package/dist/src/components/collaboration/index.d.ts +2 -0
  276. package/dist/src/components/collaboration/index.d.ts.map +1 -0
  277. package/dist/src/components/cookie-consent/CompactCookieNotice.d.ts +22 -0
  278. package/dist/src/components/cookie-consent/CompactCookieNotice.d.ts.map +1 -0
  279. package/dist/src/components/cookie-consent/CookieConsent.d.ts +8 -0
  280. package/dist/src/components/cookie-consent/CookieConsent.d.ts.map +1 -0
  281. package/dist/src/components/cookie-consent/GlobalCookieConsent.d.ts +8 -0
  282. package/dist/src/components/cookie-consent/GlobalCookieConsent.d.ts.map +1 -0
  283. package/dist/src/components/cookie-consent/types.d.ts +54 -0
  284. package/dist/src/components/cookie-consent/types.d.ts.map +1 -0
  285. package/dist/src/components/dashboard/GlassActivityFeed.d.ts +100 -0
  286. package/dist/src/components/dashboard/GlassActivityFeed.d.ts.map +1 -0
  287. package/dist/src/components/dashboard/GlassChartWidget.d.ts +119 -0
  288. package/dist/src/components/dashboard/GlassChartWidget.d.ts.map +1 -0
  289. package/dist/src/components/dashboard/GlassKPICard.d.ts +91 -0
  290. package/dist/src/components/dashboard/GlassKPICard.d.ts.map +1 -0
  291. package/dist/src/components/dashboard/GlassMetricCard.d.ts +92 -0
  292. package/dist/src/components/dashboard/GlassMetricCard.d.ts.map +1 -0
  293. package/dist/src/components/dashboard/GlassStatCard.d.ts +97 -0
  294. package/dist/src/components/dashboard/GlassStatCard.d.ts.map +1 -0
  295. package/dist/src/components/dashboard/types.d.ts +307 -0
  296. package/dist/src/components/dashboard/types.d.ts.map +1 -0
  297. package/dist/src/components/data-display/GlassAccordion.d.ts +92 -0
  298. package/dist/src/components/data-display/GlassAccordion.d.ts.map +1 -0
  299. package/dist/src/components/data-display/GlassAlert.d.ts +57 -0
  300. package/dist/src/components/data-display/GlassAlert.d.ts.map +1 -0
  301. package/dist/src/components/data-display/GlassAnimatedNumber.d.ts +60 -0
  302. package/dist/src/components/data-display/GlassAnimatedNumber.d.ts.map +1 -0
  303. package/dist/src/components/data-display/GlassAvatar.d.ts +79 -0
  304. package/dist/src/components/data-display/GlassAvatar.d.ts.map +1 -0
  305. package/dist/src/components/data-display/GlassBadge.d.ts +118 -0
  306. package/dist/src/components/data-display/GlassBadge.d.ts.map +1 -0
  307. package/dist/src/components/data-display/GlassBadgeLine.d.ts +13 -0
  308. package/dist/src/components/data-display/GlassBadgeLine.d.ts.map +1 -0
  309. package/dist/src/components/data-display/GlassChip.d.ts +67 -0
  310. package/dist/src/components/data-display/GlassChip.d.ts.map +1 -0
  311. package/dist/src/components/data-display/GlassDataGrid.d.ts +4 -0
  312. package/dist/src/components/data-display/GlassDataGrid.d.ts.map +1 -0
  313. package/dist/src/components/data-display/GlassDataGridPro.d.ts +9 -0
  314. package/dist/src/components/data-display/GlassDataGridPro.d.ts.map +1 -0
  315. package/dist/src/components/data-display/GlassDataTable.d.ts +206 -0
  316. package/dist/src/components/data-display/GlassDataTable.d.ts.map +1 -0
  317. package/dist/src/components/data-display/GlassDiffViewer.d.ts +9 -0
  318. package/dist/src/components/data-display/GlassDiffViewer.d.ts.map +1 -0
  319. package/dist/src/components/data-display/GlassDivider.d.ts +35 -0
  320. package/dist/src/components/data-display/GlassDivider.d.ts.map +1 -0
  321. package/dist/src/components/data-display/GlassGanttChart.d.ts +86 -0
  322. package/dist/src/components/data-display/GlassGanttChart.d.ts.map +1 -0
  323. package/dist/src/components/data-display/GlassHeatmap.d.ts +87 -0
  324. package/dist/src/components/data-display/GlassHeatmap.d.ts.map +1 -0
  325. package/dist/src/components/data-display/GlassJSONViewer.d.ts +7 -0
  326. package/dist/src/components/data-display/GlassJSONViewer.d.ts.map +1 -0
  327. package/dist/src/components/data-display/GlassKanbanBoard.d.ts +91 -0
  328. package/dist/src/components/data-display/GlassKanbanBoard.d.ts.map +1 -0
  329. package/dist/src/components/data-display/GlassLoadingSkeleton.d.ts +31 -0
  330. package/dist/src/components/data-display/GlassLoadingSkeleton.d.ts.map +1 -0
  331. package/dist/src/components/data-display/GlassMetricChip.d.ts +12 -0
  332. package/dist/src/components/data-display/GlassMetricChip.d.ts.map +1 -0
  333. package/dist/src/components/data-display/GlassMetricsGrid.d.ts +96 -0
  334. package/dist/src/components/data-display/GlassMetricsGrid.d.ts.map +1 -0
  335. package/dist/src/components/data-display/GlassNotificationCenter.d.ts +64 -0
  336. package/dist/src/components/data-display/GlassNotificationCenter.d.ts.map +1 -0
  337. package/dist/src/components/data-display/GlassProgress.d.ts +142 -0
  338. package/dist/src/components/data-display/GlassProgress.d.ts.map +1 -0
  339. package/dist/src/components/data-display/GlassSchemaViewer.d.ts +7 -0
  340. package/dist/src/components/data-display/GlassSchemaViewer.d.ts.map +1 -0
  341. package/dist/src/components/data-display/GlassSkeleton.d.ts +42 -0
  342. package/dist/src/components/data-display/GlassSkeleton.d.ts.map +1 -0
  343. package/dist/src/components/data-display/GlassSkeletonLoader.d.ts +27 -0
  344. package/dist/src/components/data-display/GlassSkeletonLoader.d.ts.map +1 -0
  345. package/dist/src/components/data-display/GlassSparkline.d.ts +11 -0
  346. package/dist/src/components/data-display/GlassSparkline.d.ts.map +1 -0
  347. package/dist/src/components/data-display/GlassStatusDot.d.ts +8 -0
  348. package/dist/src/components/data-display/GlassStatusDot.d.ts.map +1 -0
  349. package/dist/src/components/data-display/GlassTimeline.d.ts +102 -0
  350. package/dist/src/components/data-display/GlassTimeline.d.ts.map +1 -0
  351. package/dist/src/components/data-display/GlassToast.d.ts +102 -0
  352. package/dist/src/components/data-display/GlassToast.d.ts.map +1 -0
  353. package/dist/src/components/data-display/GlassTreeView.d.ts +60 -0
  354. package/dist/src/components/data-display/GlassTreeView.d.ts.map +1 -0
  355. package/dist/src/components/data-display/GlassVirtualTable.d.ts +8 -0
  356. package/dist/src/components/data-display/GlassVirtualTable.d.ts.map +1 -0
  357. package/dist/src/components/data-display/Typography.d.ts +7 -0
  358. package/dist/src/components/data-display/Typography.d.ts.map +1 -0
  359. package/dist/src/components/data-display/index.d.ts +25 -0
  360. package/dist/src/components/data-display/index.d.ts.map +1 -0
  361. package/dist/src/components/data-display/types.d.ts +36 -0
  362. package/dist/src/components/data-display/types.d.ts.map +1 -0
  363. package/dist/src/components/demo/EnhancementShowcase.d.ts +15 -0
  364. package/dist/src/components/demo/EnhancementShowcase.d.ts.map +1 -0
  365. package/dist/src/components/ecommerce/GlassEcommerceProvider.d.ts +242 -0
  366. package/dist/src/components/ecommerce/GlassEcommerceProvider.d.ts.map +1 -0
  367. package/dist/src/components/ecommerce/GlassProductRecommendations.d.ts +17 -0
  368. package/dist/src/components/ecommerce/GlassProductRecommendations.d.ts.map +1 -0
  369. package/dist/src/components/ecommerce/GlassSmartShoppingCart.d.ts +14 -0
  370. package/dist/src/components/ecommerce/GlassSmartShoppingCart.d.ts.map +1 -0
  371. package/dist/src/components/ecommerce/index.d.ts +4 -0
  372. package/dist/src/components/ecommerce/index.d.ts.map +1 -0
  373. package/dist/src/components/editor/GlassRichTextEditor.d.ts +53 -0
  374. package/dist/src/components/editor/GlassRichTextEditor.d.ts.map +1 -0
  375. package/dist/src/components/effects/AuroraPro.d.ts +72 -0
  376. package/dist/src/components/effects/AuroraPro.d.ts.map +1 -0
  377. package/dist/src/components/effects/Glass3DEngine.d.ts +37 -0
  378. package/dist/src/components/effects/Glass3DEngine.d.ts.map +1 -0
  379. package/dist/src/components/effects/GlassMorphingEngine.d.ts +45 -0
  380. package/dist/src/components/effects/GlassMorphingEngine.d.ts.map +1 -0
  381. package/dist/src/components/effects/GlassPhysicsEngine.d.ts +35 -0
  382. package/dist/src/components/effects/GlassPhysicsEngine.d.ts.map +1 -0
  383. package/dist/src/components/effects/GlassShatterEffects.d.ts +48 -0
  384. package/dist/src/components/effects/GlassShatterEffects.d.ts.map +1 -0
  385. package/dist/src/components/effects/SeasonalParticles.d.ts +65 -0
  386. package/dist/src/components/effects/SeasonalParticles.d.ts.map +1 -0
  387. package/dist/src/components/effects/index.d.ts +4 -0
  388. package/dist/src/components/effects/index.d.ts.map +1 -0
  389. package/dist/src/components/experiential/GlassMoodRing.d.ts +45 -0
  390. package/dist/src/components/experiential/GlassMoodRing.d.ts.map +1 -0
  391. package/dist/src/components/feedback/GlassToast.d.ts +35 -0
  392. package/dist/src/components/feedback/GlassToast.d.ts.map +1 -0
  393. package/dist/src/components/houdini/HoudiniGlassCard.d.ts +17 -0
  394. package/dist/src/components/houdini/HoudiniGlassCard.d.ts.map +1 -0
  395. package/dist/src/components/houdini/HoudiniGlassProvider.d.ts +88 -0
  396. package/dist/src/components/houdini/HoudiniGlassProvider.d.ts.map +1 -0
  397. package/dist/src/components/houdini/index.d.ts +3 -0
  398. package/dist/src/components/houdini/index.d.ts.map +1 -0
  399. package/dist/src/components/icons/ClearIcon.d.ts +10 -0
  400. package/dist/src/components/icons/ClearIcon.d.ts.map +1 -0
  401. package/dist/src/components/icons/types.d.ts +16 -0
  402. package/dist/src/components/icons/types.d.ts.map +1 -0
  403. package/dist/src/components/image/GlassImageProcessingProvider.d.ts +188 -0
  404. package/dist/src/components/image/GlassImageProcessingProvider.d.ts.map +1 -0
  405. package/dist/src/components/image/GlassIntelligentImageUploader.d.ts +16 -0
  406. package/dist/src/components/image/GlassIntelligentImageUploader.d.ts.map +1 -0
  407. package/dist/src/components/image/index.d.ts +3 -0
  408. package/dist/src/components/image/index.d.ts.map +1 -0
  409. package/dist/src/components/image-list/ImageList.d.ts +32 -0
  410. package/dist/src/components/image-list/ImageList.d.ts.map +1 -0
  411. package/dist/src/components/image-list/ImageListItem.d.ts +24 -0
  412. package/dist/src/components/image-list/ImageListItem.d.ts.map +1 -0
  413. package/dist/src/components/image-list/ImageListItemBar.d.ts +22 -0
  414. package/dist/src/components/image-list/ImageListItemBar.d.ts.map +1 -0
  415. package/dist/src/components/image-list/types.d.ts +55 -0
  416. package/dist/src/components/image-list/types.d.ts.map +1 -0
  417. package/dist/src/components/immersive/Glass360Viewer.d.ts +84 -0
  418. package/dist/src/components/immersive/Glass360Viewer.d.ts.map +1 -0
  419. package/dist/src/components/immersive/GlassARPreview.d.ts +139 -0
  420. package/dist/src/components/immersive/GlassARPreview.d.ts.map +1 -0
  421. package/dist/src/components/immersive/GlassFluidSimulation.d.ts +74 -0
  422. package/dist/src/components/immersive/GlassFluidSimulation.d.ts.map +1 -0
  423. package/dist/src/components/immersive/GlassHologram.d.ts +98 -0
  424. package/dist/src/components/immersive/GlassHologram.d.ts.map +1 -0
  425. package/dist/src/components/immersive/GlassParticleField.d.ts +118 -0
  426. package/dist/src/components/immersive/GlassParticleField.d.ts.map +1 -0
  427. package/dist/src/components/immersive/GlassVortexPortal.d.ts +89 -0
  428. package/dist/src/components/immersive/GlassVortexPortal.d.ts.map +1 -0
  429. package/dist/src/components/input/GlassCheckbox.d.ts +42 -0
  430. package/dist/src/components/input/GlassCheckbox.d.ts.map +1 -0
  431. package/dist/src/components/input/GlassCheckboxGroup.d.ts +66 -0
  432. package/dist/src/components/input/GlassCheckboxGroup.d.ts.map +1 -0
  433. package/dist/src/components/input/GlassColorPicker.d.ts +78 -0
  434. package/dist/src/components/input/GlassColorPicker.d.ts.map +1 -0
  435. package/dist/src/components/input/GlassDatePicker.d.ts +110 -0
  436. package/dist/src/components/input/GlassDatePicker.d.ts.map +1 -0
  437. package/dist/src/components/input/GlassDateRangePicker.d.ts +77 -0
  438. package/dist/src/components/input/GlassDateRangePicker.d.ts.map +1 -0
  439. package/dist/src/components/input/GlassFileUpload.d.ts +61 -0
  440. package/dist/src/components/input/GlassFileUpload.d.ts.map +1 -0
  441. package/dist/src/components/input/GlassForm.d.ts +57 -0
  442. package/dist/src/components/input/GlassForm.d.ts.map +1 -0
  443. package/dist/src/components/input/GlassFormStepper.d.ts +71 -0
  444. package/dist/src/components/input/GlassFormStepper.d.ts.map +1 -0
  445. package/dist/src/components/input/GlassFormTable.d.ts +12 -0
  446. package/dist/src/components/input/GlassFormTable.d.ts.map +1 -0
  447. package/dist/src/components/input/GlassInput.d.ts +98 -0
  448. package/dist/src/components/input/GlassInput.d.ts.map +1 -0
  449. package/dist/src/components/input/GlassLabel.d.ts +20 -0
  450. package/dist/src/components/input/GlassLabel.d.ts.map +1 -0
  451. package/dist/src/components/input/GlassMultiSelect.d.ts +14 -0
  452. package/dist/src/components/input/GlassMultiSelect.d.ts.map +1 -0
  453. package/dist/src/components/input/GlassMultiStepForm.d.ts +117 -0
  454. package/dist/src/components/input/GlassMultiStepForm.d.ts.map +1 -0
  455. package/dist/src/components/input/GlassRadioGroup.d.ts +141 -0
  456. package/dist/src/components/input/GlassRadioGroup.d.ts.map +1 -0
  457. package/dist/src/components/input/GlassSelect.d.ts +108 -0
  458. package/dist/src/components/input/GlassSelect.d.ts.map +1 -0
  459. package/dist/src/components/input/GlassSelectCompound.d.ts +32 -0
  460. package/dist/src/components/input/GlassSelectCompound.d.ts.map +1 -0
  461. package/dist/src/components/input/GlassSlider.d.ts +60 -0
  462. package/dist/src/components/input/GlassSlider.d.ts.map +1 -0
  463. package/dist/src/components/input/GlassStep.d.ts +4 -0
  464. package/dist/src/components/input/GlassStep.d.ts.map +1 -0
  465. package/dist/src/components/input/GlassStepIcon.d.ts +20 -0
  466. package/dist/src/components/input/GlassStepIcon.d.ts.map +1 -0
  467. package/dist/src/components/input/GlassStepLabel.d.ts +20 -0
  468. package/dist/src/components/input/GlassStepLabel.d.ts.map +1 -0
  469. package/dist/src/components/input/GlassStepper.d.ts +62 -0
  470. package/dist/src/components/input/GlassStepper.d.ts.map +1 -0
  471. package/dist/src/components/input/GlassSwitch.d.ts +49 -0
  472. package/dist/src/components/input/GlassSwitch.d.ts.map +1 -0
  473. package/dist/src/components/input/GlassTextarea.d.ts +34 -0
  474. package/dist/src/components/input/GlassTextarea.d.ts.map +1 -0
  475. package/dist/src/components/input/GlassToggle.d.ts +133 -0
  476. package/dist/src/components/input/GlassToggle.d.ts.map +1 -0
  477. package/dist/src/components/input/GlassTransferList.d.ts +90 -0
  478. package/dist/src/components/input/GlassTransferList.d.ts.map +1 -0
  479. package/dist/src/components/input/GlassTreeSelect.d.ts +89 -0
  480. package/dist/src/components/input/GlassTreeSelect.d.ts.map +1 -0
  481. package/dist/src/components/input/GlassWizard.d.ts +125 -0
  482. package/dist/src/components/input/GlassWizard.d.ts.map +1 -0
  483. package/dist/src/components/input/types.d.ts +99 -0
  484. package/dist/src/components/input/types.d.ts.map +1 -0
  485. package/dist/src/components/interactive/ContextAwareGlass.d.ts +123 -0
  486. package/dist/src/components/interactive/ContextAwareGlass.d.ts.map +1 -0
  487. package/dist/src/components/interactive/CursorGlow.d.ts +29 -0
  488. package/dist/src/components/interactive/CursorGlow.d.ts.map +1 -0
  489. package/dist/src/components/interactive/GlassA11yAuditor.d.ts +50 -0
  490. package/dist/src/components/interactive/GlassA11yAuditor.d.ts.map +1 -0
  491. package/dist/src/components/interactive/GlassAdvancedSearch.d.ts +103 -0
  492. package/dist/src/components/interactive/GlassAdvancedSearch.d.ts.map +1 -0
  493. package/dist/src/components/interactive/GlassAvatarGroup.d.ts +19 -0
  494. package/dist/src/components/interactive/GlassAvatarGroup.d.ts.map +1 -0
  495. package/dist/src/components/interactive/GlassCardLink.d.ts +39 -0
  496. package/dist/src/components/interactive/GlassCardLink.d.ts.map +1 -0
  497. package/dist/src/components/interactive/GlassCarousel.d.ts +117 -0
  498. package/dist/src/components/interactive/GlassCarousel.d.ts.map +1 -0
  499. package/dist/src/components/interactive/GlassChat.d.ts +118 -0
  500. package/dist/src/components/interactive/GlassChat.d.ts.map +1 -0
  501. package/dist/src/components/interactive/GlassChatInput.d.ts +93 -0
  502. package/dist/src/components/interactive/GlassChatInput.d.ts.map +1 -0
  503. package/dist/src/components/interactive/GlassCoachmarks.d.ts +15 -0
  504. package/dist/src/components/interactive/GlassCoachmarks.d.ts.map +1 -0
  505. package/dist/src/components/interactive/GlassCodeEditor.d.ts +51 -0
  506. package/dist/src/components/interactive/GlassCodeEditor.d.ts.map +1 -0
  507. package/dist/src/components/interactive/GlassColorSchemeGenerator.d.ts +32 -0
  508. package/dist/src/components/interactive/GlassColorSchemeGenerator.d.ts.map +1 -0
  509. package/dist/src/components/interactive/GlassColorWheel.d.ts +44 -0
  510. package/dist/src/components/interactive/GlassColorWheel.d.ts.map +1 -0
  511. package/dist/src/components/interactive/GlassCommand.d.ts +126 -0
  512. package/dist/src/components/interactive/GlassCommand.d.ts.map +1 -0
  513. package/dist/src/components/interactive/GlassCommandPalette.d.ts +158 -0
  514. package/dist/src/components/interactive/GlassCommandPalette.d.ts.map +1 -0
  515. package/dist/src/components/interactive/GlassCommentThread.d.ts +14 -0
  516. package/dist/src/components/interactive/GlassCommentThread.d.ts.map +1 -0
  517. package/dist/src/components/interactive/GlassComponentPlayground.d.ts +46 -0
  518. package/dist/src/components/interactive/GlassComponentPlayground.d.ts.map +1 -0
  519. package/dist/src/components/interactive/GlassDraggable.d.ts +151 -0
  520. package/dist/src/components/interactive/GlassDraggable.d.ts.map +1 -0
  521. package/dist/src/components/interactive/GlassDrawingCanvas.d.ts +60 -0
  522. package/dist/src/components/interactive/GlassDrawingCanvas.d.ts.map +1 -0
  523. package/dist/src/components/interactive/GlassFacetSearch.d.ts +55 -0
  524. package/dist/src/components/interactive/GlassFacetSearch.d.ts.map +1 -0
  525. package/dist/src/components/interactive/GlassFileExplorer.d.ts +53 -0
  526. package/dist/src/components/interactive/GlassFileExplorer.d.ts.map +1 -0
  527. package/dist/src/components/interactive/GlassFileTree.d.ts +47 -0
  528. package/dist/src/components/interactive/GlassFileTree.d.ts.map +1 -0
  529. package/dist/src/components/interactive/GlassFileUpload.d.ts +103 -0
  530. package/dist/src/components/interactive/GlassFileUpload.d.ts.map +1 -0
  531. package/dist/src/components/interactive/GlassFilterPanel.d.ts +47 -0
  532. package/dist/src/components/interactive/GlassFilterPanel.d.ts.map +1 -0
  533. package/dist/src/components/interactive/GlassFocusRing.d.ts +8 -0
  534. package/dist/src/components/interactive/GlassFocusRing.d.ts.map +1 -0
  535. package/dist/src/components/interactive/GlassFormBuilder.d.ts +139 -0
  536. package/dist/src/components/interactive/GlassFormBuilder.d.ts.map +1 -0
  537. package/dist/src/components/interactive/GlassGallery.d.ts +73 -0
  538. package/dist/src/components/interactive/GlassGallery.d.ts.map +1 -0
  539. package/dist/src/components/interactive/GlassGestureZone.d.ts +85 -0
  540. package/dist/src/components/interactive/GlassGestureZone.d.ts.map +1 -0
  541. package/dist/src/components/interactive/GlassGradientPicker.d.ts +61 -0
  542. package/dist/src/components/interactive/GlassGradientPicker.d.ts.map +1 -0
  543. package/dist/src/components/interactive/GlassImageViewer.d.ts +110 -0
  544. package/dist/src/components/interactive/GlassImageViewer.d.ts.map +1 -0
  545. package/dist/src/components/interactive/GlassInfiniteScroll.d.ts +58 -0
  546. package/dist/src/components/interactive/GlassInfiniteScroll.d.ts.map +1 -0
  547. package/dist/src/components/interactive/GlassInlineEdit.d.ts +9 -0
  548. package/dist/src/components/interactive/GlassInlineEdit.d.ts.map +1 -0
  549. package/dist/src/components/interactive/GlassKanban.d.ts +64 -0
  550. package/dist/src/components/interactive/GlassKanban.d.ts.map +1 -0
  551. package/dist/src/components/interactive/GlassKeyValueEditor.d.ts +12 -0
  552. package/dist/src/components/interactive/GlassKeyValueEditor.d.ts.map +1 -0
  553. package/dist/src/components/interactive/GlassLazyImage.d.ts +98 -0
  554. package/dist/src/components/interactive/GlassLazyImage.d.ts.map +1 -0
  555. package/dist/src/components/interactive/GlassMentionList.d.ts +13 -0
  556. package/dist/src/components/interactive/GlassMentionList.d.ts.map +1 -0
  557. package/dist/src/components/interactive/GlassMessageList.d.ts +70 -0
  558. package/dist/src/components/interactive/GlassMessageList.d.ts.map +1 -0
  559. package/dist/src/components/interactive/GlassMindMap.d.ts +59 -0
  560. package/dist/src/components/interactive/GlassMindMap.d.ts.map +1 -0
  561. package/dist/src/components/interactive/GlassPatternBuilder.d.ts +82 -0
  562. package/dist/src/components/interactive/GlassPatternBuilder.d.ts.map +1 -0
  563. package/dist/src/components/interactive/GlassPresets.d.ts +68 -0
  564. package/dist/src/components/interactive/GlassPresets.d.ts.map +1 -0
  565. package/dist/src/components/interactive/GlassQueryBuilder.d.ts +27 -0
  566. package/dist/src/components/interactive/GlassQueryBuilder.d.ts.map +1 -0
  567. package/dist/src/components/interactive/GlassReactionBar.d.ts +13 -0
  568. package/dist/src/components/interactive/GlassReactionBar.d.ts.map +1 -0
  569. package/dist/src/components/interactive/GlassSearchInterface.d.ts +122 -0
  570. package/dist/src/components/interactive/GlassSearchInterface.d.ts.map +1 -0
  571. package/dist/src/components/interactive/GlassSignaturePad.d.ts +54 -0
  572. package/dist/src/components/interactive/GlassSignaturePad.d.ts.map +1 -0
  573. package/dist/src/components/interactive/GlassSpotlight.d.ts +7 -0
  574. package/dist/src/components/interactive/GlassSpotlight.d.ts.map +1 -0
  575. package/dist/src/components/interactive/GlassStepper.d.ts +14 -0
  576. package/dist/src/components/interactive/GlassStepper.d.ts.map +1 -0
  577. package/dist/src/components/interactive/GlassTagInput.d.ts +10 -0
  578. package/dist/src/components/interactive/GlassTagInput.d.ts.map +1 -0
  579. package/dist/src/components/interactive/GlassThemeDemo.d.ts +16 -0
  580. package/dist/src/components/interactive/GlassThemeDemo.d.ts.map +1 -0
  581. package/dist/src/components/interactive/GlassThemeSwitcher.d.ts +57 -0
  582. package/dist/src/components/interactive/GlassThemeSwitcher.d.ts.map +1 -0
  583. package/dist/src/components/interactive/GlassUserPresence.d.ts +81 -0
  584. package/dist/src/components/interactive/GlassUserPresence.d.ts.map +1 -0
  585. package/dist/src/components/interactive/GlassVideoPlayer.d.ts +86 -0
  586. package/dist/src/components/interactive/GlassVideoPlayer.d.ts.map +1 -0
  587. package/dist/src/components/interactive/GlassVirtualList.d.ts +79 -0
  588. package/dist/src/components/interactive/GlassVirtualList.d.ts.map +1 -0
  589. package/dist/src/components/interactive/GlassVoiceInput.d.ts +121 -0
  590. package/dist/src/components/interactive/GlassVoiceInput.d.ts.map +1 -0
  591. package/dist/src/components/interactive/GlassWhiteboard.d.ts +60 -0
  592. package/dist/src/components/interactive/GlassWhiteboard.d.ts.map +1 -0
  593. package/dist/src/components/interactive/PageTransitionDemo.d.ts +4 -0
  594. package/dist/src/components/interactive/PageTransitionDemo.d.ts.map +1 -0
  595. package/dist/src/components/interactive/ThemedGlassComponents.d.ts +33 -0
  596. package/dist/src/components/interactive/ThemedGlassComponents.d.ts.map +1 -0
  597. package/dist/src/components/interactive/types.d.ts +399 -0
  598. package/dist/src/components/interactive/types.d.ts.map +1 -0
  599. package/dist/src/components/layout/Box.d.ts +25 -0
  600. package/dist/src/components/layout/Box.d.ts.map +1 -0
  601. package/dist/src/components/layout/GlassAppShell.d.ts +157 -0
  602. package/dist/src/components/layout/GlassAppShell.d.ts.map +1 -0
  603. package/dist/src/components/layout/GlassBox.d.ts +124 -0
  604. package/dist/src/components/layout/GlassBox.d.ts.map +1 -0
  605. package/dist/src/components/layout/GlassContainer.d.ts +171 -0
  606. package/dist/src/components/layout/GlassContainer.d.ts.map +1 -0
  607. package/dist/src/components/layout/GlassFlex.d.ts +114 -0
  608. package/dist/src/components/layout/GlassFlex.d.ts.map +1 -0
  609. package/dist/src/components/layout/GlassGrid.d.ts +128 -0
  610. package/dist/src/components/layout/GlassGrid.d.ts.map +1 -0
  611. package/dist/src/components/layout/GlassMasonry.d.ts +34 -0
  612. package/dist/src/components/layout/GlassMasonry.d.ts.map +1 -0
  613. package/dist/src/components/layout/GlassScrollArea.d.ts +98 -0
  614. package/dist/src/components/layout/GlassScrollArea.d.ts.map +1 -0
  615. package/dist/src/components/layout/GlassSeparator.d.ts +28 -0
  616. package/dist/src/components/layout/GlassSeparator.d.ts.map +1 -0
  617. package/dist/src/components/layout/GlassSplitPane.d.ts +46 -0
  618. package/dist/src/components/layout/GlassSplitPane.d.ts.map +1 -0
  619. package/dist/src/components/layout/GlassStack.d.ts +114 -0
  620. package/dist/src/components/layout/GlassStack.d.ts.map +1 -0
  621. package/dist/src/components/layout/HStack.d.ts +31 -0
  622. package/dist/src/components/layout/HStack.d.ts.map +1 -0
  623. package/dist/src/components/layout/OptimizedGlassContainer.d.ts +38 -0
  624. package/dist/src/components/layout/OptimizedGlassContainer.d.ts.map +1 -0
  625. package/dist/src/components/layout/VStack.d.ts +31 -0
  626. package/dist/src/components/layout/VStack.d.ts.map +1 -0
  627. package/dist/src/components/layout/index.d.ts +11 -0
  628. package/dist/src/components/layout/index.d.ts.map +1 -0
  629. package/dist/src/components/layout/types.d.ts +351 -0
  630. package/dist/src/components/layout/types.d.ts.map +1 -0
  631. package/dist/src/components/layouts/GlassFractalLayout.d.ts +41 -0
  632. package/dist/src/components/layouts/GlassFractalLayout.d.ts.map +1 -0
  633. package/dist/src/components/layouts/GlassGoldenRatioGrid.d.ts +53 -0
  634. package/dist/src/components/layouts/GlassGoldenRatioGrid.d.ts.map +1 -0
  635. package/dist/src/components/layouts/GlassIslandLayout.d.ts +58 -0
  636. package/dist/src/components/layouts/GlassIslandLayout.d.ts.map +1 -0
  637. package/dist/src/components/layouts/GlassMasonryGrid.d.ts +45 -0
  638. package/dist/src/components/layouts/GlassMasonryGrid.d.ts.map +1 -0
  639. package/dist/src/components/layouts/GlassOrbitalMenu.d.ts +37 -0
  640. package/dist/src/components/layouts/GlassOrbitalMenu.d.ts.map +1 -0
  641. package/dist/src/components/layouts/GlassTessellation.d.ts +44 -0
  642. package/dist/src/components/layouts/GlassTessellation.d.ts.map +1 -0
  643. package/dist/src/components/media/GlassAdvancedAudioPlayer.d.ts +21 -0
  644. package/dist/src/components/media/GlassAdvancedAudioPlayer.d.ts.map +1 -0
  645. package/dist/src/components/media/GlassAdvancedVideoPlayer.d.ts +20 -0
  646. package/dist/src/components/media/GlassAdvancedVideoPlayer.d.ts.map +1 -0
  647. package/dist/src/components/media/GlassMediaProvider.d.ts +145 -0
  648. package/dist/src/components/media/GlassMediaProvider.d.ts.map +1 -0
  649. package/dist/src/components/media/index.d.ts +4 -0
  650. package/dist/src/components/media/index.d.ts.map +1 -0
  651. package/dist/src/components/mobile/GlassActionSheet.d.ts +75 -0
  652. package/dist/src/components/mobile/GlassActionSheet.d.ts.map +1 -0
  653. package/dist/src/components/mobile/GlassPullToRefresh.d.ts +62 -0
  654. package/dist/src/components/mobile/GlassPullToRefresh.d.ts.map +1 -0
  655. package/dist/src/components/mobile/TouchGlassOptimization.d.ts +50 -0
  656. package/dist/src/components/mobile/TouchGlassOptimization.d.ts.map +1 -0
  657. package/dist/src/components/modal/GlassBottomSheet.d.ts +35 -0
  658. package/dist/src/components/modal/GlassBottomSheet.d.ts.map +1 -0
  659. package/dist/src/components/modal/GlassDialog.d.ts +145 -0
  660. package/dist/src/components/modal/GlassDialog.d.ts.map +1 -0
  661. package/dist/src/components/modal/GlassDrawer.d.ts +155 -0
  662. package/dist/src/components/modal/GlassDrawer.d.ts.map +1 -0
  663. package/dist/src/components/modal/GlassHoverCard.d.ts +133 -0
  664. package/dist/src/components/modal/GlassHoverCard.d.ts.map +1 -0
  665. package/dist/src/components/modal/GlassModal.d.ts +136 -0
  666. package/dist/src/components/modal/GlassModal.d.ts.map +1 -0
  667. package/dist/src/components/modal/GlassPopover.d.ts +126 -0
  668. package/dist/src/components/modal/GlassPopover.d.ts.map +1 -0
  669. package/dist/src/components/modal/GlassTooltip.d.ts +41 -0
  670. package/dist/src/components/modal/GlassTooltip.d.ts.map +1 -0
  671. package/dist/src/components/modal/types.d.ts +327 -0
  672. package/dist/src/components/modal/types.d.ts.map +1 -0
  673. package/dist/src/components/navigation/EnhancedGlassTabs.d.ts +117 -0
  674. package/dist/src/components/navigation/EnhancedGlassTabs.d.ts.map +1 -0
  675. package/dist/src/components/navigation/GlassBottomNav.d.ts +68 -0
  676. package/dist/src/components/navigation/GlassBottomNav.d.ts.map +1 -0
  677. package/dist/src/components/navigation/GlassBreadcrumb.d.ts +108 -0
  678. package/dist/src/components/navigation/GlassBreadcrumb.d.ts.map +1 -0
  679. package/dist/src/components/navigation/GlassCommandBar.d.ts +20 -0
  680. package/dist/src/components/navigation/GlassCommandBar.d.ts.map +1 -0
  681. package/dist/src/components/navigation/GlassContextMenu.d.ts +121 -0
  682. package/dist/src/components/navigation/GlassContextMenu.d.ts.map +1 -0
  683. package/dist/src/components/navigation/GlassDropdownMenu.d.ts +52 -0
  684. package/dist/src/components/navigation/GlassDropdownMenu.d.ts.map +1 -0
  685. package/dist/src/components/navigation/GlassHeader.d.ts +189 -0
  686. package/dist/src/components/navigation/GlassHeader.d.ts.map +1 -0
  687. package/dist/src/components/navigation/GlassMenubar.d.ts +125 -0
  688. package/dist/src/components/navigation/GlassMenubar.d.ts.map +1 -0
  689. package/dist/src/components/navigation/GlassMobileNav.d.ts +81 -0
  690. package/dist/src/components/navigation/GlassMobileNav.d.ts.map +1 -0
  691. package/dist/src/components/navigation/GlassNavigation.d.ts +7 -0
  692. package/dist/src/components/navigation/GlassNavigation.d.ts.map +1 -0
  693. package/dist/src/components/navigation/GlassNavigationMenu.d.ts +129 -0
  694. package/dist/src/components/navigation/GlassNavigationMenu.d.ts.map +1 -0
  695. package/dist/src/components/navigation/GlassPagination.d.ts +153 -0
  696. package/dist/src/components/navigation/GlassPagination.d.ts.map +1 -0
  697. package/dist/src/components/navigation/GlassResponsiveNav.d.ts +93 -0
  698. package/dist/src/components/navigation/GlassResponsiveNav.d.ts.map +1 -0
  699. package/dist/src/components/navigation/GlassSegmentedControl.d.ts +22 -0
  700. package/dist/src/components/navigation/GlassSegmentedControl.d.ts.map +1 -0
  701. package/dist/src/components/navigation/GlassSidebar.d.ts +105 -0
  702. package/dist/src/components/navigation/GlassSidebar.d.ts.map +1 -0
  703. package/dist/src/components/navigation/GlassTabBar.d.ts +15 -0
  704. package/dist/src/components/navigation/GlassTabBar.d.ts.map +1 -0
  705. package/dist/src/components/navigation/GlassTabs.d.ts +28 -0
  706. package/dist/src/components/navigation/GlassTabs.d.ts.map +1 -0
  707. package/dist/src/components/navigation/GlassToolbar.d.ts +15 -0
  708. package/dist/src/components/navigation/GlassToolbar.d.ts.map +1 -0
  709. package/dist/src/components/navigation/HeaderUserMenu.d.ts +34 -0
  710. package/dist/src/components/navigation/HeaderUserMenu.d.ts.map +1 -0
  711. package/dist/src/components/navigation/components/CollapsedMenu.d.ts +13 -0
  712. package/dist/src/components/navigation/components/CollapsedMenu.d.ts.map +1 -0
  713. package/dist/src/components/navigation/components/ScrollButtons.d.ts +10 -0
  714. package/dist/src/components/navigation/components/ScrollButtons.d.ts.map +1 -0
  715. package/dist/src/components/navigation/components/TabItem.d.ts +13 -0
  716. package/dist/src/components/navigation/components/TabItem.d.ts.map +1 -0
  717. package/dist/src/components/navigation/hooks/useResponsive.d.ts +13 -0
  718. package/dist/src/components/navigation/hooks/useResponsive.d.ts.map +1 -0
  719. package/dist/src/components/navigation/hooks/useTabAnimations.d.ts +16 -0
  720. package/dist/src/components/navigation/hooks/useTabAnimations.d.ts.map +1 -0
  721. package/dist/src/components/navigation/styled.d.ts +22 -0
  722. package/dist/src/components/navigation/styled.d.ts.map +1 -0
  723. package/dist/src/components/navigation/types.d.ts +141 -0
  724. package/dist/src/components/navigation/types.d.ts.map +1 -0
  725. package/dist/src/components/navigation/utils/tabUtils.d.ts +14 -0
  726. package/dist/src/components/navigation/utils/tabUtils.d.ts.map +1 -0
  727. package/dist/src/components/quantum/GlassCoherenceIndicator.d.ts +30 -0
  728. package/dist/src/components/quantum/GlassCoherenceIndicator.d.ts.map +1 -0
  729. package/dist/src/components/quantum/GlassProbabilityCloud.d.ts +36 -0
  730. package/dist/src/components/quantum/GlassProbabilityCloud.d.ts.map +1 -0
  731. package/dist/src/components/quantum/GlassQuantumField.d.ts +104 -0
  732. package/dist/src/components/quantum/GlassQuantumField.d.ts.map +1 -0
  733. package/dist/src/components/quantum/GlassQuantumTunnel.d.ts +46 -0
  734. package/dist/src/components/quantum/GlassQuantumTunnel.d.ts.map +1 -0
  735. package/dist/src/components/quantum/GlassSuperpositionalMenu.d.ts +28 -0
  736. package/dist/src/components/quantum/GlassSuperpositionalMenu.d.ts.map +1 -0
  737. package/dist/src/components/quantum/GlassWaveFunction.d.ts +35 -0
  738. package/dist/src/components/quantum/GlassWaveFunction.d.ts.map +1 -0
  739. package/dist/src/components/rating/GlassRating.d.ts +75 -0
  740. package/dist/src/components/rating/GlassRating.d.ts.map +1 -0
  741. package/dist/src/components/search/GlassIntelligentSearch.d.ts +51 -0
  742. package/dist/src/components/search/GlassIntelligentSearch.d.ts.map +1 -0
  743. package/dist/src/components/search/GlassSpotlightSearch.d.ts +87 -0
  744. package/dist/src/components/search/GlassSpotlightSearch.d.ts.map +1 -0
  745. package/dist/src/components/search/index.d.ts +3 -0
  746. package/dist/src/components/search/index.d.ts.map +1 -0
  747. package/dist/src/components/social/GlassCollaborativeCursor.d.ts +37 -0
  748. package/dist/src/components/social/GlassCollaborativeCursor.d.ts.map +1 -0
  749. package/dist/src/components/social/GlassPresenceIndicator.d.ts +37 -0
  750. package/dist/src/components/social/GlassPresenceIndicator.d.ts.map +1 -0
  751. package/dist/src/components/social/GlassReactionBubbles.d.ts +40 -0
  752. package/dist/src/components/social/GlassReactionBubbles.d.ts.map +1 -0
  753. package/dist/src/components/social/GlassSharedWhiteboard.d.ts +55 -0
  754. package/dist/src/components/social/GlassSharedWhiteboard.d.ts.map +1 -0
  755. package/dist/src/components/social/GlassSocialFeed.d.ts +49 -0
  756. package/dist/src/components/social/GlassSocialFeed.d.ts.map +1 -0
  757. package/dist/src/components/social/GlassVoiceWaveform.d.ts +35 -0
  758. package/dist/src/components/social/GlassVoiceWaveform.d.ts.map +1 -0
  759. package/dist/src/components/spatial/SpatialComputingEngine.d.ts +93 -0
  760. package/dist/src/components/spatial/SpatialComputingEngine.d.ts.map +1 -0
  761. package/dist/src/components/speed-dial/SpeedDial.d.ts +22 -0
  762. package/dist/src/components/speed-dial/SpeedDial.d.ts.map +1 -0
  763. package/dist/src/components/speed-dial/SpeedDialAction.d.ts +15 -0
  764. package/dist/src/components/speed-dial/SpeedDialAction.d.ts.map +1 -0
  765. package/dist/src/components/speed-dial/SpeedDialIcon.d.ts +15 -0
  766. package/dist/src/components/speed-dial/SpeedDialIcon.d.ts.map +1 -0
  767. package/dist/src/components/speed-dial/types.d.ts +195 -0
  768. package/dist/src/components/speed-dial/types.d.ts.map +1 -0
  769. package/dist/src/components/status/GlassConnectionStatus.d.ts +58 -0
  770. package/dist/src/components/status/GlassConnectionStatus.d.ts.map +1 -0
  771. package/dist/src/components/surfaces/DimensionalGlass.d.ts +9 -0
  772. package/dist/src/components/surfaces/DimensionalGlass.d.ts.map +1 -0
  773. package/dist/src/components/surfaces/FrostedGlass.d.ts +15 -0
  774. package/dist/src/components/surfaces/FrostedGlass.d.ts.map +1 -0
  775. package/dist/src/components/surfaces/GlassDepthLayer.d.ts +69 -0
  776. package/dist/src/components/surfaces/GlassDepthLayer.d.ts.map +1 -0
  777. package/dist/src/components/surfaces/HeatGlass.d.ts +15 -0
  778. package/dist/src/components/surfaces/HeatGlass.d.ts.map +1 -0
  779. package/dist/src/components/surfaces/PageGlassContainer.d.ts +15 -0
  780. package/dist/src/components/surfaces/PageGlassContainer.d.ts.map +1 -0
  781. package/dist/src/components/surfaces/WidgetGlass.d.ts +15 -0
  782. package/dist/src/components/surfaces/WidgetGlass.d.ts.map +1 -0
  783. package/dist/src/components/surfaces/types.d.ts +487 -0
  784. package/dist/src/components/surfaces/types.d.ts.map +1 -0
  785. package/dist/src/components/templates/dashboard/GlassDashboard.d.ts +102 -0
  786. package/dist/src/components/templates/dashboard/GlassDashboard.d.ts.map +1 -0
  787. package/dist/src/components/templates/dashboard/index.d.ts +7 -0
  788. package/dist/src/components/templates/dashboard/index.d.ts.map +1 -0
  789. package/dist/src/components/templates/dashboard/widgets/ChartWidget.d.ts +69 -0
  790. package/dist/src/components/templates/dashboard/widgets/ChartWidget.d.ts.map +1 -0
  791. package/dist/src/components/templates/dashboard/widgets/MetricWidget.d.ts +58 -0
  792. package/dist/src/components/templates/dashboard/widgets/MetricWidget.d.ts.map +1 -0
  793. package/dist/src/components/templates/dashboard/widgets/TableWidget.d.ts +91 -0
  794. package/dist/src/components/templates/dashboard/widgets/TableWidget.d.ts.map +1 -0
  795. package/dist/src/components/templates/dashboard/widgets/index.d.ts +10 -0
  796. package/dist/src/components/templates/dashboard/widgets/index.d.ts.map +1 -0
  797. package/dist/src/components/templates/detail/GlassDetailView.d.ts +110 -0
  798. package/dist/src/components/templates/detail/GlassDetailView.d.ts.map +1 -0
  799. package/dist/src/components/templates/detail/index.d.ts +6 -0
  800. package/dist/src/components/templates/detail/index.d.ts.map +1 -0
  801. package/dist/src/components/templates/forms/FormValidationUtils.d.ts +101 -0
  802. package/dist/src/components/templates/forms/FormValidationUtils.d.ts.map +1 -0
  803. package/dist/src/components/templates/forms/GlassFormTemplate.d.ts +113 -0
  804. package/dist/src/components/templates/forms/GlassFormTemplate.d.ts.map +1 -0
  805. package/dist/src/components/templates/forms/GlassFormWizardSteps.d.ts +60 -0
  806. package/dist/src/components/templates/forms/GlassFormWizardSteps.d.ts.map +1 -0
  807. package/dist/src/components/templates/forms/GlassWizardTemplate.d.ts +100 -0
  808. package/dist/src/components/templates/forms/GlassWizardTemplate.d.ts.map +1 -0
  809. package/dist/src/components/templates/forms/index.d.ts +10 -0
  810. package/dist/src/components/templates/forms/index.d.ts.map +1 -0
  811. package/dist/src/components/templates/interactive/GlassDataTable.d.ts +24 -0
  812. package/dist/src/components/templates/interactive/GlassDataTable.d.ts.map +1 -0
  813. package/dist/src/components/templates/list/GlassListView.d.ts +160 -0
  814. package/dist/src/components/templates/list/GlassListView.d.ts.map +1 -0
  815. package/dist/src/components/templates/list/index.d.ts +6 -0
  816. package/dist/src/components/templates/list/index.d.ts.map +1 -0
  817. package/dist/src/components/templates/types.d.ts +44 -0
  818. package/dist/src/components/templates/types.d.ts.map +1 -0
  819. package/dist/src/components/toggle-button/ToggleButton.d.ts +39 -0
  820. package/dist/src/components/toggle-button/ToggleButton.d.ts.map +1 -0
  821. package/dist/src/components/toggle-button/ToggleButtonGroup.d.ts +22 -0
  822. package/dist/src/components/toggle-button/ToggleButtonGroup.d.ts.map +1 -0
  823. package/dist/src/components/toggle-button/types.d.ts +42 -0
  824. package/dist/src/components/toggle-button/types.d.ts.map +1 -0
  825. package/dist/src/components/tree-view/TreeItem.d.ts +36 -0
  826. package/dist/src/components/tree-view/TreeItem.d.ts.map +1 -0
  827. package/dist/src/components/tree-view/TreeView.d.ts +23 -0
  828. package/dist/src/components/tree-view/TreeView.d.ts.map +1 -0
  829. package/dist/src/components/tree-view/types.d.ts +48 -0
  830. package/dist/src/components/tree-view/types.d.ts.map +1 -0
  831. package/dist/src/components/ui-components/GlassAccordionUI.d.ts +12 -0
  832. package/dist/src/components/ui-components/GlassAccordionUI.d.ts.map +1 -0
  833. package/dist/src/components/ui-components/GlassCheckboxUI.d.ts +3 -0
  834. package/dist/src/components/ui-components/GlassCheckboxUI.d.ts.map +1 -0
  835. package/dist/src/components/ui-components/glass-panel.d.ts +31 -0
  836. package/dist/src/components/ui-components/glass-panel.d.ts.map +1 -0
  837. package/dist/src/components/ui-components/types.d.ts +33 -0
  838. package/dist/src/components/ui-components/types.d.ts.map +1 -0
  839. package/dist/src/components/visual-feedback/FocusIndicator.d.ts +15 -0
  840. package/dist/src/components/visual-feedback/FocusIndicator.d.ts.map +1 -0
  841. package/dist/src/components/visual-feedback/RippleButton.d.ts +17 -0
  842. package/dist/src/components/visual-feedback/RippleButton.d.ts.map +1 -0
  843. package/dist/src/components/visual-feedback/StateIndicator.d.ts +15 -0
  844. package/dist/src/components/visual-feedback/StateIndicator.d.ts.map +1 -0
  845. package/dist/src/components/visual-feedback/VisualFeedback.d.ts +15 -0
  846. package/dist/src/components/visual-feedback/VisualFeedback.d.ts.map +1 -0
  847. package/dist/src/components/visual-feedback/types.d.ts +60 -0
  848. package/dist/src/components/visual-feedback/types.d.ts.map +1 -0
  849. package/dist/src/components/visualization/GlassAdvancedDataViz.d.ts +55 -0
  850. package/dist/src/components/visualization/GlassAdvancedDataViz.d.ts.map +1 -0
  851. package/dist/src/components/visualization/index.d.ts +3 -0
  852. package/dist/src/components/visualization/index.d.ts.map +1 -0
  853. package/dist/src/components/voice/VoiceGlassControl.d.ts +15 -0
  854. package/dist/src/components/voice/VoiceGlassControl.d.ts.map +1 -0
  855. package/dist/src/components/voice/index.d.ts +2 -0
  856. package/dist/src/components/voice/index.d.ts.map +1 -0
  857. package/dist/src/components/website-components/GlassChartsDemo.d.ts +52 -0
  858. package/dist/src/components/website-components/GlassChartsDemo.d.ts.map +1 -0
  859. package/dist/src/components/website-components/GlassLinkButton.d.ts +13 -0
  860. package/dist/src/components/website-components/GlassLinkButton.d.ts.map +1 -0
  861. package/dist/src/components/website-components/GlassPrismComparison.d.ts +2 -0
  862. package/dist/src/components/website-components/GlassPrismComparison.d.ts.map +1 -0
  863. package/dist/src/components/website-components/GlassWipeSlider.d.ts +143 -0
  864. package/dist/src/components/website-components/GlassWipeSlider.d.ts.map +1 -0
  865. package/dist/src/components/website-components/GlassWipeSliderExamples.d.ts +25 -0
  866. package/dist/src/components/website-components/GlassWipeSliderExamples.d.ts.map +1 -0
  867. package/dist/src/components/website-components/MotionAwareGlass.d.ts +25 -0
  868. package/dist/src/components/website-components/MotionAwareGlass.d.ts.map +1 -0
  869. package/dist/src/components/website-components/types.d.ts +29 -0
  870. package/dist/src/components/website-components/types.d.ts.map +1 -0
  871. package/dist/src/contexts/AnimationContext.d.ts +24 -0
  872. package/dist/src/contexts/AnimationContext.d.ts.map +1 -0
  873. package/dist/src/contexts/MotionPreferenceContext.d.ts +12 -0
  874. package/dist/src/contexts/MotionPreferenceContext.d.ts.map +1 -0
  875. package/dist/src/core/foundation/glassFoundation.d.ts +89 -0
  876. package/dist/src/core/foundation/glassFoundation.d.ts.map +1 -0
  877. package/dist/src/core/mixins/edgeEffects.d.ts +15 -0
  878. package/dist/src/core/mixins/edgeEffects.d.ts.map +1 -0
  879. package/dist/src/core/mixins/glassBorder.d.ts +22 -0
  880. package/dist/src/core/mixins/glassBorder.d.ts.map +1 -0
  881. package/dist/src/core/mixins/glassMixins.d.ts +88 -0
  882. package/dist/src/core/mixins/glassMixins.d.ts.map +1 -0
  883. package/dist/src/core/mixins/glassSurface.d.ts +44 -0
  884. package/dist/src/core/mixins/glassSurface.d.ts.map +1 -0
  885. package/dist/src/core/mixins/glowEffects.d.ts +75 -0
  886. package/dist/src/core/mixins/glowEffects.d.ts.map +1 -0
  887. package/dist/src/core/mixins/interactiveGlass.d.ts +63 -0
  888. package/dist/src/core/mixins/interactiveGlass.d.ts.map +1 -0
  889. package/dist/src/core/mixins/performanceMixins.d.ts +96 -0
  890. package/dist/src/core/mixins/performanceMixins.d.ts.map +1 -0
  891. package/dist/src/core/mixins/zSpaceLayer.d.ts +59 -0
  892. package/dist/src/core/mixins/zSpaceLayer.d.ts.map +1 -0
  893. package/dist/src/core/productionCore.d.ts +83 -0
  894. package/dist/src/core/productionCore.d.ts.map +1 -0
  895. package/dist/src/core/themeContext.d.ts +10 -0
  896. package/dist/src/core/themeContext.d.ts.map +1 -0
  897. package/dist/src/core/themeUtils.d.ts +8 -0
  898. package/dist/src/core/themeUtils.d.ts.map +1 -0
  899. package/dist/src/core/types.d.ts +46 -0
  900. package/dist/src/core/types.d.ts.map +1 -0
  901. package/dist/src/core/zspace.d.ts +17 -0
  902. package/dist/src/core/zspace.d.ts.map +1 -0
  903. package/dist/src/design-system/utilsCore.d.ts +3 -0
  904. package/dist/src/design-system/utilsCore.d.ts.map +1 -0
  905. package/dist/src/hooks/extended/index.d.ts +13 -0
  906. package/dist/src/hooks/extended/index.d.ts.map +1 -0
  907. package/dist/src/hooks/extended/useDraggableListPhysics.d.ts +86 -0
  908. package/dist/src/hooks/extended/useDraggableListPhysics.d.ts.map +1 -0
  909. package/dist/src/hooks/extended/useGalileoSprings.d.ts +243 -0
  910. package/dist/src/hooks/extended/useGalileoSprings.d.ts.map +1 -0
  911. package/dist/src/hooks/extended/useGlassFocus.d.ts +107 -0
  912. package/dist/src/hooks/extended/useGlassFocus.d.ts.map +1 -0
  913. package/dist/src/hooks/extended/useGlassPerformance.d.ts +117 -0
  914. package/dist/src/hooks/extended/useGlassPerformance.d.ts.map +1 -0
  915. package/dist/src/hooks/extended/useSortableData.d.ts +115 -0
  916. package/dist/src/hooks/extended/useSortableData.d.ts.map +1 -0
  917. package/dist/src/hooks/extended/useZSpaceAnimation.d.ts +317 -0
  918. package/dist/src/hooks/extended/useZSpaceAnimation.d.ts.map +1 -0
  919. package/dist/src/hooks/useAccessibility.d.ts +32 -0
  920. package/dist/src/hooks/useAccessibility.d.ts.map +1 -0
  921. package/dist/src/hooks/useAccessibilitySettings.d.ts +44 -0
  922. package/dist/src/hooks/useAccessibilitySettings.d.ts.map +1 -0
  923. package/dist/src/hooks/useAutoTextContrast.d.ts +7 -0
  924. package/dist/src/hooks/useAutoTextContrast.d.ts.map +1 -0
  925. package/dist/src/hooks/useEnhancedPerformance.d.ts +73 -0
  926. package/dist/src/hooks/useEnhancedPerformance.d.ts.map +1 -0
  927. package/dist/src/hooks/useEnhancedReducedMotion.d.ts +2 -0
  928. package/dist/src/hooks/useEnhancedReducedMotion.d.ts.map +1 -0
  929. package/dist/src/hooks/useErrorBoundary.d.ts +76 -0
  930. package/dist/src/hooks/useErrorBoundary.d.ts.map +1 -0
  931. package/dist/src/hooks/useGalileoStateSpring.d.ts +12 -0
  932. package/dist/src/hooks/useGalileoStateSpring.d.ts.map +1 -0
  933. package/dist/src/hooks/useGlassIntersection.d.ts +57 -0
  934. package/dist/src/hooks/useGlassIntersection.d.ts.map +1 -0
  935. package/dist/src/hooks/useGlassOptimization.d.ts +52 -0
  936. package/dist/src/hooks/useGlassOptimization.d.ts.map +1 -0
  937. package/dist/src/hooks/useGlassParallax.d.ts +12 -0
  938. package/dist/src/hooks/useGlassParallax.d.ts.map +1 -0
  939. package/dist/src/hooks/useGlassProbes.d.ts +38 -0
  940. package/dist/src/hooks/useGlassProbes.d.ts.map +1 -0
  941. package/dist/src/hooks/useGlassTheme.d.ts +2 -0
  942. package/dist/src/hooks/useGlassTheme.d.ts.map +1 -0
  943. package/dist/src/hooks/useMotionPreference.d.ts +14 -0
  944. package/dist/src/hooks/useMotionPreference.d.ts.map +1 -0
  945. package/dist/src/hooks/useParallax.d.ts +13 -0
  946. package/dist/src/hooks/useParallax.d.ts.map +1 -0
  947. package/dist/src/hooks/usePerformance.d.ts +63 -0
  948. package/dist/src/hooks/usePerformance.d.ts.map +1 -0
  949. package/dist/src/hooks/usePhysicsInteraction.d.ts +69 -0
  950. package/dist/src/hooks/usePhysicsInteraction.d.ts.map +1 -0
  951. package/dist/src/hooks/useReducedMotion.d.ts +2 -0
  952. package/dist/src/hooks/useReducedMotion.d.ts.map +1 -0
  953. package/dist/src/hooks/useVirtualization.d.ts +149 -0
  954. package/dist/src/hooks/useVirtualization.d.ts.map +1 -0
  955. package/dist/src/index.d.ts +222 -0
  956. package/dist/src/index.d.ts.map +1 -0
  957. package/dist/src/lib/GlassLocalizationProvider.d.ts +29 -0
  958. package/dist/src/lib/GlassLocalizationProvider.d.ts.map +1 -0
  959. package/dist/src/lib/ai-client.d.ts +206 -0
  960. package/dist/src/lib/ai-client.d.ts.map +1 -0
  961. package/dist/src/lib/index.d.ts +4 -0
  962. package/dist/src/lib/index.d.ts.map +1 -0
  963. package/dist/src/lib/motionPrimitives.d.ts +100 -0
  964. package/dist/src/lib/motionPrimitives.d.ts.map +1 -0
  965. package/dist/src/lib/utils.d.ts +2 -0
  966. package/dist/src/lib/utils.d.ts.map +1 -0
  967. package/dist/src/lib/utilsComprehensive.d.ts +87 -0
  968. package/dist/src/lib/utilsComprehensive.d.ts.map +1 -0
  969. package/dist/src/primitives/GlassCore.d.ts +33 -0
  970. package/dist/src/primitives/GlassCore.d.ts.map +1 -0
  971. package/dist/src/primitives/LiquidGlassMaterial.d.ts +129 -0
  972. package/dist/src/primitives/LiquidGlassMaterial.d.ts.map +1 -0
  973. package/dist/src/primitives/MotionNative.d.ts +45 -0
  974. package/dist/src/primitives/MotionNative.d.ts.map +1 -0
  975. package/dist/src/primitives/OptimizedGlassCore.d.ts +70 -0
  976. package/dist/src/primitives/OptimizedGlassCore.d.ts.map +1 -0
  977. package/dist/src/primitives/focus/FocusTrap.d.ts +50 -0
  978. package/dist/src/primitives/focus/FocusTrap.d.ts.map +1 -0
  979. package/dist/src/primitives/focus/ScreenReader.d.ts +634 -0
  980. package/dist/src/primitives/focus/ScreenReader.d.ts.map +1 -0
  981. package/dist/src/primitives/focus/SkipLinks.d.ts +61 -0
  982. package/dist/src/primitives/focus/SkipLinks.d.ts.map +1 -0
  983. package/dist/src/primitives/focus/index.d.ts +63 -0
  984. package/dist/src/primitives/focus/index.d.ts.map +1 -0
  985. package/dist/src/primitives/glass/GlassAdvanced.d.ts +65 -0
  986. package/dist/src/primitives/glass/GlassAdvanced.d.ts.map +1 -0
  987. package/dist/src/primitives/glass/OptimizedGlassAdvanced.d.ts +48 -0
  988. package/dist/src/primitives/glass/OptimizedGlassAdvanced.d.ts.map +1 -0
  989. package/dist/src/primitives/index.d.ts +17 -0
  990. package/dist/src/primitives/index.d.ts.map +1 -0
  991. package/dist/src/primitives/motion/MotionFramer.d.ts +17 -0
  992. package/dist/src/primitives/motion/MotionFramer.d.ts.map +1 -0
  993. package/dist/src/primitives/motion/ReducedMotionProvider.d.ts +6 -0
  994. package/dist/src/primitives/motion/ReducedMotionProvider.d.ts.map +1 -0
  995. package/dist/src/primitives/motion/index.d.ts +7 -0
  996. package/dist/src/primitives/motion/index.d.ts.map +1 -0
  997. package/dist/src/primitives/motion/presets.d.ts +813 -0
  998. package/dist/src/primitives/motion/presets.d.ts.map +1 -0
  999. package/dist/src/services/ai/cache-service.d.ts +18 -0
  1000. package/dist/src/services/ai/cache-service.d.ts.map +1 -0
  1001. package/dist/src/services/ai/config.d.ts +160 -0
  1002. package/dist/src/services/ai/config.d.ts.map +1 -0
  1003. package/dist/src/services/ai/error-handler.d.ts +33 -0
  1004. package/dist/src/services/ai/error-handler.d.ts.map +1 -0
  1005. package/dist/src/services/ai/openai-service.d.ts +89 -0
  1006. package/dist/src/services/ai/openai-service.d.ts.map +1 -0
  1007. package/dist/src/services/ai/semantic-search-service.d.ts +49 -0
  1008. package/dist/src/services/ai/semantic-search-service.d.ts.map +1 -0
  1009. package/dist/src/services/ai/vision-service.d.ts +94 -0
  1010. package/dist/src/services/ai/vision-service.d.ts.map +1 -0
  1011. package/dist/src/services/auth/auth-service.d.ts +103 -0
  1012. package/dist/src/services/auth/auth-service.d.ts.map +1 -0
  1013. package/dist/src/services/auth/middleware.d.ts +33 -0
  1014. package/dist/src/services/auth/middleware.d.ts.map +1 -0
  1015. package/dist/src/services/websocket/collaboration-service.d.ts +67 -0
  1016. package/dist/src/services/websocket/collaboration-service.d.ts.map +1 -0
  1017. package/dist/src/tests/consciousness/ConsciousnessAccessibilityTests.d.ts +51 -0
  1018. package/dist/src/tests/consciousness/ConsciousnessAccessibilityTests.d.ts.map +1 -0
  1019. package/dist/src/tests/consciousness/ConsciousnessCompatibilityTestSuite.d.ts +44 -0
  1020. package/dist/src/tests/consciousness/ConsciousnessCompatibilityTestSuite.d.ts.map +1 -0
  1021. package/dist/src/tests/consciousness/ConsciousnessPerformanceBenchmark.d.ts +41 -0
  1022. package/dist/src/tests/consciousness/ConsciousnessPerformanceBenchmark.d.ts.map +1 -0
  1023. package/dist/src/theme/GlassContext.d.ts +34 -0
  1024. package/dist/src/theme/GlassContext.d.ts.map +1 -0
  1025. package/dist/src/theme/ThemeProvider.d.ts +175 -0
  1026. package/dist/src/theme/ThemeProvider.d.ts.map +1 -0
  1027. package/dist/src/theme/themeConstants.d.ts +6 -0
  1028. package/dist/src/theme/themeConstants.d.ts.map +1 -0
  1029. package/dist/src/theme/tokens.d.ts +79 -0
  1030. package/dist/src/theme/tokens.d.ts.map +1 -0
  1031. package/dist/src/tokens/designConstants.d.ts +660 -0
  1032. package/dist/src/tokens/designConstants.d.ts.map +1 -0
  1033. package/dist/src/tokens/glass.d.ts +470 -0
  1034. package/dist/src/tokens/glass.d.ts.map +1 -0
  1035. package/dist/src/tokens/index.d.ts +8 -0
  1036. package/dist/src/tokens/index.d.ts.map +1 -0
  1037. package/dist/src/tokens/themeTokens.d.ts +217 -0
  1038. package/dist/src/tokens/themeTokens.d.ts.map +1 -0
  1039. package/dist/src/tools/GlassDevTools.d.ts +9 -0
  1040. package/dist/src/tools/GlassDevTools.d.ts.map +1 -0
  1041. package/dist/src/types/accessibility.d.ts +89 -0
  1042. package/dist/src/types/accessibility.d.ts.map +1 -0
  1043. package/dist/src/types/animations.d.ts +96 -0
  1044. package/dist/src/types/animations.d.ts.map +1 -0
  1045. package/dist/src/types/components/button.d.ts +20 -0
  1046. package/dist/src/types/components/button.d.ts.map +1 -0
  1047. package/dist/src/types/components/data-display.d.ts +112 -0
  1048. package/dist/src/types/components/data-display.d.ts.map +1 -0
  1049. package/dist/src/types/components/form.d.ts +62 -0
  1050. package/dist/src/types/components/form.d.ts.map +1 -0
  1051. package/dist/src/types/components/layout.d.ts +39 -0
  1052. package/dist/src/types/components/layout.d.ts.map +1 -0
  1053. package/dist/src/types/components.d.ts +125 -0
  1054. package/dist/src/types/components.d.ts.map +1 -0
  1055. package/dist/src/types/consciousness.d.ts +316 -0
  1056. package/dist/src/types/consciousness.d.ts.map +1 -0
  1057. package/dist/src/types/glass-api-stable.d.ts +260 -0
  1058. package/dist/src/types/glass-api-stable.d.ts.map +1 -0
  1059. package/dist/src/types/index.d.ts +113 -0
  1060. package/dist/src/types/index.d.ts.map +1 -0
  1061. package/dist/src/types/productionTypes.d.ts +614 -0
  1062. package/dist/src/types/productionTypes.d.ts.map +1 -0
  1063. package/dist/src/types/themeTypes.d.ts +96 -0
  1064. package/dist/src/types/themeTypes.d.ts.map +1 -0
  1065. package/dist/src/types.d.ts +269 -0
  1066. package/dist/src/types.d.ts.map +1 -0
  1067. package/dist/src/utils/a11y.d.ts +464 -0
  1068. package/dist/src/utils/a11y.d.ts.map +1 -0
  1069. package/dist/src/utils/a11yEnhancers.d.ts +146 -0
  1070. package/dist/src/utils/a11yEnhancers.d.ts.map +1 -0
  1071. package/dist/src/utils/a11yHooks.d.ts +154 -0
  1072. package/dist/src/utils/a11yHooks.d.ts.map +1 -0
  1073. package/dist/src/utils/a11yTesting.d.ts +103 -0
  1074. package/dist/src/utils/a11yTesting.d.ts.map +1 -0
  1075. package/dist/src/utils/adaptiveAI.d.ts +163 -0
  1076. package/dist/src/utils/adaptiveAI.d.ts.map +1 -0
  1077. package/dist/src/utils/aiPersonalization.d.ts +135 -0
  1078. package/dist/src/utils/aiPersonalization.d.ts.map +1 -0
  1079. package/dist/src/utils/browserCompatibility.d.ts +97 -0
  1080. package/dist/src/utils/browserCompatibility.d.ts.map +1 -0
  1081. package/dist/src/utils/compatibility.d.ts +61 -0
  1082. package/dist/src/utils/compatibility.d.ts.map +1 -0
  1083. package/dist/src/utils/consciousnessOptimization.d.ts +76 -0
  1084. package/dist/src/utils/consciousnessOptimization.d.ts.map +1 -0
  1085. package/dist/src/utils/contrast.d.ts +88 -0
  1086. package/dist/src/utils/contrast.d.ts.map +1 -0
  1087. package/dist/src/utils/contrastGuard.d.ts +124 -0
  1088. package/dist/src/utils/contrastGuard.d.ts.map +1 -0
  1089. package/dist/src/utils/createGlassStyle.d.ts +52 -0
  1090. package/dist/src/utils/createGlassStyle.d.ts.map +1 -0
  1091. package/dist/src/utils/deviceCapabilities.d.ts +128 -0
  1092. package/dist/src/utils/deviceCapabilities.d.ts.map +1 -0
  1093. package/dist/src/utils/dynamicTheme.d.ts +75 -0
  1094. package/dist/src/utils/dynamicTheme.d.ts.map +1 -0
  1095. package/dist/src/utils/elementTypes.d.ts +39 -0
  1096. package/dist/src/utils/elementTypes.d.ts.map +1 -0
  1097. package/dist/src/utils/emotionalIntelligence.d.ts +97 -0
  1098. package/dist/src/utils/emotionalIntelligence.d.ts.map +1 -0
  1099. package/dist/src/utils/errorBoundary.d.ts +82 -0
  1100. package/dist/src/utils/errorBoundary.d.ts.map +1 -0
  1101. package/dist/src/utils/focus.d.ts +69 -0
  1102. package/dist/src/utils/focus.d.ts.map +1 -0
  1103. package/dist/src/utils/glassStyleProbes.d.ts +61 -0
  1104. package/dist/src/utils/glassStyleProbes.d.ts.map +1 -0
  1105. package/dist/src/utils/index.d.ts +12 -0
  1106. package/dist/src/utils/index.d.ts.map +1 -0
  1107. package/dist/src/utils/performance.d.ts +138 -0
  1108. package/dist/src/utils/performance.d.ts.map +1 -0
  1109. package/dist/src/utils/performanceOptimizations.d.ts +112 -0
  1110. package/dist/src/utils/performanceOptimizations.d.ts.map +1 -0
  1111. package/dist/src/utils/productionUtils.d.ts +130 -0
  1112. package/dist/src/utils/productionUtils.d.ts.map +1 -0
  1113. package/dist/src/utils/refUtils.d.ts +10 -0
  1114. package/dist/src/utils/refUtils.d.ts.map +1 -0
  1115. package/dist/src/utils/smartColorExtraction.d.ts +211 -0
  1116. package/dist/src/utils/smartColorExtraction.d.ts.map +1 -0
  1117. package/dist/src/utils/soundDesign.d.ts +116 -0
  1118. package/dist/src/utils/soundDesign.d.ts.map +1 -0
  1119. package/dist/src/utils/testSetup.d.ts +7 -0
  1120. package/dist/src/utils/testSetup.d.ts.map +1 -0
  1121. package/dist/src/utils/themeHelpers.d.ts +70 -0
  1122. package/dist/src/utils/themeHelpers.d.ts.map +1 -0
  1123. package/dist/vite.config.d.ts +3 -0
  1124. package/dist/vite.config.d.ts.map +1 -0
  1125. package/package.json +242 -0
@@ -0,0 +1,155 @@
1
+ import React from 'react';
2
+ import type { ConsciousnessFeatures } from '../layout/GlassContainer';
3
+ export interface GlassDrawerProps extends ConsciousnessFeatures {
4
+ /**
5
+ * Whether the drawer is open
6
+ */
7
+ open?: boolean;
8
+ /**
9
+ * Callback when drawer open state changes
10
+ */
11
+ onOpenChange?: (open: boolean) => void;
12
+ /**
13
+ * Drawer position
14
+ */
15
+ position?: 'top' | 'right' | 'bottom' | 'left';
16
+ /**
17
+ * Drawer size
18
+ */
19
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
20
+ /**
21
+ * Drawer title
22
+ */
23
+ title?: React.ReactNode;
24
+ /**
25
+ * Drawer description
26
+ */
27
+ description?: React.ReactNode;
28
+ /**
29
+ * Drawer content
30
+ */
31
+ children?: React.ReactNode;
32
+ /**
33
+ * Glass material variant
34
+ */
35
+ material?: 'glass' | 'liquid';
36
+ /**
37
+ * Material properties for liquid glass
38
+ */
39
+ materialProps?: {
40
+ ior?: number;
41
+ thickness?: number;
42
+ tint?: {
43
+ r: number;
44
+ g: number;
45
+ b: number;
46
+ a: number;
47
+ };
48
+ variant?: 'regular' | 'clear';
49
+ quality?: 'ultra' | 'high' | 'balanced' | 'efficient';
50
+ };
51
+ /**
52
+ * Whether to close on backdrop click
53
+ */
54
+ closeOnBackdropClick?: boolean;
55
+ /**
56
+ * Whether to close on escape key
57
+ */
58
+ closeOnEscape?: boolean;
59
+ /**
60
+ * Whether to show close button
61
+ */
62
+ showCloseButton?: boolean;
63
+ /**
64
+ * Custom header content
65
+ */
66
+ header?: React.ReactNode;
67
+ /**
68
+ * Custom footer content
69
+ */
70
+ footer?: React.ReactNode;
71
+ /**
72
+ * Whether drawer is modal (blocks interaction with background)
73
+ */
74
+ modal?: boolean;
75
+ /**
76
+ * Custom backdrop blur
77
+ */
78
+ backdropBlur?: boolean;
79
+ /**
80
+ * Drawer elevation
81
+ */
82
+ elevation?: 0 | 1 | 2 | 3 | 4 | 'float' | 'modal';
83
+ /**
84
+ * Custom z-index
85
+ */
86
+ zIndex?: number;
87
+ /**
88
+ * Whether to show overlay
89
+ */
90
+ showOverlay?: boolean;
91
+ /**
92
+ * Animation duration in milliseconds
93
+ */
94
+ animationDuration?: number;
95
+ /**
96
+ * Whether drawer can be resized
97
+ */
98
+ resizable?: boolean;
99
+ className?: string;
100
+ /**
101
+ * Enable comprehensive consciousness tracking
102
+ */
103
+ consciousness?: boolean;
104
+ /**
105
+ * Custom className for drawer content
106
+ */
107
+ contentClassName?: string;
108
+ }
109
+ /**
110
+ * GlassDrawer component
111
+ * Slide-out panel with glassmorphism styling and comprehensive functionality
112
+ */
113
+ export declare const GlassDrawer: React.ForwardRefExoticComponent<GlassDrawerProps & React.RefAttributes<HTMLDivElement>>;
114
+ export interface DrawerTriggerProps {
115
+ children: React.ReactNode;
116
+ asChild?: boolean;
117
+ }
118
+ export declare const DrawerTrigger: React.ForwardRefExoticComponent<DrawerTriggerProps & React.RefAttributes<HTMLButtonElement>>;
119
+ export interface DrawerContentProps extends GlassDrawerProps {
120
+ }
121
+ export declare const DrawerContent: React.ForwardRefExoticComponent<GlassDrawerProps & React.RefAttributes<HTMLDivElement>>;
122
+ export interface DrawerHeaderProps {
123
+ children: React.ReactNode;
124
+ className?: string;
125
+ }
126
+ export declare const DrawerHeader: React.ForwardRefExoticComponent<DrawerHeaderProps & React.RefAttributes<HTMLDivElement>>;
127
+ export interface DrawerTitleProps {
128
+ children: React.ReactNode;
129
+ className?: string;
130
+ }
131
+ export declare const DrawerTitle: React.ForwardRefExoticComponent<DrawerTitleProps & React.RefAttributes<HTMLHeadingElement>>;
132
+ export interface DrawerDescriptionProps {
133
+ children: React.ReactNode;
134
+ className?: string;
135
+ }
136
+ export declare const DrawerDescription: React.ForwardRefExoticComponent<DrawerDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
137
+ export interface DrawerFooterProps {
138
+ children: React.ReactNode;
139
+ className?: string;
140
+ }
141
+ export declare const DrawerFooter: React.ForwardRefExoticComponent<DrawerFooterProps & React.RefAttributes<HTMLDivElement>>;
142
+ export declare const useDrawer: (defaultOpen?: boolean) => {
143
+ open: boolean;
144
+ setOpen: React.Dispatch<React.SetStateAction<boolean>>;
145
+ openDrawer: () => void;
146
+ closeDrawer: () => void;
147
+ toggleDrawer: () => void;
148
+ };
149
+ export declare const GlassPredictiveDrawer: React.FC<GlassDrawerProps>;
150
+ export declare const GlassAdaptiveDrawer: React.FC<GlassDrawerProps>;
151
+ export declare const GlassEyeTrackingDrawer: React.FC<GlassDrawerProps>;
152
+ export declare const GlassSpatialAudioDrawer: React.FC<GlassDrawerProps>;
153
+ export declare const GlassAchievementDrawer: React.FC<GlassDrawerProps>;
154
+ export declare const GlassConsciousnessDrawer: React.FC<GlassDrawerProps>;
155
+ //# sourceMappingURL=GlassDrawer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GlassDrawer.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/GlassDrawer.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,133 @@
1
+ import React from 'react';
2
+ export interface GlassHoverCardProps {
3
+ /**
4
+ * Content to display in the hover card
5
+ */
6
+ content: React.ReactNode;
7
+ /**
8
+ * Children to trigger the hover card
9
+ */
10
+ children: React.ReactNode;
11
+ /**
12
+ * Hover card placement
13
+ */
14
+ placement?: 'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end';
15
+ /**
16
+ * Hover card alignment
17
+ */
18
+ align?: 'start' | 'center' | 'end';
19
+ /**
20
+ * Offset from trigger element
21
+ */
22
+ offset?: number;
23
+ /**
24
+ * Delay before showing (ms)
25
+ */
26
+ showDelay?: number;
27
+ /**
28
+ * Delay before hiding (ms)
29
+ */
30
+ hideDelay?: number;
31
+ /**
32
+ * Whether hover card is open
33
+ */
34
+ open?: boolean;
35
+ /**
36
+ * Callback when open state changes
37
+ */
38
+ onOpenChange?: (open: boolean) => void;
39
+ /**
40
+ * Custom className
41
+ */
42
+ className?: string;
43
+ /**
44
+ * Maximum width
45
+ */
46
+ maxWidth?: string | number;
47
+ /**
48
+ * Custom trigger className
49
+ */
50
+ triggerClassName?: string;
51
+ /**
52
+ * Accessible title for the hover card
53
+ */
54
+ title?: string;
55
+ /**
56
+ * Accessible description for the hover card
57
+ */
58
+ description?: string;
59
+ /**
60
+ * Whether to respect motion preferences
61
+ */
62
+ respectMotionPreference?: boolean;
63
+ /**
64
+ * Custom aria-label
65
+ */
66
+ 'aria-label'?: string;
67
+ /**
68
+ * Custom aria-labelledby
69
+ */
70
+ 'aria-labelledby'?: string;
71
+ /**
72
+ * Custom aria-describedby
73
+ */
74
+ 'aria-describedby'?: string;
75
+ }
76
+ export interface GlassHoverCardContentProps {
77
+ /**
78
+ * Content to display
79
+ */
80
+ children: React.ReactNode;
81
+ /**
82
+ * Content className
83
+ */
84
+ className?: string;
85
+ /**
86
+ * Whether to show arrow
87
+ */
88
+ showArrow?: boolean;
89
+ /**
90
+ * Arrow className
91
+ */
92
+ arrowClassName?: string;
93
+ }
94
+ export interface GlassHoverCardTriggerProps {
95
+ /**
96
+ * Trigger content
97
+ */
98
+ children: React.ReactNode;
99
+ /**
100
+ * Trigger className
101
+ */
102
+ className?: string;
103
+ /**
104
+ * Trigger as child
105
+ */
106
+ asChild?: boolean;
107
+ }
108
+ /**
109
+ * GlassHoverCard component
110
+ * A glassmorphism hover card that appears on hover
111
+ */
112
+ export declare const GlassHoverCard: React.ForwardRefExoticComponent<GlassHoverCardProps & React.RefAttributes<HTMLDivElement>>;
113
+ /**
114
+ * GlassHoverCardContent component
115
+ * Content wrapper for hover card
116
+ */
117
+ export declare const GlassHoverCardContent: React.FC<GlassHoverCardContentProps>;
118
+ /**
119
+ * GlassHoverCardTrigger component
120
+ * Trigger wrapper for hover card
121
+ */
122
+ export declare const GlassHoverCardTrigger: React.FC<GlassHoverCardTriggerProps>;
123
+ /**
124
+ * Hook for managing hover card state
125
+ */
126
+ export declare const useHoverCard: () => {
127
+ isOpen: boolean;
128
+ setIsOpen: React.Dispatch<React.SetStateAction<boolean>>;
129
+ open: () => void;
130
+ close: () => void;
131
+ toggle: () => void;
132
+ };
133
+ //# sourceMappingURL=GlassHoverCard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GlassHoverCard.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/GlassHoverCard.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAMvE,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,OAAO,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,SAAS,GAAG,aAAa,GAAG,WAAW,GAAG,cAAc,GAAG,YAAY,GAAG,YAAY,GAAG,UAAU,CAAC;IACpK;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;IACnC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;OAEG;IACH,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC3B;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC/B;AAED,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,4FA6PzB,CAAC;AAIH;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CAmBtE,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CAgBtE,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;CAUxB,CAAC"}
@@ -0,0 +1,136 @@
1
+ import React from 'react';
2
+ import type { ConsciousnessFeatures } from '../layout/GlassContainer';
3
+ export interface GlassModalProps extends ConsciousnessFeatures {
4
+ /**
5
+ * Whether the modal is open
6
+ */
7
+ open: boolean;
8
+ /**
9
+ * Callback when modal should close
10
+ */
11
+ onClose: () => void;
12
+ /**
13
+ * Modal title
14
+ */
15
+ title?: string;
16
+ /**
17
+ * Modal description
18
+ */
19
+ description?: string;
20
+ /**
21
+ * Modal size
22
+ */
23
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
24
+ /**
25
+ * Modal variant
26
+ */
27
+ variant?: 'default' | 'centered' | 'drawer' | 'fullscreen';
28
+ /**
29
+ * Whether modal can be closed by clicking backdrop
30
+ */
31
+ closeOnBackdropClick?: boolean;
32
+ /**
33
+ * Whether modal can be closed by pressing escape
34
+ */
35
+ closeOnEscape?: boolean;
36
+ /**
37
+ * Custom close button
38
+ */
39
+ closeButton?: React.ReactNode;
40
+ /**
41
+ * Whether to show default close button
42
+ */
43
+ showCloseButton?: boolean;
44
+ /**
45
+ * Modal footer content
46
+ */
47
+ footer?: React.ReactNode;
48
+ /**
49
+ * Modal children
50
+ */
51
+ children: React.ReactNode;
52
+ /**
53
+ * Glass material variant
54
+ */
55
+ material?: 'glass' | 'liquid';
56
+ /**
57
+ * Material properties for liquid glass
58
+ */
59
+ materialProps?: {
60
+ ior?: number;
61
+ thickness?: number;
62
+ tint?: {
63
+ r: number;
64
+ g: number;
65
+ b: number;
66
+ a: number;
67
+ };
68
+ variant?: 'regular' | 'clear';
69
+ quality?: 'ultra' | 'high' | 'balanced' | 'efficient';
70
+ };
71
+ /**
72
+ * Custom backdrop
73
+ */
74
+ backdrop?: React.ReactNode;
75
+ /**
76
+ * Backdrop blur intensity
77
+ */
78
+ backdropBlur?: 'none' | 'sm' | 'md' | 'lg';
79
+ /**
80
+ * Animation preset
81
+ */
82
+ animation?: 'fade' | 'scale' | 'slide' | 'flip';
83
+ /**
84
+ * Whether to lock scroll when open
85
+ */
86
+ lockScroll?: boolean;
87
+ /**
88
+ * Z-index
89
+ */
90
+ zIndex?: number;
91
+ className?: string;
92
+ /**
93
+ * Accessible label for the modal
94
+ */
95
+ 'aria-label'?: string;
96
+ /**
97
+ * ID of element that labels the modal
98
+ */
99
+ 'aria-labelledby'?: string;
100
+ /**
101
+ * ID of element that describes the modal
102
+ */
103
+ 'aria-describedby'?: string;
104
+ /**
105
+ * Whether this is an alert dialog that requires immediate attention
106
+ */
107
+ role?: 'dialog' | 'alertdialog';
108
+ /**
109
+ * Element to focus when modal opens
110
+ */
111
+ initialFocus?: React.RefObject<HTMLElement>;
112
+ /**
113
+ * Element to focus when modal closes
114
+ */
115
+ restoreFocus?: React.RefObject<HTMLElement>;
116
+ /**
117
+ * Custom className for modal content
118
+ */
119
+ contentClassName?: string;
120
+ }
121
+ /**
122
+ * GlassModal component
123
+ * A versatile modal with glassmorphism styling
124
+ */
125
+ export declare const GlassModal: React.ForwardRefExoticComponent<GlassModalProps & React.RefAttributes<HTMLDivElement>>;
126
+ export declare const GlassPredictiveModal: React.FC<GlassModalProps>;
127
+ export declare const GlassAdaptiveModal: React.FC<GlassModalProps>;
128
+ export declare const GlassEyeTrackingModal: React.FC<GlassModalProps>;
129
+ export declare const GlassSpatialAudioModal: React.FC<GlassModalProps>;
130
+ export declare const GlassAchievementModal: React.FC<GlassModalProps>;
131
+ export declare const GlassConsciousnessModal: React.FC<GlassModalProps>;
132
+ export { GlassDialog } from './GlassDialog';
133
+ export type { GlassDialogProps } from './GlassDialog';
134
+ export { GlassDrawer } from './GlassDrawer';
135
+ export type { GlassDrawerProps } from './GlassDrawer';
136
+ //# sourceMappingURL=GlassModal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GlassModal.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/GlassModal.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,126 @@
1
+ import React from 'react';
2
+ export type PopoverPlacement = 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end';
3
+ export interface GlassPopoverProps {
4
+ /**
5
+ * Whether the popover is open
6
+ */
7
+ open?: boolean;
8
+ /**
9
+ * Callback when popover should close
10
+ */
11
+ onOpenChange?: (open: boolean) => void;
12
+ /**
13
+ * Initial open state when uncontrolled
14
+ */
15
+ defaultOpen?: boolean;
16
+ /**
17
+ * Popover content
18
+ */
19
+ content: React.ReactNode;
20
+ /**
21
+ * Trigger element
22
+ */
23
+ children: React.ReactElement;
24
+ /**
25
+ * Popover placement
26
+ */
27
+ placement?: PopoverPlacement;
28
+ /**
29
+ * Trigger type
30
+ */
31
+ trigger?: 'click' | 'hover' | 'focus' | 'manual';
32
+ /**
33
+ * Delay before showing (for hover trigger)
34
+ */
35
+ showDelay?: number;
36
+ /**
37
+ * Delay before hiding (for hover trigger)
38
+ */
39
+ hideDelay?: number;
40
+ /**
41
+ * Whether to show arrow
42
+ */
43
+ showArrow?: boolean;
44
+ /**
45
+ * Offset from trigger
46
+ */
47
+ offset?: number;
48
+ /**
49
+ * Whether to close on click outside
50
+ */
51
+ closeOnClickOutside?: boolean;
52
+ /**
53
+ * Whether to close on escape key
54
+ */
55
+ closeOnEscape?: boolean;
56
+ /**
57
+ * Animation preset
58
+ */
59
+ animation?: 'fade' | 'scale' | 'slide';
60
+ /**
61
+ * Z-index
62
+ */
63
+ zIndex?: number;
64
+ /**
65
+ * Appearance of the surface
66
+ * glass: translucent glass effect (default)
67
+ * solid: opaque panel (no bleed-through)
68
+ */
69
+ appearance?: 'glass' | 'solid';
70
+ /**
71
+ * Whether to apply radial reveal mask on open
72
+ * Tooltips often should not be masked; defaults to true for popovers
73
+ */
74
+ radialReveal?: boolean;
75
+ /**
76
+ * Custom class for popover content
77
+ */
78
+ contentClassName?: string;
79
+ /**
80
+ * Popover title
81
+ */
82
+ title?: string;
83
+ /**
84
+ * Popover description
85
+ */
86
+ description?: string;
87
+ /**
88
+ * Glass material variant
89
+ */
90
+ material?: 'glass' | 'liquid';
91
+ /**
92
+ * Material properties for liquid glass
93
+ */
94
+ materialProps?: {
95
+ ior?: number;
96
+ thickness?: number;
97
+ tint?: {
98
+ r: number;
99
+ g: number;
100
+ b: number;
101
+ a: number;
102
+ };
103
+ variant?: 'regular' | 'clear';
104
+ quality?: 'ultra' | 'high' | 'balanced' | 'efficient';
105
+ };
106
+ }
107
+ /**
108
+ * GlassPopover component
109
+ * A floating popover with glassmorphism styling
110
+ */
111
+ export declare const GlassPopover: React.ForwardRefExoticComponent<GlassPopoverProps & React.RefAttributes<HTMLDivElement>>;
112
+ /**
113
+ * Tooltip component (Simple popover for hover)
114
+ */
115
+ export interface GlassTooltipProps extends Omit<GlassPopoverProps, 'trigger' | 'content' | 'title' | 'description' | 'open' | 'onOpenChange'> {
116
+ /**
117
+ * Tooltip text
118
+ */
119
+ content: string;
120
+ /**
121
+ * Whether tooltip is disabled
122
+ */
123
+ disabled?: boolean;
124
+ }
125
+ export declare const GlassTooltip: React.ForwardRefExoticComponent<GlassTooltipProps & React.RefAttributes<HTMLDivElement>>;
126
+ //# sourceMappingURL=GlassPopover.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GlassPopover.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/GlassPopover.tsx"],"names":[],"mappings":"AAGA,OAAO,KAA+D,MAAM,OAAO,CAAC;AAMpF,MAAM,MAAM,gBAAgB,GACxB,KAAK,GAAG,WAAW,GAAG,SAAS,GAC/B,OAAO,GAAG,aAAa,GAAG,WAAW,GACrC,QAAQ,GAAG,cAAc,GAAG,YAAY,GACxC,MAAM,GAAG,YAAY,GAAG,UAAU,CAAC;AAEvC,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IACf;;OAEG;IACH,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,OAAO,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,YAAY,CAAC;IAC7B;;OAEG;IACH,SAAS,CAAC,EAAE,gBAAgB,CAAC;IAC7B;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,QAAQ,CAAC;IACjD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;IACvC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;IAC/B;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC9B;;OAEG;IACH,aAAa,CAAC,EAAE;QACd,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,IAAI,CAAC,EAAE;YAAE,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;QACtD,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC;QAC9B,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,UAAU,GAAG,WAAW,CAAC;KACvD,CAAC;CACH;AAED;;;GAGG;AACH,eAAO,MAAM,YAAY,0FA8axB,CAAC;AAIF;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,IAAI,CAAC,iBAAiB,EAAE,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,aAAa,GAAG,MAAM,GAAG,cAAc,CAAC;IAC3I;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,YAAY,0FAmCxB,CAAC"}
@@ -0,0 +1,41 @@
1
+ import React from 'react';
2
+ export type TooltipPosition = 'top' | 'bottom' | 'left' | 'right' | 'auto';
3
+ export interface GlassTooltipProps {
4
+ /** Content to show in the tooltip */
5
+ content: React.ReactNode;
6
+ /** Children element that triggers the tooltip */
7
+ children: React.ReactNode;
8
+ /** Position of the tooltip relative to trigger */
9
+ position?: TooltipPosition;
10
+ /** Delay before showing tooltip (ms) */
11
+ showDelay?: number;
12
+ /** Delay before hiding tooltip (ms) */
13
+ hideDelay?: number;
14
+ /** Whether tooltip is disabled */
15
+ disabled?: boolean;
16
+ /** Custom className for tooltip */
17
+ className?: string;
18
+ /** Custom className for trigger */
19
+ triggerClassName?: string;
20
+ /** Maximum width of tooltip */
21
+ maxWidth?: string;
22
+ /** Whether to show arrow pointer */
23
+ showArrow?: boolean;
24
+ /** Animation variant */
25
+ variant?: 'fade' | 'scale' | 'slide';
26
+ /** Whether to respect motion preferences */
27
+ respectMotionPreference?: boolean;
28
+ /** Accessible label for the tooltip */
29
+ 'aria-label'?: string;
30
+ /** ID of the tooltip for aria-describedby */
31
+ id?: string;
32
+ }
33
+ export declare const GlassTooltip: React.ForwardRefExoticComponent<GlassTooltipProps & React.RefAttributes<HTMLDivElement>>;
34
+ export declare const GlassTooltipTrigger: React.FC<{
35
+ asChild?: boolean;
36
+ children: React.ReactNode;
37
+ }>;
38
+ export declare const GlassTooltipContent: React.FC<{
39
+ children: React.ReactNode;
40
+ }>;
41
+ //# sourceMappingURL=GlassTooltip.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GlassTooltip.d.ts","sourceRoot":"","sources":["../../../../src/components/modal/GlassTooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAOvE,MAAM,MAAM,eAAe,GAAG,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC;AAE3E,MAAM,WAAW,iBAAiB;IAChC,qCAAqC;IACrC,OAAO,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,iDAAiD;IACjD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,kDAAkD;IAClD,QAAQ,CAAC,EAAE,eAAe,CAAC;IAC3B,wCAAwC;IACxC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kCAAkC;IAClC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,mCAAmC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,mCAAmC;IACnC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,+BAA+B;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,oCAAoC;IACpC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,wBAAwB;IACxB,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;IACrC,4CAA4C;IAC5C,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,uCAAuC;IACvC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,6CAA6C;IAC7C,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAGD,eAAO,MAAM,YAAY,0FAsOvB,CAAC;AAKH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC;IACzC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAEA,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC;IACzC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAEA,CAAC"}