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,170 @@
1
+ "use strict";
2
+
3
+ import React, { useState, useCallback } from 'react';
4
+ import { StyleSheet, TextInput, TouchableOpacity, View, Modal, Pressable } from 'react-native';
5
+ import { Ionicons } from '@expo/vector-icons';
6
+ import FluentGlass from './FluentGlass';
7
+ import FluentGlassDatePicker from './FluentGlassDatePicker';
8
+ import useTheme from '../theme/useTheme';
9
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
10
+ /**
11
+ * FluentGlassDateInput (Molécula)
12
+ * Hybrid date input: type manually OR tap the calendar icon to open FluentGlassDatePicker.
13
+ */
14
+ export default function FluentGlassDateInput({
15
+ value,
16
+ onChange,
17
+ placeholder = 'dd/mm/yyyy',
18
+ format = 'dd/mm/yyyy',
19
+ style,
20
+ accessibilityLabel
21
+ }) {
22
+ const theme = useTheme();
23
+ const COLORS = theme.colors;
24
+ const typography = theme.typography;
25
+ const [pickerVisible, setPickerVisible] = useState(false);
26
+ const [textValue, setTextValue] = useState(value ? formatDate(value, format) : '');
27
+
28
+ // Format a Date into string
29
+ function formatDate(date, fmt) {
30
+ if (!date || !(date instanceof Date) || isNaN(date.getTime())) return '';
31
+ const dd = String(date.getDate()).padStart(2, '0');
32
+ const mm = String(date.getMonth() + 1).padStart(2, '0');
33
+ const yyyy = date.getFullYear();
34
+ return fmt === 'dd/mm/yyyy' ? `${dd}/${mm}/${yyyy}` : `${mm}/${dd}/${yyyy}`;
35
+ }
36
+
37
+ // Parse text into a Date (returns null if invalid)
38
+ function parseDate(text, fmt) {
39
+ const parts = text.split('/');
40
+ if (parts.length !== 3) return null;
41
+ let day, month, year;
42
+ if (fmt === 'dd/mm/yyyy') {
43
+ [day, month, year] = parts;
44
+ } else {
45
+ [month, day, year] = parts;
46
+ }
47
+ const d = parseInt(day, 10);
48
+ const m = parseInt(month, 10);
49
+ const y = parseInt(year, 10);
50
+ if (isNaN(d) || isNaN(m) || isNaN(y)) return null;
51
+ if (m < 1 || m > 12 || d < 1 || d > 31 || y < 1900) return null;
52
+ const date = new Date(y, m - 1, d);
53
+ if (date.getMonth() !== m - 1) return null; // overflow check
54
+ return date;
55
+ }
56
+
57
+ // When user finishes typing (blur), try to parse the manual entry
58
+ const handleBlur = useCallback(() => {
59
+ const parsed = parseDate(textValue, format);
60
+ if (parsed && onChange) {
61
+ onChange(parsed);
62
+ }
63
+ }, [textValue, format, onChange]);
64
+
65
+ // When text changes, auto-insert slashes
66
+ const handleChangeText = useCallback(raw => {
67
+ // Strip non-digit characters
68
+ const digits = raw.replace(/\D/g, '');
69
+ // Auto-format with slashes
70
+ let formatted = '';
71
+ for (let i = 0; i < digits.length && i < 8; i++) {
72
+ if (i === 2 || i === 4) formatted += '/';
73
+ formatted += digits[i];
74
+ }
75
+ setTextValue(formatted);
76
+ }, []);
77
+
78
+ // When user picks from the calendar popup
79
+ const handlePickerSelect = useCallback(date => {
80
+ setTextValue(formatDate(date, format));
81
+ setPickerVisible(false);
82
+ if (onChange) onChange(date);
83
+ }, [format, onChange]);
84
+ return /*#__PURE__*/_jsxs(View, {
85
+ style: style,
86
+ children: [/*#__PURE__*/_jsx(FluentGlass, {
87
+ style: styles.container,
88
+ intensity: 15,
89
+ borderRadius: 12,
90
+ borderOpacity: 0.15,
91
+ children: /*#__PURE__*/_jsxs(View, {
92
+ style: styles.innerContainer,
93
+ children: [/*#__PURE__*/_jsx(TextInput, {
94
+ style: [styles.input, {
95
+ outlineStyle: 'none',
96
+ color: COLORS.textPrimary,
97
+ fontFamily: typography.regular
98
+ }],
99
+ value: textValue,
100
+ onChangeText: handleChangeText,
101
+ onBlur: handleBlur,
102
+ placeholder: placeholder,
103
+ placeholderTextColor: COLORS.textSecondary,
104
+ keyboardType: "numeric",
105
+ maxLength: 10,
106
+ accessibilityLabel: accessibilityLabel ?? placeholder ?? 'Date'
107
+ }), /*#__PURE__*/_jsx(TouchableOpacity, {
108
+ onPress: () => setPickerVisible(true),
109
+ style: styles.iconButton,
110
+ hitSlop: 10,
111
+ accessibilityRole: "button",
112
+ accessibilityLabel: "Open date picker",
113
+ children: /*#__PURE__*/_jsx(Ionicons, {
114
+ name: "calendar-outline",
115
+ size: 20,
116
+ color: COLORS.textSecondary
117
+ })
118
+ })]
119
+ })
120
+ }), /*#__PURE__*/_jsx(Modal, {
121
+ visible: pickerVisible,
122
+ transparent: true,
123
+ animationType: "fade",
124
+ onRequestClose: () => setPickerVisible(false),
125
+ children: /*#__PURE__*/_jsx(Pressable, {
126
+ style: [styles.overlay, {
127
+ backgroundColor: COLORS.overlay
128
+ }],
129
+ onPress: () => setPickerVisible(false),
130
+ children: /*#__PURE__*/_jsx(Pressable, {
131
+ style: styles.pickerPopup,
132
+ onPress: e => e.stopPropagation(),
133
+ children: /*#__PURE__*/_jsx(FluentGlassDatePicker, {
134
+ value: value || new Date(),
135
+ onChange: handlePickerSelect
136
+ })
137
+ })
138
+ })
139
+ })]
140
+ });
141
+ }
142
+ const styles = StyleSheet.create({
143
+ container: {
144
+ minHeight: 50
145
+ },
146
+ innerContainer: {
147
+ flex: 1,
148
+ flexDirection: 'row',
149
+ alignItems: 'center'
150
+ },
151
+ input: {
152
+ flex: 1,
153
+ height: '100%',
154
+ paddingHorizontal: 16,
155
+ fontSize: 16
156
+ },
157
+ iconButton: {
158
+ padding: 12,
159
+ marginRight: 4
160
+ },
161
+ overlay: {
162
+ flex: 1,
163
+ justifyContent: 'center',
164
+ alignItems: 'center'
165
+ },
166
+ pickerPopup: {
167
+ // Let the DatePicker define its own width (300)
168
+ }
169
+ });
170
+ //# sourceMappingURL=FluentGlassDateInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useState","useCallback","StyleSheet","TextInput","TouchableOpacity","View","Modal","Pressable","Ionicons","FluentGlass","FluentGlassDatePicker","useTheme","jsx","_jsx","jsxs","_jsxs","FluentGlassDateInput","value","onChange","placeholder","format","style","accessibilityLabel","theme","COLORS","colors","typography","pickerVisible","setPickerVisible","textValue","setTextValue","formatDate","date","fmt","Date","isNaN","getTime","dd","String","getDate","padStart","mm","getMonth","yyyy","getFullYear","parseDate","text","parts","split","length","day","month","year","d","parseInt","m","y","handleBlur","parsed","handleChangeText","raw","digits","replace","formatted","i","handlePickerSelect","children","styles","container","intensity","borderRadius","borderOpacity","innerContainer","input","outlineStyle","color","textPrimary","fontFamily","regular","onChangeText","onBlur","placeholderTextColor","textSecondary","keyboardType","maxLength","onPress","iconButton","hitSlop","accessibilityRole","name","size","visible","transparent","animationType","onRequestClose","overlay","backgroundColor","pickerPopup","e","stopPropagation","create","minHeight","flex","flexDirection","alignItems","height","paddingHorizontal","fontSize","padding","marginRight","justifyContent"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassDateInput.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,265 @@
1
+ "use strict";
2
+
3
+ import React, { useState, useMemo } from 'react';
4
+ import { StyleSheet, View, Text, TouchableOpacity, Pressable } from 'react-native';
5
+ import FluentGlass from './FluentGlass';
6
+ import useTheme from '../theme/useTheme';
7
+ import { moderateScale } from '../utils/responsive';
8
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
9
+ export default function FluentGlassDatePicker({
10
+ value = new Date(),
11
+ onChange,
12
+ style
13
+ }) {
14
+ const {
15
+ colors,
16
+ typography
17
+ } = useTheme();
18
+
19
+ // Current visible month/year
20
+ const [currentMonth, setCurrentMonth] = useState(new Date(value.getFullYear(), value.getMonth(), 1));
21
+
22
+ // Helpers to navigate months
23
+ const handlePrevMonth = () => {
24
+ setCurrentMonth(new Date(currentMonth.getFullYear(), currentMonth.getMonth() - 1, 1));
25
+ };
26
+ const handleNextMonth = () => {
27
+ setCurrentMonth(new Date(currentMonth.getFullYear(), currentMonth.getMonth() + 1, 1));
28
+ };
29
+
30
+ // Calendar generation logic
31
+ const {
32
+ days,
33
+ blanks
34
+ } = useMemo(() => {
35
+ const year = currentMonth.getFullYear();
36
+ const month = currentMonth.getMonth();
37
+
38
+ // 0 = Sunday, 1 = Monday, etc.
39
+ const firstDayOfMonth = new Date(year, month, 1).getDay();
40
+ const daysInMonth = new Date(year, month + 1, 0).getDate();
41
+
42
+ // Array of empty slots before the 1st
43
+ const blanksArray = Array.from({
44
+ length: firstDayOfMonth
45
+ }, (_, i) => i);
46
+ // Array of actual days
47
+ const daysArray = Array.from({
48
+ length: daysInMonth
49
+ }, (_, i) => i + 1);
50
+ return {
51
+ days: daysArray,
52
+ blanks: blanksArray
53
+ };
54
+ }, [currentMonth]);
55
+ const monthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
56
+ const headerText = `${monthNames[currentMonth.getMonth()]} ${currentMonth.getFullYear()}`;
57
+
58
+ // Helper to check if a day is the currently selected date
59
+ const isSelected = day => {
60
+ return value.getDate() === day && value.getMonth() === currentMonth.getMonth() && value.getFullYear() === currentMonth.getFullYear();
61
+ };
62
+ const handleSelectDay = day => {
63
+ if (onChange) {
64
+ onChange(new Date(currentMonth.getFullYear(), currentMonth.getMonth(), day));
65
+ }
66
+ };
67
+ const handleToday = () => {
68
+ const today = new Date();
69
+ setCurrentMonth(new Date(today.getFullYear(), today.getMonth(), 1));
70
+ if (onChange) {
71
+ onChange(today);
72
+ }
73
+ };
74
+ return /*#__PURE__*/_jsx(FluentGlass, {
75
+ style: [styles.container, style],
76
+ intensity: 25,
77
+ borderRadius: 24,
78
+ borderOpacity: 0.2,
79
+ tint: "dark",
80
+ children: /*#__PURE__*/_jsxs(View, {
81
+ style: styles.calendarProps,
82
+ children: [/*#__PURE__*/_jsxs(View, {
83
+ style: styles.header,
84
+ children: [/*#__PURE__*/_jsx(TouchableOpacity, {
85
+ onPress: handlePrevMonth,
86
+ style: styles.navButton,
87
+ hitSlop: 10,
88
+ accessibilityRole: "button",
89
+ accessibilityLabel: "Previous month",
90
+ children: /*#__PURE__*/_jsx(Text, {
91
+ style: [styles.navIcon, {
92
+ color: colors.textSecondary,
93
+ fontFamily: typography.regular
94
+ }],
95
+ children: "\u2039"
96
+ })
97
+ }), /*#__PURE__*/_jsx(Text, {
98
+ style: [styles.headerTitle, {
99
+ color: colors.textPrimary,
100
+ fontFamily: typography.bold
101
+ }],
102
+ children: headerText
103
+ }), /*#__PURE__*/_jsx(TouchableOpacity, {
104
+ onPress: handleNextMonth,
105
+ style: styles.navButton,
106
+ hitSlop: 10,
107
+ accessibilityRole: "button",
108
+ accessibilityLabel: "Next month",
109
+ children: /*#__PURE__*/_jsx(Text, {
110
+ style: [styles.navIcon, {
111
+ color: colors.textSecondary,
112
+ fontFamily: typography.regular
113
+ }],
114
+ children: "\u203A"
115
+ })
116
+ })]
117
+ }), /*#__PURE__*/_jsx(View, {
118
+ style: styles.weekRow,
119
+ children: ['S', 'M', 'T', 'W', 'T', 'F', 'S'].map((day, ix) => /*#__PURE__*/_jsx(View, {
120
+ style: styles.dayCell,
121
+ children: /*#__PURE__*/_jsx(Text, {
122
+ style: [styles.weekText, {
123
+ color: colors.textSecondary,
124
+ fontFamily: typography.bold
125
+ }],
126
+ children: day
127
+ })
128
+ }, ix))
129
+ }), /*#__PURE__*/_jsxs(View, {
130
+ style: styles.daysGrid,
131
+ children: [blanks.map(blank => /*#__PURE__*/_jsx(View, {
132
+ style: styles.dayCell
133
+ }, `blank-${blank}`)), days.map(day => {
134
+ const selected = isSelected(day);
135
+ return /*#__PURE__*/_jsx(Pressable, {
136
+ style: styles.dayCell,
137
+ onPress: () => handleSelectDay(day),
138
+ accessibilityRole: "button",
139
+ accessibilityState: {
140
+ selected: isSelected(day)
141
+ },
142
+ children: selected ? /*#__PURE__*/_jsxs(View, {
143
+ style: styles.selectedCircle,
144
+ children: [/*#__PURE__*/_jsx(FluentGlass, {
145
+ intensity: 40,
146
+ borderRadius: 16,
147
+ tint: "light",
148
+ style: StyleSheet.absoluteFillObject
149
+ }), /*#__PURE__*/_jsx(Text, {
150
+ style: [styles.dayText, styles.selectedDayText, {
151
+ color: colors.textPrimary,
152
+ fontFamily: typography.extraBold
153
+ }],
154
+ children: day
155
+ })]
156
+ }) : /*#__PURE__*/_jsx(Text, {
157
+ style: [styles.dayText, {
158
+ color: colors.textSecondary,
159
+ fontFamily: typography.semiBold
160
+ }],
161
+ children: day
162
+ })
163
+ }, day);
164
+ })]
165
+ }), /*#__PURE__*/_jsx(TouchableOpacity, {
166
+ style: [styles.todayButton, {
167
+ borderColor: colors.border,
168
+ backgroundColor: colors.borderSubtle
169
+ }],
170
+ onPress: handleToday,
171
+ activeOpacity: 0.7,
172
+ accessibilityRole: "button",
173
+ accessibilityLabel: "Go to today",
174
+ children: /*#__PURE__*/_jsx(Text, {
175
+ style: [styles.todayText, {
176
+ color: colors.accent,
177
+ fontFamily: typography.bold
178
+ }],
179
+ children: "Hoy"
180
+ })
181
+ })]
182
+ })
183
+ });
184
+ }
185
+ const styles = StyleSheet.create({
186
+ container: {
187
+ width: '100%',
188
+ maxWidth: 360,
189
+ alignSelf: 'center'
190
+ },
191
+ calendarProps: {
192
+ padding: 20
193
+ },
194
+ header: {
195
+ flexDirection: 'row',
196
+ justifyContent: 'space-between',
197
+ alignItems: 'center',
198
+ marginBottom: 20
199
+ },
200
+ headerTitle: {
201
+ fontSize: 18,
202
+ fontWeight: 'bold',
203
+ letterSpacing: 0.5
204
+ },
205
+ navButton: {
206
+ width: moderateScale(36),
207
+ height: moderateScale(36),
208
+ alignItems: 'center',
209
+ justifyContent: 'center'
210
+ },
211
+ navIcon: {
212
+ fontSize: 24,
213
+ fontWeight: '300',
214
+ lineHeight: 28
215
+ },
216
+ weekRow: {
217
+ flexDirection: 'row',
218
+ marginBottom: 10
219
+ },
220
+ weekText: {
221
+ fontSize: 13,
222
+ fontWeight: '700',
223
+ textAlign: 'center'
224
+ },
225
+ daysGrid: {
226
+ flexDirection: 'row',
227
+ flexWrap: 'wrap'
228
+ },
229
+ dayCell: {
230
+ width: '14.28%',
231
+ // 100% / 7
232
+ height: 38,
233
+ justifyContent: 'center',
234
+ alignItems: 'center'
235
+ },
236
+ dayText: {
237
+ fontSize: 15,
238
+ fontWeight: '600'
239
+ },
240
+ selectedCircle: {
241
+ width: moderateScale(32),
242
+ height: moderateScale(32),
243
+ borderRadius: moderateScale(16),
244
+ justifyContent: 'center',
245
+ alignItems: 'center',
246
+ overflow: 'hidden'
247
+ },
248
+ selectedDayText: {
249
+ fontWeight: '800'
250
+ },
251
+ todayButton: {
252
+ marginTop: 14,
253
+ alignSelf: 'center',
254
+ paddingVertical: 8,
255
+ paddingHorizontal: 28,
256
+ borderRadius: 12,
257
+ borderWidth: 1
258
+ },
259
+ todayText: {
260
+ fontSize: 14,
261
+ fontWeight: '700',
262
+ letterSpacing: 0.5
263
+ }
264
+ });
265
+ //# sourceMappingURL=FluentGlassDatePicker.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useState","useMemo","StyleSheet","View","Text","TouchableOpacity","Pressable","FluentGlass","useTheme","moderateScale","jsx","_jsx","jsxs","_jsxs","FluentGlassDatePicker","value","Date","onChange","style","colors","typography","currentMonth","setCurrentMonth","getFullYear","getMonth","handlePrevMonth","handleNextMonth","days","blanks","year","month","firstDayOfMonth","getDay","daysInMonth","getDate","blanksArray","Array","from","length","_","i","daysArray","monthNames","headerText","isSelected","day","handleSelectDay","handleToday","today","styles","container","intensity","borderRadius","borderOpacity","tint","children","calendarProps","header","onPress","navButton","hitSlop","accessibilityRole","accessibilityLabel","navIcon","color","textSecondary","fontFamily","regular","headerTitle","textPrimary","bold","weekRow","map","ix","dayCell","weekText","daysGrid","blank","selected","accessibilityState","selectedCircle","absoluteFillObject","dayText","selectedDayText","extraBold","semiBold","todayButton","borderColor","border","backgroundColor","borderSubtle","activeOpacity","todayText","accent","create","width","maxWidth","alignSelf","padding","flexDirection","justifyContent","alignItems","marginBottom","fontSize","fontWeight","letterSpacing","height","lineHeight","textAlign","flexWrap","overflow","marginTop","paddingVertical","paddingHorizontal","borderWidth"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassDatePicker.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,163 @@
1
+ "use strict";
2
+
3
+ import React, { useEffect } from 'react';
4
+ import { StyleSheet, View, Text, Pressable } from 'react-native';
5
+ import Animated, { useSharedValue, useAnimatedStyle, withSpring, withTiming } from 'react-native-reanimated';
6
+ import FluentGlass from './FluentGlass';
7
+ import FluentGlassButton from './FluentGlassButton';
8
+ import useTheme from '../theme/useTheme';
9
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
10
+ /**
11
+ * FluentGlassDialog (Component)
12
+ * Central alert/confirmation modal.
13
+ * Uses absolute positioning instead of Modal to avoid
14
+ * BlurView initialisation flicker.
15
+ */
16
+ export default function FluentGlassDialog({
17
+ visible,
18
+ onClose,
19
+ title,
20
+ description,
21
+ onConfirm,
22
+ confirmText = 'Confirm',
23
+ cancelText = 'Cancel'
24
+ }) {
25
+ const theme = useTheme();
26
+ const COLORS = theme.colors;
27
+ const typography = theme.typography;
28
+ const scale = useSharedValue(0.8);
29
+ const opacity = useSharedValue(0);
30
+ const [mounted, setMounted] = React.useState(false);
31
+ useEffect(() => {
32
+ if (visible) {
33
+ setMounted(true);
34
+ // Small delay so React commits the mount frame (opacity 0) first
35
+ requestAnimationFrame(() => {
36
+ scale.value = withSpring(1);
37
+ opacity.value = withTiming(1, {
38
+ duration: 200
39
+ });
40
+ });
41
+ } else if (mounted) {
42
+ scale.value = withTiming(0.85, {
43
+ duration: 180
44
+ });
45
+ opacity.value = withTiming(0, {
46
+ duration: 180
47
+ });
48
+ const timer = setTimeout(() => {
49
+ setMounted(false);
50
+ scale.value = 0.8;
51
+ opacity.value = 0;
52
+ }, 220);
53
+ return () => clearTimeout(timer);
54
+ }
55
+ }, [visible]);
56
+ const backdropStyle = useAnimatedStyle(() => ({
57
+ opacity: opacity.value
58
+ }));
59
+ const cardStyle = useAnimatedStyle(() => ({
60
+ opacity: opacity.value,
61
+ transform: [{
62
+ scale: scale.value
63
+ }]
64
+ }));
65
+ if (!mounted) return null;
66
+ return /*#__PURE__*/_jsxs(View, {
67
+ style: styles.root,
68
+ pointerEvents: visible ? 'auto' : 'none',
69
+ accessibilityViewIsModal: true,
70
+ children: [/*#__PURE__*/_jsx(Animated.View, {
71
+ style: [styles.backdrop, {
72
+ backgroundColor: COLORS.overlay
73
+ }, backdropStyle],
74
+ children: /*#__PURE__*/_jsx(Pressable, {
75
+ style: StyleSheet.absoluteFill,
76
+ onPress: onClose,
77
+ accessibilityRole: "button",
78
+ accessibilityLabel: "Close dialog"
79
+ })
80
+ }), /*#__PURE__*/_jsx(Animated.View, {
81
+ style: [styles.dialogContainer, cardStyle],
82
+ children: /*#__PURE__*/_jsx(FluentGlass, {
83
+ style: styles.modalGlass,
84
+ intensity: 25,
85
+ borderRadius: 20,
86
+ children: /*#__PURE__*/_jsxs(View, {
87
+ style: styles.innerContent,
88
+ children: [/*#__PURE__*/_jsx(Text, {
89
+ style: [styles.title, {
90
+ color: COLORS.textPrimary,
91
+ fontFamily: typography.bold
92
+ }],
93
+ accessibilityRole: "header",
94
+ children: title
95
+ }), description && /*#__PURE__*/_jsx(Text, {
96
+ style: [styles.description, {
97
+ color: COLORS.textSecondary,
98
+ fontFamily: typography.regular
99
+ }],
100
+ children: description
101
+ }), /*#__PURE__*/_jsxs(View, {
102
+ style: styles.footer,
103
+ children: [/*#__PURE__*/_jsx(FluentGlassButton, {
104
+ title: cancelText,
105
+ variant: "secondary",
106
+ onPress: onClose,
107
+ style: {
108
+ flex: 1,
109
+ marginRight: 8
110
+ }
111
+ }), /*#__PURE__*/_jsx(FluentGlassButton, {
112
+ title: confirmText,
113
+ variant: "primary",
114
+ onPress: onConfirm,
115
+ style: {
116
+ flex: 1,
117
+ marginLeft: 8
118
+ }
119
+ })]
120
+ })]
121
+ })
122
+ })
123
+ })]
124
+ });
125
+ }
126
+ const styles = StyleSheet.create({
127
+ root: {
128
+ ...StyleSheet.absoluteFillObject,
129
+ zIndex: 9999,
130
+ justifyContent: 'center',
131
+ alignItems: 'center',
132
+ padding: 20
133
+ },
134
+ backdrop: {
135
+ ...StyleSheet.absoluteFillObject
136
+ },
137
+ dialogContainer: {
138
+ width: '100%',
139
+ maxWidth: 400
140
+ },
141
+ modalGlass: {
142
+ width: '100%',
143
+ overflow: 'hidden'
144
+ },
145
+ innerContent: {
146
+ padding: 24
147
+ },
148
+ title: {
149
+ fontSize: 20,
150
+ fontWeight: 'bold',
151
+ marginBottom: 8
152
+ },
153
+ description: {
154
+ fontSize: 16,
155
+ marginBottom: 24,
156
+ lineHeight: 22
157
+ },
158
+ footer: {
159
+ flexDirection: 'row',
160
+ justifyContent: 'space-between'
161
+ }
162
+ });
163
+ //# sourceMappingURL=FluentGlassDialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useEffect","StyleSheet","View","Text","Pressable","Animated","useSharedValue","useAnimatedStyle","withSpring","withTiming","FluentGlass","FluentGlassButton","useTheme","jsx","_jsx","jsxs","_jsxs","FluentGlassDialog","visible","onClose","title","description","onConfirm","confirmText","cancelText","theme","COLORS","colors","typography","scale","opacity","mounted","setMounted","useState","requestAnimationFrame","value","duration","timer","setTimeout","clearTimeout","backdropStyle","cardStyle","transform","style","styles","root","pointerEvents","accessibilityViewIsModal","children","backdrop","backgroundColor","overlay","absoluteFill","onPress","accessibilityRole","accessibilityLabel","dialogContainer","modalGlass","intensity","borderRadius","innerContent","color","textPrimary","fontFamily","bold","textSecondary","regular","footer","variant","flex","marginRight","marginLeft","create","absoluteFillObject","zIndex","justifyContent","alignItems","padding","width","maxWidth","overflow","fontSize","fontWeight","marginBottom","lineHeight","flexDirection"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassDialog.tsx"],"mappings":"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","ignoreList":[]}