@algolia/satellite 1.0.0-beta.16 → 1.0.0-beta.161

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 (1143) hide show
  1. package/README.md +154 -8
  2. package/cjs/AnnouncementBadge/AnnouncementBadge.d.ts +21 -0
  3. package/cjs/AnnouncementBadge/AnnouncementBadge.js +49 -0
  4. package/cjs/AnnouncementBadge/index.d.ts +2 -0
  5. package/cjs/AnnouncementBadge/index.js +27 -0
  6. package/cjs/AutoComplete/AutoComplete.d.ts +66 -0
  7. package/cjs/AutoComplete/AutoComplete.js +593 -0
  8. package/cjs/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
  9. package/cjs/AutoComplete/AutoComplete.tailwind.js +96 -0
  10. package/cjs/AutoComplete/components/AutoCompleteEmptyState.d.ts +13 -0
  11. package/cjs/AutoComplete/components/AutoCompleteEmptyState.js +37 -0
  12. package/cjs/AutoComplete/components/DefaultOptionItem.d.ts +7 -0
  13. package/cjs/AutoComplete/components/DefaultOptionItem.js +37 -0
  14. package/cjs/AutoComplete/index.d.ts +5 -0
  15. package/cjs/AutoComplete/index.js +63 -0
  16. package/cjs/AutoComplete/types.d.ts +85 -0
  17. package/cjs/AutoComplete/types.js +5 -0
  18. package/cjs/AutoComplete/utils.d.ts +5 -0
  19. package/{components → cjs}/AutoComplete/utils.js +24 -7
  20. package/cjs/Avatars/ApplicationAvatar.d.ts +13 -0
  21. package/cjs/Avatars/ApplicationAvatar.js +36 -0
  22. package/cjs/Avatars/UserAvatar.d.ts +20 -0
  23. package/cjs/Avatars/UserAvatar.js +57 -0
  24. package/cjs/Avatars/index.d.ts +3 -0
  25. package/cjs/Avatars/index.js +39 -0
  26. package/cjs/Avatars/types.d.ts +17 -0
  27. package/cjs/Avatars/types.js +5 -0
  28. package/cjs/Avatars/utils.d.ts +6 -0
  29. package/cjs/Avatars/utils.js +59 -0
  30. package/cjs/Badge/Badge.d.ts +35 -0
  31. package/cjs/Badge/Badge.js +77 -0
  32. package/cjs/Badge/index.d.ts +2 -0
  33. package/cjs/Badge/index.js +27 -0
  34. package/cjs/Banners/Alert/Alert.d.ts +78 -0
  35. package/cjs/Banners/Alert/Alert.js +140 -0
  36. package/cjs/Banners/Alert/index.js +27 -0
  37. package/cjs/Banners/BigBertha/BigBertha.d.ts +41 -0
  38. package/cjs/Banners/BigBertha/BigBertha.js +63 -0
  39. package/cjs/Banners/BigBertha/index.d.ts +2 -0
  40. package/cjs/Banners/BigBertha/index.js +27 -0
  41. package/cjs/Banners/Promote/Promote.d.ts +57 -0
  42. package/cjs/Banners/Promote/Promote.js +111 -0
  43. package/cjs/Banners/Promote/index.d.ts +2 -0
  44. package/cjs/Banners/Promote/index.js +27 -0
  45. package/cjs/Banners/index.d.ts +3 -0
  46. package/cjs/Banners/index.js +38 -0
  47. package/cjs/Button/Button.d.ts +19 -0
  48. package/cjs/Button/Button.js +37 -0
  49. package/cjs/Button/Button.tailwind.d.ts +5 -0
  50. package/cjs/Button/Button.tailwind.js +153 -0
  51. package/cjs/Button/ButtonGroup.d.ts +18 -0
  52. package/cjs/Button/ButtonGroup.js +30 -0
  53. package/cjs/Button/IconButton.d.ts +5 -0
  54. package/cjs/Button/IconButton.js +23 -0
  55. package/cjs/Button/PolymorphicButton.d.ts +11 -0
  56. package/cjs/Button/PolymorphicButton.js +76 -0
  57. package/cjs/Button/PolymorphicIconButton.d.ts +24 -0
  58. package/cjs/Button/PolymorphicIconButton.js +84 -0
  59. package/cjs/Button/index.d.ts +5 -0
  60. package/cjs/Button/index.js +67 -0
  61. package/cjs/Button/styles.d.ts +5 -0
  62. package/cjs/Button/styles.js +38 -0
  63. package/cjs/Button/types.d.ts +32 -0
  64. package/cjs/Button/types.js +11 -0
  65. package/cjs/Card/Card.d.ts +32 -0
  66. package/cjs/Card/Card.js +46 -0
  67. package/cjs/Card/Card.tailwind.d.ts +5 -0
  68. package/cjs/Card/Card.tailwind.js +36 -0
  69. package/cjs/Card/components/CardHeader.d.ts +6 -0
  70. package/cjs/Card/components/CardHeader.js +29 -0
  71. package/cjs/Card/components/CardTitle.d.ts +6 -0
  72. package/cjs/Card/components/CardTitle.js +29 -0
  73. package/cjs/Card/index.d.ts +4 -0
  74. package/cjs/Card/index.js +51 -0
  75. package/cjs/Checkbox/Checkbox.d.ts +24 -0
  76. package/cjs/Checkbox/Checkbox.js +98 -0
  77. package/cjs/Checkbox/Checkbox.tailwind.d.ts +5 -0
  78. package/cjs/Checkbox/Checkbox.tailwind.js +65 -0
  79. package/cjs/Checkbox/index.js +27 -0
  80. package/cjs/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
  81. package/cjs/ClickAwayContainer/ClickAwayContainer.js +87 -0
  82. package/cjs/ClickAwayContainer/index.d.ts +1 -0
  83. package/cjs/ClickAwayContainer/index.js +16 -0
  84. package/cjs/DatePicker/DatePicker/DatePicker.d.ts +34 -0
  85. package/cjs/DatePicker/DatePicker/DatePicker.js +165 -0
  86. package/cjs/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
  87. package/cjs/DatePicker/DatePicker/datePickerReducer.js +53 -0
  88. package/cjs/DatePicker/DatePicker/index.d.ts +3 -0
  89. package/cjs/DatePicker/DatePicker/index.js +39 -0
  90. package/cjs/DatePicker/DatePicker.tailwind.d.ts +5 -0
  91. package/cjs/DatePicker/DatePicker.tailwind.js +184 -0
  92. package/cjs/DatePicker/DateRangePicker/DateRangePicker.d.ts +34 -0
  93. package/cjs/DatePicker/DateRangePicker/DateRangePicker.js +258 -0
  94. package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +14 -0
  95. package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.js +39 -0
  96. package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
  97. package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.js +102 -0
  98. package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
  99. package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +18 -0
  100. package/cjs/DatePicker/DateRangePicker/index.d.ts +4 -0
  101. package/cjs/DatePicker/DateRangePicker/index.js +51 -0
  102. package/cjs/DatePicker/components/Calendar.d.ts +17 -0
  103. package/cjs/DatePicker/components/Calendar.js +56 -0
  104. package/cjs/DatePicker/components/Display.d.ts +10 -0
  105. package/cjs/DatePicker/components/Display.js +25 -0
  106. package/cjs/DatePicker/components/Footer.d.ts +6 -0
  107. package/cjs/DatePicker/components/Footer.js +20 -0
  108. package/cjs/DatePicker/components/FooterActions.d.ts +12 -0
  109. package/cjs/DatePicker/components/FooterActions.js +33 -0
  110. package/cjs/DatePicker/components/Modal.d.ts +16 -0
  111. package/cjs/DatePicker/components/Modal.js +69 -0
  112. package/cjs/DatePicker/components/NavBar.d.ts +10 -0
  113. package/cjs/DatePicker/components/NavBar.js +124 -0
  114. package/cjs/DatePicker/components/SidePanel.d.ts +6 -0
  115. package/cjs/DatePicker/components/SidePanel.js +23 -0
  116. package/cjs/DatePicker/components/index.d.ts +12 -0
  117. package/cjs/DatePicker/components/index.js +48 -0
  118. package/cjs/DatePicker/index.d.ts +4 -0
  119. package/cjs/DatePicker/index.js +53 -0
  120. package/cjs/DatePicker/types.d.ts +26 -0
  121. package/cjs/DatePicker/types.js +5 -0
  122. package/cjs/DatePicker/utils.d.ts +3 -0
  123. package/cjs/DatePicker/utils.js +21 -0
  124. package/cjs/Dropdown/Dropdown.d.ts +64 -0
  125. package/cjs/Dropdown/Dropdown.js +136 -0
  126. package/cjs/Dropdown/DropdownButton.d.ts +11 -0
  127. package/cjs/Dropdown/DropdownButton.js +49 -0
  128. package/cjs/Dropdown/DropdownContext.d.ts +7 -0
  129. package/cjs/Dropdown/DropdownContext.js +19 -0
  130. package/cjs/Dropdown/components/DropdownButtonItem.d.ts +19 -0
  131. package/cjs/Dropdown/components/DropdownButtonItem.js +45 -0
  132. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
  133. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +61 -0
  134. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +7 -0
  135. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +21 -0
  136. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +7 -0
  137. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +17 -0
  138. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +9 -0
  139. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +37 -0
  140. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +9 -0
  141. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +34 -0
  142. package/cjs/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
  143. package/cjs/Dropdown/components/DropdownCollapsibleItem/index.js +63 -0
  144. package/cjs/Dropdown/components/DropdownDivider.d.ts +3 -0
  145. package/cjs/Dropdown/components/DropdownDivider.js +19 -0
  146. package/cjs/Dropdown/components/DropdownFooterItem.d.ts +7 -0
  147. package/cjs/Dropdown/components/DropdownFooterItem.js +31 -0
  148. package/cjs/Dropdown/components/DropdownLinkItem.d.ts +15 -0
  149. package/cjs/Dropdown/components/DropdownLinkItem.js +48 -0
  150. package/cjs/Dropdown/components/DropdownRadioItem.d.ts +13 -0
  151. package/cjs/Dropdown/components/DropdownRadioItem.js +45 -0
  152. package/cjs/Dropdown/components/DropdownTitle.d.ts +6 -0
  153. package/cjs/Dropdown/components/DropdownTitle.js +27 -0
  154. package/cjs/Dropdown/components/DropdownToggleItem.d.ts +16 -0
  155. package/cjs/Dropdown/components/DropdownToggleItem.js +47 -0
  156. package/cjs/Dropdown/index.d.ts +13 -0
  157. package/cjs/Dropdown/index.js +159 -0
  158. package/cjs/Dropdown/useDropdownItemProps.d.ts +21 -0
  159. package/cjs/Dropdown/useDropdownItemProps.js +40 -0
  160. package/cjs/Dropzone/Dropzone.d.ts +20 -0
  161. package/cjs/Dropzone/Dropzone.js +159 -0
  162. package/cjs/Dropzone/index.d.ts +2 -0
  163. package/cjs/Dropzone/index.js +27 -0
  164. package/cjs/EmptyState/EmptyState.d.ts +28 -0
  165. package/cjs/EmptyState/EmptyState.js +125 -0
  166. package/cjs/EmptyState/EmptyState.tailwind.d.ts +5 -0
  167. package/cjs/EmptyState/EmptyState.tailwind.js +15 -0
  168. package/cjs/EmptyState/index.d.ts +3 -0
  169. package/cjs/EmptyState/index.js +39 -0
  170. package/cjs/EmptyState/types.d.ts +65 -0
  171. package/cjs/EmptyState/types.js +5 -0
  172. package/cjs/Field/Field.d.ts +54 -0
  173. package/cjs/Field/Field.js +96 -0
  174. package/cjs/Field/FieldStateContext.d.ts +12 -0
  175. package/cjs/Field/FieldStateContext.js +15 -0
  176. package/cjs/Field/index.d.ts +4 -0
  177. package/cjs/Field/index.js +51 -0
  178. package/cjs/Field/useFieldState.d.ts +2 -0
  179. package/cjs/Field/useFieldState.js +17 -0
  180. package/cjs/Flag/Flag.d.ts +6 -0
  181. package/cjs/Flag/Flag.js +118 -0
  182. package/cjs/Flag/Flag.tailwind.d.ts +5 -0
  183. package/cjs/Flag/Flag.tailwind.js +34 -0
  184. package/cjs/Flag/Flags.d.ts +48 -0
  185. package/cjs/Flag/Flags.js +91 -0
  186. package/cjs/Flag/index.d.ts +4 -0
  187. package/cjs/Flag/index.js +51 -0
  188. package/cjs/Flag/types.d.ts +27 -0
  189. package/cjs/Flag/types.js +5 -0
  190. package/cjs/FlexGrid/FlexGrid.d.ts +51 -0
  191. package/cjs/FlexGrid/FlexGrid.js +70 -0
  192. package/cjs/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
  193. package/cjs/FlexGrid/FlexGrid.tailwind.js +71 -0
  194. package/cjs/FlexGrid/index.d.ts +2 -0
  195. package/cjs/FlexGrid/index.js +27 -0
  196. package/cjs/HelpUnderline/HelpUnderline.d.ts +11 -0
  197. package/cjs/HelpUnderline/HelpUnderline.js +37 -0
  198. package/cjs/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
  199. package/cjs/HelpUnderline/HelpUnderline.tailwind.js +21 -0
  200. package/cjs/HelpUnderline/index.js +27 -0
  201. package/cjs/Input/Input.d.ts +27 -0
  202. package/cjs/Input/Input.js +213 -0
  203. package/cjs/Input/Input.tailwind.d.ts +5 -0
  204. package/cjs/Input/Input.tailwind.js +123 -0
  205. package/cjs/Input/index.js +27 -0
  206. package/cjs/Insert/Insert.d.ts +45 -0
  207. package/cjs/Insert/Insert.js +79 -0
  208. package/cjs/Insert/index.d.ts +2 -0
  209. package/cjs/Insert/index.js +27 -0
  210. package/cjs/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
  211. package/cjs/InstantSearch/InstantSearch.tailwind.js +376 -0
  212. package/cjs/KeyboardKey/KeyboardKey.d.ts +7 -0
  213. package/cjs/KeyboardKey/KeyboardKey.js +37 -0
  214. package/cjs/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
  215. package/cjs/KeyboardKey/KeyboardKey.tailwind.js +29 -0
  216. package/cjs/KeyboardKey/index.d.ts +2 -0
  217. package/{components/Alert → cjs/KeyboardKey}/index.js +5 -8
  218. package/cjs/Link/BaseLink.d.ts +8 -0
  219. package/cjs/Link/BaseLink.js +31 -0
  220. package/cjs/Link/ButtonLink.d.ts +9 -0
  221. package/cjs/Link/ButtonLink.js +39 -0
  222. package/cjs/Link/IconButtonLink.d.ts +9 -0
  223. package/cjs/Link/IconButtonLink.js +33 -0
  224. package/cjs/Link/Link.d.ts +13 -0
  225. package/cjs/Link/Link.js +52 -0
  226. package/cjs/Link/index.d.ts +5 -0
  227. package/cjs/Link/index.js +63 -0
  228. package/cjs/Medallion/Medallion.d.ts +11 -0
  229. package/cjs/Medallion/Medallion.js +41 -0
  230. package/cjs/Medallion/Medallion.tailwind.d.ts +5 -0
  231. package/cjs/Medallion/Medallion.tailwind.js +31 -0
  232. package/cjs/Medallion/index.d.ts +3 -0
  233. package/cjs/Medallion/index.js +39 -0
  234. package/cjs/Medallion/types.d.ts +2 -0
  235. package/cjs/Medallion/types.js +5 -0
  236. package/cjs/Modal/Modal.d.ts +54 -0
  237. package/cjs/Modal/Modal.js +150 -0
  238. package/cjs/Modal/Modal.tailwind.d.ts +5 -0
  239. package/cjs/Modal/Modal.tailwind.js +81 -0
  240. package/cjs/Modal/components/ModalFooter.d.ts +6 -0
  241. package/cjs/Modal/components/ModalFooter.js +34 -0
  242. package/cjs/Modal/components/ModalSection.d.ts +10 -0
  243. package/cjs/Modal/components/ModalSection.js +25 -0
  244. package/cjs/Modal/index.d.ts +4 -0
  245. package/cjs/Modal/index.js +51 -0
  246. package/cjs/Pagination/CompactPagination/CompactPagination.d.ts +31 -0
  247. package/cjs/Pagination/CompactPagination/CompactPagination.js +86 -0
  248. package/cjs/Pagination/CompactPagination/index.d.ts +2 -0
  249. package/cjs/Pagination/CompactPagination/index.js +27 -0
  250. package/cjs/Pagination/DotPagination/DotPagination.d.ts +15 -0
  251. package/cjs/Pagination/DotPagination/DotPagination.js +48 -0
  252. package/cjs/Pagination/DotPagination/index.d.ts +2 -0
  253. package/cjs/Pagination/DotPagination/index.js +27 -0
  254. package/cjs/Pagination/Pagination/Pagination.d.ts +22 -0
  255. package/cjs/Pagination/Pagination/Pagination.js +124 -0
  256. package/cjs/Pagination/Pagination/index.js +27 -0
  257. package/cjs/Pagination/index.d.ts +4 -0
  258. package/cjs/Pagination/index.js +51 -0
  259. package/cjs/ProgressBar/ProgressBar.d.ts +13 -0
  260. package/cjs/ProgressBar/ProgressBar.js +46 -0
  261. package/cjs/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
  262. package/cjs/ProgressBar/ProgressBar.tailwind.js +25 -0
  263. package/cjs/ProgressBar/index.d.ts +2 -0
  264. package/cjs/ProgressBar/index.js +27 -0
  265. package/cjs/ProgressSpinner/ProgressSpinner.d.ts +9 -0
  266. package/cjs/ProgressSpinner/ProgressSpinner.js +54 -0
  267. package/cjs/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
  268. package/cjs/ProgressSpinner/ProgressSpinner.tailwind.js +36 -0
  269. package/cjs/ProgressSpinner/index.d.ts +2 -0
  270. package/cjs/ProgressSpinner/index.js +27 -0
  271. package/cjs/RadioGroup/RadioButton.d.ts +4 -0
  272. package/cjs/RadioGroup/RadioButton.js +31 -0
  273. package/cjs/RadioGroup/RadioButton.tailwind.d.ts +5 -0
  274. package/cjs/RadioGroup/RadioButton.tailwind.js +58 -0
  275. package/cjs/RadioGroup/RadioGroup.d.ts +40 -0
  276. package/cjs/RadioGroup/RadioGroup.js +106 -0
  277. package/cjs/RadioGroup/RadiogroupContext.d.ts +14 -0
  278. package/cjs/RadioGroup/RadiogroupContext.js +17 -0
  279. package/cjs/RadioGroup/index.d.ts +4 -0
  280. package/cjs/RadioGroup/index.js +51 -0
  281. package/cjs/RangeSlider/RangeSlider.d.ts +34 -0
  282. package/cjs/RangeSlider/RangeSlider.js +103 -0
  283. package/cjs/RangeSlider/index.d.ts +2 -0
  284. package/cjs/RangeSlider/index.js +27 -0
  285. package/cjs/Satellite/Satellite.d.ts +11 -0
  286. package/cjs/Satellite/Satellite.js +47 -0
  287. package/cjs/Satellite/SatelliteContext.d.ts +11 -0
  288. package/cjs/Satellite/SatelliteContext.js +26 -0
  289. package/cjs/Satellite/SatelliteRouter.d.ts +21 -0
  290. package/cjs/Satellite/SatelliteRouter.js +49 -0
  291. package/cjs/Satellite/index.d.ts +6 -0
  292. package/cjs/Satellite/index.js +75 -0
  293. package/cjs/Satellite/locale.d.ts +31 -0
  294. package/cjs/Satellite/locale.js +15 -0
  295. package/cjs/Satellite/useCreatePortal.d.ts +4 -0
  296. package/cjs/Satellite/useCreatePortal.js +24 -0
  297. package/cjs/ScrollIndicator/ScrollIndicator.d.ts +14 -0
  298. package/cjs/ScrollIndicator/ScrollIndicator.js +88 -0
  299. package/cjs/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
  300. package/cjs/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
  301. package/cjs/ScrollIndicator/index.d.ts +2 -0
  302. package/cjs/ScrollIndicator/index.js +27 -0
  303. package/cjs/Select/Select.d.ts +15 -0
  304. package/cjs/Select/Select.js +46 -0
  305. package/cjs/Select/Select.tailwind.d.ts +5 -0
  306. package/cjs/Select/Select.tailwind.js +76 -0
  307. package/cjs/Select/index.js +27 -0
  308. package/cjs/Separator/Separator.d.ts +8 -0
  309. package/cjs/Separator/Separator.js +29 -0
  310. package/cjs/Separator/Separator.tailwind.d.ts +5 -0
  311. package/cjs/Separator/Separator.tailwind.js +25 -0
  312. package/cjs/Separator/index.d.ts +2 -0
  313. package/cjs/Separator/index.js +27 -0
  314. package/cjs/Sidebar/Sidebar.d.ts +35 -0
  315. package/cjs/Sidebar/Sidebar.js +62 -0
  316. package/cjs/Sidebar/SidebarButtonLink.d.ts +20 -0
  317. package/cjs/Sidebar/SidebarButtonLink.js +85 -0
  318. package/cjs/Sidebar/SidebarContext.d.ts +9 -0
  319. package/cjs/Sidebar/SidebarContext.js +17 -0
  320. package/cjs/Sidebar/SidebarHeader.d.ts +6 -0
  321. package/cjs/Sidebar/SidebarHeader.js +21 -0
  322. package/cjs/Sidebar/SidebarHeading.d.ts +7 -0
  323. package/cjs/Sidebar/SidebarHeading.js +26 -0
  324. package/cjs/Sidebar/SidebarLink.d.ts +9 -0
  325. package/cjs/Sidebar/SidebarLink.js +51 -0
  326. package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +8 -0
  327. package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +38 -0
  328. package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
  329. package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +37 -0
  330. package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +23 -0
  331. package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +97 -0
  332. package/cjs/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
  333. package/cjs/Sidebar/SidebarLinksGroup/index.js +16 -0
  334. package/cjs/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
  335. package/cjs/Sidebar/SidebarLinksGroup/types.js +5 -0
  336. package/cjs/Sidebar/SidebarNav.d.ts +10 -0
  337. package/cjs/Sidebar/SidebarNav.js +37 -0
  338. package/cjs/Sidebar/index.d.ts +9 -0
  339. package/cjs/Sidebar/index.js +111 -0
  340. package/cjs/Sidebar/types.d.ts +6 -0
  341. package/cjs/Sidebar/types.js +5 -0
  342. package/cjs/Switch/Switch.d.ts +13 -0
  343. package/cjs/Switch/Switch.js +86 -0
  344. package/cjs/Switch/Switch.tailwind.d.ts +5 -0
  345. package/cjs/Switch/Switch.tailwind.js +25 -0
  346. package/cjs/Switch/SwitchOption.d.ts +8 -0
  347. package/cjs/Switch/SwitchOption.js +45 -0
  348. package/cjs/Switch/index.d.ts +3 -0
  349. package/cjs/Switch/index.js +39 -0
  350. package/cjs/Switch/types.d.ts +7 -0
  351. package/cjs/Switch/types.js +5 -0
  352. package/cjs/Switch/utils.d.ts +6 -0
  353. package/cjs/Switch/utils.js +22 -0
  354. package/cjs/Tables/DataTable/DataTable.d.ts +60 -0
  355. package/cjs/Tables/DataTable/DataTable.js +261 -0
  356. package/cjs/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
  357. package/cjs/Tables/DataTable/DataTable.tailwind.js +23 -0
  358. package/cjs/Tables/DataTable/components/Body.d.ts +15 -0
  359. package/cjs/Tables/DataTable/components/Body.js +121 -0
  360. package/cjs/Tables/DataTable/components/Footer.d.ts +8 -0
  361. package/cjs/Tables/DataTable/components/Footer.js +65 -0
  362. package/cjs/Tables/DataTable/components/Header.d.ts +10 -0
  363. package/cjs/Tables/DataTable/components/Header.js +41 -0
  364. package/cjs/Tables/DataTable/components/HeaderCell.d.ts +12 -0
  365. package/cjs/Tables/DataTable/components/HeaderCell.js +60 -0
  366. package/cjs/Tables/DataTable/components/Loader.d.ts +8 -0
  367. package/cjs/Tables/DataTable/components/Loader.js +49 -0
  368. package/cjs/Tables/DataTable/components/index.d.ts +5 -0
  369. package/cjs/Tables/DataTable/components/index.js +60 -0
  370. package/cjs/Tables/DataTable/index.d.ts +3 -0
  371. package/cjs/Tables/DataTable/index.js +39 -0
  372. package/cjs/Tables/DataTable/types.d.ts +49 -0
  373. package/cjs/Tables/DataTable/types.js +5 -0
  374. package/cjs/Tables/DataTable/utils.d.ts +4 -0
  375. package/cjs/Tables/DataTable/utils.js +23 -0
  376. package/cjs/Tables/Table/Table.d.ts +28 -0
  377. package/cjs/Tables/Table/Table.js +62 -0
  378. package/cjs/Tables/Table/Table.tailwind.d.ts +5 -0
  379. package/cjs/Tables/Table/Table.tailwind.js +39 -0
  380. package/cjs/Tables/Table/components/TableFooter.d.ts +8 -0
  381. package/cjs/Tables/Table/components/TableFooter.js +28 -0
  382. package/cjs/Tables/Table/index.d.ts +3 -0
  383. package/cjs/Tables/Table/index.js +39 -0
  384. package/cjs/Tables/index.d.ts +3 -0
  385. package/cjs/Tables/index.js +39 -0
  386. package/cjs/Tabs/ContentTabs.d.ts +4 -0
  387. package/cjs/Tabs/ContentTabs.js +62 -0
  388. package/cjs/Tabs/LinkTabs.d.ts +33 -0
  389. package/cjs/Tabs/LinkTabs.js +78 -0
  390. package/cjs/Tabs/Tabs.tailwind.d.ts +5 -0
  391. package/cjs/Tabs/Tabs.tailwind.js +53 -0
  392. package/cjs/Tabs/components/LinkTab.d.ts +9 -0
  393. package/cjs/Tabs/components/LinkTab.js +86 -0
  394. package/cjs/Tabs/index.d.ts +4 -0
  395. package/cjs/Tabs/index.js +51 -0
  396. package/cjs/Tabs/types.d.ts +35 -0
  397. package/cjs/Tabs/types.js +5 -0
  398. package/cjs/Tabs/utils.d.ts +2 -0
  399. package/cjs/Tabs/utils.js +19 -0
  400. package/cjs/Tag/Tag.d.ts +58 -0
  401. package/cjs/Tag/Tag.js +135 -0
  402. package/cjs/Tag/Tag.tailwind.d.ts +5 -0
  403. package/cjs/Tag/Tag.tailwind.js +54 -0
  404. package/cjs/Tag/index.d.ts +2 -0
  405. package/cjs/Tag/index.js +27 -0
  406. package/cjs/TextArea/TextArea.d.ts +5 -0
  407. package/cjs/TextArea/TextArea.js +30 -0
  408. package/cjs/TextArea/TextArea.tailwind.d.ts +5 -0
  409. package/cjs/TextArea/TextArea.tailwind.js +39 -0
  410. package/cjs/TextArea/index.js +27 -0
  411. package/cjs/TextWrap/TextWrap.d.ts +8 -0
  412. package/cjs/TextWrap/TextWrap.js +55 -0
  413. package/cjs/TextWrap/index.d.ts +2 -0
  414. package/cjs/TextWrap/index.js +27 -0
  415. package/cjs/Toggle/Toggle.d.ts +10 -0
  416. package/cjs/Toggle/Toggle.js +62 -0
  417. package/cjs/Toggle/Toggle.tailwind.d.ts +5 -0
  418. package/cjs/Toggle/Toggle.tailwind.js +72 -0
  419. package/cjs/Toggle/index.d.ts +2 -0
  420. package/cjs/Toggle/index.js +27 -0
  421. package/cjs/Tooltip/OverflowTooltipWrapper.d.ts +3 -0
  422. package/cjs/Tooltip/OverflowTooltipWrapper.js +44 -0
  423. package/cjs/Tooltip/Tooltip.d.ts +24 -0
  424. package/cjs/Tooltip/Tooltip.js +54 -0
  425. package/cjs/Tooltip/Tooltip.tailwind.d.ts +5 -0
  426. package/cjs/Tooltip/Tooltip.tailwind.js +137 -0
  427. package/cjs/Tooltip/TooltipWrapper.d.ts +15 -0
  428. package/cjs/Tooltip/TooltipWrapper.js +82 -0
  429. package/{types/components → cjs}/Tooltip/index.d.ts +1 -0
  430. package/cjs/Tooltip/index.js +51 -0
  431. package/cjs/Tooltip/types.d.ts +65 -0
  432. package/cjs/Tooltip/types.js +5 -0
  433. package/cjs/Tooltip/utils.d.ts +1 -0
  434. package/cjs/Tooltip/utils.js +10 -0
  435. package/cjs/Typography/Typography.tailwind.d.ts +5 -0
  436. package/cjs/Typography/Typography.tailwind.js +170 -0
  437. package/cjs/UserContent/UserContent.d.ts +8 -0
  438. package/cjs/UserContent/UserContent.js +28 -0
  439. package/cjs/UserContent/UserContent.tailwind.d.ts +5 -0
  440. package/cjs/UserContent/UserContent.tailwind.js +141 -0
  441. package/cjs/index.d.ts +49 -0
  442. package/cjs/index.js +580 -0
  443. package/cjs/package.json +3 -0
  444. package/cjs/styles/base.tailwind.d.ts +5 -0
  445. package/cjs/styles/base.tailwind.js +46 -0
  446. package/cjs/styles/brandColors.d.ts +42 -0
  447. package/cjs/styles/brandColors.js +48 -0
  448. package/cjs/styles/colors.d.ts +110 -0
  449. package/cjs/styles/colors.js +116 -0
  450. package/cjs/styles/disabledColor.d.ts +6 -0
  451. package/cjs/styles/disabledColor.js +14 -0
  452. package/cjs/styles/helpers/icons.d.ts +15 -0
  453. package/cjs/styles/helpers/icons.js +39 -0
  454. package/cjs/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
  455. package/cjs/styles/helpers/makePurgeCssExtractor.js +50 -0
  456. package/cjs/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
  457. package/cjs/styles/helpers/makeTailwindPrefixer.js +36 -0
  458. package/cjs/styles/helpers/prefixTailwindClassName.d.ts +7 -0
  459. package/cjs/styles/helpers/prefixTailwindClassName.js +28 -0
  460. package/cjs/styles/helpers/satellitePrefixer.d.ts +3 -0
  461. package/cjs/styles/helpers/satellitePrefixer.js +8 -0
  462. package/cjs/styles/rgba.d.ts +8 -0
  463. package/cjs/styles/rgba.js +15 -0
  464. package/cjs/styles/tailwind.config.d.ts +2 -0
  465. package/cjs/styles/tailwind.config.js +144 -0
  466. package/cjs/styles/zIndexes.d.ts +7 -0
  467. package/cjs/styles/zIndexes.js +14 -0
  468. package/cjs/types.d.ts +28 -0
  469. package/cjs/types.js +5 -0
  470. package/cjs/utilities/utilities.tailwind.d.ts +5 -0
  471. package/cjs/utilities/utilities.tailwind.js +27 -0
  472. package/cjs/utils/NumberUnion.d.ts +5 -0
  473. package/cjs/utils/NumberUnion.js +5 -0
  474. package/cjs/utils/event-polyfill.d.ts +0 -0
  475. package/cjs/utils/event-polyfill.js +25 -0
  476. package/cjs/utils/formatters.d.ts +25 -0
  477. package/cjs/utils/formatters.js +44 -0
  478. package/cjs/utils/genericChangeHandler.d.ts +5 -0
  479. package/{utils → cjs/utils}/genericChangeHandler.js +1 -7
  480. package/cjs/utils/hashCode.d.ts +2 -0
  481. package/cjs/utils/hashCode.js +23 -0
  482. package/cjs/utils/index.d.ts +7 -0
  483. package/{utils → cjs/utils}/index.js +11 -18
  484. package/cjs/utils/isCssPropertySupported.d.ts +2 -0
  485. package/cjs/utils/isCssPropertySupported.js +16 -0
  486. package/cjs/utils/isNil.d.ts +19 -0
  487. package/cjs/utils/isNil.js +29 -0
  488. package/cjs/utils/isRenderedChild.d.ts +8 -0
  489. package/cjs/utils/isRenderedChild.js +16 -0
  490. package/cjs/utils/matchLocation.d.ts +3 -0
  491. package/cjs/utils/matchLocation.js +13 -0
  492. package/cjs/utils/onlyText.d.ts +3 -0
  493. package/cjs/utils/onlyText.js +40 -0
  494. package/cjs/utils/parseUrl.d.ts +11 -0
  495. package/cjs/utils/parseUrl.js +23 -0
  496. package/{utils → cjs/utils}/pluralize.js +7 -7
  497. package/{utils → cjs/utils}/range.js +1 -3
  498. package/cjs/utils/toSentenceCase.d.ts +3 -0
  499. package/cjs/utils/toSentenceCase.js +17 -0
  500. package/{utils → cjs/utils}/uniqBy.js +1 -5
  501. package/{utils → cjs/utils}/uniqueId.js +1 -3
  502. package/cjs/utils/useForwardedRef.d.ts +3 -0
  503. package/cjs/utils/useForwardedRef.js +25 -0
  504. package/cjs/utils/useLinkProps.d.ts +7 -0
  505. package/cjs/utils/useLinkProps.js +55 -0
  506. package/cjs/utils/useTriggerInputChange.d.ts +8 -0
  507. package/cjs/utils/useTriggerInputChange.js +28 -0
  508. package/esm/AnnouncementBadge/AnnouncementBadge.d.ts +21 -0
  509. package/esm/AnnouncementBadge/AnnouncementBadge.js +40 -0
  510. package/esm/AnnouncementBadge/index.d.ts +2 -0
  511. package/esm/AnnouncementBadge/index.js +2 -0
  512. package/esm/AutoComplete/AutoComplete.d.ts +66 -0
  513. package/esm/AutoComplete/AutoComplete.js +585 -0
  514. package/esm/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
  515. package/esm/AutoComplete/AutoComplete.tailwind.js +97 -0
  516. package/esm/AutoComplete/components/AutoCompleteEmptyState.d.ts +13 -0
  517. package/esm/AutoComplete/components/AutoCompleteEmptyState.js +29 -0
  518. package/esm/AutoComplete/components/DefaultOptionItem.d.ts +7 -0
  519. package/esm/AutoComplete/components/DefaultOptionItem.js +30 -0
  520. package/esm/AutoComplete/index.d.ts +5 -0
  521. package/esm/AutoComplete/index.js +5 -0
  522. package/esm/AutoComplete/types.d.ts +85 -0
  523. package/esm/AutoComplete/types.js +1 -0
  524. package/esm/AutoComplete/utils.d.ts +5 -0
  525. package/esm/AutoComplete/utils.js +41 -0
  526. package/esm/Avatars/ApplicationAvatar.d.ts +13 -0
  527. package/esm/Avatars/ApplicationAvatar.js +27 -0
  528. package/esm/Avatars/UserAvatar.d.ts +20 -0
  529. package/esm/Avatars/UserAvatar.js +49 -0
  530. package/esm/Avatars/index.d.ts +3 -0
  531. package/esm/Avatars/index.js +3 -0
  532. package/esm/Avatars/types.d.ts +17 -0
  533. package/esm/Avatars/types.js +1 -0
  534. package/esm/Avatars/utils.d.ts +6 -0
  535. package/esm/Avatars/utils.js +48 -0
  536. package/esm/Badge/Badge.d.ts +35 -0
  537. package/esm/Badge/Badge.js +69 -0
  538. package/esm/Badge/index.d.ts +2 -0
  539. package/esm/Badge/index.js +2 -0
  540. package/esm/Banners/Alert/Alert.d.ts +78 -0
  541. package/esm/Banners/Alert/Alert.js +132 -0
  542. package/esm/Banners/Alert/index.d.ts +2 -0
  543. package/esm/Banners/Alert/index.js +2 -0
  544. package/esm/Banners/BigBertha/BigBertha.d.ts +41 -0
  545. package/esm/Banners/BigBertha/BigBertha.js +55 -0
  546. package/esm/Banners/BigBertha/index.d.ts +2 -0
  547. package/esm/Banners/BigBertha/index.js +2 -0
  548. package/esm/Banners/Promote/Promote.d.ts +57 -0
  549. package/esm/Banners/Promote/Promote.js +103 -0
  550. package/esm/Banners/Promote/index.d.ts +2 -0
  551. package/esm/Banners/Promote/index.js +2 -0
  552. package/esm/Banners/index.d.ts +3 -0
  553. package/esm/Banners/index.js +3 -0
  554. package/esm/Button/Button.d.ts +19 -0
  555. package/esm/Button/Button.js +28 -0
  556. package/esm/Button/Button.tailwind.d.ts +5 -0
  557. package/esm/Button/Button.tailwind.js +154 -0
  558. package/esm/Button/ButtonGroup.d.ts +18 -0
  559. package/esm/Button/ButtonGroup.js +21 -0
  560. package/esm/Button/IconButton.d.ts +5 -0
  561. package/esm/Button/IconButton.js +14 -0
  562. package/esm/Button/PolymorphicButton.d.ts +11 -0
  563. package/esm/Button/PolymorphicButton.js +66 -0
  564. package/esm/Button/PolymorphicIconButton.d.ts +24 -0
  565. package/esm/Button/PolymorphicIconButton.js +78 -0
  566. package/esm/Button/index.d.ts +5 -0
  567. package/esm/Button/index.js +5 -0
  568. package/esm/Button/styles.d.ts +5 -0
  569. package/esm/Button/styles.js +27 -0
  570. package/esm/Button/types.d.ts +32 -0
  571. package/esm/Button/types.js +5 -0
  572. package/esm/Card/Card.d.ts +32 -0
  573. package/esm/Card/Card.js +37 -0
  574. package/esm/Card/Card.tailwind.d.ts +5 -0
  575. package/esm/Card/Card.tailwind.js +35 -0
  576. package/esm/Card/components/CardHeader.d.ts +6 -0
  577. package/esm/Card/components/CardHeader.js +20 -0
  578. package/esm/Card/components/CardTitle.d.ts +6 -0
  579. package/esm/Card/components/CardTitle.js +20 -0
  580. package/esm/Card/index.d.ts +4 -0
  581. package/esm/Card/index.js +4 -0
  582. package/esm/Checkbox/Checkbox.d.ts +24 -0
  583. package/esm/Checkbox/Checkbox.js +90 -0
  584. package/esm/Checkbox/Checkbox.tailwind.d.ts +5 -0
  585. package/esm/Checkbox/Checkbox.tailwind.js +65 -0
  586. package/esm/Checkbox/index.d.ts +2 -0
  587. package/esm/Checkbox/index.js +2 -0
  588. package/esm/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
  589. package/esm/ClickAwayContainer/ClickAwayContainer.js +76 -0
  590. package/esm/ClickAwayContainer/index.d.ts +1 -0
  591. package/esm/ClickAwayContainer/index.js +1 -0
  592. package/esm/DatePicker/DatePicker/DatePicker.d.ts +34 -0
  593. package/esm/DatePicker/DatePicker/DatePicker.js +159 -0
  594. package/esm/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
  595. package/esm/DatePicker/DatePicker/datePickerReducer.js +43 -0
  596. package/esm/DatePicker/DatePicker/index.d.ts +3 -0
  597. package/esm/DatePicker/DatePicker/index.js +3 -0
  598. package/esm/DatePicker/DatePicker.tailwind.d.ts +5 -0
  599. package/esm/DatePicker/DatePicker.tailwind.js +182 -0
  600. package/esm/DatePicker/DateRangePicker/DateRangePicker.d.ts +34 -0
  601. package/esm/DatePicker/DateRangePicker/DateRangePicker.js +251 -0
  602. package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +14 -0
  603. package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.js +33 -0
  604. package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
  605. package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.js +92 -0
  606. package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
  607. package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +9 -0
  608. package/esm/DatePicker/DateRangePicker/index.d.ts +4 -0
  609. package/esm/DatePicker/DateRangePicker/index.js +4 -0
  610. package/esm/DatePicker/components/Calendar.d.ts +17 -0
  611. package/esm/DatePicker/components/Calendar.js +48 -0
  612. package/esm/DatePicker/components/Display.d.ts +10 -0
  613. package/esm/DatePicker/components/Display.js +17 -0
  614. package/esm/DatePicker/components/Footer.d.ts +6 -0
  615. package/esm/DatePicker/components/Footer.js +12 -0
  616. package/esm/DatePicker/components/FooterActions.d.ts +12 -0
  617. package/esm/DatePicker/components/FooterActions.js +26 -0
  618. package/esm/DatePicker/components/Modal.d.ts +16 -0
  619. package/esm/DatePicker/components/Modal.js +60 -0
  620. package/esm/DatePicker/components/NavBar.d.ts +10 -0
  621. package/esm/DatePicker/components/NavBar.js +117 -0
  622. package/esm/DatePicker/components/SidePanel.d.ts +6 -0
  623. package/esm/DatePicker/components/SidePanel.js +15 -0
  624. package/esm/DatePicker/components/index.d.ts +12 -0
  625. package/esm/DatePicker/components/index.js +6 -0
  626. package/esm/DatePicker/index.d.ts +4 -0
  627. package/esm/DatePicker/index.js +4 -0
  628. package/esm/DatePicker/types.d.ts +26 -0
  629. package/esm/DatePicker/types.js +1 -0
  630. package/esm/DatePicker/utils.d.ts +3 -0
  631. package/esm/DatePicker/utils.js +12 -0
  632. package/esm/Dropdown/Dropdown.d.ts +64 -0
  633. package/esm/Dropdown/Dropdown.js +127 -0
  634. package/esm/Dropdown/DropdownButton.d.ts +11 -0
  635. package/esm/Dropdown/DropdownButton.js +40 -0
  636. package/esm/Dropdown/DropdownContext.d.ts +7 -0
  637. package/esm/Dropdown/DropdownContext.js +10 -0
  638. package/esm/Dropdown/components/DropdownButtonItem.d.ts +19 -0
  639. package/esm/Dropdown/components/DropdownButtonItem.js +37 -0
  640. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
  641. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +53 -0
  642. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +7 -0
  643. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +14 -0
  644. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +7 -0
  645. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +9 -0
  646. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +9 -0
  647. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +29 -0
  648. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +9 -0
  649. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +26 -0
  650. package/esm/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
  651. package/esm/Dropdown/components/DropdownCollapsibleItem/index.js +5 -0
  652. package/esm/Dropdown/components/DropdownDivider.d.ts +3 -0
  653. package/esm/Dropdown/components/DropdownDivider.js +10 -0
  654. package/esm/Dropdown/components/DropdownFooterItem.d.ts +7 -0
  655. package/esm/Dropdown/components/DropdownFooterItem.js +22 -0
  656. package/esm/Dropdown/components/DropdownLinkItem.d.ts +15 -0
  657. package/esm/Dropdown/components/DropdownLinkItem.js +40 -0
  658. package/esm/Dropdown/components/DropdownRadioItem.d.ts +13 -0
  659. package/esm/Dropdown/components/DropdownRadioItem.js +37 -0
  660. package/esm/Dropdown/components/DropdownTitle.d.ts +6 -0
  661. package/esm/Dropdown/components/DropdownTitle.js +18 -0
  662. package/esm/Dropdown/components/DropdownToggleItem.d.ts +16 -0
  663. package/esm/Dropdown/components/DropdownToggleItem.js +39 -0
  664. package/esm/Dropdown/index.d.ts +13 -0
  665. package/esm/Dropdown/index.js +13 -0
  666. package/esm/Dropdown/useDropdownItemProps.d.ts +21 -0
  667. package/esm/Dropdown/useDropdownItemProps.js +31 -0
  668. package/esm/Dropzone/Dropzone.d.ts +20 -0
  669. package/esm/Dropzone/Dropzone.js +151 -0
  670. package/esm/Dropzone/index.d.ts +2 -0
  671. package/esm/Dropzone/index.js +2 -0
  672. package/esm/EmptyState/EmptyState.d.ts +28 -0
  673. package/esm/EmptyState/EmptyState.js +117 -0
  674. package/esm/EmptyState/EmptyState.tailwind.d.ts +5 -0
  675. package/esm/EmptyState/EmptyState.tailwind.js +14 -0
  676. package/esm/EmptyState/index.d.ts +3 -0
  677. package/esm/EmptyState/index.js +3 -0
  678. package/esm/EmptyState/types.d.ts +65 -0
  679. package/esm/EmptyState/types.js +1 -0
  680. package/esm/Field/Field.d.ts +54 -0
  681. package/esm/Field/Field.js +85 -0
  682. package/esm/Field/FieldStateContext.d.ts +12 -0
  683. package/esm/Field/FieldStateContext.js +6 -0
  684. package/esm/Field/index.d.ts +4 -0
  685. package/esm/Field/index.js +4 -0
  686. package/esm/Field/useFieldState.d.ts +2 -0
  687. package/esm/Field/useFieldState.js +6 -0
  688. package/esm/Flag/Flag.d.ts +6 -0
  689. package/esm/Flag/Flag.js +110 -0
  690. package/esm/Flag/Flag.tailwind.d.ts +5 -0
  691. package/esm/Flag/Flag.tailwind.js +33 -0
  692. package/esm/Flag/Flags.d.ts +48 -0
  693. package/esm/Flag/Flags.js +82 -0
  694. package/esm/Flag/index.d.ts +4 -0
  695. package/esm/Flag/index.js +4 -0
  696. package/esm/Flag/types.d.ts +27 -0
  697. package/esm/Flag/types.js +1 -0
  698. package/esm/FlexGrid/FlexGrid.d.ts +51 -0
  699. package/esm/FlexGrid/FlexGrid.js +62 -0
  700. package/esm/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
  701. package/esm/FlexGrid/FlexGrid.tailwind.js +69 -0
  702. package/esm/FlexGrid/index.d.ts +2 -0
  703. package/esm/FlexGrid/index.js +2 -0
  704. package/esm/HelpUnderline/HelpUnderline.d.ts +11 -0
  705. package/esm/HelpUnderline/HelpUnderline.js +28 -0
  706. package/esm/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
  707. package/esm/HelpUnderline/HelpUnderline.tailwind.js +20 -0
  708. package/esm/HelpUnderline/index.d.ts +2 -0
  709. package/esm/HelpUnderline/index.js +2 -0
  710. package/esm/Input/Input.d.ts +27 -0
  711. package/esm/Input/Input.js +205 -0
  712. package/esm/Input/Input.tailwind.d.ts +5 -0
  713. package/esm/Input/Input.tailwind.js +124 -0
  714. package/esm/Input/index.d.ts +2 -0
  715. package/esm/Input/index.js +2 -0
  716. package/esm/Insert/Insert.d.ts +45 -0
  717. package/esm/Insert/Insert.js +71 -0
  718. package/esm/Insert/index.d.ts +2 -0
  719. package/esm/Insert/index.js +2 -0
  720. package/esm/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
  721. package/esm/InstantSearch/InstantSearch.tailwind.js +377 -0
  722. package/esm/KeyboardKey/KeyboardKey.d.ts +7 -0
  723. package/esm/KeyboardKey/KeyboardKey.js +29 -0
  724. package/esm/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
  725. package/esm/KeyboardKey/KeyboardKey.tailwind.js +28 -0
  726. package/esm/KeyboardKey/index.d.ts +2 -0
  727. package/esm/KeyboardKey/index.js +2 -0
  728. package/esm/Link/BaseLink.d.ts +8 -0
  729. package/esm/Link/BaseLink.js +22 -0
  730. package/esm/Link/ButtonLink.d.ts +9 -0
  731. package/esm/Link/ButtonLink.js +30 -0
  732. package/esm/Link/IconButtonLink.d.ts +9 -0
  733. package/esm/Link/IconButtonLink.js +24 -0
  734. package/esm/Link/Link.d.ts +13 -0
  735. package/esm/Link/Link.js +44 -0
  736. package/esm/Link/index.d.ts +5 -0
  737. package/esm/Link/index.js +5 -0
  738. package/esm/Medallion/Medallion.d.ts +11 -0
  739. package/esm/Medallion/Medallion.js +32 -0
  740. package/esm/Medallion/Medallion.tailwind.d.ts +5 -0
  741. package/esm/Medallion/Medallion.tailwind.js +30 -0
  742. package/esm/Medallion/index.d.ts +3 -0
  743. package/esm/Medallion/index.js +3 -0
  744. package/esm/Medallion/types.d.ts +2 -0
  745. package/esm/Medallion/types.js +1 -0
  746. package/esm/Modal/Modal.d.ts +54 -0
  747. package/esm/Modal/Modal.js +139 -0
  748. package/esm/Modal/Modal.tailwind.d.ts +5 -0
  749. package/esm/Modal/Modal.tailwind.js +79 -0
  750. package/esm/Modal/components/ModalFooter.d.ts +6 -0
  751. package/esm/Modal/components/ModalFooter.js +25 -0
  752. package/esm/Modal/components/ModalSection.d.ts +10 -0
  753. package/esm/Modal/components/ModalSection.js +16 -0
  754. package/esm/Modal/index.d.ts +4 -0
  755. package/esm/Modal/index.js +4 -0
  756. package/esm/Pagination/CompactPagination/CompactPagination.d.ts +31 -0
  757. package/esm/Pagination/CompactPagination/CompactPagination.js +76 -0
  758. package/esm/Pagination/CompactPagination/index.d.ts +2 -0
  759. package/esm/Pagination/CompactPagination/index.js +2 -0
  760. package/esm/Pagination/DotPagination/DotPagination.d.ts +15 -0
  761. package/esm/Pagination/DotPagination/DotPagination.js +39 -0
  762. package/esm/Pagination/DotPagination/index.d.ts +2 -0
  763. package/esm/Pagination/DotPagination/index.js +2 -0
  764. package/esm/Pagination/Pagination/Pagination.d.ts +22 -0
  765. package/esm/Pagination/Pagination/Pagination.js +114 -0
  766. package/esm/Pagination/Pagination/index.d.ts +2 -0
  767. package/esm/Pagination/Pagination/index.js +2 -0
  768. package/esm/Pagination/index.d.ts +4 -0
  769. package/esm/Pagination/index.js +4 -0
  770. package/esm/ProgressBar/ProgressBar.d.ts +13 -0
  771. package/esm/ProgressBar/ProgressBar.js +37 -0
  772. package/esm/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
  773. package/esm/ProgressBar/ProgressBar.tailwind.js +25 -0
  774. package/esm/ProgressBar/index.d.ts +2 -0
  775. package/esm/ProgressBar/index.js +2 -0
  776. package/esm/ProgressSpinner/ProgressSpinner.d.ts +9 -0
  777. package/esm/ProgressSpinner/ProgressSpinner.js +46 -0
  778. package/esm/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
  779. package/esm/ProgressSpinner/ProgressSpinner.tailwind.js +35 -0
  780. package/esm/ProgressSpinner/index.d.ts +2 -0
  781. package/esm/ProgressSpinner/index.js +2 -0
  782. package/esm/RadioGroup/RadioButton.d.ts +4 -0
  783. package/esm/RadioGroup/RadioButton.js +22 -0
  784. package/esm/RadioGroup/RadioButton.tailwind.d.ts +5 -0
  785. package/esm/RadioGroup/RadioButton.tailwind.js +59 -0
  786. package/esm/RadioGroup/RadioGroup.d.ts +40 -0
  787. package/esm/RadioGroup/RadioGroup.js +97 -0
  788. package/esm/RadioGroup/RadiogroupContext.d.ts +14 -0
  789. package/esm/RadioGroup/RadiogroupContext.js +9 -0
  790. package/esm/RadioGroup/index.d.ts +4 -0
  791. package/esm/RadioGroup/index.js +4 -0
  792. package/esm/RangeSlider/RangeSlider.d.ts +34 -0
  793. package/esm/RangeSlider/RangeSlider.js +97 -0
  794. package/esm/RangeSlider/index.d.ts +2 -0
  795. package/esm/RangeSlider/index.js +2 -0
  796. package/esm/Satellite/Satellite.d.ts +11 -0
  797. package/esm/Satellite/Satellite.js +39 -0
  798. package/esm/Satellite/SatelliteContext.d.ts +11 -0
  799. package/esm/Satellite/SatelliteContext.js +16 -0
  800. package/esm/Satellite/SatelliteRouter.d.ts +21 -0
  801. package/esm/Satellite/SatelliteRouter.js +40 -0
  802. package/esm/Satellite/index.d.ts +6 -0
  803. package/esm/Satellite/index.js +6 -0
  804. package/esm/Satellite/locale.d.ts +31 -0
  805. package/esm/Satellite/locale.js +7 -0
  806. package/esm/Satellite/useCreatePortal.d.ts +4 -0
  807. package/esm/Satellite/useCreatePortal.js +17 -0
  808. package/esm/ScrollIndicator/ScrollIndicator.d.ts +14 -0
  809. package/esm/ScrollIndicator/ScrollIndicator.js +79 -0
  810. package/esm/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
  811. package/esm/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
  812. package/esm/ScrollIndicator/index.d.ts +2 -0
  813. package/esm/ScrollIndicator/index.js +2 -0
  814. package/esm/Select/Select.d.ts +15 -0
  815. package/esm/Select/Select.js +37 -0
  816. package/esm/Select/Select.tailwind.d.ts +5 -0
  817. package/esm/Select/Select.tailwind.js +77 -0
  818. package/esm/Select/index.d.ts +2 -0
  819. package/esm/Select/index.js +2 -0
  820. package/esm/Separator/Separator.d.ts +8 -0
  821. package/esm/Separator/Separator.js +17 -0
  822. package/esm/Separator/Separator.tailwind.d.ts +5 -0
  823. package/esm/Separator/Separator.tailwind.js +24 -0
  824. package/esm/Separator/index.d.ts +2 -0
  825. package/esm/Separator/index.js +2 -0
  826. package/esm/Sidebar/Sidebar.d.ts +35 -0
  827. package/esm/Sidebar/Sidebar.js +54 -0
  828. package/esm/Sidebar/SidebarButtonLink.d.ts +20 -0
  829. package/esm/Sidebar/SidebarButtonLink.js +78 -0
  830. package/esm/Sidebar/SidebarContext.d.ts +9 -0
  831. package/esm/Sidebar/SidebarContext.js +9 -0
  832. package/esm/Sidebar/SidebarHeader.d.ts +6 -0
  833. package/esm/Sidebar/SidebarHeader.js +13 -0
  834. package/esm/Sidebar/SidebarHeading.d.ts +7 -0
  835. package/esm/Sidebar/SidebarHeading.js +18 -0
  836. package/esm/Sidebar/SidebarLink.d.ts +9 -0
  837. package/esm/Sidebar/SidebarLink.js +44 -0
  838. package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +8 -0
  839. package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +30 -0
  840. package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
  841. package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +30 -0
  842. package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +23 -0
  843. package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +90 -0
  844. package/esm/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
  845. package/esm/Sidebar/SidebarLinksGroup/index.js +2 -0
  846. package/esm/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
  847. package/esm/Sidebar/SidebarLinksGroup/types.js +1 -0
  848. package/esm/Sidebar/SidebarNav.d.ts +10 -0
  849. package/esm/Sidebar/SidebarNav.js +29 -0
  850. package/esm/Sidebar/index.d.ts +9 -0
  851. package/esm/Sidebar/index.js +9 -0
  852. package/esm/Sidebar/types.d.ts +6 -0
  853. package/esm/Sidebar/types.js +1 -0
  854. package/esm/Switch/Switch.d.ts +13 -0
  855. package/esm/Switch/Switch.js +78 -0
  856. package/esm/Switch/Switch.tailwind.d.ts +5 -0
  857. package/esm/Switch/Switch.tailwind.js +24 -0
  858. package/esm/Switch/SwitchOption.d.ts +8 -0
  859. package/esm/Switch/SwitchOption.js +37 -0
  860. package/esm/Switch/index.d.ts +3 -0
  861. package/esm/Switch/index.js +3 -0
  862. package/esm/Switch/types.d.ts +7 -0
  863. package/esm/Switch/types.js +1 -0
  864. package/esm/Switch/utils.d.ts +6 -0
  865. package/esm/Switch/utils.js +11 -0
  866. package/esm/Tables/DataTable/DataTable.d.ts +60 -0
  867. package/esm/Tables/DataTable/DataTable.js +253 -0
  868. package/esm/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
  869. package/esm/Tables/DataTable/DataTable.tailwind.js +22 -0
  870. package/esm/Tables/DataTable/components/Body.d.ts +15 -0
  871. package/esm/Tables/DataTable/components/Body.js +112 -0
  872. package/esm/Tables/DataTable/components/Footer.d.ts +8 -0
  873. package/esm/Tables/DataTable/components/Footer.js +53 -0
  874. package/esm/Tables/DataTable/components/Header.d.ts +10 -0
  875. package/esm/Tables/DataTable/components/Header.js +32 -0
  876. package/esm/Tables/DataTable/components/HeaderCell.d.ts +12 -0
  877. package/esm/Tables/DataTable/components/HeaderCell.js +52 -0
  878. package/esm/Tables/DataTable/components/Loader.d.ts +8 -0
  879. package/esm/Tables/DataTable/components/Loader.js +40 -0
  880. package/esm/Tables/DataTable/components/index.d.ts +5 -0
  881. package/esm/Tables/DataTable/components/index.js +5 -0
  882. package/esm/Tables/DataTable/index.d.ts +3 -0
  883. package/esm/Tables/DataTable/index.js +3 -0
  884. package/esm/Tables/DataTable/types.d.ts +49 -0
  885. package/esm/Tables/DataTable/types.js +1 -0
  886. package/esm/Tables/DataTable/utils.d.ts +4 -0
  887. package/esm/Tables/DataTable/utils.js +13 -0
  888. package/esm/Tables/Table/Table.d.ts +28 -0
  889. package/esm/Tables/Table/Table.js +54 -0
  890. package/esm/Tables/Table/Table.tailwind.d.ts +5 -0
  891. package/esm/Tables/Table/Table.tailwind.js +38 -0
  892. package/esm/Tables/Table/components/TableFooter.d.ts +8 -0
  893. package/esm/Tables/Table/components/TableFooter.js +19 -0
  894. package/esm/Tables/Table/index.d.ts +3 -0
  895. package/esm/Tables/Table/index.js +3 -0
  896. package/esm/Tables/index.d.ts +3 -0
  897. package/esm/Tables/index.js +3 -0
  898. package/esm/Tabs/ContentTabs.d.ts +4 -0
  899. package/esm/Tabs/ContentTabs.js +54 -0
  900. package/esm/Tabs/LinkTabs.d.ts +33 -0
  901. package/esm/Tabs/LinkTabs.js +68 -0
  902. package/esm/Tabs/Tabs.tailwind.d.ts +5 -0
  903. package/esm/Tabs/Tabs.tailwind.js +52 -0
  904. package/esm/Tabs/components/LinkTab.d.ts +9 -0
  905. package/esm/Tabs/components/LinkTab.js +78 -0
  906. package/esm/Tabs/index.d.ts +4 -0
  907. package/esm/Tabs/index.js +4 -0
  908. package/esm/Tabs/types.d.ts +35 -0
  909. package/esm/Tabs/types.js +1 -0
  910. package/esm/Tabs/utils.d.ts +2 -0
  911. package/esm/Tabs/utils.js +11 -0
  912. package/esm/Tag/Tag.d.ts +58 -0
  913. package/esm/Tag/Tag.js +127 -0
  914. package/esm/Tag/Tag.tailwind.d.ts +5 -0
  915. package/esm/Tag/Tag.tailwind.js +53 -0
  916. package/esm/Tag/index.d.ts +2 -0
  917. package/esm/Tag/index.js +2 -0
  918. package/esm/TextArea/TextArea.d.ts +5 -0
  919. package/esm/TextArea/TextArea.js +21 -0
  920. package/esm/TextArea/TextArea.tailwind.d.ts +5 -0
  921. package/esm/TextArea/TextArea.tailwind.js +40 -0
  922. package/esm/TextArea/index.d.ts +2 -0
  923. package/esm/TextArea/index.js +2 -0
  924. package/esm/TextWrap/TextWrap.d.ts +8 -0
  925. package/esm/TextWrap/TextWrap.js +47 -0
  926. package/esm/TextWrap/index.d.ts +2 -0
  927. package/esm/TextWrap/index.js +2 -0
  928. package/esm/Toggle/Toggle.d.ts +10 -0
  929. package/esm/Toggle/Toggle.js +54 -0
  930. package/esm/Toggle/Toggle.tailwind.d.ts +5 -0
  931. package/esm/Toggle/Toggle.tailwind.js +72 -0
  932. package/esm/Toggle/index.d.ts +2 -0
  933. package/esm/Toggle/index.js +2 -0
  934. package/esm/Tooltip/OverflowTooltipWrapper.d.ts +3 -0
  935. package/esm/Tooltip/OverflowTooltipWrapper.js +36 -0
  936. package/esm/Tooltip/Tooltip.d.ts +24 -0
  937. package/esm/Tooltip/Tooltip.js +45 -0
  938. package/esm/Tooltip/Tooltip.tailwind.d.ts +5 -0
  939. package/esm/Tooltip/Tooltip.tailwind.js +135 -0
  940. package/esm/Tooltip/TooltipWrapper.d.ts +15 -0
  941. package/esm/Tooltip/TooltipWrapper.js +73 -0
  942. package/esm/Tooltip/index.d.ts +4 -0
  943. package/esm/Tooltip/index.js +4 -0
  944. package/esm/Tooltip/types.d.ts +65 -0
  945. package/esm/Tooltip/types.js +1 -0
  946. package/esm/Tooltip/utils.d.ts +1 -0
  947. package/esm/Tooltip/utils.js +3 -0
  948. package/esm/Typography/Typography.tailwind.d.ts +5 -0
  949. package/esm/Typography/Typography.tailwind.js +169 -0
  950. package/esm/UserContent/UserContent.d.ts +8 -0
  951. package/esm/UserContent/UserContent.js +19 -0
  952. package/esm/UserContent/UserContent.tailwind.d.ts +5 -0
  953. package/esm/UserContent/UserContent.tailwind.js +141 -0
  954. package/esm/index.d.ts +49 -0
  955. package/esm/index.js +49 -0
  956. package/esm/styles/base.tailwind.d.ts +5 -0
  957. package/esm/styles/base.tailwind.js +45 -0
  958. package/esm/styles/brandColors.d.ts +42 -0
  959. package/esm/styles/brandColors.js +46 -0
  960. package/esm/styles/colors.d.ts +110 -0
  961. package/esm/styles/colors.js +114 -0
  962. package/esm/styles/disabledColor.d.ts +6 -0
  963. package/esm/styles/disabledColor.js +14 -0
  964. package/esm/styles/helpers/icons.d.ts +15 -0
  965. package/esm/styles/helpers/icons.js +40 -0
  966. package/esm/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
  967. package/esm/styles/helpers/makePurgeCssExtractor.js +49 -0
  968. package/esm/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
  969. package/esm/styles/helpers/makeTailwindPrefixer.js +34 -0
  970. package/esm/styles/helpers/prefixTailwindClassName.d.ts +7 -0
  971. package/esm/styles/helpers/prefixTailwindClassName.js +26 -0
  972. package/esm/styles/helpers/satellitePrefixer.d.ts +3 -0
  973. package/esm/styles/helpers/satellitePrefixer.js +7 -0
  974. package/esm/styles/rgba.d.ts +8 -0
  975. package/esm/styles/rgba.js +14 -0
  976. package/esm/styles/tailwind.config.d.ts +2 -0
  977. package/esm/styles/tailwind.config.js +145 -0
  978. package/esm/styles/zIndexes.d.ts +7 -0
  979. package/esm/styles/zIndexes.js +12 -0
  980. package/esm/types.d.ts +28 -0
  981. package/esm/types.js +1 -0
  982. package/esm/utilities/utilities.tailwind.d.ts +5 -0
  983. package/esm/utilities/utilities.tailwind.js +25 -0
  984. package/esm/utils/NumberUnion.d.ts +5 -0
  985. package/esm/utils/NumberUnion.js +1 -0
  986. package/esm/utils/event-polyfill.d.ts +0 -0
  987. package/esm/utils/event-polyfill.js +23 -0
  988. package/esm/utils/formatters.d.ts +25 -0
  989. package/esm/utils/formatters.js +36 -0
  990. package/esm/utils/genericChangeHandler.d.ts +5 -0
  991. package/esm/utils/genericChangeHandler.js +18 -0
  992. package/esm/utils/hashCode.d.ts +2 -0
  993. package/esm/utils/hashCode.js +15 -0
  994. package/esm/utils/index.d.ts +7 -0
  995. package/{types/utils/index.d.ts → esm/utils/index.js} +2 -2
  996. package/esm/utils/isCssPropertySupported.d.ts +2 -0
  997. package/esm/utils/isCssPropertySupported.js +9 -0
  998. package/esm/utils/isNil.d.ts +19 -0
  999. package/esm/utils/isNil.js +21 -0
  1000. package/esm/utils/isRenderedChild.d.ts +8 -0
  1001. package/esm/utils/isRenderedChild.js +9 -0
  1002. package/esm/utils/matchLocation.d.ts +3 -0
  1003. package/esm/utils/matchLocation.js +5 -0
  1004. package/esm/utils/onlyText.d.ts +3 -0
  1005. package/esm/utils/onlyText.js +33 -0
  1006. package/esm/utils/parseUrl.d.ts +11 -0
  1007. package/esm/utils/parseUrl.js +15 -0
  1008. package/esm/utils/pluralize.d.ts +6 -0
  1009. package/esm/utils/pluralize.js +16 -0
  1010. package/esm/utils/range.d.ts +2 -0
  1011. package/esm/utils/range.js +7 -0
  1012. package/esm/utils/toSentenceCase.d.ts +3 -0
  1013. package/esm/utils/toSentenceCase.js +9 -0
  1014. package/esm/utils/uniqBy.d.ts +2 -0
  1015. package/esm/utils/uniqBy.js +13 -0
  1016. package/esm/utils/uniqueId.d.ts +2 -0
  1017. package/esm/utils/uniqueId.js +7 -0
  1018. package/esm/utils/useForwardedRef.d.ts +3 -0
  1019. package/esm/utils/useForwardedRef.js +17 -0
  1020. package/esm/utils/useLinkProps.d.ts +7 -0
  1021. package/esm/utils/useLinkProps.js +46 -0
  1022. package/esm/utils/useTriggerInputChange.d.ts +8 -0
  1023. package/esm/utils/useTriggerInputChange.js +21 -0
  1024. package/package.json +84 -49
  1025. package/satellite.min.css +3 -0
  1026. package/scss/colors.scss +139 -0
  1027. package/scss/variables.scss +7 -0
  1028. package/components/Alert/Alert.js +0 -49
  1029. package/components/AutoComplete/AutoComplete.js +0 -512
  1030. package/components/AutoComplete/index.js +0 -27
  1031. package/components/AutoComplete/types.js +0 -1
  1032. package/components/Button/Button.js +0 -59
  1033. package/components/Button/LinkButton.js +0 -52
  1034. package/components/Button/index.js +0 -40
  1035. package/components/Card/Card.js +0 -71
  1036. package/components/Card/components/CardHeader.js +0 -25
  1037. package/components/Card/components/CardTitle.js +0 -30
  1038. package/components/Card/index.js +0 -19
  1039. package/components/Checkbox/Checkbox.js +0 -66
  1040. package/components/Checkbox/index.js +0 -27
  1041. package/components/Chip/Chip.js +0 -77
  1042. package/components/Chip/index.js +0 -21
  1043. package/components/Dropdown/Dropdown.js +0 -163
  1044. package/components/Dropdown/DropdownButton.js +0 -117
  1045. package/components/Dropdown/components/DropdownDivider.js +0 -24
  1046. package/components/Dropdown/components/DropdownItem.js +0 -46
  1047. package/components/Dropdown/components/DropdownTitle.js +0 -34
  1048. package/components/Dropdown/index.js +0 -29
  1049. package/components/HelpUnderline/HelpUnderline.js +0 -39
  1050. package/components/HelpUnderline/index.js +0 -27
  1051. package/components/Input/Input.js +0 -134
  1052. package/components/Input/index.js +0 -27
  1053. package/components/LoaderIcon/LoaderIcon.js +0 -65
  1054. package/components/LoaderIcon/index.js +0 -27
  1055. package/components/MaterialIcon/MaterialIcon.js +0 -48
  1056. package/components/MaterialIcon/index.js +0 -27
  1057. package/components/Modal/Modal.js +0 -207
  1058. package/components/Modal/components/ModalFooter.js +0 -34
  1059. package/components/Modal/components/ModalSection.js +0 -38
  1060. package/components/Modal/index.js +0 -21
  1061. package/components/Pagination/Pagination.js +0 -131
  1062. package/components/Pagination/index.js +0 -27
  1063. package/components/RadioGroup/RadioButton.js +0 -35
  1064. package/components/RadioGroup/RadioGroup.js +0 -140
  1065. package/components/RadioGroup/index.js +0 -29
  1066. package/components/ScrollIndicator/ScrollIndicator.js +0 -165
  1067. package/components/ScrollIndicator/index.js +0 -21
  1068. package/components/Select/Select.js +0 -40
  1069. package/components/Select/index.js +0 -27
  1070. package/components/Table/Table.js +0 -36
  1071. package/components/Table/index.js +0 -19
  1072. package/components/TextArea/TextArea.js +0 -34
  1073. package/components/TextArea/index.js +0 -27
  1074. package/components/Tooltip/Tooltip.js +0 -29
  1075. package/components/Tooltip/TooltipWrapper.js +0 -164
  1076. package/components/Tooltip/index.js +0 -40
  1077. package/index.js +0 -173
  1078. package/nothing-to-see-here.gif +0 -0
  1079. package/satellite.css +0 -32
  1080. package/satellite.css.map +0 -1
  1081. package/styles/_colors.scss +0 -147
  1082. package/styles/_mixins.scss +0 -72
  1083. package/styles/_variables.scss +0 -71
  1084. package/types/components/Alert/Alert.d.ts +0 -9
  1085. package/types/components/AutoComplete/AutoComplete.d.ts +0 -66
  1086. package/types/components/AutoComplete/index.d.ts +0 -2
  1087. package/types/components/AutoComplete/types.d.ts +0 -21
  1088. package/types/components/AutoComplete/utils.d.ts +0 -3
  1089. package/types/components/Button/Button.d.ts +0 -13
  1090. package/types/components/Button/LinkButton.d.ts +0 -9
  1091. package/types/components/Button/index.d.ts +0 -3
  1092. package/types/components/Card/Card.d.ts +0 -13
  1093. package/types/components/Card/components/CardHeader.d.ts +0 -3
  1094. package/types/components/Card/components/CardTitle.d.ts +0 -7
  1095. package/types/components/Card/index.d.ts +0 -3
  1096. package/types/components/Checkbox/Checkbox.d.ts +0 -5
  1097. package/types/components/Chip/Chip.d.ts +0 -9
  1098. package/types/components/Chip/index.d.ts +0 -2
  1099. package/types/components/Dropdown/Dropdown.d.ts +0 -27
  1100. package/types/components/Dropdown/DropdownButton.d.ts +0 -12
  1101. package/types/components/Dropdown/components/DropdownDivider.d.ts +0 -6
  1102. package/types/components/Dropdown/components/DropdownItem.d.ts +0 -10
  1103. package/types/components/Dropdown/components/DropdownTitle.d.ts +0 -4
  1104. package/types/components/Dropdown/index.d.ts +0 -3
  1105. package/types/components/HelpUnderline/HelpUnderline.d.ts +0 -10
  1106. package/types/components/Input/Input.d.ts +0 -25
  1107. package/types/components/LoaderIcon/LoaderIcon.d.ts +0 -7
  1108. package/types/components/LoaderIcon/index.d.ts +0 -2
  1109. package/types/components/MaterialIcon/MaterialIcon.d.ts +0 -12
  1110. package/types/components/MaterialIcon/index.d.ts +0 -2
  1111. package/types/components/Modal/Modal.d.ts +0 -30
  1112. package/types/components/Modal/components/ModalFooter.d.ts +0 -4
  1113. package/types/components/Modal/components/ModalSection.d.ts +0 -6
  1114. package/types/components/Modal/index.d.ts +0 -2
  1115. package/types/components/Pagination/Pagination.d.ts +0 -12
  1116. package/types/components/RadioGroup/RadioButton.d.ts +0 -4
  1117. package/types/components/RadioGroup/RadioGroup.d.ts +0 -20
  1118. package/types/components/RadioGroup/index.d.ts +0 -3
  1119. package/types/components/ScrollIndicator/ScrollIndicator.d.ts +0 -24
  1120. package/types/components/ScrollIndicator/index.d.ts +0 -2
  1121. package/types/components/Select/Select.d.ts +0 -6
  1122. package/types/components/Table/Table.d.ts +0 -6
  1123. package/types/components/Table/index.d.ts +0 -3
  1124. package/types/components/TextArea/TextArea.d.ts +0 -5
  1125. package/types/components/Tooltip/Tooltip.d.ts +0 -5
  1126. package/types/components/Tooltip/TooltipWrapper.d.ts +0 -32
  1127. package/types/index.d.ts +0 -19
  1128. package/types/utils/clamp.d.ts +0 -2
  1129. package/types/utils/genericChangeHandler.d.ts +0 -5
  1130. package/types/utils/omit.d.ts +0 -2
  1131. package/utils/clamp.js +0 -20
  1132. package/utils/omit.js +0 -25
  1133. /package/{types/components → cjs/Banners}/Alert/index.d.ts +0 -0
  1134. /package/{types/components → cjs}/Checkbox/index.d.ts +0 -0
  1135. /package/{types/components → cjs}/HelpUnderline/index.d.ts +0 -0
  1136. /package/{types/components → cjs}/Input/index.d.ts +0 -0
  1137. /package/{types/components → cjs/Pagination}/Pagination/index.d.ts +0 -0
  1138. /package/{types/components → cjs}/Select/index.d.ts +0 -0
  1139. /package/{types/components → cjs}/TextArea/index.d.ts +0 -0
  1140. /package/{types → cjs}/utils/pluralize.d.ts +0 -0
  1141. /package/{types → cjs}/utils/range.d.ts +0 -0
  1142. /package/{types → cjs}/utils/uniqBy.d.ts +0 -0
  1143. /package/{types → cjs}/utils/uniqueId.d.ts +0 -0
