@heymantle/litho 0.0.14 → 0.0.16

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 (381) hide show
  1. package/AI_COMPONENTS_GUIDE.md +28 -15
  2. package/AI_INTEGRATION_GUIDE.md +3 -3
  3. package/AI_PATTERNS_GUIDE.md +59 -25
  4. package/COMPONENT_QUICK_REFERENCE.md +3 -3
  5. package/README.md +52 -0
  6. package/dist/cjs/components/ActionList.js +33 -25
  7. package/dist/cjs/components/AnnouncementBar.js +115 -18
  8. package/dist/cjs/components/AnnouncementCard.js +269 -0
  9. package/dist/cjs/components/AppProvider.js +15 -2
  10. package/dist/cjs/components/Autocomplete.js +58 -36
  11. package/dist/cjs/components/Badge.js +28 -14
  12. package/dist/cjs/components/Banner.js +37 -27
  13. package/dist/cjs/components/Box.js +50 -38
  14. package/dist/cjs/components/Button.js +338 -109
  15. package/dist/cjs/components/ButtonGroup.js +27 -14
  16. package/dist/cjs/components/Card.js +311 -143
  17. package/dist/cjs/components/Checkbox.js +55 -47
  18. package/dist/cjs/components/CheckboxCard.js +222 -0
  19. package/dist/cjs/components/CheckboxCardGroup.js +384 -0
  20. package/dist/cjs/components/ChoiceList.js +21 -11
  21. package/dist/cjs/components/Code.js +22 -8
  22. package/dist/cjs/components/Collapsible.js +24 -11
  23. package/dist/cjs/components/ColorField.js +163 -38
  24. package/dist/cjs/components/ContextualSaveBar.js +13 -6
  25. package/dist/cjs/components/DatePicker.js +48 -37
  26. package/dist/cjs/components/Disclosure.js +57 -13
  27. package/dist/cjs/components/Divider.js +82 -18
  28. package/dist/cjs/components/DropZone.js +194 -68
  29. package/dist/cjs/components/EmptyState.js +18 -6
  30. package/dist/cjs/components/Filters.js +84 -36
  31. package/dist/cjs/components/FooterHelp.js +14 -4
  32. package/dist/cjs/components/Form.js +13 -2
  33. package/dist/cjs/components/Frame.js +57 -22
  34. package/dist/cjs/components/FrameSaveBar.js +37 -6
  35. package/dist/cjs/components/Grid.js +31 -15
  36. package/dist/cjs/components/HorizontalStack.js +38 -25
  37. package/dist/cjs/components/Icon.js +683 -61
  38. package/dist/cjs/components/Image.js +35 -22
  39. package/dist/cjs/components/InlineError.js +19 -10
  40. package/dist/cjs/components/Label.js +21 -12
  41. package/dist/cjs/components/Layout.js +37 -26
  42. package/dist/cjs/components/LayoutSection.js +84 -22
  43. package/dist/cjs/components/Link.js +35 -22
  44. package/dist/cjs/components/List.js +28 -12
  45. package/dist/cjs/components/Listbox.js +53 -31
  46. package/dist/cjs/components/Loading.js +14 -2
  47. package/dist/cjs/components/Modal.js +32 -39
  48. package/dist/cjs/components/Navigation.js +107 -36
  49. package/dist/cjs/components/Page.js +44 -31
  50. package/dist/cjs/components/Pagination.js +20 -5
  51. package/dist/cjs/components/Pane.js +67 -4
  52. package/dist/cjs/components/Popover.js +63 -30
  53. package/dist/cjs/components/PopoverManager.js +14 -1
  54. package/dist/cjs/components/ProgressBar.js +28 -15
  55. package/dist/cjs/components/RadioButton.js +32 -24
  56. package/dist/cjs/components/RadioButtonCard.js +92 -67
  57. package/dist/cjs/components/RadioButtonCardGroup.js +379 -0
  58. package/dist/cjs/components/RangeSlider.js +34 -26
  59. package/dist/cjs/components/ResourceList.js +28 -14
  60. package/dist/cjs/components/Select.js +38 -26
  61. package/dist/cjs/components/SkeletonText.js +33 -18
  62. package/dist/cjs/components/Spinner.js +24 -12
  63. package/dist/cjs/components/Stack.js +131 -71
  64. package/dist/cjs/components/TabNavigation.js +27 -1
  65. package/dist/cjs/components/Table.js +85 -29
  66. package/dist/cjs/components/Tabs.js +84 -24
  67. package/dist/cjs/components/Tag.js +37 -16
  68. package/dist/cjs/components/Text.js +32 -18
  69. package/dist/cjs/components/TextField.js +119 -69
  70. package/dist/cjs/components/Thumbnail.js +25 -11
  71. package/dist/cjs/components/TimePicker.js +22 -1
  72. package/dist/cjs/components/Tip.js +140 -25
  73. package/dist/cjs/components/ToastNotification.js +107 -34
  74. package/dist/cjs/components/ToastProvider.js +13 -3
  75. package/dist/cjs/components/Tooltip.js +50 -41
  76. package/dist/cjs/components/TopBar.js +83 -9
  77. package/dist/cjs/components/VerticalStack.js +31 -16
  78. package/dist/cjs/index.js +24 -0
  79. package/dist/cjs/playwright.config.js +114 -0
  80. package/dist/cjs/stories/Autocomplete.stories.js +10 -10
  81. package/dist/cjs/stories/Checkbox.stories.js +6 -8
  82. package/dist/cjs/stories/CheckboxCardGroup.stories.js +459 -0
  83. package/dist/cjs/stories/Collapsible.stories.js +11 -11
  84. package/dist/cjs/stories/ColorField.stories.js +2 -3
  85. package/dist/cjs/stories/ComplexExamples.stories.js +48 -77
  86. package/dist/cjs/stories/ContextualSaveBar.stories.js +1 -1
  87. package/dist/cjs/stories/Divider.stories.js +15 -16
  88. package/dist/cjs/stories/DropZone.stories.js +3 -3
  89. package/dist/cjs/stories/FooterHelp.stories.js +3 -4
  90. package/dist/cjs/stories/Form.stories.js +2 -4
  91. package/dist/cjs/stories/Grid.stories.js +24 -33
  92. package/dist/cjs/stories/Icon.stories.js +22 -23
  93. package/dist/cjs/stories/Image.stories.js +12 -15
  94. package/dist/cjs/stories/InlineError.stories.js +0 -1
  95. package/dist/cjs/stories/Layout.stories.js +96 -2
  96. package/dist/cjs/stories/LayoutSection.stories.js +13 -18
  97. package/dist/cjs/stories/List.stories.js +24 -28
  98. package/dist/cjs/stories/Listbox.stories.js +2 -2
  99. package/dist/cjs/stories/Loading.stories.js +21 -25
  100. package/dist/cjs/stories/Modal.stories.js +0 -1
  101. package/dist/cjs/stories/Pagination.stories.js +4 -4
  102. package/dist/cjs/stories/Pane.stories.js +10 -18
  103. package/dist/cjs/stories/Popover.stories.js +7 -7
  104. package/dist/cjs/stories/PopoverManager.stories.js +9 -9
  105. package/dist/cjs/stories/ProgressBar.stories.js +8 -8
  106. package/dist/cjs/stories/RadioButton.stories.js +2 -2
  107. package/dist/cjs/stories/RadioButtonCard.stories.js +2 -2
  108. package/dist/cjs/stories/RadioButtonCardGroup.stories.js +502 -0
  109. package/dist/cjs/stories/RangeSlider.stories.js +1 -3
  110. package/dist/cjs/stories/ResourceList.stories.js +13 -13
  111. package/dist/cjs/stories/Spinner.stories.js +9 -9
  112. package/dist/cjs/stories/Stack.stories.js +233 -51
  113. package/dist/cjs/stories/Tabs.stories.js +2 -2
  114. package/dist/cjs/stories/Tag.stories.js +1 -1
  115. package/dist/cjs/stories/Thumbnail.stories.js +17 -18
  116. package/dist/cjs/stories/TimePicker.stories.js +0 -5
  117. package/dist/cjs/stories/Tip.stories.js +1 -1
  118. package/dist/cjs/styles/Table.js +2 -7
  119. package/dist/cjs/tests/visual/stories.spec.js +637 -0
  120. package/dist/cjs/utilities/dates.js +7 -7
  121. package/dist/esm/components/ActionList.js +33 -25
  122. package/dist/esm/components/AnnouncementBar.js +115 -18
  123. package/dist/esm/components/AnnouncementCard.js +254 -0
  124. package/dist/esm/components/AppProvider.js +15 -2
  125. package/dist/esm/components/Autocomplete.js +58 -36
  126. package/dist/esm/components/Badge.js +28 -14
  127. package/dist/esm/components/Banner.js +37 -27
  128. package/dist/esm/components/Box.js +50 -38
  129. package/dist/esm/components/Button.js +338 -109
  130. package/dist/esm/components/ButtonGroup.js +27 -14
  131. package/dist/esm/components/Card.js +300 -140
  132. package/dist/esm/components/Checkbox.js +55 -47
  133. package/dist/esm/components/CheckboxCard.js +207 -0
  134. package/dist/esm/components/CheckboxCardGroup.js +370 -0
  135. package/dist/esm/components/ChoiceList.js +21 -11
  136. package/dist/esm/components/Code.js +22 -8
  137. package/dist/esm/components/Collapsible.js +24 -11
  138. package/dist/esm/components/ColorField.js +165 -40
  139. package/dist/esm/components/ContextualSaveBar.js +13 -6
  140. package/dist/esm/components/DatePicker.js +48 -37
  141. package/dist/esm/components/Disclosure.js +50 -6
  142. package/dist/esm/components/Divider.js +78 -20
  143. package/dist/esm/components/DropZone.js +194 -68
  144. package/dist/esm/components/EmptyState.js +18 -6
  145. package/dist/esm/components/Filters.js +84 -36
  146. package/dist/esm/components/FooterHelp.js +14 -4
  147. package/dist/esm/components/Form.js +13 -2
  148. package/dist/esm/components/Frame.js +57 -22
  149. package/dist/esm/components/FrameSaveBar.js +37 -6
  150. package/dist/esm/components/Grid.js +31 -15
  151. package/dist/esm/components/HorizontalStack.js +38 -25
  152. package/dist/esm/components/Icon.js +681 -62
  153. package/dist/esm/components/Image.js +35 -22
  154. package/dist/esm/components/InlineError.js +19 -10
  155. package/dist/esm/components/Label.js +21 -12
  156. package/dist/esm/components/Layout.js +62 -27
  157. package/dist/esm/components/LayoutSection.js +84 -22
  158. package/dist/esm/components/Link.js +35 -22
  159. package/dist/esm/components/List.js +28 -12
  160. package/dist/esm/components/Listbox.js +53 -31
  161. package/dist/esm/components/Loading.js +14 -2
  162. package/dist/esm/components/Modal.js +79 -40
  163. package/dist/esm/components/Navigation.js +107 -36
  164. package/dist/esm/components/Page.js +44 -31
  165. package/dist/esm/components/Pagination.js +20 -5
  166. package/dist/esm/components/Pane.js +67 -4
  167. package/dist/esm/components/Popover.js +63 -30
  168. package/dist/esm/components/PopoverManager.js +14 -1
  169. package/dist/esm/components/ProgressBar.js +28 -15
  170. package/dist/esm/components/RadioButton.js +32 -24
  171. package/dist/esm/components/RadioButtonCard.js +92 -67
  172. package/dist/esm/components/RadioButtonCardGroup.js +364 -0
  173. package/dist/esm/components/RangeSlider.js +34 -26
  174. package/dist/esm/components/ResourceList.js +28 -14
  175. package/dist/esm/components/Select.js +38 -26
  176. package/dist/esm/components/SkeletonText.js +33 -18
  177. package/dist/esm/components/Spinner.js +24 -12
  178. package/dist/esm/components/Stack.js +131 -71
  179. package/dist/esm/components/TabNavigation.js +27 -1
  180. package/dist/esm/components/Table.js +85 -29
  181. package/dist/esm/components/Tabs.js +84 -24
  182. package/dist/esm/components/Tag.js +37 -16
  183. package/dist/esm/components/Text.js +32 -18
  184. package/dist/esm/components/TextField.js +119 -69
  185. package/dist/esm/components/Thumbnail.js +25 -11
  186. package/dist/esm/components/TimePicker.js +22 -1
  187. package/dist/esm/components/Tip.js +140 -25
  188. package/dist/esm/components/ToastNotification.js +107 -34
  189. package/dist/esm/components/ToastProvider.js +13 -3
  190. package/dist/esm/components/Tooltip.js +50 -41
  191. package/dist/esm/components/TopBar.js +83 -9
  192. package/dist/esm/components/VerticalStack.js +31 -16
  193. package/dist/esm/index.js +6 -0
  194. package/dist/esm/playwright.config.js +104 -0
  195. package/dist/esm/stories/Autocomplete.stories.js +10 -10
  196. package/dist/esm/stories/Checkbox.stories.js +6 -8
  197. package/dist/esm/stories/CheckboxCardGroup.stories.js +421 -0
  198. package/dist/esm/stories/Collapsible.stories.js +11 -11
  199. package/dist/esm/stories/ColorField.stories.js +2 -3
  200. package/dist/esm/stories/ComplexExamples.stories.js +48 -77
  201. package/dist/esm/stories/ContextualSaveBar.stories.js +1 -1
  202. package/dist/esm/stories/Divider.stories.js +15 -16
  203. package/dist/esm/stories/DropZone.stories.js +3 -3
  204. package/dist/esm/stories/FooterHelp.stories.js +3 -4
  205. package/dist/esm/stories/Form.stories.js +2 -4
  206. package/dist/esm/stories/Grid.stories.js +24 -33
  207. package/dist/esm/stories/Icon.stories.js +22 -23
  208. package/dist/esm/stories/Image.stories.js +12 -15
  209. package/dist/esm/stories/InlineError.stories.js +0 -1
  210. package/dist/esm/stories/Layout.stories.js +93 -2
  211. package/dist/esm/stories/LayoutSection.stories.js +13 -18
  212. package/dist/esm/stories/List.stories.js +24 -28
  213. package/dist/esm/stories/Listbox.stories.js +2 -2
  214. package/dist/esm/stories/Loading.stories.js +21 -25
  215. package/dist/esm/stories/Modal.stories.js +0 -1
  216. package/dist/esm/stories/Pagination.stories.js +4 -4
  217. package/dist/esm/stories/Pane.stories.js +10 -18
  218. package/dist/esm/stories/Popover.stories.js +7 -7
  219. package/dist/esm/stories/PopoverManager.stories.js +9 -9
  220. package/dist/esm/stories/ProgressBar.stories.js +8 -8
  221. package/dist/esm/stories/RadioButton.stories.js +2 -2
  222. package/dist/esm/stories/RadioButtonCard.stories.js +2 -2
  223. package/dist/esm/stories/RadioButtonCardGroup.stories.js +461 -0
  224. package/dist/esm/stories/RangeSlider.stories.js +1 -3
  225. package/dist/esm/stories/ResourceList.stories.js +13 -13
  226. package/dist/esm/stories/Spinner.stories.js +9 -9
  227. package/dist/esm/stories/Stack.stories.js +224 -51
  228. package/dist/esm/stories/Tabs.stories.js +2 -2
  229. package/dist/esm/stories/Tag.stories.js +1 -1
  230. package/dist/esm/stories/Thumbnail.stories.js +17 -18
  231. package/dist/esm/stories/TimePicker.stories.js +0 -5
  232. package/dist/esm/stories/Tip.stories.js +1 -1
  233. package/dist/esm/styles/Table.js +2 -7
  234. package/dist/esm/tests/visual/stories.spec.js +633 -0
  235. package/dist/esm/utilities/dates.js +7 -7
  236. package/dist/types/components/ActionList.d.ts +1 -31
  237. package/dist/types/components/ActionList.d.ts.map +1 -1
  238. package/dist/types/components/AnnouncementBar.d.ts +1 -19
  239. package/dist/types/components/AnnouncementBar.d.ts.map +1 -1
  240. package/dist/types/components/AnnouncementCard.d.ts +3 -0
  241. package/dist/types/components/AnnouncementCard.d.ts.map +1 -0
  242. package/dist/types/components/AppProvider.d.ts +14 -1
  243. package/dist/types/components/AppProvider.d.ts.map +1 -1
  244. package/dist/types/components/Autocomplete.d.ts +1 -71
  245. package/dist/types/components/Autocomplete.d.ts.map +1 -1
  246. package/dist/types/components/Badge.d.ts +1 -19
  247. package/dist/types/components/Badge.d.ts.map +1 -1
  248. package/dist/types/components/Banner.d.ts +1 -37
  249. package/dist/types/components/Banner.d.ts.map +1 -1
  250. package/dist/types/components/Box.d.ts +1 -68
  251. package/dist/types/components/Box.d.ts.map +1 -1
  252. package/dist/types/components/Button.d.ts +1 -131
  253. package/dist/types/components/Button.d.ts.map +1 -1
  254. package/dist/types/components/ButtonGroup.d.ts +1 -22
  255. package/dist/types/components/ButtonGroup.d.ts.map +1 -1
  256. package/dist/types/components/Card.d.ts +54 -59
  257. package/dist/types/components/Card.d.ts.map +1 -1
  258. package/dist/types/components/Checkbox.d.ts +1 -63
  259. package/dist/types/components/Checkbox.d.ts.map +1 -1
  260. package/dist/types/components/CheckboxCard.d.ts +3 -0
  261. package/dist/types/components/CheckboxCard.d.ts.map +1 -0
  262. package/dist/types/components/CheckboxCardGroup.d.ts +3 -0
  263. package/dist/types/components/CheckboxCardGroup.d.ts.map +1 -0
  264. package/dist/types/components/ChoiceList.d.ts +1 -42
  265. package/dist/types/components/ChoiceList.d.ts.map +1 -1
  266. package/dist/types/components/Code.d.ts +1 -26
  267. package/dist/types/components/Code.d.ts.map +1 -1
  268. package/dist/types/components/Collapsible.d.ts +1 -15
  269. package/dist/types/components/Collapsible.d.ts.map +1 -1
  270. package/dist/types/components/ColorField.d.ts +13 -34
  271. package/dist/types/components/ColorField.d.ts.map +1 -1
  272. package/dist/types/components/ContextualSaveBar.d.ts +13 -6
  273. package/dist/types/components/ContextualSaveBar.d.ts.map +1 -1
  274. package/dist/types/components/DatePicker.d.ts +1 -64
  275. package/dist/types/components/DatePicker.d.ts.map +1 -1
  276. package/dist/types/components/Disclosure.d.ts +1 -25
  277. package/dist/types/components/Disclosure.d.ts.map +1 -1
  278. package/dist/types/components/Divider.d.ts +1 -19
  279. package/dist/types/components/Divider.d.ts.map +1 -1
  280. package/dist/types/components/DropZone.d.ts +3 -62
  281. package/dist/types/components/DropZone.d.ts.map +1 -1
  282. package/dist/types/components/EmptyState.d.ts +1 -50
  283. package/dist/types/components/EmptyState.d.ts.map +1 -1
  284. package/dist/types/components/Filters.d.ts +13 -68
  285. package/dist/types/components/Filters.d.ts.map +1 -1
  286. package/dist/types/components/FooterHelp.d.ts +14 -4
  287. package/dist/types/components/FooterHelp.d.ts.map +1 -1
  288. package/dist/types/components/Form.d.ts +13 -2
  289. package/dist/types/components/Form.d.ts.map +1 -1
  290. package/dist/types/components/Frame.d.ts +15 -36
  291. package/dist/types/components/Frame.d.ts.map +1 -1
  292. package/dist/types/components/FrameSaveBar.d.ts +3 -6
  293. package/dist/types/components/FrameSaveBar.d.ts.map +1 -1
  294. package/dist/types/components/Grid.d.ts +5 -21
  295. package/dist/types/components/Grid.d.ts.map +1 -1
  296. package/dist/types/components/HorizontalStack.d.ts +1 -34
  297. package/dist/types/components/HorizontalStack.d.ts.map +1 -1
  298. package/dist/types/components/Icon.d.ts +1 -41
  299. package/dist/types/components/Icon.d.ts.map +1 -1
  300. package/dist/types/components/Image.d.ts +1 -43
  301. package/dist/types/components/Image.d.ts.map +1 -1
  302. package/dist/types/components/InlineError.d.ts +1 -20
  303. package/dist/types/components/InlineError.d.ts.map +1 -1
  304. package/dist/types/components/Label.d.ts +1 -26
  305. package/dist/types/components/Label.d.ts.map +1 -1
  306. package/dist/types/components/Layout.d.ts +24 -15
  307. package/dist/types/components/Layout.d.ts.map +1 -1
  308. package/dist/types/components/LayoutSection.d.ts +1 -19
  309. package/dist/types/components/LayoutSection.d.ts.map +1 -1
  310. package/dist/types/components/Link.d.ts +1 -37
  311. package/dist/types/components/Link.d.ts.map +1 -1
  312. package/dist/types/components/List.d.ts +5 -17
  313. package/dist/types/components/List.d.ts.map +1 -1
  314. package/dist/types/components/Listbox.d.ts +1 -32
  315. package/dist/types/components/Listbox.d.ts.map +1 -1
  316. package/dist/types/components/Loading.d.ts +14 -2
  317. package/dist/types/components/Loading.d.ts.map +1 -1
  318. package/dist/types/components/Modal.d.ts +26 -35
  319. package/dist/types/components/Modal.d.ts.map +1 -1
  320. package/dist/types/components/Navigation.d.ts +1 -25
  321. package/dist/types/components/Navigation.d.ts.map +1 -1
  322. package/dist/types/components/Page.d.ts +1 -57
  323. package/dist/types/components/Page.d.ts.map +1 -1
  324. package/dist/types/components/Pagination.d.ts +13 -3
  325. package/dist/types/components/Pagination.d.ts.map +1 -1
  326. package/dist/types/components/Pane.d.ts +55 -3
  327. package/dist/types/components/Pane.d.ts.map +1 -1
  328. package/dist/types/components/Popover.d.ts +5 -35
  329. package/dist/types/components/Popover.d.ts.map +1 -1
  330. package/dist/types/components/PopoverManager.d.ts.map +1 -1
  331. package/dist/types/components/ProgressBar.d.ts +1 -22
  332. package/dist/types/components/ProgressBar.d.ts.map +1 -1
  333. package/dist/types/components/RadioButton.d.ts +1 -37
  334. package/dist/types/components/RadioButton.d.ts.map +1 -1
  335. package/dist/types/components/RadioButtonCard.d.ts +1 -39
  336. package/dist/types/components/RadioButtonCard.d.ts.map +1 -1
  337. package/dist/types/components/RadioButtonCardGroup.d.ts +3 -0
  338. package/dist/types/components/RadioButtonCardGroup.d.ts.map +1 -0
  339. package/dist/types/components/RangeSlider.d.ts +1 -42
  340. package/dist/types/components/RangeSlider.d.ts.map +1 -1
  341. package/dist/types/components/ResourceList.d.ts +5 -30
  342. package/dist/types/components/ResourceList.d.ts.map +1 -1
  343. package/dist/types/components/Select.d.ts +1 -46
  344. package/dist/types/components/Select.d.ts.map +1 -1
  345. package/dist/types/components/SkeletonText.d.ts +1 -26
  346. package/dist/types/components/SkeletonText.d.ts.map +1 -1
  347. package/dist/types/components/Spinner.d.ts +1 -16
  348. package/dist/types/components/Spinner.d.ts.map +1 -1
  349. package/dist/types/components/Stack.d.ts +1 -47
  350. package/dist/types/components/Stack.d.ts.map +1 -1
  351. package/dist/types/components/TabNavigation.d.ts.map +1 -1
  352. package/dist/types/components/Table.d.ts +13 -58
  353. package/dist/types/components/Table.d.ts.map +1 -1
  354. package/dist/types/components/Tabs.d.ts +40 -34
  355. package/dist/types/components/Tabs.d.ts.map +1 -1
  356. package/dist/types/components/Tag.d.ts +1 -24
  357. package/dist/types/components/Tag.d.ts.map +1 -1
  358. package/dist/types/components/Text.d.ts +1 -30
  359. package/dist/types/components/Text.d.ts.map +1 -1
  360. package/dist/types/components/TextField.d.ts +1 -109
  361. package/dist/types/components/TextField.d.ts.map +1 -1
  362. package/dist/types/components/Thumbnail.d.ts +1 -16
  363. package/dist/types/components/Thumbnail.d.ts.map +1 -1
  364. package/dist/types/components/TimePicker.d.ts +28 -1
  365. package/dist/types/components/TimePicker.d.ts.map +1 -1
  366. package/dist/types/components/Tip.d.ts +1 -21
  367. package/dist/types/components/Tip.d.ts.map +1 -1
  368. package/dist/types/components/ToastNotification.d.ts +1 -34
  369. package/dist/types/components/ToastNotification.d.ts.map +1 -1
  370. package/dist/types/components/ToastProvider.d.ts +13 -3
  371. package/dist/types/components/ToastProvider.d.ts.map +1 -1
  372. package/dist/types/components/Tooltip.d.ts +1 -54
  373. package/dist/types/components/Tooltip.d.ts.map +1 -1
  374. package/dist/types/components/TopBar.d.ts +1 -19
  375. package/dist/types/components/TopBar.d.ts.map +1 -1
  376. package/dist/types/components/VerticalStack.d.ts +1 -25
  377. package/dist/types/components/VerticalStack.d.ts.map +1 -1
  378. package/dist/types/index.d.ts +6 -0
  379. package/dist/types/styles/Table.d.ts.map +1 -1
  380. package/index.css +76 -14
  381. package/package.json +15 -5
