fluentglass 0.2.6

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 (414) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +169 -0
  3. package/lib/commonjs/assets/fonts/Inter-Black.ttf +0 -0
  4. package/lib/commonjs/assets/fonts/Inter-Bold.ttf +0 -0
  5. package/lib/commonjs/assets/fonts/Inter-ExtraBold.ttf +0 -0
  6. package/lib/commonjs/assets/fonts/Inter-Medium.ttf +0 -0
  7. package/lib/commonjs/assets/fonts/Inter-Regular.ttf +0 -0
  8. package/lib/commonjs/assets/fonts/Inter-SemiBold.ttf +0 -0
  9. package/lib/commonjs/components/FluentGlass.js +94 -0
  10. package/lib/commonjs/components/FluentGlass.js.map +1 -0
  11. package/lib/commonjs/components/FluentGlassAlert.js +126 -0
  12. package/lib/commonjs/components/FluentGlassAlert.js.map +1 -0
  13. package/lib/commonjs/components/FluentGlassBadge.js +124 -0
  14. package/lib/commonjs/components/FluentGlassBadge.js.map +1 -0
  15. package/lib/commonjs/components/FluentGlassBarChart.js +287 -0
  16. package/lib/commonjs/components/FluentGlassBarChart.js.map +1 -0
  17. package/lib/commonjs/components/FluentGlassBreadcrumb.js +155 -0
  18. package/lib/commonjs/components/FluentGlassBreadcrumb.js.map +1 -0
  19. package/lib/commonjs/components/FluentGlassButton.js +175 -0
  20. package/lib/commonjs/components/FluentGlassButton.js.map +1 -0
  21. package/lib/commonjs/components/FluentGlassCalendarWidget.js +73 -0
  22. package/lib/commonjs/components/FluentGlassCalendarWidget.js.map +1 -0
  23. package/lib/commonjs/components/FluentGlassCard.js +195 -0
  24. package/lib/commonjs/components/FluentGlassCard.js.map +1 -0
  25. package/lib/commonjs/components/FluentGlassCheckbox.js +121 -0
  26. package/lib/commonjs/components/FluentGlassCheckbox.js.map +1 -0
  27. package/lib/commonjs/components/FluentGlassClockWidget.js +80 -0
  28. package/lib/commonjs/components/FluentGlassClockWidget.js.map +1 -0
  29. package/lib/commonjs/components/FluentGlassCodeBlock.js +239 -0
  30. package/lib/commonjs/components/FluentGlassCodeBlock.js.map +1 -0
  31. package/lib/commonjs/components/FluentGlassContainer.js +52 -0
  32. package/lib/commonjs/components/FluentGlassContainer.js.map +1 -0
  33. package/lib/commonjs/components/FluentGlassCrossfade.js +118 -0
  34. package/lib/commonjs/components/FluentGlassCrossfade.js.map +1 -0
  35. package/lib/commonjs/components/FluentGlassDateInput.js +176 -0
  36. package/lib/commonjs/components/FluentGlassDateInput.js.map +1 -0
  37. package/lib/commonjs/components/FluentGlassDatePicker.js +271 -0
  38. package/lib/commonjs/components/FluentGlassDatePicker.js.map +1 -0
  39. package/lib/commonjs/components/FluentGlassDialog.js +169 -0
  40. package/lib/commonjs/components/FluentGlassDialog.js.map +1 -0
  41. package/lib/commonjs/components/FluentGlassDock.js +187 -0
  42. package/lib/commonjs/components/FluentGlassDock.js.map +1 -0
  43. package/lib/commonjs/components/FluentGlassDropdown.js +349 -0
  44. package/lib/commonjs/components/FluentGlassDropdown.js.map +1 -0
  45. package/lib/commonjs/components/FluentGlassEmailInput.js +43 -0
  46. package/lib/commonjs/components/FluentGlassEmailInput.js.map +1 -0
  47. package/lib/commonjs/components/FluentGlassInput.js +83 -0
  48. package/lib/commonjs/components/FluentGlassInput.js.map +1 -0
  49. package/lib/commonjs/components/FluentGlassLabeledInput.js +64 -0
  50. package/lib/commonjs/components/FluentGlassLabeledInput.js.map +1 -0
  51. package/lib/commonjs/components/FluentGlassLayout.js +106 -0
  52. package/lib/commonjs/components/FluentGlassLayout.js.map +1 -0
  53. package/lib/commonjs/components/FluentGlassPasswordInput.js +60 -0
  54. package/lib/commonjs/components/FluentGlassPasswordInput.js.map +1 -0
  55. package/lib/commonjs/components/FluentGlassPopover.js +75 -0
  56. package/lib/commonjs/components/FluentGlassPopover.js.map +1 -0
  57. package/lib/commonjs/components/FluentGlassResponsiveRow.js +74 -0
  58. package/lib/commonjs/components/FluentGlassResponsiveRow.js.map +1 -0
  59. package/lib/commonjs/components/FluentGlassScrollArea.js +101 -0
  60. package/lib/commonjs/components/FluentGlassScrollArea.js.map +1 -0
  61. package/lib/commonjs/components/FluentGlassSegmentedControl.js +126 -0
  62. package/lib/commonjs/components/FluentGlassSegmentedControl.js.map +1 -0
  63. package/lib/commonjs/components/FluentGlassSelect.js +155 -0
  64. package/lib/commonjs/components/FluentGlassSelect.js.map +1 -0
  65. package/lib/commonjs/components/FluentGlassSeparator.js +62 -0
  66. package/lib/commonjs/components/FluentGlassSeparator.js.map +1 -0
  67. package/lib/commonjs/components/FluentGlassSheet.js +189 -0
  68. package/lib/commonjs/components/FluentGlassSheet.js.map +1 -0
  69. package/lib/commonjs/components/FluentGlassSidebar.js +358 -0
  70. package/lib/commonjs/components/FluentGlassSidebar.js.map +1 -0
  71. package/lib/commonjs/components/FluentGlassSimpleCard.js +56 -0
  72. package/lib/commonjs/components/FluentGlassSimpleCard.js.map +1 -0
  73. package/lib/commonjs/components/FluentGlassSkeleton.js +52 -0
  74. package/lib/commonjs/components/FluentGlassSkeleton.js.map +1 -0
  75. package/lib/commonjs/components/FluentGlassSlider.js +197 -0
  76. package/lib/commonjs/components/FluentGlassSlider.js.map +1 -0
  77. package/lib/commonjs/components/FluentGlassStatWidget.js +133 -0
  78. package/lib/commonjs/components/FluentGlassStatWidget.js.map +1 -0
  79. package/lib/commonjs/components/FluentGlassStatusIndicator.js +89 -0
  80. package/lib/commonjs/components/FluentGlassStatusIndicator.js.map +1 -0
  81. package/lib/commonjs/components/FluentGlassSwitch.js +126 -0
  82. package/lib/commonjs/components/FluentGlassSwitch.js.map +1 -0
  83. package/lib/commonjs/components/FluentGlassTable.js +163 -0
  84. package/lib/commonjs/components/FluentGlassTable.js.map +1 -0
  85. package/lib/commonjs/components/FluentGlassTag.js +109 -0
  86. package/lib/commonjs/components/FluentGlassTag.js.map +1 -0
  87. package/lib/commonjs/components/FluentGlassTextInput.js +90 -0
  88. package/lib/commonjs/components/FluentGlassTextInput.js.map +1 -0
  89. package/lib/commonjs/components/FluentGlassTimeline.js +334 -0
  90. package/lib/commonjs/components/FluentGlassTimeline.js.map +1 -0
  91. package/lib/commonjs/components/FluentGlassWeatherWidget.js +72 -0
  92. package/lib/commonjs/components/FluentGlassWeatherWidget.js.map +1 -0
  93. package/lib/commonjs/components/index.js +308 -0
  94. package/lib/commonjs/components/index.js.map +1 -0
  95. package/lib/commonjs/fonts.js +33 -0
  96. package/lib/commonjs/fonts.js.map +1 -0
  97. package/lib/commonjs/hooks/useBreakpoint.js +57 -0
  98. package/lib/commonjs/hooks/useBreakpoint.js.map +1 -0
  99. package/lib/commonjs/index.js +462 -0
  100. package/lib/commonjs/index.js.map +1 -0
  101. package/lib/commonjs/package.json +1 -0
  102. package/lib/commonjs/theme/FluentGlassProvider.js +84 -0
  103. package/lib/commonjs/theme/FluentGlassProvider.js.map +1 -0
  104. package/lib/commonjs/theme/defaultTheme.js +55 -0
  105. package/lib/commonjs/theme/defaultTheme.js.map +1 -0
  106. package/lib/commonjs/theme/resolvers.js +118 -0
  107. package/lib/commonjs/theme/resolvers.js.map +1 -0
  108. package/lib/commonjs/theme/tokens.js +239 -0
  109. package/lib/commonjs/theme/tokens.js.map +1 -0
  110. package/lib/commonjs/theme/typography.js +50 -0
  111. package/lib/commonjs/theme/typography.js.map +1 -0
  112. package/lib/commonjs/theme/useTheme.js +22 -0
  113. package/lib/commonjs/theme/useTheme.js.map +1 -0
  114. package/lib/commonjs/types/components.js +6 -0
  115. package/lib/commonjs/types/components.js.map +1 -0
  116. package/lib/commonjs/types/theme.js +6 -0
  117. package/lib/commonjs/types/theme.js.map +1 -0
  118. package/lib/commonjs/utils/colors.js +59 -0
  119. package/lib/commonjs/utils/colors.js.map +1 -0
  120. package/lib/commonjs/utils/responsive.js +126 -0
  121. package/lib/commonjs/utils/responsive.js.map +1 -0
  122. package/lib/module/assets/fonts/Inter-Black.ttf +0 -0
  123. package/lib/module/assets/fonts/Inter-Bold.ttf +0 -0
  124. package/lib/module/assets/fonts/Inter-ExtraBold.ttf +0 -0
  125. package/lib/module/assets/fonts/Inter-Medium.ttf +0 -0
  126. package/lib/module/assets/fonts/Inter-Regular.ttf +0 -0
  127. package/lib/module/assets/fonts/Inter-SemiBold.ttf +0 -0
  128. package/lib/module/components/FluentGlass.js +89 -0
  129. package/lib/module/components/FluentGlass.js.map +1 -0
  130. package/lib/module/components/FluentGlassAlert.js +121 -0
  131. package/lib/module/components/FluentGlassAlert.js.map +1 -0
  132. package/lib/module/components/FluentGlassBadge.js +119 -0
  133. package/lib/module/components/FluentGlassBadge.js.map +1 -0
  134. package/lib/module/components/FluentGlassBarChart.js +281 -0
  135. package/lib/module/components/FluentGlassBarChart.js.map +1 -0
  136. package/lib/module/components/FluentGlassBreadcrumb.js +150 -0
  137. package/lib/module/components/FluentGlassBreadcrumb.js.map +1 -0
  138. package/lib/module/components/FluentGlassButton.js +169 -0
  139. package/lib/module/components/FluentGlassButton.js.map +1 -0
  140. package/lib/module/components/FluentGlassCalendarWidget.js +68 -0
  141. package/lib/module/components/FluentGlassCalendarWidget.js.map +1 -0
  142. package/lib/module/components/FluentGlassCard.js +190 -0
  143. package/lib/module/components/FluentGlassCard.js.map +1 -0
  144. package/lib/module/components/FluentGlassCheckbox.js +115 -0
  145. package/lib/module/components/FluentGlassCheckbox.js.map +1 -0
  146. package/lib/module/components/FluentGlassClockWidget.js +74 -0
  147. package/lib/module/components/FluentGlassClockWidget.js.map +1 -0
  148. package/lib/module/components/FluentGlassCodeBlock.js +233 -0
  149. package/lib/module/components/FluentGlassCodeBlock.js.map +1 -0
  150. package/lib/module/components/FluentGlassContainer.js +47 -0
  151. package/lib/module/components/FluentGlassContainer.js.map +1 -0
  152. package/lib/module/components/FluentGlassCrossfade.js +112 -0
  153. package/lib/module/components/FluentGlassCrossfade.js.map +1 -0
  154. package/lib/module/components/FluentGlassDateInput.js +170 -0
  155. package/lib/module/components/FluentGlassDateInput.js.map +1 -0
  156. package/lib/module/components/FluentGlassDatePicker.js +265 -0
  157. package/lib/module/components/FluentGlassDatePicker.js.map +1 -0
  158. package/lib/module/components/FluentGlassDialog.js +163 -0
  159. package/lib/module/components/FluentGlassDialog.js.map +1 -0
  160. package/lib/module/components/FluentGlassDock.js +181 -0
  161. package/lib/module/components/FluentGlassDock.js.map +1 -0
  162. package/lib/module/components/FluentGlassDropdown.js +343 -0
  163. package/lib/module/components/FluentGlassDropdown.js.map +1 -0
  164. package/lib/module/components/FluentGlassEmailInput.js +38 -0
  165. package/lib/module/components/FluentGlassEmailInput.js.map +1 -0
  166. package/lib/module/components/FluentGlassInput.js +78 -0
  167. package/lib/module/components/FluentGlassInput.js.map +1 -0
  168. package/lib/module/components/FluentGlassLabeledInput.js +59 -0
  169. package/lib/module/components/FluentGlassLabeledInput.js.map +1 -0
  170. package/lib/module/components/FluentGlassLayout.js +101 -0
  171. package/lib/module/components/FluentGlassLayout.js.map +1 -0
  172. package/lib/module/components/FluentGlassPasswordInput.js +54 -0
  173. package/lib/module/components/FluentGlassPasswordInput.js.map +1 -0
  174. package/lib/module/components/FluentGlassPopover.js +70 -0
  175. package/lib/module/components/FluentGlassPopover.js.map +1 -0
  176. package/lib/module/components/FluentGlassResponsiveRow.js +71 -0
  177. package/lib/module/components/FluentGlassResponsiveRow.js.map +1 -0
  178. package/lib/module/components/FluentGlassScrollArea.js +95 -0
  179. package/lib/module/components/FluentGlassScrollArea.js.map +1 -0
  180. package/lib/module/components/FluentGlassSegmentedControl.js +120 -0
  181. package/lib/module/components/FluentGlassSegmentedControl.js.map +1 -0
  182. package/lib/module/components/FluentGlassSelect.js +149 -0
  183. package/lib/module/components/FluentGlassSelect.js.map +1 -0
  184. package/lib/module/components/FluentGlassSeparator.js +57 -0
  185. package/lib/module/components/FluentGlassSeparator.js.map +1 -0
  186. package/lib/module/components/FluentGlassSheet.js +183 -0
  187. package/lib/module/components/FluentGlassSheet.js.map +1 -0
  188. package/lib/module/components/FluentGlassSidebar.js +351 -0
  189. package/lib/module/components/FluentGlassSidebar.js.map +1 -0
  190. package/lib/module/components/FluentGlassSimpleCard.js +51 -0
  191. package/lib/module/components/FluentGlassSimpleCard.js.map +1 -0
  192. package/lib/module/components/FluentGlassSkeleton.js +46 -0
  193. package/lib/module/components/FluentGlassSkeleton.js.map +1 -0
  194. package/lib/module/components/FluentGlassSlider.js +191 -0
  195. package/lib/module/components/FluentGlassSlider.js.map +1 -0
  196. package/lib/module/components/FluentGlassStatWidget.js +128 -0
  197. package/lib/module/components/FluentGlassStatWidget.js.map +1 -0
  198. package/lib/module/components/FluentGlassStatusIndicator.js +84 -0
  199. package/lib/module/components/FluentGlassStatusIndicator.js.map +1 -0
  200. package/lib/module/components/FluentGlassSwitch.js +122 -0
  201. package/lib/module/components/FluentGlassSwitch.js.map +1 -0
  202. package/lib/module/components/FluentGlassTable.js +158 -0
  203. package/lib/module/components/FluentGlassTable.js.map +1 -0
  204. package/lib/module/components/FluentGlassTag.js +103 -0
  205. package/lib/module/components/FluentGlassTag.js.map +1 -0
  206. package/lib/module/components/FluentGlassTextInput.js +85 -0
  207. package/lib/module/components/FluentGlassTextInput.js.map +1 -0
  208. package/lib/module/components/FluentGlassTimeline.js +327 -0
  209. package/lib/module/components/FluentGlassTimeline.js.map +1 -0
  210. package/lib/module/components/FluentGlassWeatherWidget.js +67 -0
  211. package/lib/module/components/FluentGlassWeatherWidget.js.map +1 -0
  212. package/lib/module/components/index.js +45 -0
  213. package/lib/module/components/index.js.map +1 -0
  214. package/lib/module/fonts.js +26 -0
  215. package/lib/module/fonts.js.map +1 -0
  216. package/lib/module/hooks/useBreakpoint.js +54 -0
  217. package/lib/module/hooks/useBreakpoint.js.map +1 -0
  218. package/lib/module/index.js +30 -0
  219. package/lib/module/index.js.map +1 -0
  220. package/lib/module/theme/FluentGlassProvider.js +77 -0
  221. package/lib/module/theme/FluentGlassProvider.js.map +1 -0
  222. package/lib/module/theme/defaultTheme.js +51 -0
  223. package/lib/module/theme/defaultTheme.js.map +1 -0
  224. package/lib/module/theme/resolvers.js +110 -0
  225. package/lib/module/theme/resolvers.js.map +1 -0
  226. package/lib/module/theme/tokens.js +235 -0
  227. package/lib/module/theme/tokens.js.map +1 -0
  228. package/lib/module/theme/typography.js +45 -0
  229. package/lib/module/theme/typography.js.map +1 -0
  230. package/lib/module/theme/useTheme.js +18 -0
  231. package/lib/module/theme/useTheme.js.map +1 -0
  232. package/lib/module/types/components.js +4 -0
  233. package/lib/module/types/components.js.map +1 -0
  234. package/lib/module/types/theme.js +4 -0
  235. package/lib/module/types/theme.js.map +1 -0
  236. package/lib/module/utils/colors.js +55 -0
  237. package/lib/module/utils/colors.js.map +1 -0
  238. package/lib/module/utils/responsive.js +116 -0
  239. package/lib/module/utils/responsive.js.map +1 -0
  240. package/lib/typescript/components/FluentGlass.d.ts +25 -0
  241. package/lib/typescript/components/FluentGlass.d.ts.map +1 -0
  242. package/lib/typescript/components/FluentGlassAlert.d.ts +13 -0
  243. package/lib/typescript/components/FluentGlassAlert.d.ts.map +1 -0
  244. package/lib/typescript/components/FluentGlassBadge.d.ts +22 -0
  245. package/lib/typescript/components/FluentGlassBadge.d.ts.map +1 -0
  246. package/lib/typescript/components/FluentGlassBarChart.d.ts +30 -0
  247. package/lib/typescript/components/FluentGlassBarChart.d.ts.map +1 -0
  248. package/lib/typescript/components/FluentGlassBreadcrumb.d.ts +22 -0
  249. package/lib/typescript/components/FluentGlassBreadcrumb.d.ts.map +1 -0
  250. package/lib/typescript/components/FluentGlassButton.d.ts +27 -0
  251. package/lib/typescript/components/FluentGlassButton.d.ts.map +1 -0
  252. package/lib/typescript/components/FluentGlassCalendarWidget.d.ts +13 -0
  253. package/lib/typescript/components/FluentGlassCalendarWidget.d.ts.map +1 -0
  254. package/lib/typescript/components/FluentGlassCard.d.ts +30 -0
  255. package/lib/typescript/components/FluentGlassCard.d.ts.map +1 -0
  256. package/lib/typescript/components/FluentGlassCheckbox.d.ts +14 -0
  257. package/lib/typescript/components/FluentGlassCheckbox.d.ts.map +1 -0
  258. package/lib/typescript/components/FluentGlassClockWidget.d.ts +11 -0
  259. package/lib/typescript/components/FluentGlassClockWidget.d.ts.map +1 -0
  260. package/lib/typescript/components/FluentGlassCodeBlock.d.ts +11 -0
  261. package/lib/typescript/components/FluentGlassCodeBlock.d.ts.map +1 -0
  262. package/lib/typescript/components/FluentGlassContainer.d.ts +22 -0
  263. package/lib/typescript/components/FluentGlassContainer.d.ts.map +1 -0
  264. package/lib/typescript/components/FluentGlassCrossfade.d.ts +24 -0
  265. package/lib/typescript/components/FluentGlassCrossfade.d.ts.map +1 -0
  266. package/lib/typescript/components/FluentGlassDateInput.d.ts +18 -0
  267. package/lib/typescript/components/FluentGlassDateInput.d.ts.map +1 -0
  268. package/lib/typescript/components/FluentGlassDatePicker.d.ts +9 -0
  269. package/lib/typescript/components/FluentGlassDatePicker.d.ts.map +1 -0
  270. package/lib/typescript/components/FluentGlassDialog.d.ts +18 -0
  271. package/lib/typescript/components/FluentGlassDialog.d.ts.map +1 -0
  272. package/lib/typescript/components/FluentGlassDock.d.ts +19 -0
  273. package/lib/typescript/components/FluentGlassDock.d.ts.map +1 -0
  274. package/lib/typescript/components/FluentGlassDropdown.d.ts +23 -0
  275. package/lib/typescript/components/FluentGlassDropdown.d.ts.map +1 -0
  276. package/lib/typescript/components/FluentGlassEmailInput.d.ts +17 -0
  277. package/lib/typescript/components/FluentGlassEmailInput.d.ts.map +1 -0
  278. package/lib/typescript/components/FluentGlassInput.d.ts +12 -0
  279. package/lib/typescript/components/FluentGlassInput.d.ts.map +1 -0
  280. package/lib/typescript/components/FluentGlassLabeledInput.d.ts +19 -0
  281. package/lib/typescript/components/FluentGlassLabeledInput.d.ts.map +1 -0
  282. package/lib/typescript/components/FluentGlassLayout.d.ts +11 -0
  283. package/lib/typescript/components/FluentGlassLayout.d.ts.map +1 -0
  284. package/lib/typescript/components/FluentGlassPasswordInput.d.ts +15 -0
  285. package/lib/typescript/components/FluentGlassPasswordInput.d.ts.map +1 -0
  286. package/lib/typescript/components/FluentGlassPopover.d.ts +17 -0
  287. package/lib/typescript/components/FluentGlassPopover.d.ts.map +1 -0
  288. package/lib/typescript/components/FluentGlassResponsiveRow.d.ts +25 -0
  289. package/lib/typescript/components/FluentGlassResponsiveRow.d.ts.map +1 -0
  290. package/lib/typescript/components/FluentGlassScrollArea.d.ts +16 -0
  291. package/lib/typescript/components/FluentGlassScrollArea.d.ts.map +1 -0
  292. package/lib/typescript/components/FluentGlassSegmentedControl.d.ts +15 -0
  293. package/lib/typescript/components/FluentGlassSegmentedControl.d.ts.map +1 -0
  294. package/lib/typescript/components/FluentGlassSelect.d.ts +23 -0
  295. package/lib/typescript/components/FluentGlassSelect.d.ts.map +1 -0
  296. package/lib/typescript/components/FluentGlassSeparator.d.ts +13 -0
  297. package/lib/typescript/components/FluentGlassSeparator.d.ts.map +1 -0
  298. package/lib/typescript/components/FluentGlassSheet.d.ts +11 -0
  299. package/lib/typescript/components/FluentGlassSheet.d.ts.map +1 -0
  300. package/lib/typescript/components/FluentGlassSidebar.d.ts +44 -0
  301. package/lib/typescript/components/FluentGlassSidebar.d.ts.map +1 -0
  302. package/lib/typescript/components/FluentGlassSimpleCard.d.ts +19 -0
  303. package/lib/typescript/components/FluentGlassSimpleCard.d.ts.map +1 -0
  304. package/lib/typescript/components/FluentGlassSkeleton.d.ts +14 -0
  305. package/lib/typescript/components/FluentGlassSkeleton.d.ts.map +1 -0
  306. package/lib/typescript/components/FluentGlassSlider.d.ts +31 -0
  307. package/lib/typescript/components/FluentGlassSlider.d.ts.map +1 -0
  308. package/lib/typescript/components/FluentGlassStatWidget.d.ts +17 -0
  309. package/lib/typescript/components/FluentGlassStatWidget.d.ts.map +1 -0
  310. package/lib/typescript/components/FluentGlassStatusIndicator.d.ts +16 -0
  311. package/lib/typescript/components/FluentGlassStatusIndicator.d.ts.map +1 -0
  312. package/lib/typescript/components/FluentGlassSwitch.d.ts +13 -0
  313. package/lib/typescript/components/FluentGlassSwitch.d.ts.map +1 -0
  314. package/lib/typescript/components/FluentGlassTable.d.ts +50 -0
  315. package/lib/typescript/components/FluentGlassTable.d.ts.map +1 -0
  316. package/lib/typescript/components/FluentGlassTag.d.ts +18 -0
  317. package/lib/typescript/components/FluentGlassTag.d.ts.map +1 -0
  318. package/lib/typescript/components/FluentGlassTextInput.d.ts +21 -0
  319. package/lib/typescript/components/FluentGlassTextInput.d.ts.map +1 -0
  320. package/lib/typescript/components/FluentGlassTimeline.d.ts +27 -0
  321. package/lib/typescript/components/FluentGlassTimeline.d.ts.map +1 -0
  322. package/lib/typescript/components/FluentGlassWeatherWidget.d.ts +13 -0
  323. package/lib/typescript/components/FluentGlassWeatherWidget.d.ts.map +1 -0
  324. package/lib/typescript/components/index.d.ts +43 -0
  325. package/lib/typescript/components/index.d.ts.map +1 -0
  326. package/lib/typescript/fonts.d.ts +13 -0
  327. package/lib/typescript/fonts.d.ts.map +1 -0
  328. package/lib/typescript/hooks/useBreakpoint.d.ts +26 -0
  329. package/lib/typescript/hooks/useBreakpoint.d.ts.map +1 -0
  330. package/lib/typescript/index.d.ts +18 -0
  331. package/lib/typescript/index.d.ts.map +1 -0
  332. package/lib/typescript/theme/FluentGlassProvider.d.ts +21 -0
  333. package/lib/typescript/theme/FluentGlassProvider.d.ts.map +1 -0
  334. package/lib/typescript/theme/defaultTheme.d.ts +10 -0
  335. package/lib/typescript/theme/defaultTheme.d.ts.map +1 -0
  336. package/lib/typescript/theme/resolvers.d.ts +55 -0
  337. package/lib/typescript/theme/resolvers.d.ts.map +1 -0
  338. package/lib/typescript/theme/tokens.d.ts +27 -0
  339. package/lib/typescript/theme/tokens.d.ts.map +1 -0
  340. package/lib/typescript/theme/typography.d.ts +27 -0
  341. package/lib/typescript/theme/typography.d.ts.map +1 -0
  342. package/lib/typescript/theme/useTheme.d.ts +12 -0
  343. package/lib/typescript/theme/useTheme.d.ts.map +1 -0
  344. package/lib/typescript/types/components.d.ts +32 -0
  345. package/lib/typescript/types/components.d.ts.map +1 -0
  346. package/lib/typescript/types/theme.d.ts +79 -0
  347. package/lib/typescript/types/theme.d.ts.map +1 -0
  348. package/lib/typescript/utils/colors.d.ts +3 -0
  349. package/lib/typescript/utils/colors.d.ts.map +1 -0
  350. package/lib/typescript/utils/responsive.d.ts +62 -0
  351. package/lib/typescript/utils/responsive.d.ts.map +1 -0
  352. package/package.json +90 -0
  353. package/src/assets/fonts/Inter-Black.ttf +0 -0
  354. package/src/assets/fonts/Inter-Bold.ttf +0 -0
  355. package/src/assets/fonts/Inter-ExtraBold.ttf +0 -0
  356. package/src/assets/fonts/Inter-Medium.ttf +0 -0
  357. package/src/assets/fonts/Inter-Regular.ttf +0 -0
  358. package/src/assets/fonts/Inter-SemiBold.ttf +0 -0
  359. package/src/components/FluentGlass.tsx +103 -0
  360. package/src/components/FluentGlassAlert.tsx +126 -0
  361. package/src/components/FluentGlassBadge.tsx +109 -0
  362. package/src/components/FluentGlassBarChart.tsx +295 -0
  363. package/src/components/FluentGlassBreadcrumb.tsx +173 -0
  364. package/src/components/FluentGlassButton.tsx +169 -0
  365. package/src/components/FluentGlassCalendarWidget.tsx +55 -0
  366. package/src/components/FluentGlassCard.tsx +186 -0
  367. package/src/components/FluentGlassCheckbox.tsx +138 -0
  368. package/src/components/FluentGlassClockWidget.tsx +61 -0
  369. package/src/components/FluentGlassCodeBlock.tsx +241 -0
  370. package/src/components/FluentGlassContainer.tsx +63 -0
  371. package/src/components/FluentGlassCrossfade.tsx +122 -0
  372. package/src/components/FluentGlassDateInput.tsx +182 -0
  373. package/src/components/FluentGlassDatePicker.tsx +224 -0
  374. package/src/components/FluentGlassDialog.tsx +153 -0
  375. package/src/components/FluentGlassDock.tsx +194 -0
  376. package/src/components/FluentGlassDropdown.tsx +382 -0
  377. package/src/components/FluentGlassEmailInput.tsx +46 -0
  378. package/src/components/FluentGlassInput.tsx +77 -0
  379. package/src/components/FluentGlassLabeledInput.tsx +63 -0
  380. package/src/components/FluentGlassLayout.tsx +89 -0
  381. package/src/components/FluentGlassPasswordInput.tsx +59 -0
  382. package/src/components/FluentGlassPopover.tsx +74 -0
  383. package/src/components/FluentGlassResponsiveRow.tsx +76 -0
  384. package/src/components/FluentGlassScrollArea.tsx +110 -0
  385. package/src/components/FluentGlassSegmentedControl.tsx +140 -0
  386. package/src/components/FluentGlassSelect.tsx +139 -0
  387. package/src/components/FluentGlassSeparator.tsx +54 -0
  388. package/src/components/FluentGlassSheet.tsx +183 -0
  389. package/src/components/FluentGlassSidebar.tsx +349 -0
  390. package/src/components/FluentGlassSimpleCard.tsx +59 -0
  391. package/src/components/FluentGlassSkeleton.tsx +69 -0
  392. package/src/components/FluentGlassSlider.tsx +202 -0
  393. package/src/components/FluentGlassStatWidget.tsx +107 -0
  394. package/src/components/FluentGlassStatusIndicator.tsx +82 -0
  395. package/src/components/FluentGlassSwitch.tsx +130 -0
  396. package/src/components/FluentGlassTable.tsx +145 -0
  397. package/src/components/FluentGlassTag.tsx +98 -0
  398. package/src/components/FluentGlassTextInput.tsx +87 -0
  399. package/src/components/FluentGlassTimeline.tsx +335 -0
  400. package/src/components/FluentGlassWeatherWidget.tsx +54 -0
  401. package/src/components/index.ts +42 -0
  402. package/src/fonts.ts +24 -0
  403. package/src/hooks/useBreakpoint.ts +55 -0
  404. package/src/index.ts +97 -0
  405. package/src/theme/FluentGlassProvider.tsx +82 -0
  406. package/src/theme/defaultTheme.ts +44 -0
  407. package/src/theme/resolvers.ts +115 -0
  408. package/src/theme/tokens.ts +200 -0
  409. package/src/theme/typography.ts +41 -0
  410. package/src/theme/useTheme.ts +17 -0
  411. package/src/types/components.ts +47 -0
  412. package/src/types/theme.ts +82 -0
  413. package/src/utils/colors.ts +55 -0
  414. package/src/utils/responsive.ts +110 -0
