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,334 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassTimeline;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
10
+ var _FluentGlass = _interopRequireDefault(require("./FluentGlass"));
11
+ var _useTheme = _interopRequireDefault(require("../theme/useTheme"));
12
+ var _jsxRuntime = require("react/jsx-runtime");
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
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ // Removed static COLORS import
16
+
17
+ /**
18
+ * FluentGlassTimeline (Component)
19
+ * Glassmorphism timeline with vertical and horizontal variants.
20
+ *
21
+ * Props:
22
+ * items - Array of { title, description, date, status, icon }
23
+ * status: 'completed' | 'active' | 'pending'
24
+ * variant - 'vertical' | 'horizontal' (default: 'vertical')
25
+ * style - Container style override
26
+ * style - Container style override
27
+ */
28
+
29
+ // ─── Indicator Circle ───
30
+ function TimelineIndicator({
31
+ status,
32
+ size = 32,
33
+ colors
34
+ }) {
35
+ const pulseScale = (0, _reactNativeReanimated.useSharedValue)(1);
36
+ _react.default.useEffect(() => {
37
+ if (status === 'active') {
38
+ pulseScale.value = (0, _reactNativeReanimated.withRepeat)((0, _reactNativeReanimated.withTiming)(1.15, {
39
+ duration: 1200
40
+ }), -1, true);
41
+ } else {
42
+ pulseScale.value = (0, _reactNativeReanimated.withSpring)(1);
43
+ }
44
+ }, [status]);
45
+ const pulseStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => ({
46
+ transform: [{
47
+ scale: pulseScale.value
48
+ }]
49
+ }));
50
+ const isCompleted = status === 'completed';
51
+ const isActive = status === 'active';
52
+ const isPending = status === 'pending';
53
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
54
+ style: pulseStyle,
55
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
56
+ style: [styles.indicator, {
57
+ width: size,
58
+ height: size,
59
+ borderRadius: size / 2,
60
+ borderColor: isCompleted || isActive ? colors.accent : isPending ? `${colors.textSecondary}4D` : colors.border,
61
+ backgroundColor: isCompleted ? colors.accent : isActive ? `${colors.secondary}26` : isPending ? `${colors.textSecondary}1A` : 'transparent'
62
+ }],
63
+ children: isCompleted ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
64
+ style: [styles.checkmark, {
65
+ color: colors.background
66
+ }],
67
+ children: "\u2713"
68
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
69
+ style: [styles.innerDot, {
70
+ width: size * 0.35,
71
+ height: size * 0.35,
72
+ borderRadius: size * 0.35 / 2,
73
+ backgroundColor: isActive ? colors.accent : isPending ? `${colors.textSecondary}4D` : 'transparent'
74
+ }]
75
+ })
76
+ })
77
+ });
78
+ }
79
+
80
+ // ─── Connecting Line ───
81
+ function TimelineLine({
82
+ status,
83
+ direction = 'vertical',
84
+ colors
85
+ }) {
86
+ const isCompleted = status === 'completed';
87
+ const isVertical = direction === 'vertical';
88
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
89
+ style: [isVertical ? styles.lineVertical : styles.lineHorizontal, {
90
+ backgroundColor: isCompleted ? colors.accent : `${colors.textSecondary}26`
91
+ }]
92
+ });
93
+ }
94
+
95
+ // ─── Vertical Timeline ───
96
+ function VerticalTimeline({
97
+ items,
98
+ style,
99
+ colors,
100
+ typography
101
+ }) {
102
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
103
+ style: [styles.verticalContainer, style],
104
+ children: items.map((item, index) => {
105
+ const isLast = index === items.length - 1;
106
+ const isActive = item.status === 'active';
107
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
108
+ style: styles.verticalItem,
109
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
110
+ style: styles.verticalLeft,
111
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(TimelineIndicator, {
112
+ status: item.status,
113
+ size: 36,
114
+ colors: colors
115
+ }), !isLast ? /*#__PURE__*/(0, _jsxRuntime.jsx)(TimelineLine, {
116
+ status: item.status,
117
+ direction: "vertical",
118
+ colors: colors
119
+ }) : null]
120
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
121
+ style: styles.verticalRight,
122
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_FluentGlass.default, {
123
+ style: [styles.verticalCard, isActive && {
124
+ borderColor: colors.accent
125
+ }],
126
+ intensity: isActive ? 25 : 15,
127
+ tint: isActive ? 'default' : 'dark',
128
+ borderRadius: 14,
129
+ borderOpacity: isActive ? 0.35 : 0.15,
130
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
131
+ style: styles.cardContent,
132
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
133
+ style: styles.cardHeader,
134
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
135
+ style: [styles.cardTitle, {
136
+ fontFamily: typography.bold,
137
+ color: item.status === 'pending' ? colors.textSecondary : colors.textPrimary
138
+ }],
139
+ children: item.title
140
+ }), item.date ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
141
+ style: [styles.cardDate, {
142
+ fontFamily: typography.medium,
143
+ color: colors.textSecondary
144
+ }],
145
+ children: item.date
146
+ }) : null]
147
+ }), item.description ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
148
+ style: [styles.cardDescription, {
149
+ color: colors.textSecondary
150
+ }],
151
+ children: item.description
152
+ }) : null]
153
+ })
154
+ })
155
+ })]
156
+ }, index);
157
+ })
158
+ });
159
+ }
160
+
161
+ // ─── Horizontal Timeline ───
162
+ function HorizontalTimeline({
163
+ items,
164
+ style,
165
+ colors,
166
+ typography
167
+ }) {
168
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
169
+ style: [styles.horizontalContainer, style],
170
+ children: items.map((item, index) => {
171
+ const isLast = index === items.length - 1;
172
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
173
+ style: styles.horizontalItem,
174
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
175
+ style: styles.horizontalTop,
176
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(TimelineIndicator, {
177
+ status: item.status,
178
+ size: 40,
179
+ colors: colors
180
+ }), !isLast ? /*#__PURE__*/(0, _jsxRuntime.jsx)(TimelineLine, {
181
+ status: item.status,
182
+ direction: "horizontal",
183
+ colors: colors
184
+ }) : null]
185
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
186
+ style: styles.horizontalLabels,
187
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
188
+ style: [styles.horizontalTitle, {
189
+ fontFamily: typography.semiBold,
190
+ color: item.status === 'pending' ? colors.textSecondary : colors.textPrimary
191
+ }],
192
+ numberOfLines: 1,
193
+ children: item.title
194
+ }), item.description ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
195
+ style: [styles.horizontalSubtitle, {
196
+ color: colors.textSecondary
197
+ }],
198
+ numberOfLines: 1,
199
+ children: item.description
200
+ }) : null]
201
+ })]
202
+ }, index);
203
+ })
204
+ });
205
+ }
206
+
207
+ // ─── Main Export ───
208
+ function FluentGlassTimeline({
209
+ items = [],
210
+ variant = 'vertical',
211
+ style
212
+ }) {
213
+ const {
214
+ colors,
215
+ typography
216
+ } = (0, _useTheme.default)();
217
+
218
+ // Pass colors down through context or cloning isn't great.
219
+ // We will wrap the children with the theme context implicitly since these are small components
220
+ // inside the same file, let's pass `colors` as a prop to internal helpers.
221
+ if (variant === 'horizontal') {
222
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
223
+ accessible: true,
224
+ accessibilityLabel: "Timeline",
225
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(HorizontalTimeline, {
226
+ items: items,
227
+ style: style,
228
+ colors: colors,
229
+ typography: typography
230
+ })
231
+ });
232
+ }
233
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
234
+ accessible: true,
235
+ accessibilityLabel: "Timeline",
236
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(VerticalTimeline, {
237
+ items: items,
238
+ style: style,
239
+ colors: colors,
240
+ typography: typography
241
+ })
242
+ });
243
+ }
244
+
245
+ // ─── Styles ───
246
+ const styles = _reactNative.StyleSheet.create({
247
+ // Indicator
248
+ indicator: {
249
+ alignItems: 'center',
250
+ justifyContent: 'center',
251
+ borderWidth: 2
252
+ },
253
+ checkmark: {
254
+ fontSize: 16
255
+ },
256
+ innerDot: {},
257
+ lineVertical: {
258
+ width: 2,
259
+ flex: 1,
260
+ marginVertical: 4
261
+ },
262
+ lineHorizontal: {
263
+ height: 2,
264
+ flex: 1,
265
+ marginHorizontal: 4
266
+ },
267
+ // ─── Vertical ───
268
+ verticalContainer: {},
269
+ verticalItem: {
270
+ flexDirection: 'row'
271
+ },
272
+ verticalLeft: {
273
+ alignItems: 'center',
274
+ width: 44,
275
+ marginRight: 12
276
+ },
277
+ verticalRight: {
278
+ flex: 1,
279
+ paddingBottom: 20
280
+ },
281
+ verticalCard: {
282
+ minHeight: 60
283
+ },
284
+ // removed verticalCardActive
285
+ cardContent: {
286
+ padding: 14
287
+ },
288
+ cardHeader: {
289
+ flexDirection: 'row',
290
+ justifyContent: 'space-between',
291
+ alignItems: 'center'
292
+ },
293
+ cardTitle: {
294
+ fontSize: 16
295
+ },
296
+ cardDate: {
297
+ fontSize: 12
298
+ },
299
+ cardDescription: {
300
+ fontSize: 14,
301
+ marginTop: 4,
302
+ lineHeight: 20
303
+ },
304
+ // ─── Horizontal ───
305
+ horizontalContainer: {
306
+ flexDirection: 'row',
307
+ alignItems: 'flex-start'
308
+ },
309
+ horizontalItem: {
310
+ flex: 1,
311
+ alignItems: 'center'
312
+ },
313
+ horizontalTop: {
314
+ flexDirection: 'row',
315
+ alignItems: 'center',
316
+ width: '100%',
317
+ justifyContent: 'center'
318
+ },
319
+ horizontalLabels: {
320
+ alignItems: 'center',
321
+ marginTop: 10,
322
+ paddingHorizontal: 4
323
+ },
324
+ horizontalTitle: {
325
+ fontSize: 14,
326
+ marginTop: 4
327
+ },
328
+ horizontalSubtitle: {
329
+ fontSize: 12,
330
+ marginTop: 2,
331
+ textAlign: 'center'
332
+ }
333
+ });
334
+ //# sourceMappingURL=FluentGlassTimeline.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_reactNativeReanimated","_interopRequireWildcard","_FluentGlass","_useTheme","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","TimelineIndicator","status","size","colors","pulseScale","useSharedValue","React","useEffect","value","withRepeat","withTiming","duration","withSpring","pulseStyle","useAnimatedStyle","transform","scale","isCompleted","isActive","isPending","jsx","View","style","children","styles","indicator","width","height","borderRadius","borderColor","accent","textSecondary","border","backgroundColor","secondary","Text","checkmark","color","background","innerDot","TimelineLine","direction","isVertical","lineVertical","lineHorizontal","VerticalTimeline","items","typography","verticalContainer","map","item","index","isLast","length","jsxs","verticalItem","verticalLeft","verticalRight","verticalCard","intensity","tint","borderOpacity","cardContent","cardHeader","cardTitle","fontFamily","bold","textPrimary","title","date","cardDate","medium","description","cardDescription","HorizontalTimeline","horizontalContainer","horizontalItem","horizontalTop","horizontalLabels","horizontalTitle","semiBold","numberOfLines","horizontalSubtitle","FluentGlassTimeline","variant","useTheme","accessible","accessibilityLabel","StyleSheet","create","alignItems","justifyContent","borderWidth","fontSize","flex","marginVertical","marginHorizontal","flexDirection","marginRight","paddingBottom","minHeight","padding","marginTop","lineHeight","paddingHorizontal","textAlign"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassTimeline.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = FluentGlassWeatherWidget;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _FluentGlass = _interopRequireDefault(require("./FluentGlass"));
10
+ var _useTheme = _interopRequireDefault(require("../theme/useTheme"));
11
+ var _responsive = require("../utils/responsive");
12
+ var _jsxRuntime = require("react/jsx-runtime");
13
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
14
+ /**
15
+ * FluentGlassWeatherWidget (Atom/Molecule)
16
+ * Dashboard widget displaying temperature and condition.
17
+ */
18
+ function FluentGlassWeatherWidget({
19
+ temp = '24°',
20
+ condition = 'Cloudy',
21
+ style
22
+ }) {
23
+ const theme = (0, _useTheme.default)();
24
+ const COLORS = theme.colors;
25
+ const typography = theme.typography;
26
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_FluentGlass.default, {
27
+ accessible: true,
28
+ accessibilityLabel: `${temp} ${condition}`,
29
+ style: [styles.card, style],
30
+ intensity: 25,
31
+ borderRadius: 20,
32
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
33
+ style: styles.content,
34
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
35
+ style: [styles.label, {
36
+ color: COLORS.textSecondary,
37
+ fontFamily: typography.medium
38
+ }],
39
+ children: condition
40
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
41
+ style: [styles.bigValue, {
42
+ color: COLORS.textPrimary,
43
+ fontFamily: typography.regular
44
+ }],
45
+ children: temp
46
+ })]
47
+ })
48
+ });
49
+ }
50
+ const styles = _reactNative.StyleSheet.create({
51
+ card: {
52
+ flex: 1,
53
+ minWidth: 100,
54
+ maxWidth: 140,
55
+ aspectRatio: 1
56
+ },
57
+ content: {
58
+ flex: 1,
59
+ justifyContent: 'center',
60
+ alignItems: 'center'
61
+ },
62
+ label: {
63
+ fontSize: 12,
64
+ textTransform: 'uppercase',
65
+ marginBottom: 4
66
+ },
67
+ bigValue: {
68
+ fontSize: (0, _responsive.moderateScale)(28),
69
+ fontWeight: '300'
70
+ }
71
+ });
72
+ //# sourceMappingURL=FluentGlassWeatherWidget.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_FluentGlass","_useTheme","_responsive","_jsxRuntime","e","__esModule","default","FluentGlassWeatherWidget","temp","condition","style","theme","useTheme","COLORS","colors","typography","jsx","accessible","accessibilityLabel","styles","card","intensity","borderRadius","children","jsxs","View","content","Text","label","color","textSecondary","fontFamily","medium","bigValue","textPrimary","regular","StyleSheet","create","flex","minWidth","maxWidth","aspectRatio","justifyContent","alignItems","fontSize","textTransform","marginBottom","moderateScale","fontWeight"],"sourceRoot":"..\\..\\..\\src","sources":["components/FluentGlassWeatherWidget.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,YAAA,GAAAH,sBAAA,CAAAC,OAAA;AACA,IAAAG,SAAA,GAAAJ,sBAAA,CAAAC,OAAA;AACA,IAAAI,WAAA,GAAAJ,OAAA;AAAoD,IAAAK,WAAA,GAAAL,OAAA;AAAA,SAAAD,uBAAAO,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAQpD;AACA;AACA;AACA;AACe,SAASG,wBAAwBA,CAAC;EAAEC,IAAI,GAAG,KAAK;EAAEC,SAAS,GAAG,QAAQ;EAAEC;AAAqC,CAAC,EAAE;EAC3H,MAAMC,KAAK,GAAG,IAAAC,iBAAQ,EAAC,CAAC;EACxB,MAAMC,MAAM,GAAGF,KAAK,CAACG,MAAM;EAC3B,MAAMC,UAAU,GAAGJ,KAAK,CAACI,UAAU;EAEnC,oBACI,IAAAZ,WAAA,CAAAa,GAAA,EAAChB,YAAA,CAAAM,OAAW;IAACW,UAAU,EAAE,IAAK;IAACC,kBAAkB,EAAE,GAAGV,IAAI,IAAIC,SAAS,EAAG;IAACC,KAAK,EAAE,CAACS,MAAM,CAACC,IAAI,EAAEV,KAAK,CAAE;IAACW,SAAS,EAAE,EAAG;IAACC,YAAY,EAAE,EAAG;IAAAC,QAAA,eACpI,IAAApB,WAAA,CAAAqB,IAAA,EAACzB,YAAA,CAAA0B,IAAI;MAACf,KAAK,EAAES,MAAM,CAACO,OAAQ;MAAAH,QAAA,gBACxB,IAAApB,WAAA,CAAAa,GAAA,EAACjB,YAAA,CAAA4B,IAAI;QAACjB,KAAK,EAAE,CAACS,MAAM,CAACS,KAAK,EAAE;UAAEC,KAAK,EAAEhB,MAAM,CAACiB,aAAa;UAAEC,UAAU,EAAEhB,UAAU,CAACiB;QAAO,CAAC,CAAE;QAAAT,QAAA,EAAEd;MAAS,CAAO,CAAC,eAC/G,IAAAN,WAAA,CAAAa,GAAA,EAACjB,YAAA,CAAA4B,IAAI;QAACjB,KAAK,EAAE,CAACS,MAAM,CAACc,QAAQ,EAAE;UAAEJ,KAAK,EAAEhB,MAAM,CAACqB,WAAW;UAAEH,UAAU,EAAEhB,UAAU,CAACoB;QAAQ,CAAC,CAAE;QAAAZ,QAAA,EAAEf;MAAI,CAAO,CAAC;IAAA,CAC1G;EAAC,CACE,CAAC;AAEtB;AAEA,MAAMW,MAAM,GAAGiB,uBAAU,CAACC,MAAM,CAAC;EAC7BjB,IAAI,EAAE;IACFkB,IAAI,EAAE,CAAC;IACPC,QAAQ,EAAE,GAAG;IACbC,QAAQ,EAAE,GAAG;IACbC,WAAW,EAAE;EACjB,CAAC;EACDf,OAAO,EAAE;IACLY,IAAI,EAAE,CAAC;IACPI,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE;EAChB,CAAC;EACDf,KAAK,EAAE;IACHgB,QAAQ,EAAE,EAAE;IACZC,aAAa,EAAE,WAAW;IAC1BC,YAAY,EAAE;EAClB,CAAC;EACDb,QAAQ,EAAE;IACNW,QAAQ,EAAE,IAAAG,yBAAa,EAAC,EAAE,CAAC;IAC3BC,UAAU,EAAE;EAChB;AACJ,CAAC,CAAC","ignoreList":[]}