@@ -0,0 +1,154 @@
1
+ import _rgba from "../styles/rgba";
2
+ import _disabledColor from "../styles/disabledColor";
3
+ import _plugin from "tailwindcss/plugin";
4
+ // @ts-check
5
+ var plugin = _plugin;
6
+ var disabledColor = _disabledColor;
7
+ var rgba = _rgba;
8
+ var buttonPlugin = plugin(function (_ref) {
9
+ var addComponents = _ref.addComponents,
10
+ theme = _ref.theme;
11
+ // Button
12
+ addComponents({
13
+ ".btn": {
14
+ position: "relative",
15
+ borderRadius: theme("borderRadius.DEFAULT"),
16
+ cursor: "pointer",
17
+ "&, &:hover": {
18
+ textDecoration: "none"
19
+ },
20
+ "&:focus": {
21
+ outline: "none"
22
+ }
23
+ },
24
+ ".btn-disabled": {
25
+ cursor: "not-allowed"
26
+ },
27
+ ".btn-subtle": {
28
+ color: theme("colors.grey.600"),
29
+ "&:hover": {
30
+ backgroundColor: rgba(theme("colors.grey.300"), 0.15)
31
+ },
32
+ "&:focus": {
33
+ boxShadow: "0 0 0 1px ".concat(theme("colors.accent.600"))
34
+ },
35
+ "&:active, &.btn-active": {
36
+ color: theme("colors.accent.600"),
37
+ backgroundColor: theme("colors.accent.100"),
38
+ boxShadow: "none"
39
+ },
40
+ "&:disabled, &.btn-disabled": {
41
+ background: "none",
42
+ boxShadow: "none",
43
+ color: theme("colors.grey.300")
44
+ }
45
+ },
46
+ ".btn-neutral": {
47
+ color: theme("colors.grey.900"),
48
+ backgroundColor: theme("colors.white"),
49
+ backgroundImage: "linear-gradient(-180deg, ".concat(theme("colors.white"), " 0%, ").concat(theme("colors.grey.50"), " 100%)"),
50
+ border: "1px solid ".concat(theme("colors.grey.200")),
51
+ boxShadow: "0 1px 0 0 ".concat(theme("colors.shadow.5")),
52
+ "&:hover": {
53
+ backgroundImage: "linear-gradient(-180deg, ".concat(theme("colors.white"), " 0%, ").concat(theme("colors.grey.100"), " 100%)"),
54
+ borderColor: theme("colors.grey.200")
55
+ },
56
+ "&:focus": {
57
+ backgroundImage: "linear-gradient(-180deg, ".concat(theme("colors.white"), " 0%, ").concat(theme("colors.grey.100"), " 100%)"),
58
+ borderColor: theme("colors.accent.600"),
59
+ boxShadow: "\n 0 0 0 1px ".concat(theme("colors.accent.600"), ",\n 0 2px 0 1px ").concat(theme("colors.shadow.5"), "\n ")
60
+ },
61
+ "&:active, &.btn-active": {
62
+ borderColor: theme("colors.grey.200"),
63
+ boxShadow: "\n inset 0 1px 4px 0 ".concat(rgba(theme("colors.grey.500"), 0.4), ",\n inset 0 1px 1px 0 ").concat(rgba(theme("colors.grey.500"), 0.4), ",\n 0 1px 0 0 ").concat(theme("colors.shadow.5"), "\n ")
64
+ },
65
+ "&:disabled, &.btn-disabled": {
66
+ backgroundImage: "linear-gradient(-180deg, ".concat(theme("colors.white"), " 0%, ").concat(theme("colors.grey.100"), " 100%)"),
67
+ borderColor: disabledColor(theme("colors.grey.200")),
68
+ color: theme("colors.grey.300"),
69
+ boxShadow: "none"
70
+ }
71
+ },
72
+ ".btn-primary": {
73
+ color: theme("colors.white"),
74
+ backgroundColor: theme("colors.accent.600"),
75
+ backgroundImage: "linear-gradient(-180deg, ".concat(theme("colors.accent.600"), " 0%, ").concat(theme("colors.accent.700"), " 100%)"),
76
+ border: "1px solid ".concat(theme("colors.accent.700")),
77
+ boxShadow: "\n inset 0 1px 0 0 ".concat(rgba(theme("colors.white"), 0.06), ",\n 0 1px 0 0 ").concat(theme("colors.shadow.10"), "\n "),
78
+ "&:hover": {
79
+ borderColor: theme("colors.accent.800"),
80
+ backgroundImage: "linear-gradient(0deg, ".concat(theme("colors.accent.800"), " 0%, ").concat(theme("colors.accent.700"), " 100%)"),
81
+ boxShadow: "\n inset 0 1px 0 0 ".concat(rgba(theme("colors.white"), 0.06), ",\n 0 1px 0 0 ").concat(theme("colors.shadow.10"), "\n ")
82
+ },
83
+ "&:focus": {
84
+ backgroundImage: "linear-gradient(0deg, ".concat(theme("colors.accent.600"), " 0%, ").concat(theme("colors.accent.700"), " 100%)"),
85
+ borderColor: theme("colors.accent.800"),
86
+ boxShadow: "\n inset 0 1px 0 0 ".concat(rgba(theme("colors.white"), 0.06), ",\n 0 0 0 1px ").concat(theme("colors.accent.800"), ",\n 0 2px 0 1px ").concat(theme("colors.shadow.10"), "\n ")
87
+ },
88
+ "&:active, &.btn-active": {
89
+ backgroundColor: theme("colors.accent.700"),
90
+ borderColor: theme("colors.accent.800"),
91
+ boxShadow: "\n inset 0 1px 4px 0 ".concat(rgba(theme("colors.accent.900"), 0.4), ",\n inset 0 1px 1px 0 ").concat(rgba(theme("colors.accent.900"), 0.6), ",\n 0 1px 0 0 ").concat(theme("colors.shadow.5"), "\n ")
92
+ },
93
+ "&:disabled, &.btn-disabled": {
94
+ backgroundColor: disabledColor(theme("colors.accent.600")),
95
+ backgroundImage: "\n linear-gradient(0deg, ".concat(disabledColor(theme("colors.accent.600")), " 0%,\n ").concat(disabledColor(theme("colors.accent.700")), " 100%)\n "),
96
+ borderColor: disabledColor(theme("colors.accent.700")),
97
+ boxShadow: "none"
98
+ }
99
+ },
100
+ ".btn-destructive": {
101
+ color: theme("colors.white"),
102
+ backgroundColor: theme("colors.red.600"),
103
+ backgroundImage: "linear-gradient(-180deg, ".concat(theme("colors.red.600"), " 0%, ").concat(theme("colors.red.700"), " 100%)"),
104
+ border: "1px solid ".concat(theme("colors.red.700")),
105
+ boxShadow: "\n inset 0 1px 0 0 ".concat(rgba(theme("colors.white"), 0.06), ",\n 0 1px 0 0 ").concat(theme("colors.shadow.10"), "\n "),
106
+ "&:hover": {
107
+ backgroundImage: "linear-gradient(0deg, ".concat(theme("colors.red.700"), " 0%, ").concat(theme("colors.red.800"), " 100%)"),
108
+ borderColor: theme("colors.red.800"),
109
+ boxShadow: "\n inset 0 1px 0 0 ".concat(rgba(theme("colors.white"), 0.06), ",\n 0 1px 0 0 ").concat(theme("colors.shadow.10"), "\n ")
110
+ },
111
+ "&:focus": {
112
+ backgroundImage: "linear-gradient(0deg, ".concat(theme("colors.red.600"), " 0%, ").concat(theme("colors.red.700"), " 100%)"),
113
+ borderColor: theme("colors.red.800"),
114
+ boxShadow: "\n inset 0 1px 0 0 ".concat(rgba(theme("colors.white"), 0.06), ",\n 0 0 0 1px ").concat(theme("colors.red.800"), ",\n 0 2px 0 1px ").concat(theme("colors.shadow.10"), "\n ")
115
+ },
116
+ "&:active, &.btn-active": {
117
+ borderColor: theme("colors.red.800"),
118
+ boxShadow: "\n inset 0 1px 4px 0 ".concat(rgba(theme("colors.red.900"), 0.4), ",\n inset 0 1px 1px 0 ").concat(rgba(theme("colors.red.900"), 0.6), ",\n 0 1px 0 0 ").concat(theme("colors.shadow.5"), "\n ")
119
+ },
120
+ "&:disabled, &.btn-disabled": {
121
+ backgroundColor: disabledColor(theme("colors.red.600")),
122
+ backgroundImage: "\n linear-gradient(0deg, ".concat(disabledColor(theme("colors.red.600")), " 0%,\n ").concat(disabledColor(theme("colors.red.700")), " 100%)\n "),
123
+ borderColor: disabledColor(theme("colors.red.700")),
124
+ boxShadow: "none"
125
+ }
126
+ }
127
+ });
128
+
129
+ // Button groups
130
+ addComponents({
131
+ ".btn-group": {
132
+ display: "flex",
133
+ flexWrap: "nowrap",
134
+ "& > .btn:not(:first-child):not(:last-child), & > :not(:first-child):not(:last-child) .btn": {
135
+ borderRadius: "0px"
136
+ },
137
+ "& > .btn:first-child, & > :first-child .btn": {
138
+ borderTopRightRadius: "0px",
139
+ borderBottomRightRadius: "0px"
140
+ },
141
+ "& > .btn:not(:first-child), & > :not(:first-child) .btn": {
142
+ marginLeft: "-1px"
143
+ },
144
+ "& > .btn:last-child, & > :last-child .btn": {
145
+ borderTopLeftRadius: "0px",
146
+ borderBottomLeftRadius: "0px"
147
+ },
148
+ "& .btn:active, & .btn-active, & .btn:focus": {
149
+ zIndex: "1"
150
+ }
151
+ }
152
+ });
153
+ });
154
+ export default buttonPlugin;
@@ -0,0 +1,18 @@
1
+ import type { FunctionComponent, ReactNode } from "react";
2
+ export interface ButtonGroupProps {
3
+ /**
4
+ * Specify HTML element `ButtonGroup` should be presented as.
5
+ * @default "div"
6
+ */
7
+ as?: keyof JSX.IntrinsicElements;
8
+ /** @ignore */
9
+ className?: string;
10
+ children: ReactNode;
11
+ }
12
+ /**
13
+ * - Use grouped buttons when there is a close relationship between a number of buttons.
14
+ * - Group buttons logically into sets based on usage and importance.
15
+ * - Common placement of grouped buttons is the view switch (e.g. list vs grid view)
16
+ */
17
+ export declare const ButtonGroup: FunctionComponent<ButtonGroupProps>;
18
+ export default ButtonGroup;
@@ -0,0 +1,21 @@
1
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
2
+ var _templateObject;
3
+ import cx from "clsx";
4
+ import stl from "../styles/helpers/satellitePrefixer";
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ /**
7
+ * - Use grouped buttons when there is a close relationship between a number of buttons.
8
+ * - Group buttons logically into sets based on usage and importance.
9
+ * - Common placement of grouped buttons is the view switch (e.g. list vs grid view)
10
+ */
11
+ export var ButtonGroup = function ButtonGroup(_ref) {
12
+ var className = _ref.className,
13
+ _ref$as = _ref.as,
14
+ Tag = _ref$as === void 0 ? "div" : _ref$as,
15
+ children = _ref.children;
16
+ return /*#__PURE__*/_jsx(Tag, {
17
+ className: cx(stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["btn-group"]))), className),
18
+ children: children
19
+ });
20
+ };
21
+ export default ButtonGroup;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { type PolymorphicIconButtonProps } from "./PolymorphicIconButton";
3
+ export declare type IconButtonProps = Omit<PolymorphicIconButtonProps<"button">, "as" | "ref">;
4
+ export declare const IconButton: import("react").ForwardRefExoticComponent<IconButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
5
+ export default IconButton;
@@ -0,0 +1,14 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ import { forwardRef } from "react";
5
+ import { PolymorphicIconButton } from "./PolymorphicIconButton";
6
+ import { jsx as _jsx } from "react/jsx-runtime";
7
+ export var IconButton = /*#__PURE__*/forwardRef(function (props, ref) {
8
+ return /*#__PURE__*/_jsx(PolymorphicIconButton, _objectSpread(_objectSpread({}, props), {}, {
9
+ as: "button",
10
+ ref: ref
11
+ }));
12
+ });
13
+ IconButton.displayName = "IconButton";
14
+ export default IconButton;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ import { ButtonBaseProps, PolymorphicComponentPropWithRef } from "./types";
3
+ export declare type PolymorphicButtonProps<C extends React.ElementType> = PolymorphicComponentPropWithRef<C, ButtonBaseProps>;
4
+ declare type PolymorphicButtonComponent = (<C extends React.ElementType = "button">(props: PolymorphicButtonProps<C>) => React.ReactElement | null) & {
5
+ displayName?: string;
6
+ };
7
+ /**
8
+ * `PolymorphicButton` is intended for internal use
9
+ */
10
+ export declare const PolymorphicButton: PolymorphicButtonComponent;
11
+ export {};
@@ -0,0 +1,66 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
4
+ var _excluded = ["as", "className", "variant", "size", "startIcon", "endIcon", "loading", "children"];
5
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8;
6
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
7
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
8
+ import cx from "clsx";
9
+ import React, { forwardRef } from "react";
10
+ import ProgressSpinner from "../ProgressSpinner";
11
+ import stl from "../styles/helpers/satellitePrefixer";
12
+ import { BUTTON_LOADER_ICON_SIZES, BUTTON_SIZE_CLASSNAMES, BUTTON_VARIANT_CLASSNAMES, getIconColorClassName } from "./styles";
13
+ import { isButtonType } from "./types";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var BASE_CLASSNAMES = stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["btn inline-flex justify-center items-center px-3 typo-display-body"])));
17
+ var ICON_SIZE = 16;
18
+ /**
19
+ * `PolymorphicButton` is intended for internal use
20
+ */
21
+ export var PolymorphicButton = /*#__PURE__*/forwardRef(function (props, ref) {
22
+ var _props$as = props.as,
23
+ Component = _props$as === void 0 ? "button" : _props$as,
24
+ className = props.className,
25
+ _props$variant = props.variant,
26
+ variant = _props$variant === void 0 ? "neutral" : _props$variant,
27
+ _props$size = props.size,
28
+ size = _props$size === void 0 ? "medium" : _props$size,
29
+ StartIcon = props.startIcon,
30
+ EndIcon = props.endIcon,
31
+ _props$loading = props.loading,
32
+ loading = _props$loading === void 0 ? false : _props$loading,
33
+ children = props.children,
34
+ cleanedProps = _objectWithoutProperties(props, _excluded);
35
+ if (loading) {
36
+ // @ts-expect-error
37
+ cleanedProps.disabled = true;
38
+ }
39
+ var buttonClassName = cx(BASE_CLASSNAMES, BUTTON_SIZE_CLASSNAMES[size], BUTTON_VARIANT_CLASSNAMES[variant], cleanedProps.disabled && stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["btn-disabled"]))), className);
40
+ var loaderClassNames = stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["absolute ", ""])), (variant === "destructive" || variant === "primary") && "text-white");
41
+ var iconClassNames = cx(getIconColorClassName(props), loading && stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["invisible"]))));
42
+ var textClassNames = cx(loading && stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["invisible"]))));
43
+ if (isButtonType(props) && !Object.prototype.hasOwnProperty.call(cleanedProps, "type")) {
44
+ // @ts-expect-error
45
+ cleanedProps.type = "button";
46
+ }
47
+ return /*#__PURE__*/_jsxs(Component, _objectSpread(_objectSpread({}, cleanedProps), {}, {
48
+ className: buttonClassName,
49
+ ref: ref,
50
+ children: [loading && /*#__PURE__*/_jsx(ProgressSpinner, {
51
+ className: loaderClassNames,
52
+ size: BUTTON_LOADER_ICON_SIZES[size],
53
+ thickness: 1
54
+ }), StartIcon && /*#__PURE__*/_jsx(StartIcon, {
55
+ size: ICON_SIZE,
56
+ className: cx(stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["shrink-0"]))), iconClassNames)
57
+ }), /*#__PURE__*/_jsx("span", {
58
+ className: cx(stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["truncate text-center px-1"]))), textClassNames),
59
+ children: children
60
+ }), EndIcon && /*#__PURE__*/_jsx(EndIcon, {
61
+ size: ICON_SIZE,
62
+ className: cx(stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["shrink-0"]))), iconClassNames)
63
+ })]
64
+ }));
65
+ });
66
+ PolymorphicButton.displayName = "PolymorphicButton";
@@ -0,0 +1,24 @@
1
+ /// <reference types="react" />
2
+ import type { TooltipWrapperBaseProps } from "../Tooltip/types";
3
+ import type { IconComponentType } from "../types";
4
+ import { ButtonSize, ButtonVariant, PolymorphicComponentPropWithRef } from "./types";
5
+ export interface IconButtonBaseProps {
6
+ variant?: ButtonVariant;
7
+ size?: ButtonSize;
8
+ disabled?: boolean;
9
+ icon: IconComponentType;
10
+ title: string;
11
+ showTooltip?: boolean;
12
+ /** @default "top" */
13
+ tooltipSide?: TooltipWrapperBaseProps["side"];
14
+ loading?: boolean;
15
+ }
16
+ export declare type PolymorphicIconButtonProps<C extends React.ElementType> = PolymorphicComponentPropWithRef<C, IconButtonBaseProps>;
17
+ declare type PolymorphicIconButtonComponent = (<C extends React.ElementType = "button">(props: PolymorphicIconButtonProps<C>) => React.ReactElement | null) & {
18
+ displayName?: string;
19
+ };
20
+ /**
21
+ * `PolymorphicIconButton` is intended for internal use
22
+ */
23
+ export declare const PolymorphicIconButton: PolymorphicIconButtonComponent;
24
+ export {};
@@ -0,0 +1,78 @@
1
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
2
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
3
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
4
+ var _excluded = ["as", "className", "variant", "size", "icon", "title", "showTooltip", "tooltipSide", "loading"];
5
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8;
6
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
7
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
8
+ import cx from "clsx";
9
+ import { forwardRef } from "react";
10
+ import ProgressSpinner from "../ProgressSpinner";
11
+ import stl from "../styles/helpers/satellitePrefixer";
12
+ import { TooltipWrapper } from "../Tooltip";
13
+ import { BUTTON_LOADER_ICON_SIZES, BUTTON_VARIANT_CLASSNAMES } from "./styles";
14
+ import { isButtonType } from "./types";
15
+ import { jsx as _jsx } from "react/jsx-runtime";
16
+ import { Fragment as _Fragment } from "react/jsx-runtime";
17
+ import { jsxs as _jsxs } from "react/jsx-runtime";
18
+ var BASE_CLASSNAMES = stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["btn inline-flex items-center justify-center"])));
19
+ var SIZE_CLASSNAMES = {
20
+ small: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["h-6 w-6 text-mobile md:text-sm"]))),
21
+ medium: stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["h-8 w-8 text-md"]))),
22
+ large: stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["h-10 w-10 text-lg"])))
23
+ };
24
+ var VARIANT_CLASSNAMES = _objectSpread(_objectSpread({}, BUTTON_VARIANT_CLASSNAMES), {}, {
25
+ neutral: stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["btn-neutral text-grey-600"])))
26
+ });
27
+ /**
28
+ * `PolymorphicIconButton` is intended for internal use
29
+ */
30
+ export var PolymorphicIconButton = /*#__PURE__*/forwardRef(function (props, ref) {
31
+ var _props$as = props.as,
32
+ Tag = _props$as === void 0 ? "button" : _props$as,
33
+ className = props.className,
34
+ _props$variant = props.variant,
35
+ variant = _props$variant === void 0 ? "neutral" : _props$variant,
36
+ _props$size = props.size,
37
+ size = _props$size === void 0 ? "medium" : _props$size,
38
+ Icon = props.icon,
39
+ title = props.title,
40
+ showTooltip = props.showTooltip,
41
+ _props$tooltipSide = props.tooltipSide,
42
+ tooltipSide = _props$tooltipSide === void 0 ? "top" : _props$tooltipSide,
43
+ _props$loading = props.loading,
44
+ loading = _props$loading === void 0 ? false : _props$loading,
45
+ cleanedProps = _objectWithoutProperties(props, _excluded);
46
+ if (loading) {
47
+ // @ts-expect-error
48
+ cleanedProps.disabled = true;
49
+ }
50
+ var iconButtonClassName = cx(BASE_CLASSNAMES, SIZE_CLASSNAMES[size], VARIANT_CLASSNAMES[variant], cleanedProps.disabled && stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["btn-disabled"]))), className);
51
+ var loaderClassNames = stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["absolute ", ""])), (variant === "destructive" || variant === "primary") && "text-white");
52
+ if (isButtonType(props) && !Object.prototype.hasOwnProperty.call(cleanedProps, "type")) {
53
+ // @ts-ignore
54
+ cleanedProps.type = "button";
55
+ }
56
+ return /*#__PURE__*/_jsx(TooltipWrapper, {
57
+ delay: 500,
58
+ show: showTooltip,
59
+ side: tooltipSide,
60
+ content: title,
61
+ children: /*#__PURE__*/_jsx(Tag, _objectSpread(_objectSpread({}, cleanedProps), {}, {
62
+ className: iconButtonClassName,
63
+ "aria-label": title,
64
+ ref: ref,
65
+ children: /*#__PURE__*/_jsxs(_Fragment, {
66
+ children: [loading && /*#__PURE__*/_jsx(ProgressSpinner, {
67
+ className: loaderClassNames,
68
+ size: BUTTON_LOADER_ICON_SIZES[size],
69
+ thickness: 1
70
+ }), /*#__PURE__*/_jsx(Icon, {
71
+ className: cx(loading && stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["invisible"])))),
72
+ size: "1em"
73
+ })]
74
+ })
75
+ }))
76
+ });
77
+ });
78
+ PolymorphicIconButton.displayName = "PolymorphicIconButton";
@@ -0,0 +1,5 @@
1
+ export * from "./Button";
2
+ export * from "./IconButton";
3
+ export * from "./ButtonGroup";
4
+ export { ButtonSize, ButtonVariant } from "./types";
5
+ export { default } from "./Button";
@@ -0,0 +1,5 @@
1
+ export * from "./Button";
2
+ export * from "./IconButton";
3
+ export * from "./ButtonGroup";
4
+ export { ButtonSize, ButtonVariant } from "./types";
5
+ export { default } from "./Button";
@@ -0,0 +1,5 @@
1
+ import type { ButtonBaseProps, ButtonSize, ButtonVariant } from "./types";
2
+ export declare const BUTTON_SIZE_CLASSNAMES: Record<ButtonSize, string>;
3
+ export declare const BUTTON_LOADER_ICON_SIZES: Record<ButtonSize, number>;
4
+ export declare const BUTTON_VARIANT_CLASSNAMES: Record<ButtonVariant, string>;
5
+ export declare const getIconColorClassName: ({ disabled, variant }: Pick<ButtonBaseProps, "disabled" | "variant">) => string;
@@ -0,0 +1,27 @@
1
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
2
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10;
3
+ import stl from "../styles/helpers/satellitePrefixer";
4
+ export var BUTTON_SIZE_CLASSNAMES = {
5
+ small: stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["h-6"]))),
6
+ medium: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["h-8"]))),
7
+ large: stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["h-10"])))
8
+ };
9
+ export var BUTTON_LOADER_ICON_SIZES = {
10
+ small: 12,
11
+ medium: 16,
12
+ large: 20
13
+ };
14
+ export var BUTTON_VARIANT_CLASSNAMES = {
15
+ subtle: stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["btn-subtle"]))),
16
+ neutral: stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["btn-neutral"]))),
17
+ primary: stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["btn-primary"]))),
18
+ destructive: stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["btn-destructive"])))
19
+ };
20
+ export var getIconColorClassName = function getIconColorClassName(_ref) {
21
+ var disabled = _ref.disabled,
22
+ variant = _ref.variant;
23
+ if (variant === "destructive" || variant === "primary") {
24
+ return stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["text-white"])));
25
+ }
26
+ return disabled ? stl(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["text-grey-300"]))) : stl(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["text-grey-600"])));
27
+ };
@@ -0,0 +1,32 @@
1
+ import type { ReactNode } from "react";
2
+ import type { IconComponentType } from "../types";
3
+ export declare type ButtonVariant = "subtle" | "neutral" | "primary" | "destructive";
4
+ export declare type ButtonSize = "small" | "medium" | "large";
5
+ export interface ButtonBaseProps {
6
+ /** @default "neutral" */
7
+ variant?: ButtonVariant;
8
+ /** @default "medium" */
9
+ size?: ButtonSize;
10
+ /** Left aligned icon */
11
+ startIcon?: IconComponentType;
12
+ /** Right aligned icon */
13
+ endIcon?: IconComponentType;
14
+ /** @ignore */
15
+ children: ReactNode;
16
+ loading?: boolean;
17
+ /** @ignore */
18
+ disabled?: boolean;
19
+ /** @ignore */
20
+ className?: string;
21
+ }
22
+ export declare function isButtonType(props: any): props is JSX.IntrinsicElements["button"];
23
+ declare type AsProp<C extends React.ElementType> = {
24
+ as?: C;
25
+ };
26
+ declare type PropsToOmit<C extends React.ElementType, P> = keyof (AsProp<C> & P);
27
+ declare type PolymorphicComponentProp<C extends React.ElementType, Props = {}> = React.PropsWithChildren<Props & AsProp<C>> & Omit<React.ComponentPropsWithoutRef<C>, PropsToOmit<C, Props>>;
28
+ export declare type PolymorphicComponentPropWithRef<C extends React.ElementType, Props = {}> = PolymorphicComponentProp<C, Props> & {
29
+ ref?: PolymorphicRef<C>;
30
+ };
31
+ export declare type PolymorphicRef<C extends React.ElementType> = React.ComponentPropsWithRef<C>["ref"];
32
+ export {};
@@ -0,0 +1,5 @@
1
+ export function isButtonType(props) {
2
+ return props && (!props.as || props.as === "button");
3
+ }
4
+
5
+ // Polymorphic Helpers lifted from https://blog.logrocket.com/build-strongly-typed-polymorphic-components-react-typescript/
@@ -0,0 +1,32 @@
1
+ import type { CSSProperties, ForwardRefExoticComponent, PropsWithoutRef, ReactNode, RefAttributes } from "react";
2
+ import CardHeader from "./components/CardHeader";
3
+ import CardTitle from "./components/CardTitle";
4
+ export declare type CardElevation = "100" | "200" | "300" | "400" | "500";
5
+ declare type CardAs = "section" | "aside" | "main" | "div" | "span";
6
+ export interface CardProps {
7
+ id?: string;
8
+ /** @ignore */
9
+ className?: string;
10
+ /** @ignore */
11
+ style?: CSSProperties;
12
+ /**
13
+ * Specify HTML element `Card` should be presented as.
14
+ * @default "section"
15
+ */
16
+ as?: CardAs;
17
+ /** Should the content take up full full width of the `Card`. */
18
+ fullBleed?: boolean;
19
+ children: ReactNode;
20
+ /**
21
+ * Specify distance off the page for the `Card`.
22
+ * @default 100
23
+ */
24
+ elevation?: CardElevation;
25
+ }
26
+ export interface CardType extends ForwardRefExoticComponent<PropsWithoutRef<CardProps> & RefAttributes<HTMLElement>> {
27
+ Header: typeof CardHeader;
28
+ Title: typeof CardTitle;
29
+ }
30
+ /** The `Card` is a useful component for containing content within a page. */
31
+ export declare const Card: CardType;
32
+ export default Card;
@@ -0,0 +1,37 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
4
+ var _excluded = ["className", "as", "elevation", "fullBleed"];
5
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
6
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
7
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
8
+ import cx from "clsx";
9
+ import { createElement, forwardRef } from "react";
10
+ import stl from "../styles/helpers/satellitePrefixer";
11
+ import CardHeader from "./components/CardHeader";
12
+ import CardTitle from "./components/CardTitle";
13
+ var ELEVATION_CLASSNAMES = {
14
+ "100": stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["card-z100"]))),
15
+ "200": stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["card-z200"]))),
16
+ "300": stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["card-z300"]))),
17
+ "400": stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["card-z400"]))),
18
+ "500": stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["card-z500"])))
19
+ };
20
+ /** The `Card` is a useful component for containing content within a page. */
21
+ export var Card = /*#__PURE__*/forwardRef(function (_ref, ref) {
22
+ var className = _ref.className,
23
+ _ref$as = _ref.as,
24
+ as = _ref$as === void 0 ? "section" : _ref$as,
25
+ _ref$elevation = _ref.elevation,
26
+ elevation = _ref$elevation === void 0 ? "100" : _ref$elevation,
27
+ fullBleed = _ref.fullBleed,
28
+ props = _objectWithoutProperties(_ref, _excluded);
29
+ return /*#__PURE__*/createElement(as, _objectSpread(_objectSpread({}, props), {}, {
30
+ ref: ref,
31
+ className: cx(stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["card ", " display-body"])), fullBleed && "card-fullbleed"), ELEVATION_CLASSNAMES[elevation], className)
32
+ }));
33
+ });
34
+ Card.displayName = "Card";
35
+ Card.Header = CardHeader;
36
+ Card.Title = CardTitle;
37
+ export default Card;
@@ -0,0 +1,5 @@
1
+ export = cardPlugin;
2
+ declare const cardPlugin: {
3
+ handler: import("tailwindcss/types/config").PluginCreator;
4
+ config?: Partial<import("tailwindcss").Config> | undefined;
5
+ };
@@ -0,0 +1,35 @@
1
+ import _plugin from "tailwindcss/plugin";
2
+ // @ts-check
3
+ var plugin = _plugin;
4
+ var cardPlugin = plugin(function (_ref) {
5
+ var addComponents = _ref.addComponents,
6
+ theme = _ref.theme;
7
+ addComponents({
8
+ ".card": {
9
+ background: theme("colors.white"),
10
+ borderRadius: theme("borderRadius.DEFAULT"),
11
+ overflow: "hidden",
12
+ padding: theme("spacing.6")
13
+ },
14
+ ".card-fullbleed": {
15
+ padding: "0px"
16
+ },
17
+ ".card-z100": {
18
+ boxShadow: theme("boxShadow.z100")
19
+ },
20
+ ".card-z200": {
21
+ boxShadow: theme("boxShadow.z200")
22
+ },
23
+ ".card-z300": {
24
+ boxShadow: theme("boxShadow.z300")
25
+ },
26
+ ".card-z400": {
27
+ boxShadow: theme("boxShadow.z400")
28
+ },
29
+ ".card-z500": {
30
+ boxShadow: theme("boxShadow.z500"),
31
+ borderRadius: "8px"
32
+ }
33
+ });
34
+ });
35
+ export default cardPlugin;
@@ -0,0 +1,6 @@
1
+ import type { FunctionComponent, ReactNode } from "react";
2
+ export declare type CardHeaderProps = JSX.IntrinsicElements["div"] & {
3
+ children: ReactNode;
4
+ };
5
+ export declare const CardHeader: FunctionComponent<CardHeaderProps>;
6
+ export default CardHeader;
@@ -0,0 +1,20 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
3
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
+ var _templateObject;
5
+ var _excluded = ["className", "children"];
6
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
7
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
8
+ import cx from "clsx";
9
+ import stl from "../../styles/helpers/satellitePrefixer";
10
+ import { jsx as _jsx } from "react/jsx-runtime";
11
+ export var CardHeader = function CardHeader(_ref) {
12
+ var className = _ref.className,
13
+ children = _ref.children,
14
+ props = _objectWithoutProperties(_ref, _excluded);
15
+ return /*#__PURE__*/_jsx("div", _objectSpread(_objectSpread({}, props), {}, {
16
+ className: cx(stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["flex justify-between"]))), className),
17
+ children: children
18
+ }));
19
+ };
20
+ export default CardHeader;