@@ -1,26 +1,3 @@
1
1
  export default Tag;
2
- /**
3
- * Renders a Tag component with optional interactive and removable features.
4
- *
5
- * @function Tag
6
- * @param {Object} props - The properties for the Tag component.
7
- * @param {React.ReactNode} props.children - The content to be displayed inside the Tag.
8
- * @param {boolean} [props.disabled=false] - Whether the tag is disabled.
9
- * @param {Function} [props.onClick] - The callback function to execute on tag click.
10
- * @param {Function} [props.onRemove] - The callback function to execute when the remove icon is clicked.
11
- * @param {string} [props.accessibilityLabel] - The accessibility label for the tag.
12
- * @param {string} [props.url] - The URL to open when the tag is clicked.
13
- * @param {string} [props.target="_self"] - Specifies where to open the URL.
14
- *
15
- * @returns {JSX.Element} The rendered Tag component.
16
- */
17
- declare function Tag(props?: {
18
- children: React.ReactNode;
19
- disabled?: boolean;
20
- onClick?: Function;
21
- onRemove?: Function;
22
- accessibilityLabel?: string;
23
- url?: string;
24
- target?: string;
25
- }): JSX.Element;
2
+ declare function Tag(props?: {}): import("react/jsx-runtime").JSX.Element;
26
3
  //# sourceMappingURL=Tag.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../../components/Tag.js"],"names":[],"mappings":";AAgFA;;;;;;;;;;;;;;GAcG;AAEH,6BAXG;IAA+B,QAAQ,EAA/B,KAAK,CAAC,SAAS;IACC,QAAQ,GAAxB,OAAO;IACU,OAAO;IACP,QAAQ;IACV,kBAAkB,GAAjC,MAAM;IACS,GAAG,GAAlB,MAAM;IACS,MAAM,GAArB,MAAM;CAEd,GAAU,GAAG,CAAC,OAAO,CA2EvB"}
