@algolia/satellite 1.0.0-beta.14 → 1.0.0-beta.140

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 (1119) hide show
  1. package/README.md +173 -0
  2. package/cjs/AnnouncementBadge/AnnouncementBadge.d.ts +15 -0
  3. package/cjs/AnnouncementBadge/AnnouncementBadge.js +66 -0
  4. package/cjs/AnnouncementBadge/index.d.ts +2 -0
  5. package/cjs/AnnouncementBadge/index.js +32 -0
  6. package/cjs/AutoComplete/AutoComplete.d.ts +66 -0
  7. package/cjs/AutoComplete/AutoComplete.js +668 -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 +46 -0
  12. package/cjs/AutoComplete/components/DefaultOptionItem.d.ts +7 -0
  13. package/cjs/AutoComplete/components/DefaultOptionItem.js +46 -0
  14. package/cjs/AutoComplete/index.d.ts +5 -0
  15. package/cjs/AutoComplete/index.js +74 -0
  16. package/cjs/AutoComplete/types.d.ts +86 -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 +27 -2
  20. package/cjs/Avatars/ApplicationAvatar.d.ts +13 -0
  21. package/cjs/Avatars/ApplicationAvatar.js +46 -0
  22. package/cjs/Avatars/UserAvatar.d.ts +13 -0
  23. package/cjs/Avatars/UserAvatar.js +71 -0
  24. package/cjs/Avatars/index.d.ts +3 -0
  25. package/cjs/Avatars/index.js +46 -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 +90 -0
  30. package/cjs/Badge/Badge.d.ts +35 -0
  31. package/cjs/Badge/Badge.js +98 -0
  32. package/cjs/Badge/index.d.ts +2 -0
  33. package/cjs/Badge/index.js +32 -0
  34. package/cjs/Banners/Alert/Alert.d.ts +74 -0
  35. package/cjs/Banners/Alert/Alert.js +150 -0
  36. package/{types/components → cjs/Banners}/Alert/index.d.ts +0 -0
  37. package/cjs/Banners/Alert/index.js +32 -0
  38. package/cjs/Banners/BigBertha/BigBertha.d.ts +41 -0
  39. package/cjs/Banners/BigBertha/BigBertha.js +70 -0
  40. package/cjs/Banners/BigBertha/index.d.ts +2 -0
  41. package/cjs/Banners/BigBertha/index.js +32 -0
  42. package/cjs/Banners/Promote/Promote.d.ts +57 -0
  43. package/cjs/Banners/Promote/Promote.js +121 -0
  44. package/cjs/Banners/Promote/index.d.ts +2 -0
  45. package/cjs/Banners/Promote/index.js +32 -0
  46. package/cjs/Banners/index.d.ts +3 -0
  47. package/cjs/Banners/index.js +44 -0
  48. package/cjs/Button/Button.d.ts +21 -0
  49. package/cjs/Button/Button.js +100 -0
  50. package/cjs/Button/Button.tailwind.d.ts +5 -0
  51. package/cjs/Button/Button.tailwind.js +157 -0
  52. package/cjs/Button/ButtonGroup.d.ts +13 -0
  53. package/cjs/Button/ButtonGroup.js +38 -0
  54. package/cjs/Button/IconButton.d.ts +17 -0
  55. package/cjs/Button/IconButton.js +100 -0
  56. package/cjs/Button/index.d.ts +5 -0
  57. package/cjs/Button/index.js +74 -0
  58. package/cjs/Button/styles.d.ts +5 -0
  59. package/cjs/Button/styles.js +47 -0
  60. package/cjs/Button/types.d.ts +27 -0
  61. package/cjs/Button/types.js +10 -0
  62. package/cjs/Card/Card.d.ts +26 -0
  63. package/cjs/Card/Card.js +56 -0
  64. package/cjs/Card/Card.tailwind.d.ts +5 -0
  65. package/cjs/Card/Card.tailwind.js +37 -0
  66. package/cjs/Card/components/CardHeader.d.ts +4 -0
  67. package/cjs/Card/components/CardHeader.js +40 -0
  68. package/cjs/Card/components/CardTitle.d.ts +6 -0
  69. package/cjs/Card/components/CardTitle.js +42 -0
  70. package/cjs/Card/index.d.ts +4 -0
  71. package/cjs/Card/index.js +60 -0
  72. package/cjs/Checkbox/Checkbox.d.ts +24 -0
  73. package/cjs/Checkbox/Checkbox.js +121 -0
  74. package/cjs/Checkbox/Checkbox.tailwind.d.ts +5 -0
  75. package/cjs/Checkbox/Checkbox.tailwind.js +67 -0
  76. package/{types/components → cjs}/Checkbox/index.d.ts +0 -0
  77. package/cjs/Checkbox/index.js +32 -0
  78. package/cjs/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
  79. package/cjs/ClickAwayContainer/ClickAwayContainer.js +99 -0
  80. package/cjs/ClickAwayContainer/index.d.ts +1 -0
  81. package/cjs/ClickAwayContainer/index.js +18 -0
  82. package/cjs/DatePicker/DatePicker/DatePicker.d.ts +34 -0
  83. package/cjs/DatePicker/DatePicker/DatePicker.js +195 -0
  84. package/cjs/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
  85. package/cjs/DatePicker/DatePicker/datePickerReducer.js +68 -0
  86. package/cjs/DatePicker/DatePicker/index.d.ts +3 -0
  87. package/cjs/DatePicker/DatePicker/index.js +46 -0
  88. package/cjs/DatePicker/DatePicker.tailwind.d.ts +5 -0
  89. package/cjs/DatePicker/DatePicker.tailwind.js +136 -0
  90. package/cjs/DatePicker/DateRangePicker/DateRangePicker.d.ts +34 -0
  91. package/cjs/DatePicker/DateRangePicker/DateRangePicker.js +282 -0
  92. package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +14 -0
  93. package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.js +49 -0
  94. package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
  95. package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.js +126 -0
  96. package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
  97. package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +24 -0
  98. package/cjs/DatePicker/DateRangePicker/index.d.ts +4 -0
  99. package/cjs/DatePicker/DateRangePicker/index.js +60 -0
  100. package/cjs/DatePicker/components/Calendar.d.ts +17 -0
  101. package/cjs/DatePicker/components/Calendar.js +89 -0
  102. package/cjs/DatePicker/components/Display.d.ts +10 -0
  103. package/cjs/DatePicker/components/Display.js +31 -0
  104. package/cjs/DatePicker/components/Footer.d.ts +6 -0
  105. package/cjs/DatePicker/components/Footer.js +27 -0
  106. package/cjs/DatePicker/components/FooterActions.d.ts +12 -0
  107. package/cjs/DatePicker/components/FooterActions.js +41 -0
  108. package/cjs/DatePicker/components/Modal.d.ts +16 -0
  109. package/cjs/DatePicker/components/Modal.js +91 -0
  110. package/cjs/DatePicker/components/NavBar.d.ts +16 -0
  111. package/cjs/DatePicker/components/NavBar.js +93 -0
  112. package/cjs/DatePicker/components/SidePanel.d.ts +6 -0
  113. package/cjs/DatePicker/components/SidePanel.js +30 -0
  114. package/cjs/DatePicker/components/index.d.ts +12 -0
  115. package/cjs/DatePicker/components/index.js +55 -0
  116. package/cjs/DatePicker/index.d.ts +5 -0
  117. package/cjs/DatePicker/index.js +69 -0
  118. package/cjs/DatePicker/types.d.ts +17 -0
  119. package/cjs/DatePicker/types.js +5 -0
  120. package/cjs/DatePicker/utils.d.ts +3 -0
  121. package/cjs/DatePicker/utils.js +24 -0
  122. package/cjs/Dropdown/Dropdown.d.ts +64 -0
  123. package/cjs/Dropdown/Dropdown.js +171 -0
  124. package/cjs/Dropdown/DropdownButton.d.ts +11 -0
  125. package/cjs/Dropdown/DropdownButton.js +63 -0
  126. package/cjs/Dropdown/DropdownContext.d.ts +7 -0
  127. package/cjs/Dropdown/DropdownContext.js +25 -0
  128. package/cjs/Dropdown/components/DropdownButtonItem.d.ts +19 -0
  129. package/cjs/Dropdown/components/DropdownButtonItem.js +60 -0
  130. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
  131. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +76 -0
  132. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +7 -0
  133. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +25 -0
  134. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +7 -0
  135. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +23 -0
  136. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +9 -0
  137. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +47 -0
  138. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +9 -0
  139. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +43 -0
  140. package/cjs/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
  141. package/cjs/Dropdown/components/DropdownCollapsibleItem/index.js +72 -0
  142. package/cjs/Dropdown/components/DropdownDivider.d.ts +3 -0
  143. package/cjs/Dropdown/components/DropdownDivider.js +26 -0
  144. package/cjs/Dropdown/components/DropdownFooterItem.d.ts +7 -0
  145. package/cjs/Dropdown/components/DropdownFooterItem.js +44 -0
  146. package/cjs/Dropdown/components/DropdownLinkItem.d.ts +14 -0
  147. package/cjs/Dropdown/components/DropdownLinkItem.js +64 -0
  148. package/cjs/Dropdown/components/DropdownRadioItem.d.ts +13 -0
  149. package/cjs/Dropdown/components/DropdownRadioItem.js +60 -0
  150. package/cjs/Dropdown/components/DropdownTitle.d.ts +6 -0
  151. package/cjs/Dropdown/components/DropdownTitle.js +40 -0
  152. package/cjs/Dropdown/components/DropdownToggleItem.d.ts +16 -0
  153. package/cjs/Dropdown/components/DropdownToggleItem.js +63 -0
  154. package/cjs/Dropdown/index.d.ts +13 -0
  155. package/cjs/Dropdown/index.js +186 -0
  156. package/cjs/Dropdown/useDropdownItemProps.d.ts +21 -0
  157. package/cjs/Dropdown/useDropdownItemProps.js +53 -0
  158. package/cjs/Dropzone/Dropzone.d.ts +20 -0
  159. package/cjs/Dropzone/Dropzone.js +194 -0
  160. package/cjs/Dropzone/index.d.ts +2 -0
  161. package/cjs/Dropzone/index.js +32 -0
  162. package/cjs/EmptyState/EmptyState.d.ts +28 -0
  163. package/cjs/EmptyState/EmptyState.js +136 -0
  164. package/cjs/EmptyState/EmptyState.tailwind.d.ts +5 -0
  165. package/cjs/EmptyState/EmptyState.tailwind.js +16 -0
  166. package/cjs/EmptyState/index.d.ts +3 -0
  167. package/cjs/EmptyState/index.js +46 -0
  168. package/cjs/EmptyState/types.d.ts +65 -0
  169. package/cjs/EmptyState/types.js +5 -0
  170. package/cjs/Field/Field.d.ts +54 -0
  171. package/cjs/Field/Field.js +109 -0
  172. package/cjs/Field/FieldStateContext.d.ts +12 -0
  173. package/cjs/Field/FieldStateContext.js +17 -0
  174. package/cjs/Field/index.d.ts +4 -0
  175. package/cjs/Field/index.js +60 -0
  176. package/cjs/Field/useFieldState.d.ts +2 -0
  177. package/cjs/Field/useFieldState.js +24 -0
  178. package/cjs/Flag/Flag.d.ts +6 -0
  179. package/cjs/Flag/Flag.js +138 -0
  180. package/cjs/Flag/Flag.tailwind.d.ts +5 -0
  181. package/cjs/Flag/Flag.tailwind.js +35 -0
  182. package/cjs/Flag/Flags.d.ts +48 -0
  183. package/cjs/Flag/Flags.js +106 -0
  184. package/cjs/Flag/index.d.ts +4 -0
  185. package/cjs/Flag/index.js +60 -0
  186. package/cjs/Flag/types.d.ts +22 -0
  187. package/cjs/Flag/types.js +5 -0
  188. package/cjs/FlexGrid/FlexGrid.d.ts +17 -0
  189. package/cjs/FlexGrid/FlexGrid.js +81 -0
  190. package/cjs/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
  191. package/cjs/FlexGrid/FlexGrid.tailwind.js +78 -0
  192. package/cjs/FlexGrid/index.d.ts +2 -0
  193. package/cjs/FlexGrid/index.js +32 -0
  194. package/cjs/HelpUnderline/HelpUnderline.d.ts +12 -0
  195. package/cjs/HelpUnderline/HelpUnderline.js +43 -0
  196. package/cjs/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
  197. package/cjs/HelpUnderline/HelpUnderline.tailwind.js +22 -0
  198. package/{types/components → cjs}/HelpUnderline/index.d.ts +0 -0
  199. package/cjs/HelpUnderline/index.js +32 -0
  200. package/cjs/Input/Input.d.ts +26 -0
  201. package/cjs/Input/Input.js +256 -0
  202. package/cjs/Input/Input.tailwind.d.ts +5 -0
  203. package/cjs/Input/Input.tailwind.js +102 -0
  204. package/{types/components → cjs}/Input/index.d.ts +0 -0
  205. package/cjs/Input/index.js +32 -0
  206. package/cjs/Insert/Insert.d.ts +45 -0
  207. package/cjs/Insert/Insert.js +89 -0
  208. package/cjs/Insert/index.d.ts +2 -0
  209. package/cjs/Insert/index.js +32 -0
  210. package/cjs/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
  211. package/cjs/InstantSearch/InstantSearch.tailwind.js +382 -0
  212. package/cjs/KeyboardKey/KeyboardKey.d.ts +7 -0
  213. package/cjs/KeyboardKey/KeyboardKey.js +48 -0
  214. package/cjs/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
  215. package/cjs/KeyboardKey/KeyboardKey.tailwind.js +30 -0
  216. package/cjs/KeyboardKey/index.d.ts +2 -0
  217. package/{components/Alert → cjs/KeyboardKey}/index.js +5 -6
  218. package/cjs/Link/BaseLink.d.ts +4 -0
  219. package/cjs/Link/BaseLink.js +41 -0
  220. package/cjs/Link/ButtonLink.d.ts +5 -0
  221. package/cjs/Link/ButtonLink.js +50 -0
  222. package/cjs/Link/IconButtonLink.d.ts +6 -0
  223. package/cjs/Link/IconButtonLink.js +41 -0
  224. package/cjs/Link/Link.d.ts +11 -0
  225. package/cjs/Link/Link.js +69 -0
  226. package/cjs/Link/index.d.ts +5 -0
  227. package/cjs/Link/index.js +74 -0
  228. package/cjs/Medallion/Medallion.d.ts +11 -0
  229. package/cjs/Medallion/Medallion.js +50 -0
  230. package/cjs/Medallion/Medallion.tailwind.d.ts +5 -0
  231. package/cjs/Medallion/Medallion.tailwind.js +34 -0
  232. package/cjs/Medallion/index.d.ts +3 -0
  233. package/cjs/Medallion/index.js +46 -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 +23 -0
  237. package/cjs/Modal/Modal.js +192 -0
  238. package/cjs/Modal/Modal.tailwind.d.ts +5 -0
  239. package/cjs/Modal/Modal.tailwind.js +45 -0
  240. package/cjs/Modal/components/ModalFooter.d.ts +6 -0
  241. package/cjs/Modal/components/ModalFooter.js +48 -0
  242. package/cjs/Modal/components/ModalSection.d.ts +10 -0
  243. package/cjs/Modal/components/ModalSection.js +33 -0
  244. package/cjs/Modal/index.d.ts +4 -0
  245. package/cjs/Modal/index.js +60 -0
  246. package/cjs/Pagination/CompactPagination/CompactPagination.d.ts +29 -0
  247. package/cjs/Pagination/CompactPagination/CompactPagination.js +104 -0
  248. package/cjs/Pagination/CompactPagination/index.d.ts +2 -0
  249. package/cjs/Pagination/CompactPagination/index.js +32 -0
  250. package/cjs/Pagination/DotPagination/DotPagination.d.ts +14 -0
  251. package/cjs/Pagination/DotPagination/DotPagination.js +62 -0
  252. package/cjs/Pagination/DotPagination/index.d.ts +2 -0
  253. package/cjs/Pagination/DotPagination/index.js +32 -0
  254. package/cjs/Pagination/Pagination/Pagination.d.ts +22 -0
  255. package/cjs/Pagination/Pagination/Pagination.js +149 -0
  256. package/{types/components → cjs/Pagination}/Pagination/index.d.ts +0 -0
  257. package/cjs/Pagination/Pagination/index.js +32 -0
  258. package/cjs/Pagination/index.d.ts +4 -0
  259. package/cjs/Pagination/index.js +60 -0
  260. package/cjs/ProgressBar/ProgressBar.d.ts +13 -0
  261. package/cjs/ProgressBar/ProgressBar.js +59 -0
  262. package/cjs/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
  263. package/cjs/ProgressBar/ProgressBar.tailwind.js +27 -0
  264. package/cjs/ProgressBar/index.d.ts +2 -0
  265. package/cjs/ProgressBar/index.js +32 -0
  266. package/cjs/ProgressSpinner/ProgressSpinner.d.ts +9 -0
  267. package/cjs/ProgressSpinner/ProgressSpinner.js +66 -0
  268. package/cjs/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
  269. package/cjs/ProgressSpinner/ProgressSpinner.tailwind.js +37 -0
  270. package/cjs/ProgressSpinner/index.d.ts +2 -0
  271. package/cjs/ProgressSpinner/index.js +32 -0
  272. package/cjs/RadioGroup/RadioButton.d.ts +4 -0
  273. package/cjs/RadioGroup/RadioButton.js +44 -0
  274. package/cjs/RadioGroup/RadioButton.tailwind.d.ts +5 -0
  275. package/cjs/RadioGroup/RadioButton.tailwind.js +58 -0
  276. package/cjs/RadioGroup/RadioGroup.d.ts +40 -0
  277. package/cjs/RadioGroup/RadioGroup.js +125 -0
  278. package/cjs/RadioGroup/RadiogroupContext.d.ts +14 -0
  279. package/cjs/RadioGroup/RadiogroupContext.js +23 -0
  280. package/cjs/RadioGroup/index.d.ts +4 -0
  281. package/cjs/RadioGroup/index.js +60 -0
  282. package/cjs/RangeSlider/RangeSlider.d.ts +18 -0
  283. package/cjs/RangeSlider/RangeSlider.js +129 -0
  284. package/cjs/RangeSlider/RangeSlider.tailwind.d.ts +5 -0
  285. package/cjs/RangeSlider/RangeSlider.tailwind.js +75 -0
  286. package/cjs/RangeSlider/index.d.ts +2 -0
  287. package/cjs/RangeSlider/index.js +32 -0
  288. package/cjs/Satellite/Satellite.d.ts +11 -0
  289. package/cjs/Satellite/Satellite.js +34 -0
  290. package/cjs/Satellite/SatelliteContext.d.ts +11 -0
  291. package/cjs/Satellite/SatelliteContext.js +34 -0
  292. package/cjs/Satellite/SatelliteRouter.d.ts +21 -0
  293. package/cjs/Satellite/SatelliteRouter.js +56 -0
  294. package/cjs/Satellite/index.d.ts +6 -0
  295. package/cjs/Satellite/index.js +88 -0
  296. package/cjs/Satellite/locale.d.ts +29 -0
  297. package/cjs/Satellite/locale.js +21 -0
  298. package/cjs/Satellite/useCreatePortal.d.ts +4 -0
  299. package/cjs/Satellite/useCreatePortal.js +29 -0
  300. package/cjs/ScrollIndicator/ScrollIndicator.d.ts +14 -0
  301. package/cjs/ScrollIndicator/ScrollIndicator.js +111 -0
  302. package/cjs/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
  303. package/cjs/ScrollIndicator/ScrollIndicator.tailwind.js +52 -0
  304. package/cjs/ScrollIndicator/index.d.ts +2 -0
  305. package/cjs/ScrollIndicator/index.js +32 -0
  306. package/cjs/Select/Select.d.ts +15 -0
  307. package/cjs/Select/Select.js +59 -0
  308. package/cjs/Select/Select.tailwind.d.ts +5 -0
  309. package/cjs/Select/Select.tailwind.js +79 -0
  310. package/{types/components → cjs}/Select/index.d.ts +0 -0
  311. package/cjs/Select/index.js +32 -0
  312. package/cjs/Sidebar/Sidebar.d.ts +35 -0
  313. package/cjs/Sidebar/Sidebar.js +81 -0
  314. package/cjs/Sidebar/SidebarButtonLink.d.ts +14 -0
  315. package/cjs/Sidebar/SidebarButtonLink.js +110 -0
  316. package/cjs/Sidebar/SidebarContext.d.ts +9 -0
  317. package/cjs/Sidebar/SidebarContext.js +23 -0
  318. package/cjs/Sidebar/SidebarHeader.d.ts +6 -0
  319. package/cjs/Sidebar/SidebarHeader.js +29 -0
  320. package/cjs/Sidebar/SidebarHeading.d.ts +7 -0
  321. package/cjs/Sidebar/SidebarHeading.js +37 -0
  322. package/cjs/Sidebar/SidebarLink.d.ts +8 -0
  323. package/cjs/Sidebar/SidebarLink.js +58 -0
  324. package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +8 -0
  325. package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +47 -0
  326. package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
  327. package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +40 -0
  328. package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +23 -0
  329. package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +120 -0
  330. package/cjs/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
  331. package/cjs/Sidebar/SidebarLinksGroup/index.js +18 -0
  332. package/cjs/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
  333. package/cjs/Sidebar/SidebarLinksGroup/types.js +5 -0
  334. package/cjs/Sidebar/SidebarNav.d.ts +10 -0
  335. package/cjs/Sidebar/SidebarNav.js +48 -0
  336. package/cjs/Sidebar/index.d.ts +9 -0
  337. package/cjs/Sidebar/index.js +128 -0
  338. package/cjs/Sidebar/types.d.ts +6 -0
  339. package/cjs/Sidebar/types.js +5 -0
  340. package/cjs/Switch/Switch.d.ts +13 -0
  341. package/cjs/Switch/Switch.js +107 -0
  342. package/cjs/Switch/Switch.tailwind.d.ts +5 -0
  343. package/cjs/Switch/Switch.tailwind.js +26 -0
  344. package/cjs/Switch/SwitchOption.d.ts +8 -0
  345. package/cjs/Switch/SwitchOption.js +58 -0
  346. package/cjs/Switch/index.d.ts +3 -0
  347. package/cjs/Switch/index.js +46 -0
  348. package/cjs/Switch/types.d.ts +7 -0
  349. package/cjs/Switch/types.js +5 -0
  350. package/cjs/Switch/utils.d.ts +6 -0
  351. package/cjs/Switch/utils.js +31 -0
  352. package/cjs/Tables/DataTable/DataTable.d.ts +60 -0
  353. package/cjs/Tables/DataTable/DataTable.js +303 -0
  354. package/cjs/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
  355. package/cjs/Tables/DataTable/DataTable.tailwind.js +23 -0
  356. package/cjs/Tables/DataTable/components/Body.d.ts +15 -0
  357. package/cjs/Tables/DataTable/components/Body.js +140 -0
  358. package/cjs/Tables/DataTable/components/Footer.d.ts +8 -0
  359. package/cjs/Tables/DataTable/components/Footer.js +81 -0
  360. package/cjs/Tables/DataTable/components/Header.d.ts +10 -0
  361. package/cjs/Tables/DataTable/components/Header.js +48 -0
  362. package/cjs/Tables/DataTable/components/HeaderCell.d.ts +12 -0
  363. package/cjs/Tables/DataTable/components/HeaderCell.js +77 -0
  364. package/cjs/Tables/DataTable/components/Loader.d.ts +8 -0
  365. package/cjs/Tables/DataTable/components/Loader.js +62 -0
  366. package/cjs/Tables/DataTable/components/index.d.ts +5 -0
  367. package/cjs/Tables/DataTable/components/index.js +70 -0
  368. package/cjs/Tables/DataTable/index.d.ts +3 -0
  369. package/cjs/Tables/DataTable/index.js +46 -0
  370. package/cjs/Tables/DataTable/types.d.ts +49 -0
  371. package/cjs/Tables/DataTable/types.js +5 -0
  372. package/cjs/Tables/DataTable/utils.d.ts +4 -0
  373. package/cjs/Tables/DataTable/utils.js +32 -0
  374. package/cjs/Tables/Table/Table.d.ts +28 -0
  375. package/cjs/Tables/Table/Table.js +76 -0
  376. package/cjs/Tables/Table/Table.tailwind.d.ts +5 -0
  377. package/cjs/Tables/Table/Table.tailwind.js +40 -0
  378. package/cjs/Tables/Table/components/TableFooter.d.ts +8 -0
  379. package/cjs/Tables/Table/components/TableFooter.js +36 -0
  380. package/cjs/Tables/Table/index.d.ts +3 -0
  381. package/cjs/Tables/Table/index.js +46 -0
  382. package/cjs/Tables/index.d.ts +3 -0
  383. package/cjs/Tables/index.js +46 -0
  384. package/cjs/Tabs/ContentTabs.d.ts +4 -0
  385. package/cjs/Tabs/ContentTabs.js +96 -0
  386. package/cjs/Tabs/LinkTabs.d.ts +33 -0
  387. package/cjs/Tabs/LinkTabs.js +91 -0
  388. package/cjs/Tabs/Tabs.tailwind.d.ts +5 -0
  389. package/cjs/Tabs/Tabs.tailwind.js +54 -0
  390. package/cjs/Tabs/components/LinkTab.d.ts +9 -0
  391. package/cjs/Tabs/components/LinkTab.js +111 -0
  392. package/cjs/Tabs/index.d.ts +4 -0
  393. package/cjs/Tabs/index.js +60 -0
  394. package/cjs/Tabs/types.d.ts +35 -0
  395. package/cjs/Tabs/types.js +5 -0
  396. package/cjs/Tabs/utils.d.ts +2 -0
  397. package/cjs/Tabs/utils.js +24 -0
  398. package/cjs/Tag/Tag.d.ts +38 -0
  399. package/cjs/Tag/Tag.js +122 -0
  400. package/cjs/Tag/Tag.tailwind.d.ts +5 -0
  401. package/cjs/Tag/Tag.tailwind.js +39 -0
  402. package/cjs/Tag/index.d.ts +2 -0
  403. package/cjs/Tag/index.js +32 -0
  404. package/cjs/TextArea/TextArea.d.ts +5 -0
  405. package/cjs/TextArea/TextArea.js +43 -0
  406. package/cjs/TextArea/TextArea.tailwind.d.ts +5 -0
  407. package/cjs/TextArea/TextArea.tailwind.js +42 -0
  408. package/{types/components → cjs}/TextArea/index.d.ts +0 -0
  409. package/cjs/TextArea/index.js +32 -0
  410. package/cjs/TextWrap/TextWrap.d.ts +7 -0
  411. package/cjs/TextWrap/TextWrap.js +70 -0
  412. package/cjs/TextWrap/index.d.ts +2 -0
  413. package/cjs/TextWrap/index.js +32 -0
  414. package/cjs/Toggle/Toggle.d.ts +10 -0
  415. package/cjs/Toggle/Toggle.js +93 -0
  416. package/cjs/Toggle/Toggle.tailwind.d.ts +5 -0
  417. package/cjs/Toggle/Toggle.tailwind.js +68 -0
  418. package/cjs/Toggle/index.d.ts +2 -0
  419. package/cjs/Toggle/index.js +32 -0
  420. package/cjs/Tooltip/OverflowTooltipWrapper.d.ts +6 -0
  421. package/cjs/Tooltip/OverflowTooltipWrapper.js +131 -0
  422. package/cjs/Tooltip/Tooltip.d.ts +24 -0
  423. package/cjs/Tooltip/Tooltip.js +67 -0
  424. package/cjs/Tooltip/Tooltip.tailwind.d.ts +5 -0
  425. package/cjs/Tooltip/Tooltip.tailwind.js +115 -0
  426. package/cjs/Tooltip/TooltipWrapper.d.ts +28 -0
  427. package/cjs/Tooltip/TooltipWrapper.js +219 -0
  428. package/{types/components → cjs}/Tooltip/index.d.ts +1 -0
  429. package/cjs/Tooltip/index.js +60 -0
  430. package/cjs/Tooltip/types.d.ts +14 -0
  431. package/cjs/Tooltip/types.js +5 -0
  432. package/cjs/Typography/Typography.tailwind.d.ts +5 -0
  433. package/cjs/Typography/Typography.tailwind.js +176 -0
  434. package/cjs/UserContent/UserContent.d.ts +8 -0
  435. package/cjs/UserContent/UserContent.js +37 -0
  436. package/cjs/UserContent/UserContent.tailwind.d.ts +5 -0
  437. package/cjs/UserContent/UserContent.tailwind.js +150 -0
  438. package/cjs/index.d.ts +46 -0
  439. package/cjs/index.js +633 -0
  440. package/cjs/package.json +3 -0
  441. package/cjs/styles/base.tailwind.d.ts +5 -0
  442. package/cjs/styles/base.tailwind.js +41 -0
  443. package/cjs/styles/brandColors.d.ts +42 -0
  444. package/cjs/styles/brandColors.js +48 -0
  445. package/cjs/styles/colors.d.ts +81 -0
  446. package/cjs/styles/colors.js +87 -0
  447. package/cjs/styles/disabledColor.d.ts +6 -0
  448. package/cjs/styles/disabledColor.js +17 -0
  449. package/cjs/styles/helpers/icons.d.ts +15 -0
  450. package/cjs/styles/helpers/icons.js +45 -0
  451. package/cjs/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
  452. package/cjs/styles/helpers/makePurgeCssExtractor.js +62 -0
  453. package/cjs/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
  454. package/cjs/styles/helpers/makeTailwindPrefixer.js +44 -0
  455. package/cjs/styles/helpers/prefixTailwindClassName.d.ts +7 -0
  456. package/cjs/styles/helpers/prefixTailwindClassName.js +28 -0
  457. package/cjs/styles/helpers/satellitePrefixer.d.ts +3 -0
  458. package/cjs/styles/helpers/satellitePrefixer.js +9 -0
  459. package/cjs/styles/rgba.d.ts +8 -0
  460. package/cjs/styles/rgba.js +17 -0
  461. package/cjs/styles/tailwind.config.d.ts +2 -0
  462. package/cjs/styles/tailwind.config.js +151 -0
  463. package/cjs/styles/zIndexes.d.ts +7 -0
  464. package/cjs/styles/zIndexes.js +13 -0
  465. package/cjs/types.d.ts +19 -0
  466. package/cjs/types.js +5 -0
  467. package/cjs/utilities/utilities.tailwind.d.ts +5 -0
  468. package/cjs/utilities/utilities.tailwind.js +30 -0
  469. package/cjs/utils/event-polyfill.d.ts +0 -0
  470. package/cjs/utils/event-polyfill.js +27 -0
  471. package/cjs/utils/formatters.d.ts +25 -0
  472. package/cjs/utils/formatters.js +51 -0
  473. package/cjs/utils/genericChangeHandler.d.ts +5 -0
  474. package/{utils → cjs/utils}/genericChangeHandler.js +1 -1
  475. package/cjs/utils/hashCode.d.ts +2 -0
  476. package/cjs/utils/hashCode.js +28 -0
  477. package/cjs/utils/index.d.ts +8 -0
  478. package/{utils → cjs/utils}/index.js +13 -13
  479. package/cjs/utils/isCssPropertySupported.d.ts +2 -0
  480. package/cjs/utils/isCssPropertySupported.js +19 -0
  481. package/cjs/utils/isNil.d.ts +19 -0
  482. package/cjs/utils/isNil.js +31 -0
  483. package/cjs/utils/isRenderedChild.d.ts +8 -0
  484. package/cjs/utils/isRenderedChild.js +18 -0
  485. package/cjs/utils/matchLocation.d.ts +3 -0
  486. package/cjs/utils/matchLocation.js +17 -0
  487. package/cjs/utils/onlyText.d.ts +3 -0
  488. package/cjs/utils/onlyText.js +49 -0
  489. package/cjs/utils/parseUrl.d.ts +11 -0
  490. package/cjs/utils/parseUrl.js +25 -0
  491. package/{types → cjs}/utils/pluralize.d.ts +0 -0
  492. package/{utils → cjs/utils}/pluralize.js +7 -2
  493. package/{types → cjs}/utils/range.d.ts +0 -0
  494. package/{utils → cjs/utils}/range.js +1 -1
  495. package/cjs/utils/toSentenceCase.d.ts +3 -0
  496. package/cjs/utils/toSentenceCase.js +21 -0
  497. package/{types → cjs}/utils/uniqBy.d.ts +0 -0
  498. package/{utils → cjs/utils}/uniqBy.js +1 -1
  499. package/{types → cjs}/utils/uniqueId.d.ts +0 -0
  500. package/{utils → cjs/utils}/uniqueId.js +1 -1
  501. package/cjs/utils/useForwardedRef.d.ts +3 -0
  502. package/cjs/utils/useForwardedRef.js +31 -0
  503. package/cjs/utils/useLinkProps.d.ts +7 -0
  504. package/cjs/utils/useLinkProps.js +67 -0
  505. package/cjs/utils/useTriggerInputChange.d.ts +8 -0
  506. package/cjs/utils/useTriggerInputChange.js +30 -0
  507. package/esm/AnnouncementBadge/AnnouncementBadge.d.ts +15 -0
  508. package/esm/AnnouncementBadge/AnnouncementBadge.js +47 -0
  509. package/esm/AnnouncementBadge/index.d.ts +2 -0
  510. package/esm/AnnouncementBadge/index.js +2 -0
  511. package/esm/AutoComplete/AutoComplete.d.ts +66 -0
  512. package/esm/AutoComplete/AutoComplete.js +655 -0
  513. package/esm/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
  514. package/esm/AutoComplete/AutoComplete.tailwind.js +94 -0
  515. package/esm/AutoComplete/components/AutoCompleteEmptyState.d.ts +13 -0
  516. package/esm/AutoComplete/components/AutoCompleteEmptyState.js +31 -0
  517. package/esm/AutoComplete/components/DefaultOptionItem.d.ts +7 -0
  518. package/esm/AutoComplete/components/DefaultOptionItem.js +36 -0
  519. package/esm/AutoComplete/index.d.ts +5 -0
  520. package/esm/AutoComplete/index.js +5 -0
  521. package/esm/AutoComplete/types.d.ts +86 -0
  522. package/esm/AutoComplete/types.js +1 -0
  523. package/esm/AutoComplete/utils.d.ts +5 -0
  524. package/esm/AutoComplete/utils.js +43 -0
  525. package/esm/Avatars/ApplicationAvatar.d.ts +13 -0
  526. package/esm/Avatars/ApplicationAvatar.js +30 -0
  527. package/esm/Avatars/UserAvatar.d.ts +13 -0
  528. package/esm/Avatars/UserAvatar.js +55 -0
  529. package/esm/Avatars/index.d.ts +3 -0
  530. package/esm/Avatars/index.js +3 -0
  531. package/esm/Avatars/types.d.ts +17 -0
  532. package/esm/Avatars/types.js +1 -0
  533. package/esm/Avatars/utils.d.ts +6 -0
  534. package/esm/Avatars/utils.js +64 -0
  535. package/esm/Badge/Badge.d.ts +35 -0
  536. package/esm/Badge/Badge.js +82 -0
  537. package/esm/Badge/index.d.ts +2 -0
  538. package/esm/Badge/index.js +2 -0
  539. package/esm/Banners/Alert/Alert.d.ts +74 -0
  540. package/esm/Banners/Alert/Alert.js +134 -0
  541. package/esm/Banners/Alert/index.d.ts +2 -0
  542. package/esm/Banners/Alert/index.js +2 -0
  543. package/esm/Banners/BigBertha/BigBertha.d.ts +41 -0
  544. package/esm/Banners/BigBertha/BigBertha.js +57 -0
  545. package/esm/Banners/BigBertha/index.d.ts +2 -0
  546. package/esm/Banners/BigBertha/index.js +2 -0
  547. package/esm/Banners/Promote/Promote.d.ts +57 -0
  548. package/esm/Banners/Promote/Promote.js +104 -0
  549. package/esm/Banners/Promote/index.d.ts +2 -0
  550. package/esm/Banners/Promote/index.js +2 -0
  551. package/esm/Banners/index.d.ts +3 -0
  552. package/esm/Banners/index.js +3 -0
  553. package/esm/Button/Button.d.ts +21 -0
  554. package/esm/Button/Button.js +80 -0
  555. package/esm/Button/Button.tailwind.d.ts +5 -0
  556. package/esm/Button/Button.tailwind.js +155 -0
  557. package/esm/Button/ButtonGroup.d.ts +13 -0
  558. package/esm/Button/ButtonGroup.js +24 -0
  559. package/esm/Button/IconButton.d.ts +17 -0
  560. package/esm/Button/IconButton.js +80 -0
  561. package/esm/Button/index.d.ts +5 -0
  562. package/esm/Button/index.js +5 -0
  563. package/esm/Button/styles.d.ts +5 -0
  564. package/esm/Button/styles.js +31 -0
  565. package/esm/Button/types.d.ts +27 -0
  566. package/esm/Button/types.js +3 -0
  567. package/esm/Card/Card.d.ts +26 -0
  568. package/esm/Card/Card.js +39 -0
  569. package/esm/Card/Card.tailwind.d.ts +5 -0
  570. package/esm/Card/Card.tailwind.js +35 -0
  571. package/esm/Card/components/CardHeader.d.ts +4 -0
  572. package/esm/Card/components/CardHeader.js +24 -0
  573. package/esm/Card/components/CardTitle.d.ts +6 -0
  574. package/esm/Card/components/CardTitle.js +26 -0
  575. package/esm/Card/index.d.ts +4 -0
  576. package/esm/Card/index.js +4 -0
  577. package/esm/Checkbox/Checkbox.d.ts +24 -0
  578. package/esm/Checkbox/Checkbox.js +103 -0
  579. package/esm/Checkbox/Checkbox.tailwind.d.ts +5 -0
  580. package/esm/Checkbox/Checkbox.tailwind.js +65 -0
  581. package/esm/Checkbox/index.d.ts +2 -0
  582. package/esm/Checkbox/index.js +2 -0
  583. package/esm/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
  584. package/esm/ClickAwayContainer/ClickAwayContainer.js +78 -0
  585. package/esm/ClickAwayContainer/index.d.ts +1 -0
  586. package/esm/ClickAwayContainer/index.js +1 -0
  587. package/esm/DatePicker/DatePicker/DatePicker.d.ts +34 -0
  588. package/esm/DatePicker/DatePicker/DatePicker.js +174 -0
  589. package/esm/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
  590. package/esm/DatePicker/DatePicker/datePickerReducer.js +52 -0
  591. package/esm/DatePicker/DatePicker/index.d.ts +3 -0
  592. package/esm/DatePicker/DatePicker/index.js +3 -0
  593. package/esm/DatePicker/DatePicker.tailwind.d.ts +5 -0
  594. package/esm/DatePicker/DatePicker.tailwind.js +131 -0
  595. package/esm/DatePicker/DateRangePicker/DateRangePicker.d.ts +34 -0
  596. package/esm/DatePicker/DateRangePicker/DateRangePicker.js +260 -0
  597. package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +14 -0
  598. package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.js +37 -0
  599. package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
  600. package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.js +104 -0
  601. package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
  602. package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +9 -0
  603. package/esm/DatePicker/DateRangePicker/index.d.ts +4 -0
  604. package/esm/DatePicker/DateRangePicker/index.js +4 -0
  605. package/esm/DatePicker/components/Calendar.d.ts +17 -0
  606. package/esm/DatePicker/components/Calendar.js +73 -0
  607. package/esm/DatePicker/components/Display.d.ts +10 -0
  608. package/esm/DatePicker/components/Display.js +19 -0
  609. package/esm/DatePicker/components/Footer.d.ts +6 -0
  610. package/esm/DatePicker/components/Footer.js +16 -0
  611. package/esm/DatePicker/components/FooterActions.d.ts +12 -0
  612. package/esm/DatePicker/components/FooterActions.js +30 -0
  613. package/esm/DatePicker/components/Modal.d.ts +16 -0
  614. package/esm/DatePicker/components/Modal.js +70 -0
  615. package/esm/DatePicker/components/NavBar.d.ts +16 -0
  616. package/esm/DatePicker/components/NavBar.js +77 -0
  617. package/esm/DatePicker/components/SidePanel.d.ts +6 -0
  618. package/esm/DatePicker/components/SidePanel.js +19 -0
  619. package/esm/DatePicker/components/index.d.ts +12 -0
  620. package/esm/DatePicker/components/index.js +6 -0
  621. package/esm/DatePicker/index.d.ts +5 -0
  622. package/esm/DatePicker/index.js +5 -0
  623. package/esm/DatePicker/types.d.ts +17 -0
  624. package/esm/DatePicker/types.js +1 -0
  625. package/esm/DatePicker/utils.d.ts +3 -0
  626. package/esm/DatePicker/utils.js +11 -0
  627. package/esm/Dropdown/Dropdown.d.ts +64 -0
  628. package/esm/Dropdown/Dropdown.js +138 -0
  629. package/esm/Dropdown/DropdownButton.d.ts +11 -0
  630. package/esm/Dropdown/DropdownButton.js +45 -0
  631. package/esm/Dropdown/DropdownContext.d.ts +7 -0
  632. package/esm/Dropdown/DropdownContext.js +12 -0
  633. package/esm/Dropdown/components/DropdownButtonItem.d.ts +19 -0
  634. package/esm/Dropdown/components/DropdownButtonItem.js +43 -0
  635. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
  636. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +58 -0
  637. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +7 -0
  638. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +14 -0
  639. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +7 -0
  640. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +11 -0
  641. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +9 -0
  642. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +32 -0
  643. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +9 -0
  644. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +29 -0
  645. package/esm/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
  646. package/esm/Dropdown/components/DropdownCollapsibleItem/index.js +5 -0
  647. package/esm/Dropdown/components/DropdownDivider.d.ts +3 -0
  648. package/esm/Dropdown/components/DropdownDivider.js +12 -0
  649. package/esm/Dropdown/components/DropdownFooterItem.d.ts +7 -0
  650. package/esm/Dropdown/components/DropdownFooterItem.js +28 -0
  651. package/esm/Dropdown/components/DropdownLinkItem.d.ts +14 -0
  652. package/esm/Dropdown/components/DropdownLinkItem.js +46 -0
  653. package/esm/Dropdown/components/DropdownRadioItem.d.ts +13 -0
  654. package/esm/Dropdown/components/DropdownRadioItem.js +43 -0
  655. package/esm/Dropdown/components/DropdownTitle.d.ts +6 -0
  656. package/esm/Dropdown/components/DropdownTitle.js +24 -0
  657. package/esm/Dropdown/components/DropdownToggleItem.d.ts +16 -0
  658. package/esm/Dropdown/components/DropdownToggleItem.js +45 -0
  659. package/esm/Dropdown/index.d.ts +13 -0
  660. package/esm/Dropdown/index.js +13 -0
  661. package/esm/Dropdown/useDropdownItemProps.d.ts +21 -0
  662. package/esm/Dropdown/useDropdownItemProps.js +37 -0
  663. package/esm/Dropzone/Dropzone.d.ts +20 -0
  664. package/esm/Dropzone/Dropzone.js +169 -0
  665. package/esm/Dropzone/index.d.ts +2 -0
  666. package/esm/Dropzone/index.js +2 -0
  667. package/esm/EmptyState/EmptyState.d.ts +28 -0
  668. package/esm/EmptyState/EmptyState.js +121 -0
  669. package/esm/EmptyState/EmptyState.tailwind.d.ts +5 -0
  670. package/esm/EmptyState/EmptyState.tailwind.js +14 -0
  671. package/esm/EmptyState/index.d.ts +3 -0
  672. package/esm/EmptyState/index.js +3 -0
  673. package/esm/EmptyState/types.d.ts +65 -0
  674. package/esm/EmptyState/types.js +1 -0
  675. package/esm/Field/Field.d.ts +54 -0
  676. package/esm/Field/Field.js +88 -0
  677. package/esm/Field/FieldStateContext.d.ts +12 -0
  678. package/esm/Field/FieldStateContext.js +6 -0
  679. package/esm/Field/index.d.ts +4 -0
  680. package/esm/Field/index.js +4 -0
  681. package/esm/Field/useFieldState.d.ts +2 -0
  682. package/esm/Field/useFieldState.js +6 -0
  683. package/esm/Flag/Flag.d.ts +6 -0
  684. package/esm/Flag/Flag.js +115 -0
  685. package/esm/Flag/Flag.tailwind.d.ts +5 -0
  686. package/esm/Flag/Flag.tailwind.js +33 -0
  687. package/esm/Flag/Flags.d.ts +48 -0
  688. package/esm/Flag/Flags.js +87 -0
  689. package/esm/Flag/index.d.ts +4 -0
  690. package/esm/Flag/index.js +4 -0
  691. package/esm/Flag/types.d.ts +22 -0
  692. package/esm/Flag/types.js +1 -0
  693. package/esm/FlexGrid/FlexGrid.d.ts +17 -0
  694. package/esm/FlexGrid/FlexGrid.js +64 -0
  695. package/esm/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
  696. package/esm/FlexGrid/FlexGrid.tailwind.js +74 -0
  697. package/esm/FlexGrid/index.d.ts +2 -0
  698. package/esm/FlexGrid/index.js +2 -0
  699. package/esm/HelpUnderline/HelpUnderline.d.ts +12 -0
  700. package/esm/HelpUnderline/HelpUnderline.js +27 -0
  701. package/esm/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
  702. package/esm/HelpUnderline/HelpUnderline.tailwind.js +20 -0
  703. package/esm/HelpUnderline/index.d.ts +2 -0
  704. package/esm/HelpUnderline/index.js +2 -0
  705. package/esm/Input/Input.d.ts +26 -0
  706. package/esm/Input/Input.js +232 -0
  707. package/esm/Input/Input.tailwind.d.ts +5 -0
  708. package/esm/Input/Input.tailwind.js +100 -0
  709. package/esm/Input/index.d.ts +2 -0
  710. package/esm/Input/index.js +2 -0
  711. package/esm/Insert/Insert.d.ts +45 -0
  712. package/esm/Insert/Insert.js +75 -0
  713. package/esm/Insert/index.d.ts +2 -0
  714. package/esm/Insert/index.js +2 -0
  715. package/esm/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
  716. package/esm/InstantSearch/InstantSearch.tailwind.js +377 -0
  717. package/esm/KeyboardKey/KeyboardKey.d.ts +7 -0
  718. package/esm/KeyboardKey/KeyboardKey.js +31 -0
  719. package/esm/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
  720. package/esm/KeyboardKey/KeyboardKey.tailwind.js +28 -0
  721. package/esm/KeyboardKey/index.d.ts +2 -0
  722. package/esm/KeyboardKey/index.js +2 -0
  723. package/esm/Link/BaseLink.d.ts +4 -0
  724. package/esm/Link/BaseLink.js +26 -0
  725. package/esm/Link/ButtonLink.d.ts +5 -0
  726. package/esm/Link/ButtonLink.js +33 -0
  727. package/esm/Link/IconButtonLink.d.ts +6 -0
  728. package/esm/Link/IconButtonLink.js +25 -0
  729. package/esm/Link/Link.d.ts +11 -0
  730. package/esm/Link/Link.js +52 -0
  731. package/esm/Link/index.d.ts +5 -0
  732. package/esm/Link/index.js +5 -0
  733. package/esm/Medallion/Medallion.d.ts +11 -0
  734. package/esm/Medallion/Medallion.js +34 -0
  735. package/esm/Medallion/Medallion.tailwind.d.ts +5 -0
  736. package/esm/Medallion/Medallion.tailwind.js +29 -0
  737. package/esm/Medallion/index.d.ts +3 -0
  738. package/esm/Medallion/index.js +3 -0
  739. package/esm/Medallion/types.d.ts +2 -0
  740. package/esm/Medallion/types.js +1 -0
  741. package/esm/Modal/Modal.d.ts +23 -0
  742. package/esm/Modal/Modal.js +166 -0
  743. package/esm/Modal/Modal.tailwind.d.ts +5 -0
  744. package/esm/Modal/Modal.tailwind.js +43 -0
  745. package/esm/Modal/components/ModalFooter.d.ts +6 -0
  746. package/esm/Modal/components/ModalFooter.js +31 -0
  747. package/esm/Modal/components/ModalSection.d.ts +10 -0
  748. package/esm/Modal/components/ModalSection.js +18 -0
  749. package/esm/Modal/index.d.ts +4 -0
  750. package/esm/Modal/index.js +4 -0
  751. package/esm/Pagination/CompactPagination/CompactPagination.d.ts +29 -0
  752. package/esm/Pagination/CompactPagination/CompactPagination.js +80 -0
  753. package/esm/Pagination/CompactPagination/index.d.ts +2 -0
  754. package/esm/Pagination/CompactPagination/index.js +2 -0
  755. package/esm/Pagination/DotPagination/DotPagination.d.ts +14 -0
  756. package/esm/Pagination/DotPagination/DotPagination.js +45 -0
  757. package/esm/Pagination/DotPagination/index.d.ts +2 -0
  758. package/esm/Pagination/DotPagination/index.js +2 -0
  759. package/esm/Pagination/Pagination/Pagination.d.ts +22 -0
  760. package/esm/Pagination/Pagination/Pagination.js +126 -0
  761. package/esm/Pagination/Pagination/index.d.ts +2 -0
  762. package/esm/Pagination/Pagination/index.js +2 -0
  763. package/esm/Pagination/index.d.ts +4 -0
  764. package/esm/Pagination/index.js +4 -0
  765. package/esm/ProgressBar/ProgressBar.d.ts +13 -0
  766. package/esm/ProgressBar/ProgressBar.js +44 -0
  767. package/esm/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
  768. package/esm/ProgressBar/ProgressBar.tailwind.js +25 -0
  769. package/esm/ProgressBar/index.d.ts +2 -0
  770. package/esm/ProgressBar/index.js +2 -0
  771. package/esm/ProgressSpinner/ProgressSpinner.d.ts +9 -0
  772. package/esm/ProgressSpinner/ProgressSpinner.js +50 -0
  773. package/esm/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
  774. package/esm/ProgressSpinner/ProgressSpinner.tailwind.js +35 -0
  775. package/esm/ProgressSpinner/index.d.ts +2 -0
  776. package/esm/ProgressSpinner/index.js +2 -0
  777. package/esm/RadioGroup/RadioButton.d.ts +4 -0
  778. package/esm/RadioGroup/RadioButton.js +28 -0
  779. package/esm/RadioGroup/RadioButton.tailwind.d.ts +5 -0
  780. package/esm/RadioGroup/RadioButton.tailwind.js +56 -0
  781. package/esm/RadioGroup/RadioGroup.d.ts +40 -0
  782. package/esm/RadioGroup/RadioGroup.js +103 -0
  783. package/esm/RadioGroup/RadiogroupContext.d.ts +14 -0
  784. package/esm/RadioGroup/RadiogroupContext.js +11 -0
  785. package/esm/RadioGroup/index.d.ts +4 -0
  786. package/esm/RadioGroup/index.js +4 -0
  787. package/esm/RangeSlider/RangeSlider.d.ts +18 -0
  788. package/esm/RangeSlider/RangeSlider.js +113 -0
  789. package/esm/RangeSlider/RangeSlider.tailwind.d.ts +5 -0
  790. package/esm/RangeSlider/RangeSlider.tailwind.js +73 -0
  791. package/esm/RangeSlider/index.d.ts +2 -0
  792. package/esm/RangeSlider/index.js +2 -0
  793. package/esm/Satellite/Satellite.d.ts +11 -0
  794. package/esm/Satellite/Satellite.js +19 -0
  795. package/esm/Satellite/SatelliteContext.d.ts +11 -0
  796. package/esm/Satellite/SatelliteContext.js +18 -0
  797. package/esm/Satellite/SatelliteRouter.d.ts +21 -0
  798. package/esm/Satellite/SatelliteRouter.js +42 -0
  799. package/esm/Satellite/index.d.ts +6 -0
  800. package/esm/Satellite/index.js +6 -0
  801. package/esm/Satellite/locale.d.ts +29 -0
  802. package/esm/Satellite/locale.js +8 -0
  803. package/esm/Satellite/useCreatePortal.d.ts +4 -0
  804. package/esm/Satellite/useCreatePortal.js +16 -0
  805. package/esm/ScrollIndicator/ScrollIndicator.d.ts +14 -0
  806. package/esm/ScrollIndicator/ScrollIndicator.js +92 -0
  807. package/esm/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
  808. package/esm/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
  809. package/esm/ScrollIndicator/index.d.ts +2 -0
  810. package/esm/ScrollIndicator/index.js +2 -0
  811. package/esm/Select/Select.d.ts +15 -0
  812. package/esm/Select/Select.js +42 -0
  813. package/esm/Select/Select.tailwind.d.ts +5 -0
  814. package/esm/Select/Select.tailwind.js +77 -0
  815. package/esm/Select/index.d.ts +2 -0
  816. package/esm/Select/index.js +2 -0
  817. package/esm/Sidebar/Sidebar.d.ts +35 -0
  818. package/esm/Sidebar/Sidebar.js +60 -0
  819. package/esm/Sidebar/SidebarButtonLink.d.ts +14 -0
  820. package/esm/Sidebar/SidebarButtonLink.js +92 -0
  821. package/esm/Sidebar/SidebarContext.d.ts +9 -0
  822. package/esm/Sidebar/SidebarContext.js +11 -0
  823. package/esm/Sidebar/SidebarHeader.d.ts +6 -0
  824. package/esm/Sidebar/SidebarHeader.js +15 -0
  825. package/esm/Sidebar/SidebarHeading.d.ts +7 -0
  826. package/esm/Sidebar/SidebarHeading.js +22 -0
  827. package/esm/Sidebar/SidebarLink.d.ts +8 -0
  828. package/esm/Sidebar/SidebarLink.js +42 -0
  829. package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +8 -0
  830. package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +32 -0
  831. package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
  832. package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +25 -0
  833. package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +23 -0
  834. package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +100 -0
  835. package/esm/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
  836. package/esm/Sidebar/SidebarLinksGroup/index.js +2 -0
  837. package/esm/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
  838. package/esm/Sidebar/SidebarLinksGroup/types.js +1 -0
  839. package/esm/Sidebar/SidebarNav.d.ts +10 -0
  840. package/esm/Sidebar/SidebarNav.js +33 -0
  841. package/esm/Sidebar/index.d.ts +9 -0
  842. package/esm/Sidebar/index.js +9 -0
  843. package/esm/Sidebar/types.d.ts +6 -0
  844. package/esm/Sidebar/types.js +1 -0
  845. package/esm/Switch/Switch.d.ts +13 -0
  846. package/esm/Switch/Switch.js +87 -0
  847. package/esm/Switch/Switch.tailwind.d.ts +5 -0
  848. package/esm/Switch/Switch.tailwind.js +24 -0
  849. package/esm/Switch/SwitchOption.d.ts +8 -0
  850. package/esm/Switch/SwitchOption.js +41 -0
  851. package/esm/Switch/index.d.ts +3 -0
  852. package/esm/Switch/index.js +3 -0
  853. package/esm/Switch/types.d.ts +7 -0
  854. package/esm/Switch/types.js +1 -0
  855. package/esm/Switch/utils.d.ts +6 -0
  856. package/esm/Switch/utils.js +11 -0
  857. package/esm/Tables/DataTable/DataTable.d.ts +60 -0
  858. package/esm/Tables/DataTable/DataTable.js +274 -0
  859. package/esm/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
  860. package/esm/Tables/DataTable/DataTable.tailwind.js +21 -0
  861. package/esm/Tables/DataTable/components/Body.d.ts +15 -0
  862. package/esm/Tables/DataTable/components/Body.js +121 -0
  863. package/esm/Tables/DataTable/components/Footer.d.ts +8 -0
  864. package/esm/Tables/DataTable/components/Footer.js +60 -0
  865. package/esm/Tables/DataTable/components/Header.d.ts +10 -0
  866. package/esm/Tables/DataTable/components/Header.js +33 -0
  867. package/esm/Tables/DataTable/components/HeaderCell.d.ts +12 -0
  868. package/esm/Tables/DataTable/components/HeaderCell.js +59 -0
  869. package/esm/Tables/DataTable/components/Loader.d.ts +8 -0
  870. package/esm/Tables/DataTable/components/Loader.js +44 -0
  871. package/esm/Tables/DataTable/components/index.d.ts +5 -0
  872. package/esm/Tables/DataTable/components/index.js +5 -0
  873. package/esm/Tables/DataTable/index.d.ts +3 -0
  874. package/esm/Tables/DataTable/index.js +3 -0
  875. package/esm/Tables/DataTable/types.d.ts +49 -0
  876. package/esm/Tables/DataTable/types.js +1 -0
  877. package/esm/Tables/DataTable/utils.d.ts +4 -0
  878. package/esm/Tables/DataTable/utils.js +14 -0
  879. package/esm/Tables/Table/Table.d.ts +28 -0
  880. package/esm/Tables/Table/Table.js +61 -0
  881. package/esm/Tables/Table/Table.tailwind.d.ts +5 -0
  882. package/esm/Tables/Table/Table.tailwind.js +38 -0
  883. package/esm/Tables/Table/components/TableFooter.d.ts +8 -0
  884. package/esm/Tables/Table/components/TableFooter.js +21 -0
  885. package/esm/Tables/Table/index.d.ts +3 -0
  886. package/esm/Tables/Table/index.js +3 -0
  887. package/esm/Tables/index.d.ts +3 -0
  888. package/esm/Tables/index.js +3 -0
  889. package/esm/Tabs/ContentTabs.d.ts +4 -0
  890. package/esm/Tabs/ContentTabs.js +77 -0
  891. package/esm/Tabs/LinkTabs.d.ts +33 -0
  892. package/esm/Tabs/LinkTabs.js +70 -0
  893. package/esm/Tabs/Tabs.tailwind.d.ts +5 -0
  894. package/esm/Tabs/Tabs.tailwind.js +52 -0
  895. package/esm/Tabs/components/LinkTab.d.ts +9 -0
  896. package/esm/Tabs/components/LinkTab.js +94 -0
  897. package/esm/Tabs/index.d.ts +4 -0
  898. package/esm/Tabs/index.js +4 -0
  899. package/esm/Tabs/types.d.ts +35 -0
  900. package/esm/Tabs/types.js +1 -0
  901. package/esm/Tabs/utils.d.ts +2 -0
  902. package/esm/Tabs/utils.js +13 -0
  903. package/esm/Tag/Tag.d.ts +38 -0
  904. package/esm/Tag/Tag.js +104 -0
  905. package/esm/Tag/Tag.tailwind.d.ts +5 -0
  906. package/esm/Tag/Tag.tailwind.js +37 -0
  907. package/esm/Tag/index.d.ts +2 -0
  908. package/esm/Tag/index.js +2 -0
  909. package/esm/TextArea/TextArea.d.ts +5 -0
  910. package/esm/TextArea/TextArea.js +27 -0
  911. package/esm/TextArea/TextArea.tailwind.d.ts +5 -0
  912. package/esm/TextArea/TextArea.tailwind.js +40 -0
  913. package/esm/TextArea/index.d.ts +2 -0
  914. package/esm/TextArea/index.js +2 -0
  915. package/esm/TextWrap/TextWrap.d.ts +7 -0
  916. package/esm/TextWrap/TextWrap.js +55 -0
  917. package/esm/TextWrap/index.d.ts +2 -0
  918. package/esm/TextWrap/index.js +2 -0
  919. package/esm/Toggle/Toggle.d.ts +10 -0
  920. package/esm/Toggle/Toggle.js +77 -0
  921. package/esm/Toggle/Toggle.tailwind.d.ts +5 -0
  922. package/esm/Toggle/Toggle.tailwind.js +66 -0
  923. package/esm/Toggle/index.d.ts +2 -0
  924. package/esm/Toggle/index.js +2 -0
  925. package/esm/Tooltip/OverflowTooltipWrapper.d.ts +6 -0
  926. package/esm/Tooltip/OverflowTooltipWrapper.js +107 -0
  927. package/esm/Tooltip/Tooltip.d.ts +24 -0
  928. package/esm/Tooltip/Tooltip.js +50 -0
  929. package/esm/Tooltip/Tooltip.tailwind.d.ts +5 -0
  930. package/esm/Tooltip/Tooltip.tailwind.js +113 -0
  931. package/esm/Tooltip/TooltipWrapper.d.ts +28 -0
  932. package/esm/Tooltip/TooltipWrapper.js +196 -0
  933. package/esm/Tooltip/index.d.ts +4 -0
  934. package/esm/Tooltip/index.js +4 -0
  935. package/esm/Tooltip/types.d.ts +14 -0
  936. package/esm/Tooltip/types.js +1 -0
  937. package/esm/Typography/Typography.tailwind.d.ts +5 -0
  938. package/esm/Typography/Typography.tailwind.js +172 -0
  939. package/esm/UserContent/UserContent.d.ts +8 -0
  940. package/esm/UserContent/UserContent.js +21 -0
  941. package/esm/UserContent/UserContent.tailwind.d.ts +5 -0
  942. package/esm/UserContent/UserContent.tailwind.js +146 -0
  943. package/esm/index.d.ts +46 -0
  944. package/esm/index.js +46 -0
  945. package/esm/styles/base.tailwind.d.ts +5 -0
  946. package/esm/styles/base.tailwind.js +39 -0
  947. package/esm/styles/brandColors.d.ts +42 -0
  948. package/esm/styles/brandColors.js +46 -0
  949. package/esm/styles/colors.d.ts +81 -0
  950. package/esm/styles/colors.js +85 -0
  951. package/esm/styles/disabledColor.d.ts +6 -0
  952. package/esm/styles/disabledColor.js +15 -0
  953. package/esm/styles/helpers/icons.d.ts +15 -0
  954. package/esm/styles/helpers/icons.js +43 -0
  955. package/esm/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
  956. package/esm/styles/helpers/makePurgeCssExtractor.js +60 -0
  957. package/esm/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
  958. package/esm/styles/helpers/makeTailwindPrefixer.js +39 -0
  959. package/esm/styles/helpers/prefixTailwindClassName.d.ts +7 -0
  960. package/esm/styles/helpers/prefixTailwindClassName.js +26 -0
  961. package/esm/styles/helpers/satellitePrefixer.d.ts +3 -0
  962. package/esm/styles/helpers/satellitePrefixer.js +7 -0
  963. package/esm/styles/rgba.d.ts +8 -0
  964. package/esm/styles/rgba.js +15 -0
  965. package/esm/styles/tailwind.config.d.ts +2 -0
  966. package/esm/styles/tailwind.config.js +147 -0
  967. package/esm/styles/zIndexes.d.ts +7 -0
  968. package/esm/styles/zIndexes.js +11 -0
  969. package/esm/types.d.ts +19 -0
  970. package/esm/types.js +1 -0
  971. package/esm/utilities/utilities.tailwind.d.ts +5 -0
  972. package/esm/utilities/utilities.tailwind.js +25 -0
  973. package/esm/utils/event-polyfill.d.ts +0 -0
  974. package/esm/utils/event-polyfill.js +25 -0
  975. package/esm/utils/formatters.d.ts +25 -0
  976. package/esm/utils/formatters.js +40 -0
  977. package/esm/utils/genericChangeHandler.d.ts +5 -0
  978. package/esm/utils/genericChangeHandler.js +20 -0
  979. package/esm/utils/hashCode.d.ts +2 -0
  980. package/esm/utils/hashCode.js +18 -0
  981. package/esm/utils/index.d.ts +8 -0
  982. package/{types/utils/index.d.ts → esm/utils/index.js} +2 -2
  983. package/esm/utils/isCssPropertySupported.d.ts +2 -0
  984. package/esm/utils/isCssPropertySupported.js +11 -0
  985. package/esm/utils/isNil.d.ts +19 -0
  986. package/esm/utils/isNil.js +21 -0
  987. package/esm/utils/isRenderedChild.d.ts +8 -0
  988. package/esm/utils/isRenderedChild.js +10 -0
  989. package/esm/utils/matchLocation.d.ts +3 -0
  990. package/esm/utils/matchLocation.js +7 -0
  991. package/esm/utils/onlyText.d.ts +3 -0
  992. package/esm/utils/onlyText.js +41 -0
  993. package/esm/utils/parseUrl.d.ts +11 -0
  994. package/esm/utils/parseUrl.js +15 -0
  995. package/esm/utils/pluralize.d.ts +6 -0
  996. package/esm/utils/pluralize.js +19 -0
  997. package/esm/utils/range.d.ts +2 -0
  998. package/esm/utils/range.js +7 -0
  999. package/esm/utils/toSentenceCase.d.ts +3 -0
  1000. package/esm/utils/toSentenceCase.js +9 -0
  1001. package/esm/utils/uniqBy.d.ts +2 -0
  1002. package/esm/utils/uniqBy.js +15 -0
  1003. package/esm/utils/uniqueId.d.ts +2 -0
  1004. package/esm/utils/uniqueId.js +7 -0
  1005. package/esm/utils/useForwardedRef.d.ts +3 -0
  1006. package/esm/utils/useForwardedRef.js +20 -0
  1007. package/esm/utils/useLinkProps.d.ts +7 -0
  1008. package/esm/utils/useLinkProps.js +52 -0
  1009. package/esm/utils/useTriggerInputChange.d.ts +8 -0
  1010. package/esm/utils/useTriggerInputChange.js +22 -0
  1011. package/package.json +76 -49
  1012. package/satellite.min.css +3 -0
  1013. package/scss/colors.scss +113 -0
  1014. package/scss/variables.scss +7 -0
  1015. package/algolia-satellite-1.0.0-beta.14.tgz +0 -0
  1016. package/components/Alert/Alert.js +0 -49
  1017. package/components/AutoComplete/AutoComplete.js +0 -512
  1018. package/components/AutoComplete/index.js +0 -27
  1019. package/components/AutoComplete/types.js +0 -1
  1020. package/components/Button/Button.js +0 -59
  1021. package/components/Button/LinkButton.js +0 -52
  1022. package/components/Button/index.js +0 -40
  1023. package/components/Card/Card.js +0 -71
  1024. package/components/Card/components/CardHeader.js +0 -25
  1025. package/components/Card/components/CardTitle.js +0 -30
  1026. package/components/Card/index.js +0 -19
  1027. package/components/Checkbox/Checkbox.js +0 -66
  1028. package/components/Checkbox/index.js +0 -27
  1029. package/components/Chip/Chip.js +0 -77
  1030. package/components/Chip/index.js +0 -21
  1031. package/components/Dropdown/Dropdown.js +0 -163
  1032. package/components/Dropdown/DropdownButton.js +0 -117
  1033. package/components/Dropdown/components/DropdownDivider.js +0 -24
  1034. package/components/Dropdown/components/DropdownItem.js +0 -46
  1035. package/components/Dropdown/components/DropdownTitle.js +0 -34
  1036. package/components/Dropdown/index.js +0 -29
  1037. package/components/HelpUnderline/HelpUnderline.js +0 -39
  1038. package/components/HelpUnderline/index.js +0 -27
  1039. package/components/Input/Input.js +0 -134
  1040. package/components/Input/index.js +0 -27
  1041. package/components/LoaderIcon/LoaderIcon.js +0 -65
  1042. package/components/LoaderIcon/index.js +0 -27
  1043. package/components/MaterialIcon/MaterialIcon.js +0 -48
  1044. package/components/MaterialIcon/index.js +0 -27
  1045. package/components/Modal/Modal.js +0 -207
  1046. package/components/Modal/components/ModalFooter.js +0 -34
  1047. package/components/Modal/components/ModalSection.js +0 -38
  1048. package/components/Modal/index.js +0 -21
  1049. package/components/Pagination/Pagination.js +0 -131
  1050. package/components/Pagination/index.js +0 -27
  1051. package/components/RadioGroup/RadioButton.js +0 -35
  1052. package/components/RadioGroup/RadioGroup.js +0 -140
  1053. package/components/RadioGroup/index.js +0 -29
  1054. package/components/ScrollIndicator/ScrollIndicator.js +0 -165
  1055. package/components/ScrollIndicator/index.js +0 -21
  1056. package/components/Select/Select.js +0 -40
  1057. package/components/Select/index.js +0 -27
  1058. package/components/Table/Table.js +0 -36
  1059. package/components/Table/index.js +0 -19
  1060. package/components/TextArea/TextArea.js +0 -34
  1061. package/components/TextArea/index.js +0 -27
  1062. package/components/Tooltip/Tooltip.js +0 -29
  1063. package/components/Tooltip/TooltipWrapper.js +0 -164
  1064. package/components/Tooltip/index.js +0 -40
  1065. package/index.js +0 -173
  1066. package/satellite.css +0 -32
  1067. package/satellite.css.map +0 -1
  1068. package/styles/_colors.scss +0 -147
  1069. package/styles/_mixins.scss +0 -72
  1070. package/styles/_variables.scss +0 -71
  1071. package/types/components/Alert/Alert.d.ts +0 -9
  1072. package/types/components/AutoComplete/AutoComplete.d.ts +0 -66
  1073. package/types/components/AutoComplete/index.d.ts +0 -2
  1074. package/types/components/AutoComplete/types.d.ts +0 -21
  1075. package/types/components/AutoComplete/utils.d.ts +0 -3
  1076. package/types/components/Button/Button.d.ts +0 -13
  1077. package/types/components/Button/LinkButton.d.ts +0 -9
  1078. package/types/components/Button/index.d.ts +0 -3
  1079. package/types/components/Card/Card.d.ts +0 -13
  1080. package/types/components/Card/components/CardHeader.d.ts +0 -3
  1081. package/types/components/Card/components/CardTitle.d.ts +0 -7
  1082. package/types/components/Card/index.d.ts +0 -3
  1083. package/types/components/Checkbox/Checkbox.d.ts +0 -5
  1084. package/types/components/Chip/Chip.d.ts +0 -9
  1085. package/types/components/Chip/index.d.ts +0 -2
  1086. package/types/components/Dropdown/Dropdown.d.ts +0 -27
  1087. package/types/components/Dropdown/DropdownButton.d.ts +0 -12
  1088. package/types/components/Dropdown/components/DropdownDivider.d.ts +0 -6
  1089. package/types/components/Dropdown/components/DropdownItem.d.ts +0 -10
  1090. package/types/components/Dropdown/components/DropdownTitle.d.ts +0 -4
  1091. package/types/components/Dropdown/index.d.ts +0 -3
  1092. package/types/components/HelpUnderline/HelpUnderline.d.ts +0 -10
  1093. package/types/components/Input/Input.d.ts +0 -25
  1094. package/types/components/LoaderIcon/LoaderIcon.d.ts +0 -7
  1095. package/types/components/LoaderIcon/index.d.ts +0 -2
  1096. package/types/components/MaterialIcon/MaterialIcon.d.ts +0 -12
  1097. package/types/components/MaterialIcon/index.d.ts +0 -2
  1098. package/types/components/Modal/Modal.d.ts +0 -30
  1099. package/types/components/Modal/components/ModalFooter.d.ts +0 -4
  1100. package/types/components/Modal/components/ModalSection.d.ts +0 -6
  1101. package/types/components/Modal/index.d.ts +0 -2
  1102. package/types/components/Pagination/Pagination.d.ts +0 -12
  1103. package/types/components/RadioGroup/RadioButton.d.ts +0 -4
  1104. package/types/components/RadioGroup/RadioGroup.d.ts +0 -20
  1105. package/types/components/RadioGroup/index.d.ts +0 -3
  1106. package/types/components/ScrollIndicator/ScrollIndicator.d.ts +0 -24
  1107. package/types/components/ScrollIndicator/index.d.ts +0 -2
  1108. package/types/components/Select/Select.d.ts +0 -6
  1109. package/types/components/Table/Table.d.ts +0 -6
  1110. package/types/components/Table/index.d.ts +0 -3
  1111. package/types/components/TextArea/TextArea.d.ts +0 -5
  1112. package/types/components/Tooltip/Tooltip.d.ts +0 -5
  1113. package/types/components/Tooltip/TooltipWrapper.d.ts +0 -32
  1114. package/types/index.d.ts +0 -19
  1115. package/types/utils/clamp.d.ts +0 -2
  1116. package/types/utils/genericChangeHandler.d.ts +0 -5
  1117. package/types/utils/omit.d.ts +0 -2
  1118. package/utils/clamp.js +0 -20
  1119. package/utils/omit.js +0 -25
