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,239 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassCodeBlock;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var Clipboard = _interopRequireWildcard(require("expo-clipboard"));
10
+ var _FluentGlass = _interopRequireDefault(require("./FluentGlass"));
11
+ var _useTheme = _interopRequireDefault(require("../theme/useTheme"));
12
+ var _jsxRuntime = require("react/jsx-runtime");
13
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
14
+ 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); }
15
+ // Simple regex-based tokenizer (good enough for display, not a full parser)
16
+ function tokenize(line, TOKEN_COLORS) {
17
+ const tokens = [];
18
+ // Pattern priority: comments, strings, tags, keywords, rest
19
+ const regex = /(\/\/.*$|\/\*.*?\*\/)|("(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')|(<\/?[\w.-]+|>|\/>)|(className|import|export|from|const|let|var|function|return|default|if|else|true|false|null|undefined)/g;
20
+ let lastIndex = 0;
21
+ let match;
22
+ while ((match = regex.exec(line)) !== null) {
23
+ // Text before the match
24
+ if (match.index > lastIndex) {
25
+ tokens.push({
26
+ text: line.slice(lastIndex, match.index),
27
+ color: TOKEN_COLORS.text
28
+ });
29
+ }
30
+ if (match[1]) {
31
+ tokens.push({
32
+ text: match[0],
33
+ color: TOKEN_COLORS.comment
34
+ });
35
+ } else if (match[2]) {
36
+ tokens.push({
37
+ text: match[0],
38
+ color: TOKEN_COLORS.string
39
+ });
40
+ } else if (match[3]) {
41
+ tokens.push({
42
+ text: match[0],
43
+ color: TOKEN_COLORS.tag
44
+ });
45
+ } else if (match[4]) {
46
+ tokens.push({
47
+ text: match[0],
48
+ color: TOKEN_COLORS.keyword
49
+ });
50
+ }
51
+ lastIndex = match.index + match[0].length;
52
+ }
53
+
54
+ // Remaining text
55
+ if (lastIndex < line.length) {
56
+ tokens.push({
57
+ text: line.slice(lastIndex),
58
+ color: TOKEN_COLORS.text
59
+ });
60
+ }
61
+ if (tokens.length === 0) {
62
+ tokens.push({
63
+ text: line || ' ',
64
+ color: TOKEN_COLORS.text
65
+ });
66
+ }
67
+ return tokens;
68
+ }
69
+ function FluentGlassCodeBlock({
70
+ code = '',
71
+ language = 'CODE',
72
+ showLineNumbers = true,
73
+ onCopy,
74
+ style
75
+ }) {
76
+ const theme = (0, _useTheme.default)();
77
+ const colors = theme.colors;
78
+
79
+ // Basic token colors matching a dark IDE theme — uses theme colors
80
+ const TOKEN_COLORS = {
81
+ tag: '#06B6D4',
82
+ // Cyan — HTML tags, JSX
83
+ attribute: '#94A3B8',
84
+ // Slate — attribute names
85
+ string: '#FBBF24',
86
+ // Amber — string values
87
+ keyword: '#C084FC',
88
+ // Purple — keywords
89
+ comment: '#4B5563',
90
+ // Gray — comments
91
+ punctuation: '#94A3B8',
92
+ text: colors.textPrimary
93
+ };
94
+ const lines = code.split('\n');
95
+ const lineNumWidth = String(lines.length).length * 10 + 12;
96
+ const [copied, setCopied] = (0, _react.useState)(false);
97
+ const handleCopy = (0, _react.useCallback)(async () => {
98
+ if (onCopy) {
99
+ onCopy(code);
100
+ } else {
101
+ await Clipboard.setStringAsync(code);
102
+ }
103
+ setCopied(true);
104
+ setTimeout(() => setCopied(false), 2000);
105
+ }, [code, onCopy]);
106
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_FluentGlass.default, {
107
+ accessibilityLabel: "Code block",
108
+ style: [styles.container, style],
109
+ intensity: 15,
110
+ tint: "dark",
111
+ borderRadius: 16,
112
+ borderOpacity: 0.2,
113
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
114
+ style: styles.inner,
115
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
116
+ style: styles.header,
117
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
118
+ style: [styles.badge, {
119
+ backgroundColor: colors.borderSubtle,
120
+ borderColor: colors.border
121
+ }],
122
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
123
+ style: [styles.badgeText, {
124
+ color: colors.textPrimary,
125
+ fontFamily: theme.typography.bold
126
+ }],
127
+ children: language.toUpperCase()
128
+ })
129
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
130
+ style: styles.actions,
131
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
132
+ onPress: handleCopy,
133
+ hitSlop: 8,
134
+ style: styles.actionBtn,
135
+ accessibilityRole: "button",
136
+ accessibilityLabel: "Copy code",
137
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
138
+ style: styles.actionIcon,
139
+ children: copied ? '✅' : '📋'
140
+ })
141
+ })
142
+ })]
143
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
144
+ style: [styles.separator, {
145
+ backgroundColor: colors.borderSubtle
146
+ }]
147
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
148
+ horizontal: true,
149
+ showsHorizontalScrollIndicator: false,
150
+ bounces: false,
151
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
152
+ style: styles.codeArea,
153
+ children: lines.map((line, i) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
154
+ style: styles.lineRow,
155
+ children: [showLineNumbers ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
156
+ style: [styles.lineNum, {
157
+ width: lineNumWidth,
158
+ color: colors.textSecondary
159
+ }],
160
+ children: i + 1
161
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
162
+ style: [styles.codeLine, {
163
+ color: colors.textPrimary
164
+ }],
165
+ children: tokenize(line, TOKEN_COLORS).map((token, j) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
166
+ style: {
167
+ color: token.color
168
+ },
169
+ children: token.text
170
+ }, j))
171
+ })]
172
+ }, i))
173
+ })
174
+ })]
175
+ })
176
+ });
177
+ }
178
+ const styles = _reactNative.StyleSheet.create({
179
+ container: {
180
+ overflow: 'hidden'
181
+ },
182
+ inner: {
183
+ flex: 1
184
+ },
185
+ header: {
186
+ flexDirection: 'row',
187
+ alignItems: 'center',
188
+ justifyContent: 'space-between',
189
+ paddingHorizontal: 12,
190
+ paddingTop: 10,
191
+ paddingBottom: 8
192
+ },
193
+ badge: {
194
+ borderRadius: 6,
195
+ paddingHorizontal: 10,
196
+ paddingVertical: 4,
197
+ borderWidth: 1
198
+ },
199
+ badgeText: {
200
+ fontSize: 11,
201
+ fontWeight: '700',
202
+ letterSpacing: 0.5
203
+ },
204
+ actions: {
205
+ flexDirection: 'row',
206
+ gap: 8
207
+ },
208
+ actionBtn: {
209
+ padding: 4
210
+ },
211
+ actionIcon: {
212
+ fontSize: 16
213
+ },
214
+ separator: {
215
+ height: 1,
216
+ marginHorizontal: 0
217
+ },
218
+ codeArea: {
219
+ paddingVertical: 12,
220
+ paddingRight: 16
221
+ },
222
+ lineRow: {
223
+ flexDirection: 'row',
224
+ minHeight: 22
225
+ },
226
+ lineNum: {
227
+ fontSize: 13,
228
+ fontFamily: 'monospace',
229
+ textAlign: 'right',
230
+ marginRight: 16,
231
+ paddingLeft: 12
232
+ },
233
+ codeLine: {
234
+ fontSize: 13,
235
+ fontFamily: 'monospace',
236
+ flex: 1
237
+ }
238
+ });
239
+ //# sourceMappingURL=FluentGlassCodeBlock.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","Clipboard","_FluentGlass","_interopRequireDefault","_useTheme","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","tokenize","line","TOKEN_COLORS","tokens","regex","lastIndex","match","exec","index","push","text","slice","color","comment","string","tag","keyword","length","FluentGlassCodeBlock","code","language","showLineNumbers","onCopy","style","theme","useTheme","colors","attribute","punctuation","textPrimary","lines","split","lineNumWidth","String","copied","setCopied","useState","handleCopy","useCallback","setStringAsync","setTimeout","jsx","accessibilityLabel","styles","container","intensity","tint","borderRadius","borderOpacity","children","jsxs","View","inner","header","badge","backgroundColor","borderSubtle","borderColor","border","Text","badgeText","fontFamily","typography","bold","toUpperCase","actions","Pressable","onPress","hitSlop","actionBtn","accessibilityRole","actionIcon","separator","ScrollView","horizontal","showsHorizontalScrollIndicator","bounces","codeArea","map","lineRow","lineNum","width","textSecondary","codeLine","token","j","StyleSheet","create","overflow","flex","flexDirection","alignItems","justifyContent","paddingHorizontal","paddingTop","paddingBottom","paddingVertical","borderWidth","fontSize","fontWeight","letterSpacing","gap","padding","height","marginHorizontal","paddingRight","minHeight","textAlign","marginRight","paddingLeft"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassCodeBlock.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassContainer;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _useTheme = _interopRequireDefault(require("../theme/useTheme"));
10
+ var _resolvers = require("../theme/resolvers");
11
+ var _jsxRuntime = require("react/jsx-runtime");
12
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
13
+ /**
14
+ * FluentGlassContainer (Atom)
15
+ * Section-level glass wrapper for layout depth.
16
+ * Uses plain View (no BlurView) to avoid nested-blur artifacts.
17
+ */
18
+ function FluentGlassContainer({
19
+ children,
20
+ colorScheme,
21
+ radius,
22
+ tint = 'light',
23
+ padding = 16,
24
+ borderRadius,
25
+ borderOpacity = 0.15,
26
+ style
27
+ }) {
28
+ const theme = (0, _useTheme.default)();
29
+ const compat = (0, _resolvers.resolveBackwardCompat)({
30
+ tint,
31
+ colorScheme
32
+ });
33
+ const resolvedScheme = compat.colorScheme || 'light';
34
+ const colorConfig = (0, _resolvers.resolveColorScheme)(theme, resolvedScheme);
35
+ const resolvedRadius = borderRadius ?? (0, _resolvers.resolveRadius)(theme, radius || 'lg');
36
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
37
+ style: [styles.container, {
38
+ padding,
39
+ borderRadius: resolvedRadius,
40
+ backgroundColor: colorConfig.bg,
41
+ borderColor: colorConfig.border || theme.colors.border
42
+ }, style],
43
+ children: children
44
+ });
45
+ }
46
+ const styles = _reactNative.StyleSheet.create({
47
+ container: {
48
+ minHeight: 40,
49
+ borderWidth: 1
50
+ }
51
+ });
52
+ //# sourceMappingURL=FluentGlassContainer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_useTheme","_resolvers","_jsxRuntime","e","__esModule","default","FluentGlassContainer","children","colorScheme","radius","tint","padding","borderRadius","borderOpacity","style","theme","useTheme","compat","resolveBackwardCompat","resolvedScheme","colorConfig","resolveColorScheme","resolvedRadius","resolveRadius","jsx","View","styles","container","backgroundColor","bg","borderColor","border","colors","StyleSheet","create","minHeight","borderWidth"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassContainer.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,SAAA,GAAAH,sBAAA,CAAAC,OAAA;AACA,IAAAG,UAAA,GAAAH,OAAA;AAA8F,IAAAI,WAAA,GAAAJ,OAAA;AAAA,SAAAD,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAgB9F;AACA;AACA;AACA;AACA;AACe,SAASG,oBAAoBA,CAAC;EAAEC,QAAQ;EACnDC,WAAW;EACXC,MAAM;EACNC,IAAI,GAAG,OAAO;EACdC,OAAO,GAAG,EAAE;EACZC,YAAY;EACZC,aAAa,GAAG,IAAI;EACpBC;AAAkC,CAAC,EAAE;EACrC,MAAMC,KAAK,GAAG,IAAAC,iBAAQ,EAAC,CAAC;EAExB,MAAMC,MAAM,GAAG,IAAAC,gCAAqB,EAAC;IAAER,IAAI;IAAEF;EAAY,CAAC,CAAC;EAC3D,MAAMW,cAAc,GAAGF,MAAM,CAACT,WAAW,IAAI,OAAO;EACpD,MAAMY,WAAW,GAAG,IAAAC,6BAAkB,EAACN,KAAK,EAAEI,cAAc,CAAC;EAC7D,MAAMG,cAAc,GAAGV,YAAY,IAAI,IAAAW,wBAAa,EAACR,KAAK,EAAEN,MAAM,IAAI,IAAI,CAAC;EAE3E,oBACI,IAAAP,WAAA,CAAAsB,GAAA,EAACzB,YAAA,CAAA0B,IAAI;IACDX,KAAK,EAAE,CACHY,MAAM,CAACC,SAAS,EAChB;MACIhB,OAAO;MACPC,YAAY,EAAEU,cAAc;MAC5BM,eAAe,EAAER,WAAW,CAACS,EAAE;MAC/BC,WAAW,EAAEV,WAAW,CAACW,MAAM,IAAIhB,KAAK,CAACiB,MAAM,CAACD;IACpD,CAAC,EACDjB,KAAK,CACP;IAAAP,QAAA,EAEDA;EAAQ,CACP,CAAC;AAEf;AAEA,MAAMmB,MAAM,GAAGO,uBAAU,CAACC,MAAM,CAAC;EAC7BP,SAAS,EAAE;IACPQ,SAAS,EAAE,EAAE;IACbC,WAAW,EAAE;EACjB;AACJ,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,118 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassCrossfade;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
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
+ 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); }
14
+ /**
15
+ * FluentGlassCrossfade
16
+ *
17
+ * Universal animated content switcher. Crossfades between children
18
+ * with a fade + translateY spring animation.
19
+ *
20
+ * Usage:
21
+ * <FluentGlassCrossfade activeKey="home">
22
+ * <HomeScreen key="home" />
23
+ * <SettingsScreen key="settings" />
24
+ * </FluentGlassCrossfade>
25
+ */
26
+ function FluentGlassCrossfade({
27
+ activeKey,
28
+ children,
29
+ fadeOutDuration,
30
+ fadeInDuration,
31
+ translateY: translateYAmount,
32
+ style
33
+ }) {
34
+ const theme = (0, _useTheme.default)();
35
+ const crossfadeConfig = theme.animations?.crossfade || {};
36
+ const springConfig = theme.animations?.spring?.snappy || {
37
+ mass: 0.4,
38
+ damping: 14,
39
+ stiffness: 160
40
+ };
41
+
42
+ // Merge props with theme defaults
43
+ const outDuration = fadeOutDuration ?? crossfadeConfig.fadeOutDuration ?? 120;
44
+ const inDuration = fadeInDuration ?? crossfadeConfig.fadeInDuration ?? 200;
45
+ const shiftY = translateYAmount ?? crossfadeConfig.translateY ?? 6;
46
+ const [currentKey, setCurrentKey] = (0, _react.useState)(activeKey);
47
+ const [containerHeight, setContainerHeight] = (0, _react.useState)(0);
48
+ const isTransitioning = (0, _react.useRef)(false);
49
+ const opacity = (0, _reactNativeReanimated.useSharedValue)(1);
50
+ const translateY = (0, _reactNativeReanimated.useSharedValue)(0);
51
+ const commitSwitch = (0, _react.useCallback)(newKey => {
52
+ setCurrentKey(newKey);
53
+ isTransitioning.current = false;
54
+ // Delay fade-in to next frame so React commit doesn't block animation
55
+ requestAnimationFrame(() => {
56
+ opacity.value = (0, _reactNativeReanimated.withTiming)(1, {
57
+ duration: inDuration,
58
+ easing: _reactNativeReanimated.Easing.out(_reactNativeReanimated.Easing.quad)
59
+ });
60
+ translateY.value = (0, _reactNativeReanimated.withSpring)(0, springConfig);
61
+ });
62
+ }, [inDuration, springConfig]);
63
+ (0, _react.useEffect)(() => {
64
+ if (activeKey !== currentKey && !isTransitioning.current) {
65
+ isTransitioning.current = true;
66
+
67
+ // Fade out
68
+ opacity.value = (0, _reactNativeReanimated.withTiming)(0, {
69
+ duration: outDuration,
70
+ easing: _reactNativeReanimated.Easing.in(_reactNativeReanimated.Easing.quad)
71
+ }, finished => {
72
+ if (finished) {
73
+ (0, _reactNativeReanimated.runOnJS)(commitSwitch)(activeKey);
74
+ }
75
+ });
76
+ translateY.value = (0, _reactNativeReanimated.withTiming)(shiftY, {
77
+ duration: outDuration
78
+ });
79
+ }
80
+ }, [activeKey]);
81
+ const animatedStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => ({
82
+ opacity: opacity.value,
83
+ transform: [{
84
+ translateY: translateY.value
85
+ }]
86
+ }));
87
+
88
+ // Find active child by key
89
+ // React.Children.toArray prefixes keys with ".$/", ".$", or "."
90
+ // We strip all prefixes to compare raw keys
91
+ const childArray = _react.default.Children.toArray(children);
92
+ const stripKeyPrefix = key => key?.replace(/^\.\$/, '').replace(/^\./, '');
93
+ const activeChild = childArray.find(child => stripKeyPrefix(child.key) === String(currentKey)) || childArray[0];
94
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
95
+ style: [styles.container, containerHeight > 0 && {
96
+ minHeight: containerHeight
97
+ }, style],
98
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
99
+ style: [styles.content, animatedStyle],
100
+ onLayout: e => {
101
+ const h = e.nativeEvent.layout.height;
102
+ if (h > containerHeight) setContainerHeight(h);
103
+ },
104
+ children: activeChild
105
+ })
106
+ });
107
+ }
108
+ const styles = _reactNative.StyleSheet.create({
109
+ container: {
110
+ width: '100%',
111
+ flex: 1
112
+ },
113
+ content: {
114
+ width: '100%',
115
+ flex: 1
116
+ }
117
+ });
118
+ //# sourceMappingURL=FluentGlassCrossfade.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeReanimated","_useTheme","_interopRequireDefault","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","FluentGlassCrossfade","activeKey","children","fadeOutDuration","fadeInDuration","translateY","translateYAmount","style","theme","useTheme","crossfadeConfig","animations","crossfade","springConfig","spring","snappy","mass","damping","stiffness","outDuration","inDuration","shiftY","currentKey","setCurrentKey","useState","containerHeight","setContainerHeight","isTransitioning","useRef","opacity","useSharedValue","commitSwitch","useCallback","newKey","current","requestAnimationFrame","value","withTiming","duration","easing","Easing","out","quad","withSpring","useEffect","in","finished","runOnJS","animatedStyle","useAnimatedStyle","transform","childArray","React","Children","toArray","stripKeyPrefix","key","replace","activeChild","find","child","String","jsx","View","styles","container","minHeight","content","onLayout","h","nativeEvent","layout","height","StyleSheet","create","width","flex"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassCrossfade.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,176 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassDateInput;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _vectorIcons = require("@expo/vector-icons");
10
+ var _FluentGlass = _interopRequireDefault(require("./FluentGlass"));
11
+ var _FluentGlassDatePicker = _interopRequireDefault(require("./FluentGlassDatePicker"));
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
+ /**
17
+ * FluentGlassDateInput (Molécula)
18
+ * Hybrid date input: type manually OR tap the calendar icon to open FluentGlassDatePicker.
19
+ */
20
+ function FluentGlassDateInput({
21
+ value,
22
+ onChange,
23
+ placeholder = 'dd/mm/yyyy',
24
+ format = 'dd/mm/yyyy',
25
+ style,
26
+ accessibilityLabel
27
+ }) {
28
+ const theme = (0, _useTheme.default)();
29
+ const COLORS = theme.colors;
30
+ const typography = theme.typography;
31
+ const [pickerVisible, setPickerVisible] = (0, _react.useState)(false);
32
+ const [textValue, setTextValue] = (0, _react.useState)(value ? formatDate(value, format) : '');
33
+
34
+ // Format a Date into string
35
+ function formatDate(date, fmt) {
36
+ if (!date || !(date instanceof Date) || isNaN(date.getTime())) return '';
37
+ const dd = String(date.getDate()).padStart(2, '0');
38
+ const mm = String(date.getMonth() + 1).padStart(2, '0');
39
+ const yyyy = date.getFullYear();
40
+ return fmt === 'dd/mm/yyyy' ? `${dd}/${mm}/${yyyy}` : `${mm}/${dd}/${yyyy}`;
41
+ }
42
+
43
+ // Parse text into a Date (returns null if invalid)
44
+ function parseDate(text, fmt) {
45
+ const parts = text.split('/');
46
+ if (parts.length !== 3) return null;
47
+ let day, month, year;
48
+ if (fmt === 'dd/mm/yyyy') {
49
+ [day, month, year] = parts;
50
+ } else {
51
+ [month, day, year] = parts;
52
+ }
53
+ const d = parseInt(day, 10);
54
+ const m = parseInt(month, 10);
55
+ const y = parseInt(year, 10);
56
+ if (isNaN(d) || isNaN(m) || isNaN(y)) return null;
57
+ if (m < 1 || m > 12 || d < 1 || d > 31 || y < 1900) return null;
58
+ const date = new Date(y, m - 1, d);
59
+ if (date.getMonth() !== m - 1) return null; // overflow check
60
+ return date;
61
+ }
62
+
63
+ // When user finishes typing (blur), try to parse the manual entry
64
+ const handleBlur = (0, _react.useCallback)(() => {
65
+ const parsed = parseDate(textValue, format);
66
+ if (parsed && onChange) {
67
+ onChange(parsed);
68
+ }
69
+ }, [textValue, format, onChange]);
70
+
71
+ // When text changes, auto-insert slashes
72
+ const handleChangeText = (0, _react.useCallback)(raw => {
73
+ // Strip non-digit characters
74
+ const digits = raw.replace(/\D/g, '');
75
+ // Auto-format with slashes
76
+ let formatted = '';
77
+ for (let i = 0; i < digits.length && i < 8; i++) {
78
+ if (i === 2 || i === 4) formatted += '/';
79
+ formatted += digits[i];
80
+ }
81
+ setTextValue(formatted);
82
+ }, []);
83
+
84
+ // When user picks from the calendar popup
85
+ const handlePickerSelect = (0, _react.useCallback)(date => {
86
+ setTextValue(formatDate(date, format));
87
+ setPickerVisible(false);
88
+ if (onChange) onChange(date);
89
+ }, [format, onChange]);
90
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
91
+ style: style,
92
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_FluentGlass.default, {
93
+ style: styles.container,
94
+ intensity: 15,
95
+ borderRadius: 12,
96
+ borderOpacity: 0.15,
97
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
98
+ style: styles.innerContainer,
99
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TextInput, {
100
+ style: [styles.input, {
101
+ outlineStyle: 'none',
102
+ color: COLORS.textPrimary,
103
+ fontFamily: typography.regular
104
+ }],
105
+ value: textValue,
106
+ onChangeText: handleChangeText,
107
+ onBlur: handleBlur,
108
+ placeholder: placeholder,
109
+ placeholderTextColor: COLORS.textSecondary,
110
+ keyboardType: "numeric",
111
+ maxLength: 10,
112
+ accessibilityLabel: accessibilityLabel ?? placeholder ?? 'Date'
113
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
114
+ onPress: () => setPickerVisible(true),
115
+ style: styles.iconButton,
116
+ hitSlop: 10,
117
+ accessibilityRole: "button",
118
+ accessibilityLabel: "Open date picker",
119
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
120
+ name: "calendar-outline",
121
+ size: 20,
122
+ color: COLORS.textSecondary
123
+ })
124
+ })]
125
+ })
126
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
127
+ visible: pickerVisible,
128
+ transparent: true,
129
+ animationType: "fade",
130
+ onRequestClose: () => setPickerVisible(false),
131
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
132
+ style: [styles.overlay, {
133
+ backgroundColor: COLORS.overlay
134
+ }],
135
+ onPress: () => setPickerVisible(false),
136
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
137
+ style: styles.pickerPopup,
138
+ onPress: e => e.stopPropagation(),
139
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_FluentGlassDatePicker.default, {
140
+ value: value || new Date(),
141
+ onChange: handlePickerSelect
142
+ })
143
+ })
144
+ })
145
+ })]
146
+ });
147
+ }
148
+ const styles = _reactNative.StyleSheet.create({
149
+ container: {
150
+ minHeight: 50
151
+ },
152
+ innerContainer: {
153
+ flex: 1,
154
+ flexDirection: 'row',
155
+ alignItems: 'center'
156
+ },
157
+ input: {
158
+ flex: 1,
159
+ height: '100%',
160
+ paddingHorizontal: 16,
161
+ fontSize: 16
162
+ },
163
+ iconButton: {
164
+ padding: 12,
165
+ marginRight: 4
166
+ },
167
+ overlay: {
168
+ flex: 1,
169
+ justifyContent: 'center',
170
+ alignItems: 'center'
171
+ },
172
+ pickerPopup: {
173
+ // Let the DatePicker define its own width (300)
174
+ }
175
+ });
176
+ //# sourceMappingURL=FluentGlassDateInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_vectorIcons","_FluentGlass","_interopRequireDefault","_FluentGlassDatePicker","_useTheme","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","FluentGlassDateInput","value","onChange","placeholder","format","style","accessibilityLabel","theme","useTheme","COLORS","colors","typography","pickerVisible","setPickerVisible","useState","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","useCallback","parsed","handleChangeText","raw","digits","replace","formatted","handlePickerSelect","jsxs","View","children","jsx","styles","container","intensity","borderRadius","borderOpacity","innerContainer","TextInput","input","outlineStyle","color","textPrimary","fontFamily","regular","onChangeText","onBlur","placeholderTextColor","textSecondary","keyboardType","maxLength","TouchableOpacity","onPress","iconButton","hitSlop","accessibilityRole","Ionicons","name","size","Modal","visible","transparent","animationType","onRequestClose","Pressable","overlay","backgroundColor","pickerPopup","stopPropagation","StyleSheet","create","minHeight","flex","flexDirection","alignItems","height","paddingHorizontal","fontSize","padding","marginRight","justifyContent"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassDateInput.tsx"],"mappings":"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","ignoreList":[]}