1
+ {"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../../components/Tag.js"],"names":[],"mappings":";AA4GA,0EAiFC"}
@@ -1,32 +1,3 @@
1
1
  export default Text;
2
- /**
3
- * A text component that renders styled text based on provided props.
4
- *
5
- * @param {Object} props - Properties to customize the text component.
6
- * @param {'left' | 'center' | 'right' | 'end' | 'start'} [props.alignment] - Text alignment.
7
- * @param {'normal' | 'regular' | 'medium' | 'semibold' | 'bold'} [props.fontWeight] - Font weight.
8
- * @param {'default' | 'subdued' | 'critical' | 'success' | 'warning' | 'alternate' | 'link' | 'disabled'} [props.color] - Text color variant.
9
- * @param {boolean} [props.truncate] - Whether to truncate text with ellipsis.
10
- * @param {'headingXl' | 'headingLg' | 'headingMd' | 'headingSm' | 'headingXs' | 'bodyXl' | 'bodyLg' | 'bodyMd' | 'bodySm' | 'bodyXs'} [props.variant] - Text size and style variant.
11
- * @param {boolean} [props.visuallyHidden] - Visually hides text for accessibility.
12
- * @param {string} [props.className] - Additional CSS class names.
13
- * @param {string} [props.as] - Element type (e.g., 'p' or 'span').
14
- * @param {number} [props.clampLines] - Number of lines to clamp.
15
- * @param {boolean} [props.strike] - Whether to strike through the text.
16
- * @param {React.ReactNode} [props.children] - The content to be displayed within the text component. Defaults to an empty string.
17
- * @returns {JSX.Element} Rendered text component with applied styles.
18
- */
19
- declare function Text(props?: {
20
- alignment?: "left" | "center" | "right" | "end" | "start";
21
- fontWeight?: "normal" | "regular" | "medium" | "semibold" | "bold";
22
- color?: "default" | "subdued" | "critical" | "success" | "warning" | "alternate" | "link" | "disabled";
23
- truncate?: boolean;
24
- variant?: "headingXl" | "headingLg" | "headingMd" | "headingSm" | "headingXs" | "bodyXl" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs";
25
- visuallyHidden?: boolean;
26
- className?: string;
27
- as?: string;
28
- clampLines?: number;
29
- strike?: boolean;
30
- children?: React.ReactNode;
31
- }): JSX.Element;
2
+ declare function Text(props?: {}): import("react/jsx-runtime").JSX.Element;
32
3
  //# sourceMappingURL=Text.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/Text.js"],"names":[],"mappings":";AA8IA;;;;;;;;;;;;;;;;GAgBG;AAEH,8BAdG;IAA8D,SAAS,GAA/D,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,KAAK,GAAG,OAAO;IACiB,UAAU,GAAxE,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM;IACkD,KAAK,GAA5G,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,MAAM,GAAG,UAAU;IAC9E,QAAQ,GAAxB,OAAO;IAC4H,OAAO,GAA1I,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ;IAC1G,cAAc,GAA9B,OAAO;IACQ,SAAS,GAAxB,MAAM;IACS,EAAE,GAAjB,MAAM;IACS,UAAU,GAAzB,MAAM;IACU,MAAM,GAAtB,OAAO;IACiB,QAAQ,GAAhC,KAAK,CAAC,SAAS;CACvB,GAAU,GAAG,CAAC,OAAO,CAwCvB"}