@@ -0,0 +1,155 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassSelect;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _FluentGlass = _interopRequireDefault(require("./FluentGlass"));
10
+ var _FluentGlassSheet = _interopRequireDefault(require("./FluentGlassSheet"));
11
+ var _useTheme = _interopRequireDefault(require("../theme/useTheme"));
12
+ var _resolvers = require("../theme/resolvers");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
16
+ /**
17
+ * FluentGlassSelect (Component)
18
+ * Dropdown that triggers a Bottom Sheet for selection.
19
+ */
20
+
21
+ function FluentGlassSelect({
22
+ value,
23
+ onValueChange,
24
+ options = [],
25
+ // { label, value }[]
26
+ placeholder = 'Select option',
27
+ label,
28
+ // New props
29
+ size,
30
+ colorScheme,
31
+ blur,
32
+ radius,
33
+ accessibilityLabel
34
+ }) {
35
+ const theme = (0, _useTheme.default)();
36
+ const sizeConfig = (0, _resolvers.resolveSize)(theme, size || theme.defaults.size);
37
+ const compat = (0, _resolvers.resolveBackwardCompat)({
38
+ colorScheme,
39
+ blur
40
+ });
41
+ const resolvedScheme = compat.colorScheme || theme.defaults.colorScheme;
42
+ const resolvedRadius = (0, _resolvers.resolveRadius)(theme, radius || 'md');
43
+ const [isOpen, setIsOpen] = (0, _react.useState)(false);
44
+ const selectedOption = options.find(opt => opt.value === value);
45
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
46
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
47
+ style: styles.wrapper,
48
+ children: [label && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
49
+ style: [styles.label, {
50
+ color: theme.colors.textSecondary,
51
+ fontSize: sizeConfig.fontSize - 1,
52
+ marginLeft: (sizeConfig.gap || 0) / 2,
53
+ marginBottom: sizeConfig.gap || 0,
54
+ fontFamily: theme.typography.medium
55
+ }],
56
+ children: label
57
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
58
+ onPress: () => setIsOpen(true),
59
+ accessibilityRole: "button",
60
+ accessibilityLabel: accessibilityLabel ?? label ?? placeholder ?? 'Select',
61
+ accessibilityState: {
62
+ expanded: isOpen
63
+ },
64
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_FluentGlass.default, {
65
+ style: [styles.trigger, {
66
+ minHeight: sizeConfig.minHeight
67
+ }],
68
+ colorScheme: resolvedScheme,
69
+ blur: compat.blur || 'subtle',
70
+ radius: radius,
71
+ borderRadius: resolvedRadius,
72
+ borderOpacity: 0.15,
73
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
74
+ style: [styles.contentContainer, {
75
+ paddingHorizontal: sizeConfig.paddingHorizontal
76
+ }],
77
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
78
+ style: [styles.text, {
79
+ fontSize: sizeConfig.fontSize,
80
+ fontFamily: theme.typography.regular
81
+ }, !selectedOption ? {
82
+ color: theme.colors.textSecondary
83
+ } : {
84
+ color: theme.colors.textPrimary
85
+ }],
86
+ children: selectedOption ? selectedOption.label : placeholder
87
+ })
88
+ })
89
+ })
90
+ })]
91
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_FluentGlassSheet.default, {
92
+ visible: isOpen,
93
+ onClose: () => setIsOpen(false),
94
+ title: label || placeholder,
95
+ height: "50%",
96
+ size: size,
97
+ children: options.map(opt => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
98
+ style: [styles.option, {
99
+ paddingVertical: sizeConfig.paddingHorizontal,
100
+ borderBottomColor: `${theme.colors.textSecondary}1A`
101
+ }],
102
+ accessibilityLabel: opt.label,
103
+ accessibilityState: {
104
+ selected: value === opt.value
105
+ },
106
+ onPress: () => {
107
+ onValueChange(opt.value);
108
+ setIsOpen(false);
109
+ },
110
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
111
+ style: [styles.optionText, {
112
+ fontSize: sizeConfig.fontSize,
113
+ fontFamily: theme.typography.medium
114
+ }, value === opt.value ? {
115
+ color: theme.colors.accent,
116
+ fontFamily: theme.typography.semiBold
117
+ } : {
118
+ color: theme.colors.textSecondary
119
+ }],
120
+ children: opt.label
121
+ }), value === opt.value && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
122
+ style: [styles.checkDot, {
123
+ backgroundColor: theme.colors.accent
124
+ }]
125
+ })]
126
+ }, opt.value))
127
+ })]
128
+ });
129
+ }
130
+ const styles = _reactNative.StyleSheet.create({
131
+ wrapper: {
132
+ marginBottom: 16,
133
+ width: '100%'
134
+ },
135
+ label: {},
136
+ trigger: {},
137
+ contentContainer: {
138
+ flex: 1,
139
+ justifyContent: 'center'
140
+ },
141
+ text: {},
142
+ option: {
143
+ flexDirection: 'row',
144
+ alignItems: 'center',
145
+ justifyContent: 'space-between',
146
+ borderBottomWidth: 1
147
+ },
148
+ optionText: {},
149
+ checkDot: {
150
+ width: 8,
151
+ height: 8,
152
+ borderRadius: 4
153
+ }
154
+ });
155
+ //# sourceMappingURL=FluentGlassSelect.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_FluentGlass","_interopRequireDefault","_FluentGlassSheet","_useTheme","_resolvers","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","FluentGlassSelect","value","onValueChange","options","placeholder","label","size","colorScheme","blur","radius","accessibilityLabel","theme","useTheme","sizeConfig","resolveSize","defaults","compat","resolveBackwardCompat","resolvedScheme","resolvedRadius","resolveRadius","isOpen","setIsOpen","useState","selectedOption","find","opt","jsxs","Fragment","children","View","style","styles","wrapper","jsx","Text","color","colors","textSecondary","fontSize","marginLeft","gap","marginBottom","fontFamily","typography","medium","TouchableOpacity","onPress","accessibilityRole","accessibilityState","expanded","trigger","minHeight","borderRadius","borderOpacity","contentContainer","paddingHorizontal","text","regular","textPrimary","visible","onClose","title","height","map","option","paddingVertical","borderBottomColor","selected","optionText","accent","semiBold","checkDot","backgroundColor","StyleSheet","create","width","flex","justifyContent","flexDirection","alignItems","borderBottomWidth"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassSelect.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassSeparator;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _expoLinearGradient = require("expo-linear-gradient");
10
+ var _useTheme = _interopRequireDefault(require("../theme/useTheme"));
11
+ var _jsxRuntime = require("react/jsx-runtime");
12
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
13
+ /**
14
+ * FluentGlassSeparator (Component)
15
+ * A subtle gradient line to divide content.
16
+ */
17
+ function FluentGlassSeparator({
18
+ orientation = 'horizontal',
19
+ style,
20
+ opacity = 0.2
21
+ }) {
22
+ const theme = (0, _useTheme.default)();
23
+ const COLORS = theme.colors;
24
+ const isHorizontal = orientation === 'horizontal';
25
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_expoLinearGradient.LinearGradient, {
26
+ accessible: false,
27
+ colors: ['transparent', COLORS.textSecondary, 'transparent'],
28
+ start: isHorizontal ? {
29
+ x: 0,
30
+ y: 0
31
+ } : {
32
+ x: 0,
33
+ y: 0
34
+ },
35
+ end: isHorizontal ? {
36
+ x: 1,
37
+ y: 0
38
+ } : {
39
+ x: 0,
40
+ y: 1
41
+ },
42
+ style: [styles.container, isHorizontal ? styles.horizontal : styles.vertical, {
43
+ opacity
44
+ }, style]
45
+ });
46
+ }
47
+ const styles = _reactNative.StyleSheet.create({
48
+ container: {
49
+ // Shared
50
+ },
51
+ horizontal: {
52
+ width: '100%',
53
+ height: 1,
54
+ marginVertical: 16
55
+ },
56
+ vertical: {
57
+ width: 1,
58
+ height: '100%',
59
+ marginHorizontal: 16
60
+ }
61
+ });
62
+ //# sourceMappingURL=FluentGlassSeparator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_expoLinearGradient","_useTheme","_jsxRuntime","e","__esModule","default","FluentGlassSeparator","orientation","style","opacity","theme","useTheme","COLORS","colors","isHorizontal","jsx","LinearGradient","accessible","textSecondary","start","x","y","end","styles","container","horizontal","vertical","StyleSheet","create","width","height","marginVertical","marginHorizontal"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassSeparator.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,mBAAA,GAAAF,OAAA;AACA,IAAAG,SAAA,GAAAJ,sBAAA,CAAAC,OAAA;AAAyC,IAAAI,WAAA,GAAAJ,OAAA;AAAA,SAAAD,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAQzC;AACA;AACA;AACA;AACe,SAASG,oBAAoBA,CAAC;EAAEC,WAAW,GAAG,YAAY;EACrEC,KAAK;EACLC,OAAO,GAAG;AAAgC,CAAC,EAAE;EAC7C,MAAMC,KAAK,GAAG,IAAAC,iBAAQ,EAAC,CAAC;EACxB,MAAMC,MAAM,GAAGF,KAAK,CAACG,MAAM;EAE3B,MAAMC,YAAY,GAAGP,WAAW,KAAK,YAAY;EAEjD,oBACI,IAAAL,WAAA,CAAAa,GAAA,EAACf,mBAAA,CAAAgB,cAAc;IACXC,UAAU,EAAE,KAAM;IAClBJ,MAAM,EAAE,CAAC,aAAa,EAAED,MAAM,CAACM,aAAa,EAAE,aAAa,CAAE;IAC7DC,KAAK,EAAEL,YAAY,GAAG;MAAEM,CAAC,EAAE,CAAC;MAAEC,CAAC,EAAE;IAAE,CAAC,GAAG;MAAED,CAAC,EAAE,CAAC;MAAEC,CAAC,EAAE;IAAE,CAAE;IACtDC,GAAG,EAAER,YAAY,GAAG;MAAEM,CAAC,EAAE,CAAC;MAAEC,CAAC,EAAE;IAAE,CAAC,GAAG;MAAED,CAAC,EAAE,CAAC;MAAEC,CAAC,EAAE;IAAE,CAAE;IACpDb,KAAK,EAAE,CACHe,MAAM,CAACC,SAAS,EAChBV,YAAY,GAAGS,MAAM,CAACE,UAAU,GAAGF,MAAM,CAACG,QAAQ,EAClD;MAAEjB;IAAQ,CAAC,EACXD,KAAK;EACP,CACL,CAAC;AAEV;AAEA,MAAMe,MAAM,GAAGI,uBAAU,CAACC,MAAM,CAAC;EAC7BJ,SAAS,EAAE;IACP;EAAA,CACH;EACDC,UAAU,EAAE;IACRI,KAAK,EAAE,MAAM;IACbC,MAAM,EAAE,CAAC;IACTC,cAAc,EAAE;EACpB,CAAC;EACDL,QAAQ,EAAE;IACNG,KAAK,EAAE,CAAC;IACRC,MAAM,EAAE,MAAM;IACdE,gBAAgB,EAAE;EACtB;AACJ,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,189 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassSheet;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeGestureHandler = require("react-native-gesture-handler");
10
+ var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
11
+ var _FluentGlass = _interopRequireDefault(require("./FluentGlass"));
12
+ var _useTheme = _interopRequireDefault(require("../theme/useTheme"));
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
16
+ const SCREEN_HEIGHT = _reactNative.Dimensions.get('window').height;
17
+ const SPRING_CONFIG = {
18
+ damping: 30,
19
+ stiffness: 120
20
+ };
21
+ function FluentGlassSheet({
22
+ visible,
23
+ onClose,
24
+ children,
25
+ title,
26
+ height = '50%',
27
+ size // pass size prop specifically inherited from selects
28
+ }) {
29
+ const {
30
+ colors,
31
+ typography
32
+ } = (0, _useTheme.default)();
33
+
34
+ // Internal state to keep Modal visible during exit animation
35
+ const [isVisibleInternal, setIsVisibleInternal] = (0, _react.useState)(false);
36
+
37
+ // Shared value for vertical translation
38
+ // 0 = fully open, SCREEN_HEIGHT = fully closed
39
+ const translateY = (0, _reactNativeReanimated.useSharedValue)(SCREEN_HEIGHT);
40
+ const context = (0, _reactNativeReanimated.useSharedValue)({
41
+ y: 0
42
+ });
43
+ const closeModal = (0, _react.useCallback)(() => {
44
+ 'worklet';
45
+
46
+ translateY.value = (0, _reactNativeReanimated.withTiming)(SCREEN_HEIGHT, {
47
+ duration: 300
48
+ }, finished => {
49
+ if (finished) {
50
+ (0, _reactNativeReanimated.runOnJS)(setIsVisibleInternal)(false);
51
+ (0, _reactNativeReanimated.runOnJS)(onClose)();
52
+ }
53
+ });
54
+ }, [onClose, translateY]);
55
+ (0, _react.useEffect)(() => {
56
+ if (visible) {
57
+ setIsVisibleInternal(true);
58
+ // Wait a tick for Modal to mount content, then animate in
59
+ // Using a slight delay ensures layout is ready
60
+ setTimeout(() => {
61
+ translateY.value = (0, _reactNativeReanimated.withSpring)(0, SPRING_CONFIG);
62
+ }, 10);
63
+ } else if (!visible && isVisibleInternal) {
64
+ // Trigger exit animation if visible prop becomes false
65
+ translateY.value = (0, _reactNativeReanimated.withTiming)(SCREEN_HEIGHT, {
66
+ duration: 300
67
+ }, () => {
68
+ (0, _reactNativeReanimated.runOnJS)(setIsVisibleInternal)(false);
69
+ });
70
+ }
71
+ }, [visible]);
72
+ const gesture = _reactNativeGestureHandler.Gesture.Pan().onStart(() => {
73
+ context.value = {
74
+ y: translateY.value
75
+ };
76
+ }).onUpdate(event => {
77
+ // Only allow dragging downwards
78
+ translateY.value = Math.max(0, context.value.y + event.translationY);
79
+ }).onEnd(event => {
80
+ if (event.translationY > 100 || event.velocityY > 500) {
81
+ // Dragged far enough clearly or flicked down -> Close
82
+ (0, _reactNativeReanimated.runOnJS)(onClose)(); // This triggers the useEffect logic above
83
+ } else {
84
+ // Spring back to open
85
+ translateY.value = (0, _reactNativeReanimated.withSpring)(0, SPRING_CONFIG);
86
+ }
87
+ });
88
+ const animatedStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => ({
89
+ transform: [{
90
+ translateY: translateY.value
91
+ }]
92
+ }));
93
+ const backdropStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => ({
94
+ opacity: (0, _reactNativeReanimated.interpolate)(translateY.value, [0, SCREEN_HEIGHT], [1, 0], _reactNativeReanimated.Extrapolation.CLAMP)
95
+ }));
96
+ if (!isVisibleInternal) return null;
97
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
98
+ transparent: true,
99
+ visible: isVisibleInternal,
100
+ animationType: "none",
101
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
102
+ style: styles.overlay,
103
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableWithoutFeedback, {
104
+ onPress: onClose,
105
+ accessibilityRole: "button",
106
+ accessibilityLabel: "Close sheet",
107
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
108
+ style: [_reactNative.StyleSheet.absoluteFill, styles.backdrop, {
109
+ backgroundColor: colors.overlay
110
+ }, backdropStyle]
111
+ })
112
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeGestureHandler.GestureDetector, {
113
+ gesture: gesture,
114
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
115
+ style: [styles.sheetContainer, {
116
+ height
117
+ }, animatedStyle],
118
+ accessibilityViewIsModal: true,
119
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_FluentGlass.default, {
120
+ style: styles.content,
121
+ intensity: 30,
122
+ borderOpacity: 0.2,
123
+ borderRadius: 24,
124
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
125
+ style: styles.handleContainer,
126
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
127
+ style: [styles.handle, {
128
+ backgroundColor: `${colors.textPrimary}33`
129
+ }]
130
+ })
131
+ }), title && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
132
+ style: [styles.header, {
133
+ borderBottomColor: `${colors.textPrimary}1A`
134
+ }],
135
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
136
+ style: [styles.title, {
137
+ color: colors.textPrimary,
138
+ fontFamily: typography.semiBold
139
+ }],
140
+ children: title
141
+ })
142
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
143
+ style: styles.body,
144
+ children: children
145
+ })]
146
+ })
147
+ })
148
+ })]
149
+ })
150
+ });
151
+ }
152
+ const styles = _reactNative.StyleSheet.create({
153
+ overlay: {
154
+ flex: 1,
155
+ justifyContent: 'flex-end'
156
+ },
157
+ backdrop: {},
158
+ sheetContainer: {
159
+ width: '100%'
160
+ },
161
+ content: {
162
+ flex: 1,
163
+ borderBottomLeftRadius: 0,
164
+ borderBottomRightRadius: 0
165
+ },
166
+ handleContainer: {
167
+ alignItems: 'center',
168
+ paddingVertical: 12,
169
+ width: '100%'
170
+ },
171
+ handle: {
172
+ width: 40,
173
+ height: 4,
174
+ borderRadius: 2
175
+ },
176
+ header: {
177
+ paddingHorizontal: 20,
178
+ paddingBottom: 10,
179
+ borderBottomWidth: 1
180
+ },
181
+ title: {
182
+ fontSize: 18
183
+ },
184
+ body: {
185
+ flex: 1,
186
+ padding: 20
187
+ }
188
+ });
189
+ //# sourceMappingURL=FluentGlassSheet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeGestureHandler","_reactNativeReanimated","_FluentGlass","_interopRequireDefault","_useTheme","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","SCREEN_HEIGHT","Dimensions","height","SPRING_CONFIG","damping","stiffness","FluentGlassSheet","visible","onClose","children","title","size","colors","typography","useTheme","isVisibleInternal","setIsVisibleInternal","useState","translateY","useSharedValue","context","y","closeModal","useCallback","value","withTiming","duration","finished","runOnJS","useEffect","setTimeout","withSpring","gesture","Gesture","Pan","onStart","onUpdate","event","Math","max","translationY","onEnd","velocityY","animatedStyle","useAnimatedStyle","transform","backdropStyle","opacity","interpolate","Extrapolation","CLAMP","jsx","Modal","transparent","animationType","jsxs","View","style","styles","overlay","TouchableWithoutFeedback","onPress","accessibilityRole","accessibilityLabel","StyleSheet","absoluteFill","backdrop","backgroundColor","GestureDetector","sheetContainer","accessibilityViewIsModal","content","intensity","borderOpacity","borderRadius","handleContainer","handle","textPrimary","header","borderBottomColor","Text","color","fontFamily","semiBold","body","create","flex","justifyContent","width","borderBottomLeftRadius","borderBottomRightRadius","alignItems","paddingVertical","paddingHorizontal","paddingBottom","borderBottomWidth","fontSize","padding"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassSheet.tsx"],"mappings":"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","ignoreList":[]}