@@ -0,0 +1,82 @@
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 = ["children", "value", "icon", "variant", "size", "className"];
5
+
6
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16, _templateObject17, _templateObject18;
7
+
8
+ 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; }
9
+
10
+ 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; }
11
+
12
+ import cx from "clsx";
13
+ import stl from "../styles/helpers/satellitePrefixer";
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(["\n inline-flex items-center justify-center\n rounded-full border\n overflow-hidden\n"])));
17
+ var VARIANT_CLASSNAMES = {
18
+ grey: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["bg-grey-100 border-grey-200 text-grey-700"]))),
19
+ accent: stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["bg-accent-100 border-accent-200 text-accent-700"]))),
20
+ blue: stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["bg-blue-100 border-blue-200 text-blue-800"]))),
21
+ green: stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["bg-green-100 border-green-300 text-green-900"]))),
22
+ orange: stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["bg-orange-100 border-orange-300 text-orange-800"]))),
23
+ red: stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["bg-red-100 border-red-200 text-red-700"]))),
24
+ pink: stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["bg-pink-100 border-pink-200 text-pink-700"])))
25
+ };
26
+ var VALUE_VARIANT_CLASSNAMES = {
27
+ grey: stl(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["text-grey-600"]))),
28
+ accent: stl(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["text-accent-600"]))),
29
+ blue: stl(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["text-blue-800"]))),
30
+ green: stl(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["text-green-900"]))),
31
+ orange: stl(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["text-orange-800"]))),
32
+ red: stl(_templateObject14 || (_templateObject14 = _taggedTemplateLiteral(["text-red-700"]))),
33
+ pink: stl(_templateObject15 || (_templateObject15 = _taggedTemplateLiteral(["text-pink-600"])))
34
+ };
35
+ var SIZE_CLASSNAMES = {
36
+ "default": stl(_templateObject16 || (_templateObject16 = _taggedTemplateLiteral(["h-6 display-body px-2 space-x-2"]))),
37
+ small: stl(_templateObject17 || (_templateObject17 = _taggedTemplateLiteral(["h-4 display-caption px-1 space-x-1"])))
38
+ };
39
+ /**
40
+ * Badges are used to inform a user about a status of an item or a process. They can also contain a numeric value. Badges come with a set of colours that are easily identified. Green colour implies success or completion, while orange suggests a warning, on hold, or a problem. Red coloured badges mean error or failure.
41
+ *
42
+ * - Stay consistent with badge content (text), don't vary your vocabulary
43
+ * - Bages usually come after a textual information or explanation
44
+ * - Don't use badges where traditional error messages (such as form validation) can be used instead
45
+ * - Don't use badges with combination of buttons
46
+ * - Badges are not interactive
47
+ *
48
+ * Do use
49
+ *
50
+ * - To indicate progress of an A/B test
51
+ * - To indicate problem with an index
52
+ * - To display numeric values for multiple items (similar to a "tag cloud")
53
+ */
54
+
55
+ export var Badge = function Badge(_ref) {
56
+ var children = _ref.children,
57
+ value = _ref.value,
58
+ Icon = _ref.icon,
59
+ _ref$variant = _ref.variant,
60
+ variant = _ref$variant === void 0 ? "grey" : _ref$variant,
61
+ _ref$size = _ref.size,
62
+ size = _ref$size === void 0 ? "default" : _ref$size,
63
+ className = _ref.className,
64
+ props = _objectWithoutProperties(_ref, _excluded);
65
+
66
+ var badgeClassName = cx(BASE_CLASSNAMES, VARIANT_CLASSNAMES[variant], SIZE_CLASSNAMES[size], className);
67
+ return /*#__PURE__*/_jsxs("div", _objectSpread(_objectSpread({}, props), {}, {
68
+ className: badgeClassName,
69
+ children: [Icon && /*#__PURE__*/_jsx("span", {
70
+ children: /*#__PURE__*/_jsx(Icon, {
71
+ size: ".8em"
72
+ })
73
+ }), children && /*#__PURE__*/_jsx("span", {
74
+ className: stl(_templateObject18 || (_templateObject18 = _taggedTemplateLiteral(["truncate"]))),
75
+ children: children
76
+ }), value && /*#__PURE__*/_jsx("span", {
77
+ className: VALUE_VARIANT_CLASSNAMES[variant],
78
+ children: value
79
+ })]
80
+ }));
81
+ };
82
+ export default Badge;
@@ -0,0 +1,2 @@
1
+ export * from "./Badge";
2
+ export { default } from "./Badge";
@@ -0,0 +1,2 @@
1
+ export * from "./Badge";
2
+ export { default } from "./Badge";
@@ -0,0 +1,74 @@
1
+ import type { CSSProperties, FunctionComponent, ReactNode } from "react";
2
+ import type { ColorVariant, IconComponentType } from "../../types";
3
+ export declare type AlertContextType = "page" | "section";
4
+ export declare type AlertColorVariant = Exclude<ColorVariant, "blue">;
5
+ export interface AlertProps {
6
+ /** @ignore */
7
+ className?: string;
8
+ /** @ignore */
9
+ style?: CSSProperties;
10
+ /** Descriptive title for `Alert` */
11
+ title?: ReactNode;
12
+ /** @default grey */
13
+ variant?: AlertColorVariant;
14
+ /**
15
+ * Usage context description
16
+ * @default section
17
+ */
18
+ usageContext?: AlertContextType;
19
+ icon?: IconComponentType;
20
+ onDismiss?(): void;
21
+ children: ReactNode;
22
+ }
23
+ /**
24
+ * Alerts inform users about important changes or temporally conditions. Use this component if you need to communicate something to users in a prominent way.
25
+
26
+ * ## Examples
27
+ * [See the component in Figma](https://www.figma.com/file/99l59il97k2n5y4n6Jucal/%5BSatellite%5D-Components?node-id=2912%3A262266)
28
+
29
+ * ## Current Status
30
+ * - [x] Figma
31
+ * - [x] React
32
+ * - [ ] Documentation
33
+
34
+ * ## Component structure
35
+ * This component uses a common banner structure. It uses an icon that should match the intent of the message, an optional title _(Highly recommended)_, a short paragraph of text and optional buttons for follow up actions. The `Alert` is dismissible by default, to do so a cross icon is displayed on the top-right corner.
36
+
37
+ * ## Guidelines
38
+ * ### How to use it?
39
+ * Use the `Alert` if you want to inform the user about a specific action they need to do after something happened.
40
+
41
+ * ### How to NOT use it?
42
+ * Do not use the component to give higher visibility to trivial information, use the [Insert](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-insert--basic) component instead.
43
+ * Make sure that alerts are not stacking, We highly recommend to have only one per page if possible, though we understand that sometimes this is not possible.
44
+ * Do not use a product wide `Alert` to display features information.
45
+
46
+ * ### Variants
47
+ * This component comes with two sets of Variants:
48
+
49
+ * #### Color
50
+ * - `Grey` `Default`
51
+ * Use this as your default Alert if no other color matches your use-case.
52
+ * - `Accent` `Primary`
53
+ * Use this to represent something that is currently happening with no level of severity.
54
+ * - `Green` `Success`
55
+ * Use this to inform the user that an action has been completed in the background while the user wasn't on that page and/or needs further exploration from the user. For smaller and quick processes use the [Flag](https://algolia-satellite.netlify.app/?path=/docs/indicators-flag--basic) instead.
56
+ * - `Orange` `Warning`
57
+ * Use this to show the user that something important requires their attention. The warning should be used for low to medium errors.
58
+ * - `Red` `Failure`
59
+ * Use this to show the user that something requires their full attention and actions. Only use red for critical warnings that will result in a loss of data of production down time.
60
+
61
+ * #### Usage Context
62
+ * - `Page`
63
+ * This is for global and product wide alerts, use that with extreme caution as it's will impact every page and every feature.
64
+ * - `Section`
65
+ * This alert should be inside the frame of a section and linked to the content it impacts
66
+
67
+ * ### Do's and Don't
68
+ * TODO
69
+
70
+ * ## Accessibility
71
+ * TODO
72
+ */
73
+ export declare const Alert: FunctionComponent<AlertProps>;
74
+ export default Alert;
@@ -0,0 +1,134 @@
1
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
2
+
3
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21, _templateObject22, _templateObject23;
4
+
5
+ import cx from "clsx";
6
+ import { AlertCircle, AlertOctagon, AlertTriangle, CheckCircle, X } from "react-feather";
7
+ import { IconButton } from "../../Button";
8
+ import stl from "../../styles/helpers/satellitePrefixer";
9
+ import { jsx as _jsx } from "react/jsx-runtime";
10
+ import { jsxs as _jsxs } from "react/jsx-runtime";
11
+ var BASE_CLASSNAME = stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["relative flex text-grey-900 display-body"])));
12
+ var BACKGROUND_CLASSNAMES = {
13
+ grey: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["bg-grey-100"]))),
14
+ accent: stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["bg-accent-100"]))),
15
+ green: stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["bg-green-100"]))),
16
+ orange: stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["bg-orange-100"]))),
17
+ red: stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["bg-red-100"])))
18
+ };
19
+ var BORDER_CLASSNAMES = {
20
+ grey: stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["border-grey-200"]))),
21
+ accent: stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["border-accent-200"]))),
22
+ green: stl(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["border-green-200"]))),
23
+ orange: stl(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["border-orange-200"]))),
24
+ red: stl(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["border-red-200"])))
25
+ };
26
+ var ICON_VARIANTS = {
27
+ grey: AlertCircle,
28
+ accent: AlertCircle,
29
+ green: CheckCircle,
30
+ orange: AlertTriangle,
31
+ red: AlertOctagon
32
+ };
33
+ var ICON_CLASSNAME_VARIANTS = {
34
+ grey: stl(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["text-grey-600"]))),
35
+ accent: stl(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["text-accent-600"]))),
36
+ green: stl(_templateObject14 || (_templateObject14 = _taggedTemplateLiteral(["text-green-600"]))),
37
+ orange: stl(_templateObject15 || (_templateObject15 = _taggedTemplateLiteral(["text-orange-600"]))),
38
+ red: stl(_templateObject16 || (_templateObject16 = _taggedTemplateLiteral(["text-red-600"])))
39
+ };
40
+ /**
41
+ * Alerts inform users about important changes or temporally conditions. Use this component if you need to communicate something to users in a prominent way.
42
+
43
+ * ## Examples
44
+ * [See the component in Figma](https://www.figma.com/file/99l59il97k2n5y4n6Jucal/%5BSatellite%5D-Components?node-id=2912%3A262266)
45
+
46
+ * ## Current Status
47
+ * - [x] Figma
48
+ * - [x] React
49
+ * - [ ] Documentation
50
+
51
+ * ## Component structure
52
+ * This component uses a common banner structure. It uses an icon that should match the intent of the message, an optional title _(Highly recommended)_, a short paragraph of text and optional buttons for follow up actions. The `Alert` is dismissible by default, to do so a cross icon is displayed on the top-right corner.
53
+
54
+ * ## Guidelines
55
+ * ### How to use it?
56
+ * Use the `Alert` if you want to inform the user about a specific action they need to do after something happened.
57
+
58
+ * ### How to NOT use it?
59
+ * Do not use the component to give higher visibility to trivial information, use the [Insert](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-insert--basic) component instead.
60
+ * Make sure that alerts are not stacking, We highly recommend to have only one per page if possible, though we understand that sometimes this is not possible.
61
+ * Do not use a product wide `Alert` to display features information.
62
+
63
+ * ### Variants
64
+ * This component comes with two sets of Variants:
65
+
66
+ * #### Color
67
+ * - `Grey` `Default`
68
+ * Use this as your default Alert if no other color matches your use-case.
69
+ * - `Accent` `Primary`
70
+ * Use this to represent something that is currently happening with no level of severity.
71
+ * - `Green` `Success`
72
+ * Use this to inform the user that an action has been completed in the background while the user wasn't on that page and/or needs further exploration from the user. For smaller and quick processes use the [Flag](https://algolia-satellite.netlify.app/?path=/docs/indicators-flag--basic) instead.
73
+ * - `Orange` `Warning`
74
+ * Use this to show the user that something important requires their attention. The warning should be used for low to medium errors.
75
+ * - `Red` `Failure`
76
+ * Use this to show the user that something requires their full attention and actions. Only use red for critical warnings that will result in a loss of data of production down time.
77
+
78
+ * #### Usage Context
79
+ * - `Page`
80
+ * This is for global and product wide alerts, use that with extreme caution as it's will impact every page and every feature.
81
+ * - `Section`
82
+ * This alert should be inside the frame of a section and linked to the content it impacts
83
+
84
+ * ### Do's and Don't
85
+ * TODO
86
+
87
+ * ## Accessibility
88
+ * TODO
89
+ */
90
+
91
+ export var Alert = function Alert(_ref) {
92
+ var title = _ref.title,
93
+ _ref$usageContext = _ref.usageContext,
94
+ usageContext = _ref$usageContext === void 0 ? "section" : _ref$usageContext,
95
+ _ref$variant = _ref.variant,
96
+ variant = _ref$variant === void 0 ? "grey" : _ref$variant,
97
+ onDismiss = _ref.onDismiss,
98
+ icon = _ref.icon,
99
+ className = _ref.className,
100
+ style = _ref.style,
101
+ children = _ref.children;
102
+ var containerClassName = cx(BASE_CLASSNAME, title ? stl(_templateObject17 || (_templateObject17 = _taggedTemplateLiteral(["p-4"]))) : stl(_templateObject18 || (_templateObject18 = _taggedTemplateLiteral(["py-2 px-3"]))), BACKGROUND_CLASSNAMES[variant], BORDER_CLASSNAMES[variant], usageContext !== "page" && stl(_templateObject19 || (_templateObject19 = _taggedTemplateLiteral(["rounded border"]))), className);
103
+ var internalIcon = icon === undefined ? true : icon;
104
+ var Icon = typeof internalIcon === "boolean" && internalIcon ? ICON_VARIANTS[variant] : internalIcon;
105
+ return /*#__PURE__*/_jsxs("div", {
106
+ className: containerClassName,
107
+ style: style,
108
+ children: [/*#__PURE__*/_jsx(Icon, {
109
+ className: cx(stl(_templateObject20 || (_templateObject20 = _taggedTemplateLiteral(["\n shrink-0 mr-2\n ", "\n "])), title ? "mt-1" : "mt-2px"), ICON_CLASSNAME_VARIANTS[variant]),
110
+ size: "1rem"
111
+ }), /*#__PURE__*/_jsxs("div", {
112
+ className: stl(_templateObject21 || (_templateObject21 = _taggedTemplateLiteral(["flex flex-1 flex-col ", ""])), onDismiss && "mr-6"),
113
+ children: [title && /*#__PURE__*/_jsx("h4", {
114
+ className: stl(_templateObject22 || (_templateObject22 = _taggedTemplateLiteral(["display-heading text-grey-900 mb-1"]))),
115
+ children: title
116
+ }), /*#__PURE__*/_jsx("div", {
117
+ children: children
118
+ })]
119
+ }), onDismiss && /*#__PURE__*/_jsx("span", {
120
+ className: stl(_templateObject23 || (_templateObject23 = _taggedTemplateLiteral(["absolute top-2 right-2"]))),
121
+ children: /*#__PURE__*/_jsx(IconButton, {
122
+ icon: X,
123
+ title: "Close",
124
+ variant: "subtle",
125
+ size: "small",
126
+ onClick: function onClick(evt) {
127
+ evt.stopPropagation();
128
+ onDismiss();
129
+ }
130
+ })
131
+ })]
132
+ });
133
+ };
134
+ export default Alert;
@@ -0,0 +1,2 @@
1
+ export * from "./Alert";
2
+ export { default } from "./Alert";
@@ -0,0 +1,2 @@
1
+ export * from "./Alert";
2
+ export { default } from "./Alert";
@@ -0,0 +1,41 @@
1
+ import type { FC, ReactNode } from "react";
2
+ import type { IconComponentType } from "../../types";
3
+ export interface BigBerthaProps {
4
+ icon?: IconComponentType;
5
+ children: ReactNode;
6
+ }
7
+ /**
8
+ * Major product wide announcement from Algolia to the users.
9
+
10
+ * ## Examples
11
+ * [See the component in Figma](https://www.figma.com/file/99l59il97k2n5y4n6Jucal/%5BSatellite%5D-Components?node-id=2912%3A279476)
12
+
13
+ * ## Current Status
14
+ * - [x] Figma
15
+ * - [x] React
16
+ * - [ ] Documentation
17
+
18
+ * ## Component structure
19
+ * This is a simple high contrast banner. It use an icon that should match the content of the message, a short text that describe the situation and can contain "Learn more" links.
20
+
21
+ * ## Guidelines
22
+
23
+ * ### How to use it?
24
+ * This component should only be used to inform the user about an on-going situation at Algolia that will impact the users' or end-users' experience with our products. The content of the message should be concise and explicit. Make sure that the tone used in the text does not generate stress.
25
+
26
+ * ### How to NOT use it?
27
+ * - Do not use this banner for any non critical announcement or any non product wide announcement.
28
+ * - If you want to inform the user about something in your features, please use the [Alert](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-alert--variants) component.
29
+ * - If you want to promote a specific feature, please use the [Promote Banner](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-promote--basic) component.
30
+
31
+ * ### Variants
32
+ * - Blue banner : Default state of this component
33
+
34
+ * ### Do's and Don't
35
+ * TODO
36
+
37
+ * ## Accessibility
38
+ * TODO
39
+ */
40
+ export declare const BigBertha: FC<BigBerthaProps>;
41
+ export default BigBertha;
@@ -0,0 +1,57 @@
1
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
2
+
3
+ var _templateObject, _templateObject2;
4
+
5
+ import { AlertCircle } from "react-feather";
6
+ import stl from "../../styles/helpers/satellitePrefixer";
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ import { jsxs as _jsxs } from "react/jsx-runtime";
9
+
10
+ /**
11
+ * Major product wide announcement from Algolia to the users.
12
+
13
+ * ## Examples
14
+ * [See the component in Figma](https://www.figma.com/file/99l59il97k2n5y4n6Jucal/%5BSatellite%5D-Components?node-id=2912%3A279476)
15
+
16
+ * ## Current Status
17
+ * - [x] Figma
18
+ * - [x] React
19
+ * - [ ] Documentation
20
+
21
+ * ## Component structure
22
+ * This is a simple high contrast banner. It use an icon that should match the content of the message, a short text that describe the situation and can contain "Learn more" links.
23
+
24
+ * ## Guidelines
25
+
26
+ * ### How to use it?
27
+ * This component should only be used to inform the user about an on-going situation at Algolia that will impact the users' or end-users' experience with our products. The content of the message should be concise and explicit. Make sure that the tone used in the text does not generate stress.
28
+
29
+ * ### How to NOT use it?
30
+ * - Do not use this banner for any non critical announcement or any non product wide announcement.
31
+ * - If you want to inform the user about something in your features, please use the [Alert](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-alert--variants) component.
32
+ * - If you want to promote a specific feature, please use the [Promote Banner](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-promote--basic) component.
33
+
34
+ * ### Variants
35
+ * - Blue banner : Default state of this component
36
+
37
+ * ### Do's and Don't
38
+ * TODO
39
+
40
+ * ## Accessibility
41
+ * TODO
42
+ */
43
+ export var BigBertha = function BigBertha(_ref) {
44
+ var icon = _ref.icon,
45
+ children = _ref.children;
46
+ var InternalIcon = icon || AlertCircle;
47
+ return /*#__PURE__*/_jsxs("div", {
48
+ className: stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["flex items-center justify-center space-x-4 bg-accent-600 text-white w-full p-4"]))),
49
+ children: [/*#__PURE__*/_jsx(InternalIcon, {
50
+ size: "1rem"
51
+ }), /*#__PURE__*/_jsx("span", {
52
+ className: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["display-body"]))),
53
+ children: children
54
+ })]
55
+ });
56
+ };
57
+ export default BigBertha;
@@ -0,0 +1,2 @@
1
+ export * from "./BigBertha";
2
+ export { default } from "./BigBertha";
@@ -0,0 +1,2 @@
1
+ export * from "./BigBertha";
2
+ export { default } from "./BigBertha";
@@ -0,0 +1,57 @@
1
+ import type { FC, ReactNode } from "react";
2
+ declare type PromoteVariants = "large" | "compact";
3
+ interface CompactPromoteProps {
4
+ variant?: Extract<PromoteVariants, "compact">;
5
+ illustration?: never;
6
+ }
7
+ interface WidePromoteProps {
8
+ variant?: Extract<PromoteVariants, "large">;
9
+ /** Plop in an `img` element or `svg` here */
10
+ illustration?: ReactNode;
11
+ }
12
+ export declare type PromoteProps = {
13
+ /** Product context for the banner */
14
+ context?: ReactNode;
15
+ /** Descriptive title for banner */
16
+ title: ReactNode;
17
+ /** Buttons */
18
+ actions?: ReactNode;
19
+ onDismiss?(): void;
20
+ children: ReactNode;
21
+ } & (CompactPromoteProps | WidePromoteProps);
22
+ /**
23
+ * A contextual way of showing our user that a new feature / product is available to them on a higher plan or as an option.
24
+
25
+ * ## Examples
26
+ * [See the component in Figma](https://www.figma.com/file/99l59il97k2n5y4n6Jucal/%5BSatellite%5D-Components?node-id=2912%3A279945)
27
+
28
+ * ## Current Status
29
+ * - [x] Figma
30
+ * - [x] React
31
+ * - [ ] Documentation
32
+
33
+ * ## Component structure
34
+ * This component is a bigger banner. It include an optional image, an optional product context, a title, a short text (2 lines maximum without an image and 3 lines maximum with an image), optional CTAs (one primary and one secondary). It comes in two different variants: `large` and `compact`.
35
+
36
+ * ## Guidelines
37
+ * ### How to use it?
38
+ * You should use this component to display to the users that a new features/product is now available for them in the current context they are in. This feature can be automatically available or locked behind higher plan tier, please make sure you adapt the content to not give false impression of availability to the user.
39
+
40
+ * This component is permanently dismissible by default.
41
+
42
+ * ### How to NOT use it?
43
+ * - Do not use this banner as a regular [Alert](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-alert--variants).
44
+ * - You can only use one `large` promotion banner per context and two/four compact per context.
45
+
46
+ * ### Variants
47
+ * - `large`
48
+ * - `compact`
49
+
50
+ * ### Do's and Don't
51
+ * TODO
52
+
53
+ * ## Accessibility
54
+ * TODO
55
+ */
56
+ export declare const Promote: FC<PromoteProps>;
57
+ export default Promote;
@@ -0,0 +1,104 @@
1
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
2
+
3
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12;
4
+
5
+ import cx from "clsx";
6
+ import { X } from "react-feather";
7
+ import { IconButton } from "../../Button";
8
+ import Card from "../../Card";
9
+ import stl from "../../styles/helpers/satellitePrefixer";
10
+ import { jsx as _jsx } from "react/jsx-runtime";
11
+ import { jsxs as _jsxs } from "react/jsx-runtime";
12
+ var TITLE_VARIANT_CLASSNAMES = {
13
+ compact: stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["display-heading mb-2"]))),
14
+ large: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["display-medium mb-4"])))
15
+ };
16
+ var BODY_VARIANT_CLASSNAMES = {
17
+ compact: stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["display-caption typo-subdued"]))),
18
+ large: stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["display-body typo-subdued"])))
19
+ };
20
+ var ACTIONS_VARIANT_CLASSNAMES = {
21
+ compact: stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["mt-1"]))),
22
+ large: stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["mt-3"])))
23
+ };
24
+ /**
25
+ * A contextual way of showing our user that a new feature / product is available to them on a higher plan or as an option.
26
+
27
+ * ## Examples
28
+ * [See the component in Figma](https://www.figma.com/file/99l59il97k2n5y4n6Jucal/%5BSatellite%5D-Components?node-id=2912%3A279945)
29
+
30
+ * ## Current Status
31
+ * - [x] Figma
32
+ * - [x] React
33
+ * - [ ] Documentation
34
+
35
+ * ## Component structure
36
+ * This component is a bigger banner. It include an optional image, an optional product context, a title, a short text (2 lines maximum without an image and 3 lines maximum with an image), optional CTAs (one primary and one secondary). It comes in two different variants: `large` and `compact`.
37
+
38
+ * ## Guidelines
39
+ * ### How to use it?
40
+ * You should use this component to display to the users that a new features/product is now available for them in the current context they are in. This feature can be automatically available or locked behind higher plan tier, please make sure you adapt the content to not give false impression of availability to the user.
41
+
42
+ * This component is permanently dismissible by default.
43
+
44
+ * ### How to NOT use it?
45
+ * - Do not use this banner as a regular [Alert](https://algolia-satellite.netlify.app/?path=/docs/indicators-banners-alert--variants).
46
+ * - You can only use one `large` promotion banner per context and two/four compact per context.
47
+
48
+ * ### Variants
49
+ * - `large`
50
+ * - `compact`
51
+
52
+ * ### Do's and Don't
53
+ * TODO
54
+
55
+ * ## Accessibility
56
+ * TODO
57
+ */
58
+
59
+ export var Promote = function Promote(_ref) {
60
+ var context = _ref.context,
61
+ title = _ref.title,
62
+ _ref$variant = _ref.variant,
63
+ variant = _ref$variant === void 0 ? "large" : _ref$variant,
64
+ illustration = _ref.illustration,
65
+ actions = _ref.actions,
66
+ children = _ref.children,
67
+ onDismiss = _ref.onDismiss;
68
+ return /*#__PURE__*/_jsxs(Card, {
69
+ className: stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["relative flex"]))),
70
+ fullBleed: true,
71
+ children: [illustration && /*#__PURE__*/_jsx("div", {
72
+ className: stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["w-full min-w-24 max-w-64 flex items-center justify-center bg-grey-100"]))),
73
+ children: illustration
74
+ }), /*#__PURE__*/_jsxs("div", {
75
+ className: stl(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["", ""])), variant === "large" ? "p-6" : "p-4"),
76
+ children: [context && /*#__PURE__*/_jsx("span", {
77
+ className: stl(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["block mb-1"]))),
78
+ children: context
79
+ }), /*#__PURE__*/_jsx("header", {
80
+ className: TITLE_VARIANT_CLASSNAMES[variant],
81
+ children: title
82
+ }), /*#__PURE__*/_jsx("div", {
83
+ className: BODY_VARIANT_CLASSNAMES[variant],
84
+ children: children
85
+ }), actions && /*#__PURE__*/_jsx("div", {
86
+ className: cx(stl(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["flex space-x-2"]))), ACTIONS_VARIANT_CLASSNAMES[variant]),
87
+ children: actions
88
+ })]
89
+ }), onDismiss && /*#__PURE__*/_jsx("span", {
90
+ className: stl(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["absolute top-2 right-2"]))),
91
+ children: /*#__PURE__*/_jsx(IconButton, {
92
+ icon: X,
93
+ title: "Close",
94
+ variant: "subtle",
95
+ size: "small",
96
+ onClick: function onClick(evt) {
97
+ evt.stopPropagation();
98
+ onDismiss();
99
+ }
100
+ })
101
+ })]
102
+ });
103
+ };
104
+ export default Promote;
@@ -0,0 +1,2 @@
1
+ export * from "./Promote";
2
+ export { default } from "./Promote";
@@ -0,0 +1,2 @@
1
+ export * from "./Promote";
2
+ export { default } from "./Promote";
@@ -0,0 +1,3 @@
1
+ export * from "./Alert";
2
+ export * from "./BigBertha";
3
+ export * from "./Promote";
@@ -0,0 +1,3 @@
1
+ export * from "./Alert";
2
+ export * from "./BigBertha";
3
+ export * from "./Promote";
@@ -0,0 +1,21 @@
1
+ /// <reference types="react" />
2
+ import { AcceptableButtonType, ButtonBaseProps, ExtractProps } from "./types";
3
+ export declare type ButtonProps<T extends AcceptableButtonType = "button"> = ButtonBaseProps & ExtractProps<T> & {
4
+ as?: T;
5
+ };
6
+ /**
7
+ * Buttons are used to trigger user actions (like "Add", "Close" or "Save") or navigate users elsewhere through the links. Buttons can contain a combination of a clear label and an icon while links are always text.
8
+ *
9
+ * ## Variations
10
+ * - **Primary**: to highlight the strongest action on a page. Should only appear once per screen. Not every screen requires a primary button
11
+ * - **Neutral (default)**: the standard button for most use cases
12
+ * - **Destructive**: appears as a final confirmation for a destructive action (e.g. deleting an index). Should be used with care, primarily in confirmation modals
13
+ * - **Subtle-neutral**: user with a primary button or for actionals that are less crucial (e.g. Cancel)
14
+ *
15
+ * ## Styles
16
+ * - Use icons before the label in any button type to draw more attention to it, or help convey more meaning
17
+ * - Use icon-only button for an action that is less critical and doesn't have to drag too much of user attention
18
+ * - Buttons can take the full width to fill the parent container
19
+ */
20
+ export declare const Button: <T extends AcceptableButtonType = "button">(props: ButtonProps<T>) => JSX.Element;
21
+ export default Button;