1
+ {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../components/Text.js"],"names":[],"mappings":";AA8KA,2EAqCC"}
@@ -1,111 +1,3 @@
1
1
  export default TextField;
2
- /**
3
- * Renders a TextField component.
4
- *
5
- * @function TextField
6
- * @param {Object} props - The properties for the TextField component.
7
- * @param {string} [props.prefix] - Text content to display before the input.
8
- * @param {string} [props.suffix] - Text content to display after the input.
9
- * @param {string} [props.placeholder] - Placeholder text for the input.
10
- * @param {string} [props.value=''] - The current value of the input.
11
- * @param {string} [props.helpText] - Helper text to display below the input.
12
- * @param {string} [props.label] - Label text for the input field.
13
- * @param {string} [props.labelVariant='bodyMd'] - Visual variant for the label text.
14
- * @param {Object} [props.labelAction] - Action button to display next to the label.
15
- * @param {boolean} [props.labelHidden] - Whether to visually hide the label.
16
- * @param {boolean} [props.disabled=false] - Whether the input is disabled. Defaults to false.
17
- * @param {boolean} [props.clearButton] - Whether to show a clear button.
18
- * @param {boolean} [props.readOnly] - Whether the input is read-only.
19
- * @param {boolean} [props.autoFocus] - Whether to focus the input on mount.
20
- * @param {boolean} [props.focused] - Whether the input is focused.
21
- * @param {number} [props.multiline=1] - Number of lines for multiline input (1 for single line). Defaults to 1.
22
- * @param {boolean} [props.autoGrow=false] - Whether textarea should automatically grow with content. Only applies when multiline > 1.
23
- * @param {number} [props.maxHeight] - Maximum height in pixels before scrolling starts. Only applies when autoGrow is true.
24
- * @param {string} [props.error] - Error message to display.
25
- * @param {ReactNode} [props.connectedRight] - React element to connect to the right of the input.
26
- * @param {ReactNode} [props.connectedLeft] - React element to connect to the left of the input.
27
- * @param {string} [props.type='text'] - HTML input type. Defaults to 'text'.
28
- * @param {boolean} [props.subdued=false] - Whether to use subdued styling.
29
- * @param {string} [props.name] - Name attribute for the input.
30
- * @param {string} [props.id] - ID for the input element.
31
- * @param {string} [props.role] - ARIA role.
32
- * @param {number} [props.step] - Step value for number inputs.
33
- * @param {number} [props.largeStep=10] - Large step value when using shift + arrows.
34
- * @param {string} [props.autoComplete] - HTML autocomplete attribute.
35
- * @param {number} [props.max] - Maximum value for number inputs.
36
- * @param {number} [props.maxLength] - Maximum length for text input.
37
- * @param {number} [props.min] - Minimum value for number inputs.
38
- * @param {number} [props.minLength] - Minimum length for text input.
39
- * @param {string} [props.pattern] - Input validation pattern.
40
- * @param {boolean} [props.spellCheck] - Whether to enable spell checking.
41
- * @param {string} [props.ariaOwns] - ARIA owns attribute.
42
- * @param {string} [props.ariaControls] - ARIA controls attribute.
43
- * @param {boolean} [props.ariaExpanded] - ARIA expanded attribute.
44
- * @param {string} [props.ariaActiveDescendant] - ARIA active descendant attribute.
45
- * @param {string} [props.ariaAutocomplete] - ARIA autocomplete attribute.
46
- * @param {('left'|'center'|'right')} [props.align='left'] - Text alignment within the input.
47
- * @param {boolean} [props.requiredIndicator] - Whether to show a required field indicator.
48
- * @param {boolean} [props.selectTextOnFocus] - Whether to select all text when focused.
49
- * @param {Function} [props.onClearButtonClick] - Handler for clear button click.
50
- * @param {Function} [props.onChange] - Handler for value changes.
51
- * @param {Function} [props.onFocus] - Handler for input focus.
52
- * @param {Function} [props.onBlur] - Handler for input blur.
53
- * @param {Function} [props.onKeyDown] - Handler for key down.
54
- * @param {ReactNode} [props.tooltip] - Tooltip content for the label.
55
- * @param {string} [props.className] - Additional CSS classes.
56
- * @param {boolean} [props.disableFocusStyles=false] - Whether to disable focused styles when the input is focused.
57
- * @returns {JSX.Element} The rendered TextField component.
58
- */
59
- declare function TextField(props?: {
60
- prefix?: string;
61
- suffix?: string;
62
- placeholder?: string;
63
- value?: string;
64
- helpText?: string;
65
- label?: string;
66
- labelVariant?: string;
67
- labelAction?: any;
68
- labelHidden?: boolean;
69
- disabled?: boolean;
70
- clearButton?: boolean;
71
- readOnly?: boolean;
72
- autoFocus?: boolean;
73
- focused?: boolean;
74
- multiline?: number;
75
- autoGrow?: boolean;
76
- maxHeight?: number;
77
- error?: string;
78
- connectedRight?: ReactNode;
79
- connectedLeft?: ReactNode;
80
- type?: string;
81
- subdued?: boolean;
82
- name?: string;
83
- id?: string;
84
- role?: string;
85
- step?: number;
86
- largeStep?: number;
87
- autoComplete?: string;
88
- max?: number;
89
- maxLength?: number;
90
- min?: number;
91
- minLength?: number;
92
- pattern?: string;
93
- spellCheck?: boolean;
94
- ariaOwns?: string;
95
- ariaControls?: string;
96
- ariaExpanded?: boolean;
97
- ariaActiveDescendant?: string;
98
- ariaAutocomplete?: string;
99
- align?: ("left" | "center" | "right");
100
- requiredIndicator?: boolean;
101
- selectTextOnFocus?: boolean;
102
- onClearButtonClick?: Function;
103
- onChange?: Function;
104
- onFocus?: Function;
105
- onBlur?: Function;
106
- onKeyDown?: Function;
107
- tooltip?: ReactNode;
108
- className?: string;
109
- disableFocusStyles?: boolean;
110
- }): JSX.Element;
2
+ declare function TextField(props?: {}): import("react/jsx-runtime").JSX.Element;
111
3
  //# sourceMappingURL=TextField.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TextField.d.ts","sourceRoot":"","sources":["../../../components/TextField.js"],"names":[],"mappings":";AA4IA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,mCApDG;IAAuB,MAAM,GAArB,MAAM;IACS,MAAM,GAArB,MAAM;IACS,WAAW,GAA1B,MAAM;IACS,KAAK,GAApB,MAAM;IACS,QAAQ,GAAvB,MAAM;IACS,KAAK,GAApB,MAAM;IACS,YAAY,GAA3B,MAAM;IACS,WAAW;IACV,WAAW,GAA3B,OAAO;IACS,QAAQ,GAAxB,OAAO;IACS,WAAW,GAA3B,OAAO;IACS,QAAQ,GAAxB,OAAO;IACS,SAAS,GAAzB,OAAO;IACS,OAAO,GAAvB,OAAO;IACQ,SAAS,GAAxB,MAAM;IACU,QAAQ,GAAxB,OAAO;IACQ,SAAS,GAAxB,MAAM;IACS,KAAK,GAApB,MAAM;IACY,cAAc,GAAhC,SAAS;IACS,aAAa,GAA/B,SAAS;IACM,IAAI,GAAnB,MAAM;IACU,OAAO,GAAvB,OAAO;IACQ,IAAI,GAAnB,MAAM;IACS,EAAE,GAAjB,MAAM;IACS,IAAI,GAAnB,MAAM;IACS,IAAI,GAAnB,MAAM;IACS,SAAS,GAAxB,MAAM;IACS,YAAY,GAA3B,MAAM;IACS,GAAG,GAAlB,MAAM;IACS,SAAS,GAAxB,MAAM;IACS,GAAG,GAAlB,MAAM;IACS,SAAS,GAAxB,MAAM;IACS,OAAO,GAAtB,MAAM;IACU,UAAU,GAA1B,OAAO;IACQ,QAAQ,GAAvB,MAAM;IACS,YAAY,GAA3B,MAAM;IACU,YAAY,GAA5B,OAAO;IACQ,oBAAoB,GAAnC,MAAM;IACS,gBAAgB,GAA/B,MAAM;IAC4B,KAAK,GAAvC,CAAC,MAAM,GAAC,QAAQ,GAAC,OAAO,CAAC;IACT,iBAAiB,GAAjC,OAAO;IACS,iBAAiB,GAAjC,OAAO;IACU,kBAAkB;IAClB,QAAQ;IACR,OAAO;IACP,MAAM;IACN,SAAS;IACR,OAAO,GAAzB,SAAS;IACM,SAAS,GAAxB,MAAM;IACU,kBAAkB,GAAlC,OAAO;CACf,GAAU,GAAG,CAAC,OAAO,CAmYvB"}
1
+ {"version":3,"file":"TextField.d.ts","sourceRoot":"","sources":["../../../components/TextField.js"],"names":[],"mappings":";AAkPA,gFAyYC"}
@@ -1,18 +1,3 @@
1
1
  export default Thumbnail;
2
- /**
3
- * Thumbnail component to display an image or a placeholder icon.
4
- *
5
- * @param {Object} props - The component props.
6
- * @param {string} [props.src] - The image source URL.
7
- * @param {string} [props.alt] - The alternative text for the image.
8
- * @param {("small"|"medium"|"large"|number)} [props.size="medium"] - The size of the thumbnail. Can be "small", "medium", "large", or a numeric pixel value.
9
- * @param {boolean} [props.skeleton=false] - Whether to show a skeleton loader instead of the image.
10
- * @returns {JSX.Element} The rendered Thumbnail component.
11
- */
12
- declare function Thumbnail(props?: {
13
- src?: string;
14
- alt?: string;
15
- size?: ("small" | "medium" | "large" | number);
16
- skeleton?: boolean;
17
- }): JSX.Element;
2
+ declare function Thumbnail(props?: {}): import("react/jsx-runtime").JSX.Element;
18
3
  //# sourceMappingURL=Thumbnail.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Thumbnail.d.ts","sourceRoot":"","sources":["../../../components/Thumbnail.js"],"names":[],"mappings":";AAyBA;;;;;;;;;GASG;AACH,mCANG;IAAuB,GAAG,GAAlB,MAAM;IACS,GAAG,GAAlB,MAAM;IACoC,IAAI,GAA9C,CAAC,OAAO,GAAC,QAAQ,GAAC,OAAO,GAAC,MAAM,CAAC;IACjB,QAAQ,GAAxB,OAAO;CACf,GAAU,GAAG,CAAC,OAAO,CA0CvB"}
1
+ {"version":3,"file":"Thumbnail.d.ts","sourceRoot":"","sources":["../../../components/Thumbnail.js"],"names":[],"mappings":";AAkDA,gFAwCC"}
@@ -1,3 +1,30 @@
1
1
  export default TimePicker;
2
- declare function TimePicker(props?: {}): import("react/jsx-runtime").JSX.Element;
2
+ /**
3
+ * @component TimePicker
4
+ *
5
+ * @description A time selection input that wraps a TextField with type='time' for picking specific times.
6
+ *
7
+ * @usage
8
+ * - DO: Use for selecting specific times in scheduling or event forms.
9
+ * - DON'T: Use for date selection (use DatePicker).
10
+ *
11
+ * @accessibility
12
+ * - Wraps a TextField with type="time" for native keyboard and screen reader support; always provide a label.
13
+ *
14
+ * @alternative
15
+ * - If you need date selection, use `DatePicker`. If you need freeform text input, use `TextField`.
16
+ *
17
+ * @param {Object} [props={}] - The properties for the TimePicker component.
18
+ * @param {string} [props.label="Time:"] - The label text for the time input.
19
+ * @param {boolean} [props.labelInline=true] - Whether to display the label inline as a prefix.
20
+ * @param {string} [props.value] - The current time value (in HH:mm format).
21
+ * @param {Function} [props.onChange] - Callback function invoked when the time value changes.
22
+ * @returns {JSX.Element} The rendered TimePicker component.
23
+ */
24
+ declare function TimePicker(props?: {
25
+ label?: string;
26
+ labelInline?: boolean;
27
+ value?: string;
28
+ onChange?: Function;
29
+ }): JSX.Element;
3
30
  //# sourceMappingURL=TimePicker.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TimePicker.d.ts","sourceRoot":"","sources":["../../../components/TimePicker.js"],"names":[],"mappings":";AAEA,iFAUC"}
1
+ {"version":3,"file":"TimePicker.d.ts","sourceRoot":"","sources":["../../../components/TimePicker.js"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,oCANG;IAAuB,KAAK,GAApB,MAAM;IACU,WAAW,GAA3B,OAAO;IACQ,KAAK,GAApB,MAAM;IACW,QAAQ;CACjC,GAAU,GAAG,CAAC,OAAO,CAYvB"}
@@ -1,23 +1,3 @@
1
1
  export default Tip;
2
- /**
3
- * Tip component for displaying informational messages with optional dismiss functionality.
4
- *
5
- * @param {Object} props - The component props.
6
- * @param {"info" | "critical" | "success" | "warning" | "attention" | "highlight" | "neutral"} [props.status="info"] - The status type of the tip.
7
- * @param {Function} [props.onDismiss] - Function to call when the dismiss button is clicked.
8
- * @param {Function} [props.onClick] - Function to call when the tip is clicked.
9
- * @param {React.ReactNode} props.children - The content of the tip.
10
- * @param {React.ElementType} [props.icon] - Custom icon for the tip.
11
- * @param {"left" | "right" | "center"} [props.align="left"] - The alignment of the tip.
12
- * @returns {JSX.Element} The rendered Tip component.
13
- */
14
- declare function Tip(props?: {
15
- status?: "info" | "critical" | "success" | "warning" | "attention" | "highlight" | "neutral";
16
- onDismiss?: Function;
17
- onClick?: Function;
18
- children: React.ReactNode;
19
- icon?: React.ElementType;
20
- align?: "left" | "right" | "center";
21
- }): JSX.Element;
22
- import React from "react";
2
+ declare function Tip(props?: {}): import("react/jsx-runtime").JSX.Element;
23
3
  //# sourceMappingURL=Tip.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Tip.d.ts","sourceRoot":"","sources":["../../../components/Tip.js"],"names":[],"mappings":";AAmFA;;;;;;;;;;;GAWG;AACH,6BARG;IAAoG,MAAM,GAAlG,MAAM,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,WAAW,GAAG,SAAS;IAClE,SAAS;IACT,OAAO;IACD,QAAQ,EAA/B,KAAK,CAAC,SAAS;IACW,IAAI,GAA9B,KAAK,CAAC,WAAW;IACmB,KAAK,GAAzC,MAAM,GAAG,OAAO,GAAG,QAAQ;CACnC,GAAU,GAAG,CAAC,OAAO,CAsDvB;kBAnJ4D,OAAO"}
1
+ {"version":3,"file":"Tip.d.ts","sourceRoot":"","sources":["../../../components/Tip.js"],"names":[],"mappings":";AA+HA,0EAiGC"}
@@ -1,36 +1,3 @@
1
1
  export default ToastNotification;
2
- /**
3
- * ToastNotification component for displaying temporary notifications to users.
4
- * Automatically dismisses after the specified duration.
5
- *
6
- * @component
7
- * @param {Object} props - The component props.
8
- * @param {React.ReactNode} [props.prefix] - Optional prefix content (image, icon, or component) to display before the title.
9
- * @param {Object|Function} [props.icon] - Optional icon source (from @shopify/polaris-icons) to display as prefix. Used as fallback if prefix is not provided.
10
- * @param {string} props.title - The main title text of the toast.
11
- * @param {string} [props.subtitle] - Optional subtitle text displayed below the title.
12
- * @param {number} [props.duration=3000] - Duration in milliseconds before the toast auto-dismisses. Defaults to 2000ms (2 seconds).
13
- * @param {'topRight' | 'topLeft' | 'topCenter' | 'bottomRight' | 'bottomLeft' | 'bottomCenter'} [props.position='topRight'] - Position of the toast on the screen.
14
- * @param {Function} [props.onDismiss] - Callback function called when the toast is dismissed (either automatically or manually).
15
- * @param {Function} [props.onClick] - Callback function called when the toast is clicked. Makes the entire toast clickable with cursor-pointer.
16
- * @param {boolean} [props.dismissible=true] - Whether the toast can be manually dismissed via the close button.
17
- * @param {boolean} [props.fixed=true] - Whether to use fixed positioning. Set to false when used within ToastProvider.
18
- * @param {boolean} [props.isDismissing=false] - Whether the toast is in a dismissing state. Starts the exit animation immediately.
19
- * @param {string} [props.className] - Additional CSS classes to apply to the toast container.
20
- * @returns {JSX.Element|null} The rendered toast notification or null if dismissed.
21
- *
22
- * @example
23
- * <ToastNotification
24
- * prefix={<Icon source={TickMinor} color="success" />}
25
- * title="Support ticket updated"
26
- * subtitle="Your ticket has been resolved"
27
- * duration={3000}
28
- * position="topRight"
29
- * onDismiss={() => console.log('Toast dismissed')}
30
- * />
31
- */
32
- declare function ToastNotification(props?: {
33
- prefix?: React.ReactNode;
34
- icon?: any | Function;
35
- }): JSX.Element | null;
2
+ declare function ToastNotification(props?: {}): import("react/jsx-runtime").JSX.Element;
36
3
  //# sourceMappingURL=ToastNotification.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ToastNotification.d.ts","sourceRoot":"","sources":["../../../components/ToastNotification.js"],"names":[],"mappings":";AA0GA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,2CAxBG;IAAgC,MAAM,GAA9B,KAAK,CAAC,SAAS;IACS,IAAI,GAA5B,cAAe;CAA4C,GAWzD,GAAG,CAAC,OAAO,GAAC,IAAI,CAyL5B"}
1
+ {"version":3,"file":"ToastNotification.d.ts","sourceRoot":"","sources":["../../../components/ToastNotification.js"],"names":[],"mappings":";AAoJA,wFAuLC"}
@@ -1,10 +1,20 @@
1
1
  export function useToast(): any;
2
2
  export default ToastProvider;
3
3
  /**
4
- * ToastProvider component that manages multiple toast notifications.
5
- * Handles stacking and positioning of multiple toasts.
4
+ * @component ToastProvider
5
+ *
6
+ * @description A context provider that manages the toast notification queue and renders the ARIA live region for screen reader announcements.
7
+ *
8
+ * @usage
9
+ * - DO: Wrap your app or page to enable toast notifications via the `useToast` hook.
10
+ * - DON'T: Use multiple ToastProviders in the same component tree.
11
+ *
12
+ * @accessibility
13
+ * - ToastProvider manages the toast container's ARIA live region for screen reader announcements.
14
+ *
15
+ * @alternative
16
+ * - If you need persistent in-page messages, use `Banner` instead of the toast system.
6
17
  *
7
- * @component
8
18
  * @param {Object} props - The component props.
9
19
  * @param {React.ReactNode} props.children - Child components that can use the toast system.
10
20
  * @param {'topRight' | 'topLeft' | 'topCenter' | 'bottomRight' | 'bottomLeft' | 'bottomCenter'} [props.defaultPosition='topRight'] - Default position for toasts.
@@ -1 +1 @@
1
- {"version":3,"file":"ToastProvider.d.ts","sourceRoot":"","sources":["../../../components/ToastProvider.js"],"names":[],"mappings":"AA4BO,gCAaN;;AAED;;;;;;;;;;;GAWG;AACH,oFANG;IAA+B,QAAQ,EAA/B,KAAK,CAAC,SAAS;IAC8E,eAAe,GAA5G,UAAU,GAAG,SAAS,GAAG,WAAW,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc;IACrE,SAAS,GAAxB,MAAM;IACS,QAAQ,GAAvB,MAAM;CACd,GAAU,GAAG,CAAC,OAAO,CA6OvB"}
1
+ {"version":3,"file":"ToastProvider.d.ts","sourceRoot":"","sources":["../../../components/ToastProvider.js"],"names":[],"mappings":"AA4BO,gCAaN;;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,oFANG;IAA+B,QAAQ,EAA/B,KAAK,CAAC,SAAS;IAC8E,eAAe,GAA5G,UAAU,GAAG,SAAS,GAAG,WAAW,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc;IACrE,SAAS,GAAxB,MAAM;IACS,QAAQ,GAAvB,MAAM;CACd,GAAU,GAAG,CAAC,OAAO,CA6OvB"}
@@ -29,58 +29,5 @@ export type TooltipContentObject = {
29
29
  * @property {string} [heading] - Optional heading text for the tooltip
30
30
  * @property {TooltipContentItem[]} content - Array of content items to display in the tooltip
31
31
  */
32
- /**
33
- * Tooltip component for displaying contextual information when hovering over an element.
34
- * The tooltip can be positioned above or below the activator with customizable alignment.
35
- * It includes optional underline styling and supports dynamic z-index overrides.
36
- *
37
- * @component
38
- *
39
- * @param {Object} props - The props for the Tooltip component.
40
- * @param {React.ReactNode} props.children - The content that triggers the tooltip on hover.
41
- * @param {React.ReactNode | TooltipContentObject} props.content - The content displayed inside the tooltip. Can be either a React node or a structured content object.
42
- * @param {boolean} [props.dismissOnMouseOut=true] - Whether the tooltip should be dismissed when the mouse leaves the activator.
43
- * @param {boolean} [props.dismissOnActivatorClick=true] - Whether the tooltip should be dismissed when clicking the activator.
44
- * @param {"above" | "below"} [props.preferredPosition="below"] - The preferred position of the tooltip relative to the activator.
45
- * @param {"center" | "left" | "right"} [props.alignment="center"] - The alignment of the tooltip content.
46
- * @param {number} [props.hoverDelay=0] - The delay (in milliseconds) before showing the tooltip on hover.
47
- * @param {boolean} [props.hasUnderline=false] - Whether the activator should have an underline.
48
- * @param {number | boolean} [props.zIndexOverride] - Override for the z-index of the tooltip.
49
- * @param {"inline" | "inline-block" | "block"} [props.display="inline-block"] - The display property of the tooltip container.
50
- * @param {string} [props.className] - Additional class name for the tooltip container.
51
- *
52
- * @returns {React.ReactElement} The rendered Tooltip component.
53
- *
54
- * @example
55
- * // Basic usage with string content
56
- * <Tooltip content="This is a tooltip">
57
- * <button>Hover me</button>
58
- * </Tooltip>
59
- *
60
- * @example
61
- * // Using structured content object
62
- * <Tooltip content={{
63
- * heading: "Important Information",
64
- * content: [
65
- * { type: "paragraph", content: "This is a paragraph." },
66
- * { type: "list", content: ["Item 1", "Item 2", "Item 3"] }
67
- * ]
68
- * }}>
69
- * <span>Hover for structured content</span>
70
- * </Tooltip>
71
- */
72
- declare function Tooltip(props?: {
73
- children: React.ReactNode;
74
- content: React.ReactNode | TooltipContentObject;
75
- dismissOnMouseOut?: boolean;
76
- dismissOnActivatorClick?: boolean;
77
- preferredPosition?: "above" | "below";
78
- alignment?: "center" | "left" | "right";
79
- hoverDelay?: number;
80
- hasUnderline?: boolean;
81
- zIndexOverride?: number | boolean;
82
- display?: "inline" | "inline-block" | "block";
83
- className?: string;
84
- }): React.ReactElement;
85
- import React from "react";
32
+ declare function Tooltip(props?: {}): import("react/jsx-runtime").JSX.Element;
86
33
  //# sourceMappingURL=Tooltip.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../components/Tooltip.js"],"names":[],"mappings":";;;;;UAmFc,WAAW,GAAG,SAAS,GAAG,MAAM;;;;aAChC,MAAM,GAAG,MAAM,EAAE;;;;;;cAKjB,MAAM;;;;aACN,kBAAkB,EAAE;;AATlC;;;;GAIG;AAEH;;;;GAIG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AAEH,iCAjCG;IAA+B,QAAQ,EAA/B,KAAK,CAAC,SAAS;IAC+B,OAAO,EAArD,KAAK,CAAC,SAAS,GAAG,oBAAoB;IACtB,iBAAiB,GAAjC,OAAO;IACS,uBAAuB,GAAvC,OAAO;IACmB,iBAAiB,GAA3C,OAAO,GAAG,OAAO;IACmB,SAAS,GAA7C,QAAQ,GAAG,MAAM,GAAG,OAAO;IACZ,UAAU,GAAzB,MAAM;IACU,YAAY,GAA5B,OAAO;IACkB,cAAc,GAAvC,MAAM,GAAG,OAAO;IAC4B,OAAO,GAAnD,QAAQ,GAAG,cAAc,GAAG,OAAO;IACpB,SAAS,GAAxB,MAAM;CAEd,GAAU,KAAK,CAAC,YAAY,CA4M9B;kBA3TkD,OAAO"}
1
+ {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../components/Tooltip.js"],"names":[],"mappings":";;;;;UAsIc,WAAW,GAAG,SAAS,GAAG,MAAM;;;;aAChC,MAAM,GAAG,MAAM,EAAE;;;;;;cAKjB,MAAM;;;;aACN,kBAAkB,EAAE;;AATlC;;;;GAIG;AAEH;;;;GAIG;AAEH,8EAuLC"}
@@ -1,23 +1,5 @@
1
1
  export default TopBar;
2
- /**
3
- * TopBar component that displays a top navigation bar with a search trigger and a user menu.
4
- *
5
- * @component
6
- * @param {Object} props - The component props.
7
- * @param {React.ReactNode} [props.userMenu] - The user menu element.
8
- * @param {React.ReactNode} [props.searchTrigger] - The search trigger element.
9
- * @param {boolean} [props.hasNavigation] - Whether the navigation is present.
10
- * @param {boolean} [props.alwaysShowUserMenuInTopBar] - Whether to always show the user menu in the top bar.
11
- * @param {React.ReactNode} [props.headerAccessory] - Accessory to render in the header.
12
- * @returns {JSX.Element} The rendered TopBar component.
13
- */
14
- declare function TopBar(props?: {
15
- userMenu?: React.ReactNode;
16
- searchTrigger?: React.ReactNode;
17
- hasNavigation?: boolean;
18
- alwaysShowUserMenuInTopBar?: boolean;
19
- headerAccessory?: React.ReactNode;
20
- }): JSX.Element;
2
+ declare function TopBar(props?: {}): import("react/jsx-runtime").JSX.Element;
21
3
  declare namespace TopBar {
22
4
  export { UserMenu };
23
5
  }
@@ -1 +1 @@
1
- {"version":3,"file":"TopBar.d.ts","sourceRoot":"","sources":["../../../components/TopBar.js"],"names":[],"mappings":";AAeA;;;;;;;;;;;GAWG;AACH,gCAPG;IAAgC,QAAQ,GAAhC,KAAK,CAAC,SAAS;IACS,aAAa,GAArC,KAAK,CAAC,SAAS;IACC,aAAa,GAA7B,OAAO;IACS,0BAA0B,GAA1C,OAAO;IACiB,eAAe,GAAvC,KAAK,CAAC,SAAS;CACvB,GAAU,GAAG,CAAC,OAAO,CAwCvB;;;;AAYD;;;;;;;;;;;GAWG;AACH,kCAPG;IAAuB,KAAK,GAApB,MAAM;IACS,QAAQ,GAAvB,MAAM;IACkB,KAAK,GAA7B,KAAK,CAAC,SAAS;IACD,eAAe;IACf,cAAc;CACpC,GAAU,GAAG,CAAC,OAAO,CAwDvB"}
1
+ {"version":3,"file":"TopBar.d.ts","sourceRoot":"","sources":["../../../components/TopBar.js"],"names":[],"mappings":";AAuCA,6EAsCC;;;;AAYD;;;;;;;;;;;GAWG;AACH,kCAPG;IAAuB,KAAK,GAApB,MAAM;IACS,QAAQ,GAAvB,MAAM;IACkB,KAAK,GAA7B,KAAK,CAAC,SAAS;IACD,eAAe;IACf,cAAc;CACpC,GAAU,GAAG,CAAC,OAAO,CAsEvB"}
@@ -1,27 +1,3 @@
1
1
  export default VerticalStack;
2
- /**
3
- * A flexible vertical stack component for consistent layout styling.
4
- *
5
- * @param {object} props - The properties for the VerticalStack component.
6
- * @param {string} [props.as="div"] - The HTML tag or component to render as the root element.
7
- * @param {React.ReactNode} [props.children] - The child elements to render within the stack.
8
- * @param {string} [props.align] - Vertical alignment of the stack content. Options: "start", "end", "center", "spaceBetween".
9
- * @param {string} [props.inlineAlign] - Horizontal alignment of the stack content. Options: "start", "end", "center", "spaceBetween".
10
- * @param {('none'|'xs'|'sm'|'md'|'lg'|'0'|'px'|'0.5'|'1'|'2'|'3'|'4'|'5'|'6'|'8'|'10')} [props.gap="none"] - Spacing between child elements. Semantic options: "none", "xs" (1), "sm" (2), "md" (4), "lg" (8). Numeric options: "0", "px", "0.5", "1", "2", "3", "4", "5", "6", "8", "10".
11
- * @param {string} [props.id] - The id for the root element of the stack.
12
- * @param {string} [props.className] - Additional CSS classes to append to the generated styles.
13
- * @param {object} [props.restProps] - Any additional properties to spread onto the root element.
14
- *
15
- * @returns {JSX.Element} The rendered `VerticalStack` component.
16
- */
17
- declare function VerticalStack(props?: {
18
- as?: string;
19
- children?: React.ReactNode;
20
- align?: string;
21
- inlineAlign?: string;
22
- gap?: ("none" | "xs" | "sm" | "md" | "lg" | "0" | "px" | "0.5" | "1" | "2" | "3" | "4" | "5" | "6" | "8" | "10");
23
- id?: string;
24
- className?: string;
25
- restProps?: object;
26
- }): JSX.Element;
2
+ declare function VerticalStack(props?: {}): import("react/jsx-runtime").JSX.Element;
27
3
  //# sourceMappingURL=VerticalStack.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"VerticalStack.d.ts","sourceRoot":"","sources":["../../../components/VerticalStack.js"],"names":[],"mappings":";AAwCA;;;;;;;;;;;;;;GAcG;AAEH,uCAZG;IAAuB,EAAE,GAAjB,MAAM;IACkB,QAAQ,GAAhC,KAAK,CAAC,SAAS;IACA,KAAK,GAApB,MAAM;IACS,WAAW,GAA1B,MAAM;IAC+E,GAAG,GAAxF,CAAC,MAAM,GAAC,IAAI,GAAC,IAAI,GAAC,IAAI,GAAC,IAAI,GAAC,GAAG,GAAC,IAAI,GAAC,KAAK,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,GAAG,GAAC,IAAI,CAAC;IAC7D,EAAE,GAAjB,MAAM;IACS,SAAS,GAAxB,MAAM;IACS,SAAS,GAAxB,MAAM;CAEd,GAAU,GAAG,CAAC,OAAO,CAiCvB"}
1
+ {"version":3,"file":"VerticalStack.d.ts","sourceRoot":"","sources":["../../../components/VerticalStack.js"],"names":[],"mappings":";AAuEA,oFA8BC"}
@@ -1,5 +1,6 @@
1
1
  export { default as ActionList } from "./components/ActionList";
2
2
  export { default as AnnouncementBar } from "./components/AnnouncementBar";
3
+ export { default as AnnouncementCard } from "./components/AnnouncementCard";
3
4
  export { default as Autocomplete } from "./components/Autocomplete";
4
5
  export { default as Badge } from "./components/Badge";
5
6
  export { default as Banner } from "./components/Banner";
@@ -8,6 +9,8 @@ export { default as Button } from "./components/Button";
8
9
  export { default as ButtonGroup } from "./components/ButtonGroup";
9
10
  export { default as Card } from "./components/Card";
10
11
  export { default as Checkbox } from "./components/Checkbox";
12
+ export { default as CheckboxCard } from "./components/CheckboxCard";
13
+ export { default as CheckboxCardGroup } from "./components/CheckboxCardGroup";
11
14
  export { default as ChoiceList } from "./components/ChoiceList";
12
15
  export { default as Code } from "./components/Code";
13
16
  export { default as Collapsible } from "./components/Collapsible";
@@ -43,6 +46,8 @@ export { default as Pane } from "./components/Pane";
43
46
  export { default as Popover } from "./components/Popover";
44
47
  export { default as ProgressBar } from "./components/ProgressBar";
45
48
  export { default as RadioButton } from "./components/RadioButton";
49
+ export { default as RadioButtonCard } from "./components/RadioButtonCard";
50
+ export { default as RadioButtonCardGroup } from "./components/RadioButtonCardGroup";
46
51
  export { default as RangeSlider } from "./components/RangeSlider";
47
52
  export { default as ResourceList } from "./components/ResourceList";
48
53
  export { default as Select } from "./components/Select";
@@ -50,6 +55,7 @@ export { default as SkeletonText } from "./components/SkeletonText";
50
55
  export { default as Spinner } from "./components/Spinner";
51
56
  export { default as Stack } from "./components/Stack";
52
57
  export { default as Table } from "./components/Table";
58
+ export { default as TabNavigation } from "./components/TabNavigation";
53
59
  export { default as Tabs } from "./components/Tabs";
54
60
  export { default as Tag } from "./components/Tag";
55
61
  export { default as Text } from "./components/Text";
@@ -1 +1 @@
1
- {"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../styles/Table.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAUG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCASG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAsBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAWG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAsCG;AAoBH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgCG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCA8CG;AAjGH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgBG;AAmFH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAmBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAQG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAuCG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAWG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgBG;AAEH;;;;;;6jBAEG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCA2CG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCA2BG"}
1
+ {"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../styles/Table.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAUG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCASG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAsBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAWG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAsCG;AAoBH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgCG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCA8CG;AAjGH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgBG;AAmFH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAmBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAQG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAuCG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAWG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAgBG;AAEH;;;;;;6jBAEG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCA0CG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCA2BG"}