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

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 (1127) hide show
  1. package/README.md +154 -8
  2. package/cjs/AnnouncementBadge/AnnouncementBadge.d.ts +21 -0
  3. package/cjs/AnnouncementBadge/AnnouncementBadge.js +49 -0
  4. package/cjs/AnnouncementBadge/index.d.ts +2 -0
  5. package/cjs/AnnouncementBadge/index.js +27 -0
  6. package/cjs/AutoComplete/AutoComplete.d.ts +66 -0
  7. package/cjs/AutoComplete/AutoComplete.js +593 -0
  8. package/cjs/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
  9. package/cjs/AutoComplete/AutoComplete.tailwind.js +93 -0
  10. package/cjs/AutoComplete/components/AutoCompleteEmptyState.d.ts +13 -0
  11. package/cjs/AutoComplete/components/AutoCompleteEmptyState.js +37 -0
  12. package/cjs/AutoComplete/components/DefaultOptionItem.d.ts +7 -0
  13. package/cjs/AutoComplete/components/DefaultOptionItem.js +37 -0
  14. package/cjs/AutoComplete/index.d.ts +5 -0
  15. package/cjs/AutoComplete/index.js +63 -0
  16. package/cjs/AutoComplete/types.d.ts +85 -0
  17. package/cjs/AutoComplete/types.js +5 -0
  18. package/cjs/AutoComplete/utils.d.ts +5 -0
  19. package/{components → cjs}/AutoComplete/utils.js +24 -7
  20. package/cjs/Avatars/ApplicationAvatar.d.ts +13 -0
  21. package/cjs/Avatars/ApplicationAvatar.js +36 -0
  22. package/cjs/Avatars/UserAvatar.d.ts +20 -0
  23. package/cjs/Avatars/UserAvatar.js +57 -0
  24. package/cjs/Avatars/index.d.ts +3 -0
  25. package/cjs/Avatars/index.js +39 -0
  26. package/cjs/Avatars/types.d.ts +17 -0
  27. package/cjs/Avatars/types.js +5 -0
  28. package/cjs/Avatars/utils.d.ts +6 -0
  29. package/cjs/Avatars/utils.js +59 -0
  30. package/cjs/Badge/Badge.d.ts +35 -0
  31. package/cjs/Badge/Badge.js +77 -0
  32. package/cjs/Badge/index.d.ts +2 -0
  33. package/cjs/Badge/index.js +27 -0
  34. package/cjs/Banners/Alert/Alert.d.ts +78 -0
  35. package/cjs/Banners/Alert/Alert.js +140 -0
  36. package/cjs/Banners/Alert/index.js +27 -0
  37. package/cjs/Banners/BigBertha/BigBertha.d.ts +41 -0
  38. package/cjs/Banners/BigBertha/BigBertha.js +63 -0
  39. package/cjs/Banners/BigBertha/index.d.ts +2 -0
  40. package/cjs/Banners/BigBertha/index.js +27 -0
  41. package/cjs/Banners/Promote/Promote.d.ts +57 -0
  42. package/cjs/Banners/Promote/Promote.js +111 -0
  43. package/cjs/Banners/Promote/index.d.ts +2 -0
  44. package/cjs/Banners/Promote/index.js +27 -0
  45. package/cjs/Banners/index.d.ts +3 -0
  46. package/cjs/Banners/index.js +38 -0
  47. package/cjs/Button/Button.d.ts +19 -0
  48. package/cjs/Button/Button.js +37 -0
  49. package/cjs/Button/Button.tailwind.d.ts +5 -0
  50. package/cjs/Button/Button.tailwind.js +153 -0
  51. package/cjs/Button/ButtonGroup.d.ts +18 -0
  52. package/cjs/Button/ButtonGroup.js +30 -0
  53. package/cjs/Button/IconButton.d.ts +5 -0
  54. package/cjs/Button/IconButton.js +23 -0
  55. package/cjs/Button/PolymorphicButton.d.ts +11 -0
  56. package/cjs/Button/PolymorphicButton.js +76 -0
  57. package/cjs/Button/PolymorphicIconButton.d.ts +24 -0
  58. package/cjs/Button/PolymorphicIconButton.js +84 -0
  59. package/cjs/Button/index.d.ts +5 -0
  60. package/cjs/Button/index.js +67 -0
  61. package/cjs/Button/styles.d.ts +5 -0
  62. package/cjs/Button/styles.js +38 -0
  63. package/cjs/Button/types.d.ts +32 -0
  64. package/cjs/Button/types.js +11 -0
  65. package/cjs/Card/Card.d.ts +32 -0
  66. package/cjs/Card/Card.js +46 -0
  67. package/cjs/Card/Card.tailwind.d.ts +5 -0
  68. package/cjs/Card/Card.tailwind.js +36 -0
  69. package/cjs/Card/components/CardHeader.d.ts +6 -0
  70. package/cjs/Card/components/CardHeader.js +29 -0
  71. package/cjs/Card/components/CardTitle.d.ts +6 -0
  72. package/cjs/Card/components/CardTitle.js +29 -0
  73. package/cjs/Card/index.d.ts +4 -0
  74. package/cjs/Card/index.js +51 -0
  75. package/cjs/Checkbox/Checkbox.d.ts +24 -0
  76. package/cjs/Checkbox/Checkbox.js +98 -0
  77. package/cjs/Checkbox/Checkbox.tailwind.d.ts +5 -0
  78. package/cjs/Checkbox/Checkbox.tailwind.js +65 -0
  79. package/cjs/Checkbox/index.js +27 -0
  80. package/cjs/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
  81. package/cjs/ClickAwayContainer/ClickAwayContainer.js +87 -0
  82. package/cjs/ClickAwayContainer/index.d.ts +1 -0
  83. package/cjs/ClickAwayContainer/index.js +16 -0
  84. package/cjs/DatePicker/DatePicker/DatePicker.d.ts +34 -0
  85. package/cjs/DatePicker/DatePicker/DatePicker.js +165 -0
  86. package/cjs/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
  87. package/cjs/DatePicker/DatePicker/datePickerReducer.js +53 -0
  88. package/cjs/DatePicker/DatePicker/index.d.ts +3 -0
  89. package/cjs/DatePicker/DatePicker/index.js +39 -0
  90. package/cjs/DatePicker/DatePicker.tailwind.d.ts +5 -0
  91. package/cjs/DatePicker/DatePicker.tailwind.js +184 -0
  92. package/cjs/DatePicker/DateRangePicker/DateRangePicker.d.ts +34 -0
  93. package/cjs/DatePicker/DateRangePicker/DateRangePicker.js +258 -0
  94. package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +14 -0
  95. package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.js +39 -0
  96. package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
  97. package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.js +102 -0
  98. package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
  99. package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +18 -0
  100. package/cjs/DatePicker/DateRangePicker/index.d.ts +4 -0
  101. package/cjs/DatePicker/DateRangePicker/index.js +51 -0
  102. package/cjs/DatePicker/components/Calendar.d.ts +17 -0
  103. package/cjs/DatePicker/components/Calendar.js +56 -0
  104. package/cjs/DatePicker/components/Display.d.ts +10 -0
  105. package/cjs/DatePicker/components/Display.js +25 -0
  106. package/cjs/DatePicker/components/Footer.d.ts +6 -0
  107. package/cjs/DatePicker/components/Footer.js +20 -0
  108. package/cjs/DatePicker/components/FooterActions.d.ts +12 -0
  109. package/cjs/DatePicker/components/FooterActions.js +33 -0
  110. package/cjs/DatePicker/components/Modal.d.ts +16 -0
  111. package/cjs/DatePicker/components/Modal.js +69 -0
  112. package/cjs/DatePicker/components/NavBar.d.ts +10 -0
  113. package/cjs/DatePicker/components/NavBar.js +124 -0
  114. package/cjs/DatePicker/components/SidePanel.d.ts +6 -0
  115. package/cjs/DatePicker/components/SidePanel.js +23 -0
  116. package/cjs/DatePicker/components/index.d.ts +12 -0
  117. package/cjs/DatePicker/components/index.js +48 -0
  118. package/cjs/DatePicker/index.d.ts +4 -0
  119. package/cjs/DatePicker/index.js +53 -0
  120. package/cjs/DatePicker/types.d.ts +26 -0
  121. package/cjs/DatePicker/types.js +5 -0
  122. package/cjs/DatePicker/utils.d.ts +3 -0
  123. package/cjs/DatePicker/utils.js +21 -0
  124. package/cjs/Dropdown/Dropdown.d.ts +64 -0
  125. package/cjs/Dropdown/Dropdown.js +136 -0
  126. package/cjs/Dropdown/DropdownButton.d.ts +11 -0
  127. package/cjs/Dropdown/DropdownButton.js +49 -0
  128. package/cjs/Dropdown/DropdownContext.d.ts +7 -0
  129. package/cjs/Dropdown/DropdownContext.js +19 -0
  130. package/cjs/Dropdown/components/DropdownButtonItem.d.ts +19 -0
  131. package/cjs/Dropdown/components/DropdownButtonItem.js +45 -0
  132. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
  133. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +61 -0
  134. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +7 -0
  135. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +21 -0
  136. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +7 -0
  137. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +17 -0
  138. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +9 -0
  139. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +37 -0
  140. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +9 -0
  141. package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +34 -0
  142. package/cjs/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
  143. package/cjs/Dropdown/components/DropdownCollapsibleItem/index.js +63 -0
  144. package/cjs/Dropdown/components/DropdownDivider.d.ts +3 -0
  145. package/cjs/Dropdown/components/DropdownDivider.js +19 -0
  146. package/cjs/Dropdown/components/DropdownFooterItem.d.ts +7 -0
  147. package/cjs/Dropdown/components/DropdownFooterItem.js +31 -0
  148. package/cjs/Dropdown/components/DropdownLinkItem.d.ts +15 -0
  149. package/cjs/Dropdown/components/DropdownLinkItem.js +48 -0
  150. package/cjs/Dropdown/components/DropdownRadioItem.d.ts +13 -0
  151. package/cjs/Dropdown/components/DropdownRadioItem.js +45 -0
  152. package/cjs/Dropdown/components/DropdownTitle.d.ts +6 -0
  153. package/cjs/Dropdown/components/DropdownTitle.js +27 -0
  154. package/cjs/Dropdown/components/DropdownToggleItem.d.ts +16 -0
  155. package/cjs/Dropdown/components/DropdownToggleItem.js +47 -0
  156. package/cjs/Dropdown/index.d.ts +13 -0
  157. package/cjs/Dropdown/index.js +159 -0
  158. package/cjs/Dropdown/useDropdownItemProps.d.ts +21 -0
  159. package/cjs/Dropdown/useDropdownItemProps.js +40 -0
  160. package/cjs/Dropzone/Dropzone.d.ts +20 -0
  161. package/cjs/Dropzone/Dropzone.js +159 -0
  162. package/cjs/Dropzone/index.d.ts +2 -0
  163. package/cjs/Dropzone/index.js +27 -0
  164. package/cjs/EmptyState/EmptyState.d.ts +28 -0
  165. package/cjs/EmptyState/EmptyState.js +125 -0
  166. package/cjs/EmptyState/EmptyState.tailwind.d.ts +5 -0
  167. package/cjs/EmptyState/EmptyState.tailwind.js +15 -0
  168. package/cjs/EmptyState/index.d.ts +3 -0
  169. package/cjs/EmptyState/index.js +39 -0
  170. package/cjs/EmptyState/types.d.ts +65 -0
  171. package/cjs/EmptyState/types.js +5 -0
  172. package/cjs/Field/Field.d.ts +54 -0
  173. package/cjs/Field/Field.js +96 -0
  174. package/cjs/Field/FieldStateContext.d.ts +12 -0
  175. package/cjs/Field/FieldStateContext.js +15 -0
  176. package/cjs/Field/index.d.ts +4 -0
  177. package/cjs/Field/index.js +51 -0
  178. package/cjs/Field/useFieldState.d.ts +2 -0
  179. package/cjs/Field/useFieldState.js +17 -0
  180. package/cjs/Flag/Flag.d.ts +6 -0
  181. package/cjs/Flag/Flag.js +118 -0
  182. package/cjs/Flag/Flag.tailwind.d.ts +5 -0
  183. package/cjs/Flag/Flag.tailwind.js +34 -0
  184. package/cjs/Flag/Flags.d.ts +48 -0
  185. package/cjs/Flag/Flags.js +91 -0
  186. package/cjs/Flag/index.d.ts +4 -0
  187. package/cjs/Flag/index.js +51 -0
  188. package/cjs/Flag/types.d.ts +27 -0
  189. package/cjs/Flag/types.js +5 -0
  190. package/cjs/FlexGrid/FlexGrid.d.ts +51 -0
  191. package/cjs/FlexGrid/FlexGrid.js +70 -0
  192. package/cjs/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
  193. package/cjs/FlexGrid/FlexGrid.tailwind.js +71 -0
  194. package/cjs/FlexGrid/index.d.ts +2 -0
  195. package/cjs/FlexGrid/index.js +27 -0
  196. package/cjs/HelpUnderline/HelpUnderline.d.ts +12 -0
  197. package/cjs/HelpUnderline/HelpUnderline.js +34 -0
  198. package/cjs/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
  199. package/cjs/HelpUnderline/HelpUnderline.tailwind.js +21 -0
  200. package/cjs/HelpUnderline/index.js +27 -0
  201. package/cjs/Input/Input.d.ts +27 -0
  202. package/cjs/Input/Input.js +213 -0
  203. package/cjs/Input/Input.tailwind.d.ts +5 -0
  204. package/cjs/Input/Input.tailwind.js +99 -0
  205. package/cjs/Input/index.js +27 -0
  206. package/cjs/Insert/Insert.d.ts +45 -0
  207. package/cjs/Insert/Insert.js +79 -0
  208. package/cjs/Insert/index.d.ts +2 -0
  209. package/cjs/Insert/index.js +27 -0
  210. package/cjs/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
  211. package/cjs/InstantSearch/InstantSearch.tailwind.js +376 -0
  212. package/cjs/KeyboardKey/KeyboardKey.d.ts +7 -0
  213. package/cjs/KeyboardKey/KeyboardKey.js +37 -0
  214. package/cjs/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
  215. package/cjs/KeyboardKey/KeyboardKey.tailwind.js +29 -0
  216. package/cjs/KeyboardKey/index.d.ts +2 -0
  217. package/{components/Alert → cjs/KeyboardKey}/index.js +5 -8
  218. package/cjs/Link/BaseLink.d.ts +8 -0
  219. package/cjs/Link/BaseLink.js +31 -0
  220. package/cjs/Link/ButtonLink.d.ts +9 -0
  221. package/cjs/Link/ButtonLink.js +39 -0
  222. package/cjs/Link/IconButtonLink.d.ts +9 -0
  223. package/cjs/Link/IconButtonLink.js +33 -0
  224. package/cjs/Link/Link.d.ts +13 -0
  225. package/cjs/Link/Link.js +52 -0
  226. package/cjs/Link/index.d.ts +5 -0
  227. package/cjs/Link/index.js +63 -0
  228. package/cjs/Medallion/Medallion.d.ts +11 -0
  229. package/cjs/Medallion/Medallion.js +41 -0
  230. package/cjs/Medallion/Medallion.tailwind.d.ts +5 -0
  231. package/cjs/Medallion/Medallion.tailwind.js +31 -0
  232. package/cjs/Medallion/index.d.ts +3 -0
  233. package/cjs/Medallion/index.js +39 -0
  234. package/cjs/Medallion/types.d.ts +2 -0
  235. package/cjs/Medallion/types.js +5 -0
  236. package/cjs/Modal/Modal.d.ts +54 -0
  237. package/cjs/Modal/Modal.js +150 -0
  238. package/cjs/Modal/Modal.tailwind.d.ts +5 -0
  239. package/cjs/Modal/Modal.tailwind.js +81 -0
  240. package/cjs/Modal/components/ModalFooter.d.ts +6 -0
  241. package/cjs/Modal/components/ModalFooter.js +34 -0
  242. package/cjs/Modal/components/ModalSection.d.ts +10 -0
  243. package/cjs/Modal/components/ModalSection.js +25 -0
  244. package/cjs/Modal/index.d.ts +4 -0
  245. package/cjs/Modal/index.js +51 -0
  246. package/cjs/Pagination/CompactPagination/CompactPagination.d.ts +31 -0
  247. package/cjs/Pagination/CompactPagination/CompactPagination.js +86 -0
  248. package/cjs/Pagination/CompactPagination/index.d.ts +2 -0
  249. package/cjs/Pagination/CompactPagination/index.js +27 -0
  250. package/cjs/Pagination/DotPagination/DotPagination.d.ts +15 -0
  251. package/cjs/Pagination/DotPagination/DotPagination.js +48 -0
  252. package/cjs/Pagination/DotPagination/index.d.ts +2 -0
  253. package/cjs/Pagination/DotPagination/index.js +27 -0
  254. package/cjs/Pagination/Pagination/Pagination.d.ts +22 -0
  255. package/cjs/Pagination/Pagination/Pagination.js +124 -0
  256. package/cjs/Pagination/Pagination/index.js +27 -0
  257. package/cjs/Pagination/index.d.ts +4 -0
  258. package/cjs/Pagination/index.js +51 -0
  259. package/cjs/ProgressBar/ProgressBar.d.ts +13 -0
  260. package/cjs/ProgressBar/ProgressBar.js +46 -0
  261. package/cjs/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
  262. package/cjs/ProgressBar/ProgressBar.tailwind.js +25 -0
  263. package/cjs/ProgressBar/index.d.ts +2 -0
  264. package/cjs/ProgressBar/index.js +27 -0
  265. package/cjs/ProgressSpinner/ProgressSpinner.d.ts +9 -0
  266. package/cjs/ProgressSpinner/ProgressSpinner.js +54 -0
  267. package/cjs/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
  268. package/cjs/ProgressSpinner/ProgressSpinner.tailwind.js +36 -0
  269. package/cjs/ProgressSpinner/index.d.ts +2 -0
  270. package/cjs/ProgressSpinner/index.js +27 -0
  271. package/cjs/RadioGroup/RadioButton.d.ts +4 -0
  272. package/cjs/RadioGroup/RadioButton.js +31 -0
  273. package/cjs/RadioGroup/RadioButton.tailwind.d.ts +5 -0
  274. package/cjs/RadioGroup/RadioButton.tailwind.js +55 -0
  275. package/cjs/RadioGroup/RadioGroup.d.ts +40 -0
  276. package/cjs/RadioGroup/RadioGroup.js +106 -0
  277. package/cjs/RadioGroup/RadiogroupContext.d.ts +14 -0
  278. package/cjs/RadioGroup/RadiogroupContext.js +17 -0
  279. package/cjs/RadioGroup/index.d.ts +4 -0
  280. package/cjs/RadioGroup/index.js +51 -0
  281. package/cjs/RangeSlider/RangeSlider.d.ts +34 -0
  282. package/cjs/RangeSlider/RangeSlider.js +103 -0
  283. package/cjs/RangeSlider/index.d.ts +2 -0
  284. package/cjs/RangeSlider/index.js +27 -0
  285. package/cjs/Satellite/Satellite.d.ts +12 -0
  286. package/cjs/Satellite/Satellite.js +52 -0
  287. package/cjs/Satellite/SatelliteContext.d.ts +11 -0
  288. package/cjs/Satellite/SatelliteContext.js +25 -0
  289. package/cjs/Satellite/SatelliteRouter.d.ts +21 -0
  290. package/cjs/Satellite/SatelliteRouter.js +49 -0
  291. package/cjs/Satellite/index.d.ts +6 -0
  292. package/cjs/Satellite/index.js +75 -0
  293. package/cjs/Satellite/locale.d.ts +31 -0
  294. package/cjs/Satellite/locale.js +15 -0
  295. package/cjs/Satellite/useCreatePortal.d.ts +4 -0
  296. package/cjs/Satellite/useCreatePortal.js +24 -0
  297. package/cjs/ScrollIndicator/ScrollIndicator.d.ts +14 -0
  298. package/cjs/ScrollIndicator/ScrollIndicator.js +88 -0
  299. package/cjs/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
  300. package/cjs/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
  301. package/cjs/ScrollIndicator/index.d.ts +2 -0
  302. package/cjs/ScrollIndicator/index.js +27 -0
  303. package/cjs/Select/Select.d.ts +15 -0
  304. package/cjs/Select/Select.js +46 -0
  305. package/cjs/Select/Select.tailwind.d.ts +5 -0
  306. package/cjs/Select/Select.tailwind.js +76 -0
  307. package/cjs/Select/index.js +27 -0
  308. package/cjs/Sidebar/Sidebar.d.ts +35 -0
  309. package/cjs/Sidebar/Sidebar.js +62 -0
  310. package/cjs/Sidebar/SidebarButtonLink.d.ts +20 -0
  311. package/cjs/Sidebar/SidebarButtonLink.js +91 -0
  312. package/cjs/Sidebar/SidebarContext.d.ts +9 -0
  313. package/cjs/Sidebar/SidebarContext.js +17 -0
  314. package/cjs/Sidebar/SidebarHeader.d.ts +6 -0
  315. package/cjs/Sidebar/SidebarHeader.js +21 -0
  316. package/cjs/Sidebar/SidebarHeading.d.ts +7 -0
  317. package/cjs/Sidebar/SidebarHeading.js +26 -0
  318. package/cjs/Sidebar/SidebarLink.d.ts +9 -0
  319. package/cjs/Sidebar/SidebarLink.js +51 -0
  320. package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +8 -0
  321. package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +38 -0
  322. package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
  323. package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +37 -0
  324. package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +23 -0
  325. package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +97 -0
  326. package/cjs/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
  327. package/cjs/Sidebar/SidebarLinksGroup/index.js +16 -0
  328. package/cjs/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
  329. package/cjs/Sidebar/SidebarLinksGroup/types.js +5 -0
  330. package/cjs/Sidebar/SidebarNav.d.ts +10 -0
  331. package/cjs/Sidebar/SidebarNav.js +37 -0
  332. package/cjs/Sidebar/index.d.ts +9 -0
  333. package/cjs/Sidebar/index.js +111 -0
  334. package/cjs/Sidebar/types.d.ts +6 -0
  335. package/cjs/Sidebar/types.js +5 -0
  336. package/cjs/Switch/Switch.d.ts +13 -0
  337. package/cjs/Switch/Switch.js +86 -0
  338. package/cjs/Switch/Switch.tailwind.d.ts +5 -0
  339. package/cjs/Switch/Switch.tailwind.js +25 -0
  340. package/cjs/Switch/SwitchOption.d.ts +8 -0
  341. package/cjs/Switch/SwitchOption.js +45 -0
  342. package/cjs/Switch/index.d.ts +3 -0
  343. package/cjs/Switch/index.js +39 -0
  344. package/cjs/Switch/types.d.ts +7 -0
  345. package/cjs/Switch/types.js +5 -0
  346. package/cjs/Switch/utils.d.ts +6 -0
  347. package/cjs/Switch/utils.js +22 -0
  348. package/cjs/Tables/DataTable/DataTable.d.ts +60 -0
  349. package/cjs/Tables/DataTable/DataTable.js +261 -0
  350. package/cjs/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
  351. package/cjs/Tables/DataTable/DataTable.tailwind.js +23 -0
  352. package/cjs/Tables/DataTable/components/Body.d.ts +15 -0
  353. package/cjs/Tables/DataTable/components/Body.js +121 -0
  354. package/cjs/Tables/DataTable/components/Footer.d.ts +8 -0
  355. package/cjs/Tables/DataTable/components/Footer.js +65 -0
  356. package/cjs/Tables/DataTable/components/Header.d.ts +10 -0
  357. package/cjs/Tables/DataTable/components/Header.js +41 -0
  358. package/cjs/Tables/DataTable/components/HeaderCell.d.ts +12 -0
  359. package/cjs/Tables/DataTable/components/HeaderCell.js +60 -0
  360. package/cjs/Tables/DataTable/components/Loader.d.ts +8 -0
  361. package/cjs/Tables/DataTable/components/Loader.js +49 -0
  362. package/cjs/Tables/DataTable/components/index.d.ts +5 -0
  363. package/cjs/Tables/DataTable/components/index.js +60 -0
  364. package/cjs/Tables/DataTable/index.d.ts +3 -0
  365. package/cjs/Tables/DataTable/index.js +39 -0
  366. package/cjs/Tables/DataTable/types.d.ts +49 -0
  367. package/cjs/Tables/DataTable/types.js +5 -0
  368. package/cjs/Tables/DataTable/utils.d.ts +4 -0
  369. package/cjs/Tables/DataTable/utils.js +23 -0
  370. package/cjs/Tables/Table/Table.d.ts +28 -0
  371. package/cjs/Tables/Table/Table.js +62 -0
  372. package/cjs/Tables/Table/Table.tailwind.d.ts +5 -0
  373. package/cjs/Tables/Table/Table.tailwind.js +39 -0
  374. package/cjs/Tables/Table/components/TableFooter.d.ts +8 -0
  375. package/cjs/Tables/Table/components/TableFooter.js +28 -0
  376. package/cjs/Tables/Table/index.d.ts +3 -0
  377. package/cjs/Tables/Table/index.js +39 -0
  378. package/cjs/Tables/index.d.ts +3 -0
  379. package/cjs/Tables/index.js +39 -0
  380. package/cjs/Tabs/ContentTabs.d.ts +4 -0
  381. package/cjs/Tabs/ContentTabs.js +62 -0
  382. package/cjs/Tabs/LinkTabs.d.ts +33 -0
  383. package/cjs/Tabs/LinkTabs.js +78 -0
  384. package/cjs/Tabs/Tabs.tailwind.d.ts +5 -0
  385. package/cjs/Tabs/Tabs.tailwind.js +53 -0
  386. package/cjs/Tabs/components/LinkTab.d.ts +9 -0
  387. package/cjs/Tabs/components/LinkTab.js +86 -0
  388. package/cjs/Tabs/index.d.ts +4 -0
  389. package/cjs/Tabs/index.js +51 -0
  390. package/cjs/Tabs/types.d.ts +35 -0
  391. package/cjs/Tabs/types.js +5 -0
  392. package/cjs/Tabs/utils.d.ts +2 -0
  393. package/cjs/Tabs/utils.js +19 -0
  394. package/cjs/Tag/Tag.d.ts +58 -0
  395. package/cjs/Tag/Tag.js +135 -0
  396. package/cjs/Tag/Tag.tailwind.d.ts +5 -0
  397. package/cjs/Tag/Tag.tailwind.js +54 -0
  398. package/cjs/Tag/index.d.ts +2 -0
  399. package/cjs/Tag/index.js +27 -0
  400. package/cjs/TextArea/TextArea.d.ts +5 -0
  401. package/cjs/TextArea/TextArea.js +30 -0
  402. package/cjs/TextArea/TextArea.tailwind.d.ts +5 -0
  403. package/cjs/TextArea/TextArea.tailwind.js +39 -0
  404. package/cjs/TextArea/index.js +27 -0
  405. package/cjs/TextWrap/TextWrap.d.ts +8 -0
  406. package/cjs/TextWrap/TextWrap.js +55 -0
  407. package/cjs/TextWrap/index.d.ts +2 -0
  408. package/cjs/TextWrap/index.js +27 -0
  409. package/cjs/Toggle/Toggle.d.ts +10 -0
  410. package/cjs/Toggle/Toggle.js +72 -0
  411. package/cjs/Toggle/Toggle.tailwind.d.ts +5 -0
  412. package/cjs/Toggle/Toggle.tailwind.js +66 -0
  413. package/cjs/Toggle/index.d.ts +2 -0
  414. package/cjs/Toggle/index.js +27 -0
  415. package/cjs/Tooltip/OverflowTooltipWrapper.d.ts +6 -0
  416. package/cjs/Tooltip/OverflowTooltipWrapper.js +102 -0
  417. package/cjs/Tooltip/Tooltip.d.ts +24 -0
  418. package/cjs/Tooltip/Tooltip.js +54 -0
  419. package/cjs/Tooltip/Tooltip.tailwind.d.ts +5 -0
  420. package/cjs/Tooltip/Tooltip.tailwind.js +114 -0
  421. package/cjs/Tooltip/TooltipWrapper.d.ts +28 -0
  422. package/cjs/Tooltip/TooltipWrapper.js +191 -0
  423. package/{types/components → cjs}/Tooltip/index.d.ts +1 -0
  424. package/cjs/Tooltip/index.js +51 -0
  425. package/cjs/Tooltip/types.d.ts +14 -0
  426. package/cjs/Tooltip/types.js +5 -0
  427. package/cjs/Typography/Typography.tailwind.d.ts +5 -0
  428. package/cjs/Typography/Typography.tailwind.js +170 -0
  429. package/cjs/UserContent/UserContent.d.ts +8 -0
  430. package/cjs/UserContent/UserContent.js +28 -0
  431. package/cjs/UserContent/UserContent.tailwind.d.ts +5 -0
  432. package/cjs/UserContent/UserContent.tailwind.js +141 -0
  433. package/cjs/index.d.ts +48 -0
  434. package/cjs/index.js +568 -0
  435. package/cjs/package.json +3 -0
  436. package/cjs/styles/base.tailwind.d.ts +5 -0
  437. package/cjs/styles/base.tailwind.js +46 -0
  438. package/cjs/styles/brandColors.d.ts +42 -0
  439. package/cjs/styles/brandColors.js +48 -0
  440. package/cjs/styles/colors.d.ts +110 -0
  441. package/cjs/styles/colors.js +116 -0
  442. package/cjs/styles/disabledColor.d.ts +6 -0
  443. package/cjs/styles/disabledColor.js +14 -0
  444. package/cjs/styles/helpers/icons.d.ts +15 -0
  445. package/cjs/styles/helpers/icons.js +39 -0
  446. package/cjs/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
  447. package/cjs/styles/helpers/makePurgeCssExtractor.js +50 -0
  448. package/cjs/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
  449. package/cjs/styles/helpers/makeTailwindPrefixer.js +36 -0
  450. package/cjs/styles/helpers/prefixTailwindClassName.d.ts +7 -0
  451. package/cjs/styles/helpers/prefixTailwindClassName.js +28 -0
  452. package/cjs/styles/helpers/satellitePrefixer.d.ts +3 -0
  453. package/cjs/styles/helpers/satellitePrefixer.js +8 -0
  454. package/cjs/styles/rgba.d.ts +8 -0
  455. package/cjs/styles/rgba.js +15 -0
  456. package/cjs/styles/tailwind.config.d.ts +2 -0
  457. package/cjs/styles/tailwind.config.js +144 -0
  458. package/cjs/styles/zIndexes.d.ts +7 -0
  459. package/cjs/styles/zIndexes.js +14 -0
  460. package/cjs/types.d.ts +28 -0
  461. package/cjs/types.js +5 -0
  462. package/cjs/utilities/utilities.tailwind.d.ts +5 -0
  463. package/cjs/utilities/utilities.tailwind.js +27 -0
  464. package/cjs/utils/NumberUnion.d.ts +5 -0
  465. package/cjs/utils/NumberUnion.js +5 -0
  466. package/cjs/utils/event-polyfill.d.ts +0 -0
  467. package/cjs/utils/event-polyfill.js +25 -0
  468. package/cjs/utils/formatters.d.ts +25 -0
  469. package/cjs/utils/formatters.js +44 -0
  470. package/cjs/utils/genericChangeHandler.d.ts +5 -0
  471. package/{utils → cjs/utils}/genericChangeHandler.js +1 -7
  472. package/cjs/utils/hashCode.d.ts +2 -0
  473. package/cjs/utils/hashCode.js +23 -0
  474. package/cjs/utils/index.d.ts +7 -0
  475. package/{utils → cjs/utils}/index.js +11 -18
  476. package/cjs/utils/isCssPropertySupported.d.ts +2 -0
  477. package/cjs/utils/isCssPropertySupported.js +16 -0
  478. package/cjs/utils/isNil.d.ts +19 -0
  479. package/cjs/utils/isNil.js +29 -0
  480. package/cjs/utils/isRenderedChild.d.ts +8 -0
  481. package/cjs/utils/isRenderedChild.js +16 -0
  482. package/cjs/utils/matchLocation.d.ts +3 -0
  483. package/cjs/utils/matchLocation.js +13 -0
  484. package/cjs/utils/onlyText.d.ts +3 -0
  485. package/cjs/utils/onlyText.js +40 -0
  486. package/cjs/utils/parseUrl.d.ts +11 -0
  487. package/cjs/utils/parseUrl.js +23 -0
  488. package/{utils → cjs/utils}/pluralize.js +7 -7
  489. package/{utils → cjs/utils}/range.js +1 -3
  490. package/cjs/utils/toSentenceCase.d.ts +3 -0
  491. package/cjs/utils/toSentenceCase.js +17 -0
  492. package/{utils → cjs/utils}/uniqBy.js +1 -5
  493. package/{utils → cjs/utils}/uniqueId.js +1 -3
  494. package/cjs/utils/useForwardedRef.d.ts +3 -0
  495. package/cjs/utils/useForwardedRef.js +25 -0
  496. package/cjs/utils/useLinkProps.d.ts +7 -0
  497. package/cjs/utils/useLinkProps.js +55 -0
  498. package/cjs/utils/useTriggerInputChange.d.ts +8 -0
  499. package/cjs/utils/useTriggerInputChange.js +28 -0
  500. package/esm/AnnouncementBadge/AnnouncementBadge.d.ts +21 -0
  501. package/esm/AnnouncementBadge/AnnouncementBadge.js +40 -0
  502. package/esm/AnnouncementBadge/index.d.ts +2 -0
  503. package/esm/AnnouncementBadge/index.js +2 -0
  504. package/esm/AutoComplete/AutoComplete.d.ts +66 -0
  505. package/esm/AutoComplete/AutoComplete.js +585 -0
  506. package/esm/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
  507. package/esm/AutoComplete/AutoComplete.tailwind.js +94 -0
  508. package/esm/AutoComplete/components/AutoCompleteEmptyState.d.ts +13 -0
  509. package/esm/AutoComplete/components/AutoCompleteEmptyState.js +29 -0
  510. package/esm/AutoComplete/components/DefaultOptionItem.d.ts +7 -0
  511. package/esm/AutoComplete/components/DefaultOptionItem.js +30 -0
  512. package/esm/AutoComplete/index.d.ts +5 -0
  513. package/esm/AutoComplete/index.js +5 -0
  514. package/esm/AutoComplete/types.d.ts +85 -0
  515. package/esm/AutoComplete/types.js +1 -0
  516. package/esm/AutoComplete/utils.d.ts +5 -0
  517. package/esm/AutoComplete/utils.js +41 -0
  518. package/esm/Avatars/ApplicationAvatar.d.ts +13 -0
  519. package/esm/Avatars/ApplicationAvatar.js +27 -0
  520. package/esm/Avatars/UserAvatar.d.ts +20 -0
  521. package/esm/Avatars/UserAvatar.js +49 -0
  522. package/esm/Avatars/index.d.ts +3 -0
  523. package/esm/Avatars/index.js +3 -0
  524. package/esm/Avatars/types.d.ts +17 -0
  525. package/esm/Avatars/types.js +1 -0
  526. package/esm/Avatars/utils.d.ts +6 -0
  527. package/esm/Avatars/utils.js +48 -0
  528. package/esm/Badge/Badge.d.ts +35 -0
  529. package/esm/Badge/Badge.js +69 -0
  530. package/esm/Badge/index.d.ts +2 -0
  531. package/esm/Badge/index.js +2 -0
  532. package/esm/Banners/Alert/Alert.d.ts +78 -0
  533. package/esm/Banners/Alert/Alert.js +132 -0
  534. package/esm/Banners/Alert/index.d.ts +2 -0
  535. package/esm/Banners/Alert/index.js +2 -0
  536. package/esm/Banners/BigBertha/BigBertha.d.ts +41 -0
  537. package/esm/Banners/BigBertha/BigBertha.js +55 -0
  538. package/esm/Banners/BigBertha/index.d.ts +2 -0
  539. package/esm/Banners/BigBertha/index.js +2 -0
  540. package/esm/Banners/Promote/Promote.d.ts +57 -0
  541. package/esm/Banners/Promote/Promote.js +103 -0
  542. package/esm/Banners/Promote/index.d.ts +2 -0
  543. package/esm/Banners/Promote/index.js +2 -0
  544. package/esm/Banners/index.d.ts +3 -0
  545. package/esm/Banners/index.js +3 -0
  546. package/esm/Button/Button.d.ts +19 -0
  547. package/esm/Button/Button.js +28 -0
  548. package/esm/Button/Button.tailwind.d.ts +5 -0
  549. package/esm/Button/Button.tailwind.js +154 -0
  550. package/esm/Button/ButtonGroup.d.ts +18 -0
  551. package/esm/Button/ButtonGroup.js +21 -0
  552. package/esm/Button/IconButton.d.ts +5 -0
  553. package/esm/Button/IconButton.js +14 -0
  554. package/esm/Button/PolymorphicButton.d.ts +11 -0
  555. package/esm/Button/PolymorphicButton.js +66 -0
  556. package/esm/Button/PolymorphicIconButton.d.ts +24 -0
  557. package/esm/Button/PolymorphicIconButton.js +78 -0
  558. package/esm/Button/index.d.ts +5 -0
  559. package/esm/Button/index.js +5 -0
  560. package/esm/Button/styles.d.ts +5 -0
  561. package/esm/Button/styles.js +27 -0
  562. package/esm/Button/types.d.ts +32 -0
  563. package/esm/Button/types.js +5 -0
  564. package/esm/Card/Card.d.ts +32 -0
  565. package/esm/Card/Card.js +37 -0
  566. package/esm/Card/Card.tailwind.d.ts +5 -0
  567. package/esm/Card/Card.tailwind.js +35 -0
  568. package/esm/Card/components/CardHeader.d.ts +6 -0
  569. package/esm/Card/components/CardHeader.js +20 -0
  570. package/esm/Card/components/CardTitle.d.ts +6 -0
  571. package/esm/Card/components/CardTitle.js +20 -0
  572. package/esm/Card/index.d.ts +4 -0
  573. package/esm/Card/index.js +4 -0
  574. package/esm/Checkbox/Checkbox.d.ts +24 -0
  575. package/esm/Checkbox/Checkbox.js +90 -0
  576. package/esm/Checkbox/Checkbox.tailwind.d.ts +5 -0
  577. package/esm/Checkbox/Checkbox.tailwind.js +65 -0
  578. package/esm/Checkbox/index.d.ts +2 -0
  579. package/esm/Checkbox/index.js +2 -0
  580. package/esm/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
  581. package/esm/ClickAwayContainer/ClickAwayContainer.js +76 -0
  582. package/esm/ClickAwayContainer/index.d.ts +1 -0
  583. package/esm/ClickAwayContainer/index.js +1 -0
  584. package/esm/DatePicker/DatePicker/DatePicker.d.ts +34 -0
  585. package/esm/DatePicker/DatePicker/DatePicker.js +159 -0
  586. package/esm/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
  587. package/esm/DatePicker/DatePicker/datePickerReducer.js +43 -0
  588. package/esm/DatePicker/DatePicker/index.d.ts +3 -0
  589. package/esm/DatePicker/DatePicker/index.js +3 -0
  590. package/esm/DatePicker/DatePicker.tailwind.d.ts +5 -0
  591. package/esm/DatePicker/DatePicker.tailwind.js +182 -0
  592. package/esm/DatePicker/DateRangePicker/DateRangePicker.d.ts +34 -0
  593. package/esm/DatePicker/DateRangePicker/DateRangePicker.js +251 -0
  594. package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +14 -0
  595. package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.js +33 -0
  596. package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
  597. package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.js +92 -0
  598. package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
  599. package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +9 -0
  600. package/esm/DatePicker/DateRangePicker/index.d.ts +4 -0
  601. package/esm/DatePicker/DateRangePicker/index.js +4 -0
  602. package/esm/DatePicker/components/Calendar.d.ts +17 -0
  603. package/esm/DatePicker/components/Calendar.js +48 -0
  604. package/esm/DatePicker/components/Display.d.ts +10 -0
  605. package/esm/DatePicker/components/Display.js +17 -0
  606. package/esm/DatePicker/components/Footer.d.ts +6 -0
  607. package/esm/DatePicker/components/Footer.js +12 -0
  608. package/esm/DatePicker/components/FooterActions.d.ts +12 -0
  609. package/esm/DatePicker/components/FooterActions.js +26 -0
  610. package/esm/DatePicker/components/Modal.d.ts +16 -0
  611. package/esm/DatePicker/components/Modal.js +60 -0
  612. package/esm/DatePicker/components/NavBar.d.ts +10 -0
  613. package/esm/DatePicker/components/NavBar.js +117 -0
  614. package/esm/DatePicker/components/SidePanel.d.ts +6 -0
  615. package/esm/DatePicker/components/SidePanel.js +15 -0
  616. package/esm/DatePicker/components/index.d.ts +12 -0
  617. package/esm/DatePicker/components/index.js +6 -0
  618. package/esm/DatePicker/index.d.ts +4 -0
  619. package/esm/DatePicker/index.js +4 -0
  620. package/esm/DatePicker/types.d.ts +26 -0
  621. package/esm/DatePicker/types.js +1 -0
  622. package/esm/DatePicker/utils.d.ts +3 -0
  623. package/esm/DatePicker/utils.js +12 -0
  624. package/esm/Dropdown/Dropdown.d.ts +64 -0
  625. package/esm/Dropdown/Dropdown.js +127 -0
  626. package/esm/Dropdown/DropdownButton.d.ts +11 -0
  627. package/esm/Dropdown/DropdownButton.js +40 -0
  628. package/esm/Dropdown/DropdownContext.d.ts +7 -0
  629. package/esm/Dropdown/DropdownContext.js +10 -0
  630. package/esm/Dropdown/components/DropdownButtonItem.d.ts +19 -0
  631. package/esm/Dropdown/components/DropdownButtonItem.js +37 -0
  632. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
  633. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +53 -0
  634. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +7 -0
  635. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +14 -0
  636. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +7 -0
  637. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +9 -0
  638. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +9 -0
  639. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +29 -0
  640. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +9 -0
  641. package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +26 -0
  642. package/esm/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
  643. package/esm/Dropdown/components/DropdownCollapsibleItem/index.js +5 -0
  644. package/esm/Dropdown/components/DropdownDivider.d.ts +3 -0
  645. package/esm/Dropdown/components/DropdownDivider.js +10 -0
  646. package/esm/Dropdown/components/DropdownFooterItem.d.ts +7 -0
  647. package/esm/Dropdown/components/DropdownFooterItem.js +22 -0
  648. package/esm/Dropdown/components/DropdownLinkItem.d.ts +15 -0
  649. package/esm/Dropdown/components/DropdownLinkItem.js +40 -0
  650. package/esm/Dropdown/components/DropdownRadioItem.d.ts +13 -0
  651. package/esm/Dropdown/components/DropdownRadioItem.js +37 -0
  652. package/esm/Dropdown/components/DropdownTitle.d.ts +6 -0
  653. package/esm/Dropdown/components/DropdownTitle.js +18 -0
  654. package/esm/Dropdown/components/DropdownToggleItem.d.ts +16 -0
  655. package/esm/Dropdown/components/DropdownToggleItem.js +39 -0
  656. package/esm/Dropdown/index.d.ts +13 -0
  657. package/esm/Dropdown/index.js +13 -0
  658. package/esm/Dropdown/useDropdownItemProps.d.ts +21 -0
  659. package/esm/Dropdown/useDropdownItemProps.js +31 -0
  660. package/esm/Dropzone/Dropzone.d.ts +20 -0
  661. package/esm/Dropzone/Dropzone.js +151 -0
  662. package/esm/Dropzone/index.d.ts +2 -0
  663. package/esm/Dropzone/index.js +2 -0
  664. package/esm/EmptyState/EmptyState.d.ts +28 -0
  665. package/esm/EmptyState/EmptyState.js +117 -0
  666. package/esm/EmptyState/EmptyState.tailwind.d.ts +5 -0
  667. package/esm/EmptyState/EmptyState.tailwind.js +14 -0
  668. package/esm/EmptyState/index.d.ts +3 -0
  669. package/esm/EmptyState/index.js +3 -0
  670. package/esm/EmptyState/types.d.ts +65 -0
  671. package/esm/EmptyState/types.js +1 -0
  672. package/esm/Field/Field.d.ts +54 -0
  673. package/esm/Field/Field.js +85 -0
  674. package/esm/Field/FieldStateContext.d.ts +12 -0
  675. package/esm/Field/FieldStateContext.js +6 -0
  676. package/esm/Field/index.d.ts +4 -0
  677. package/esm/Field/index.js +4 -0
  678. package/esm/Field/useFieldState.d.ts +2 -0
  679. package/esm/Field/useFieldState.js +6 -0
  680. package/esm/Flag/Flag.d.ts +6 -0
  681. package/esm/Flag/Flag.js +110 -0
  682. package/esm/Flag/Flag.tailwind.d.ts +5 -0
  683. package/esm/Flag/Flag.tailwind.js +33 -0
  684. package/esm/Flag/Flags.d.ts +48 -0
  685. package/esm/Flag/Flags.js +82 -0
  686. package/esm/Flag/index.d.ts +4 -0
  687. package/esm/Flag/index.js +4 -0
  688. package/esm/Flag/types.d.ts +27 -0
  689. package/esm/Flag/types.js +1 -0
  690. package/esm/FlexGrid/FlexGrid.d.ts +51 -0
  691. package/esm/FlexGrid/FlexGrid.js +62 -0
  692. package/esm/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
  693. package/esm/FlexGrid/FlexGrid.tailwind.js +69 -0
  694. package/esm/FlexGrid/index.d.ts +2 -0
  695. package/esm/FlexGrid/index.js +2 -0
  696. package/esm/HelpUnderline/HelpUnderline.d.ts +12 -0
  697. package/esm/HelpUnderline/HelpUnderline.js +25 -0
  698. package/esm/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
  699. package/esm/HelpUnderline/HelpUnderline.tailwind.js +20 -0
  700. package/esm/HelpUnderline/index.d.ts +2 -0
  701. package/esm/HelpUnderline/index.js +2 -0
  702. package/esm/Input/Input.d.ts +27 -0
  703. package/esm/Input/Input.js +205 -0
  704. package/esm/Input/Input.tailwind.d.ts +5 -0
  705. package/esm/Input/Input.tailwind.js +100 -0
  706. package/esm/Input/index.d.ts +2 -0
  707. package/esm/Input/index.js +2 -0
  708. package/esm/Insert/Insert.d.ts +45 -0
  709. package/esm/Insert/Insert.js +71 -0
  710. package/esm/Insert/index.d.ts +2 -0
  711. package/esm/Insert/index.js +2 -0
  712. package/esm/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
  713. package/esm/InstantSearch/InstantSearch.tailwind.js +377 -0
  714. package/esm/KeyboardKey/KeyboardKey.d.ts +7 -0
  715. package/esm/KeyboardKey/KeyboardKey.js +29 -0
  716. package/esm/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
  717. package/esm/KeyboardKey/KeyboardKey.tailwind.js +28 -0
  718. package/esm/KeyboardKey/index.d.ts +2 -0
  719. package/esm/KeyboardKey/index.js +2 -0
  720. package/esm/Link/BaseLink.d.ts +8 -0
  721. package/esm/Link/BaseLink.js +22 -0
  722. package/esm/Link/ButtonLink.d.ts +9 -0
  723. package/esm/Link/ButtonLink.js +30 -0
  724. package/esm/Link/IconButtonLink.d.ts +9 -0
  725. package/esm/Link/IconButtonLink.js +24 -0
  726. package/esm/Link/Link.d.ts +13 -0
  727. package/esm/Link/Link.js +44 -0
  728. package/esm/Link/index.d.ts +5 -0
  729. package/esm/Link/index.js +5 -0
  730. package/esm/Medallion/Medallion.d.ts +11 -0
  731. package/esm/Medallion/Medallion.js +32 -0
  732. package/esm/Medallion/Medallion.tailwind.d.ts +5 -0
  733. package/esm/Medallion/Medallion.tailwind.js +30 -0
  734. package/esm/Medallion/index.d.ts +3 -0
  735. package/esm/Medallion/index.js +3 -0
  736. package/esm/Medallion/types.d.ts +2 -0
  737. package/esm/Medallion/types.js +1 -0
  738. package/esm/Modal/Modal.d.ts +54 -0
  739. package/esm/Modal/Modal.js +139 -0
  740. package/esm/Modal/Modal.tailwind.d.ts +5 -0
  741. package/esm/Modal/Modal.tailwind.js +79 -0
  742. package/esm/Modal/components/ModalFooter.d.ts +6 -0
  743. package/esm/Modal/components/ModalFooter.js +25 -0
  744. package/esm/Modal/components/ModalSection.d.ts +10 -0
  745. package/esm/Modal/components/ModalSection.js +16 -0
  746. package/esm/Modal/index.d.ts +4 -0
  747. package/esm/Modal/index.js +4 -0
  748. package/esm/Pagination/CompactPagination/CompactPagination.d.ts +31 -0
  749. package/esm/Pagination/CompactPagination/CompactPagination.js +76 -0
  750. package/esm/Pagination/CompactPagination/index.d.ts +2 -0
  751. package/esm/Pagination/CompactPagination/index.js +2 -0
  752. package/esm/Pagination/DotPagination/DotPagination.d.ts +15 -0
  753. package/esm/Pagination/DotPagination/DotPagination.js +39 -0
  754. package/esm/Pagination/DotPagination/index.d.ts +2 -0
  755. package/esm/Pagination/DotPagination/index.js +2 -0
  756. package/esm/Pagination/Pagination/Pagination.d.ts +22 -0
  757. package/esm/Pagination/Pagination/Pagination.js +114 -0
  758. package/esm/Pagination/Pagination/index.d.ts +2 -0
  759. package/esm/Pagination/Pagination/index.js +2 -0
  760. package/esm/Pagination/index.d.ts +4 -0
  761. package/esm/Pagination/index.js +4 -0
  762. package/esm/ProgressBar/ProgressBar.d.ts +13 -0
  763. package/esm/ProgressBar/ProgressBar.js +37 -0
  764. package/esm/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
  765. package/esm/ProgressBar/ProgressBar.tailwind.js +25 -0
  766. package/esm/ProgressBar/index.d.ts +2 -0
  767. package/esm/ProgressBar/index.js +2 -0
  768. package/esm/ProgressSpinner/ProgressSpinner.d.ts +9 -0
  769. package/esm/ProgressSpinner/ProgressSpinner.js +46 -0
  770. package/esm/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
  771. package/esm/ProgressSpinner/ProgressSpinner.tailwind.js +35 -0
  772. package/esm/ProgressSpinner/index.d.ts +2 -0
  773. package/esm/ProgressSpinner/index.js +2 -0
  774. package/esm/RadioGroup/RadioButton.d.ts +4 -0
  775. package/esm/RadioGroup/RadioButton.js +22 -0
  776. package/esm/RadioGroup/RadioButton.tailwind.d.ts +5 -0
  777. package/esm/RadioGroup/RadioButton.tailwind.js +56 -0
  778. package/esm/RadioGroup/RadioGroup.d.ts +40 -0
  779. package/esm/RadioGroup/RadioGroup.js +97 -0
  780. package/esm/RadioGroup/RadiogroupContext.d.ts +14 -0
  781. package/esm/RadioGroup/RadiogroupContext.js +9 -0
  782. package/esm/RadioGroup/index.d.ts +4 -0
  783. package/esm/RadioGroup/index.js +4 -0
  784. package/esm/RangeSlider/RangeSlider.d.ts +34 -0
  785. package/esm/RangeSlider/RangeSlider.js +97 -0
  786. package/esm/RangeSlider/index.d.ts +2 -0
  787. package/esm/RangeSlider/index.js +2 -0
  788. package/esm/Satellite/Satellite.d.ts +12 -0
  789. package/esm/Satellite/Satellite.js +42 -0
  790. package/esm/Satellite/SatelliteContext.d.ts +11 -0
  791. package/esm/Satellite/SatelliteContext.js +15 -0
  792. package/esm/Satellite/SatelliteRouter.d.ts +21 -0
  793. package/esm/Satellite/SatelliteRouter.js +40 -0
  794. package/esm/Satellite/index.d.ts +6 -0
  795. package/esm/Satellite/index.js +6 -0
  796. package/esm/Satellite/locale.d.ts +31 -0
  797. package/esm/Satellite/locale.js +7 -0
  798. package/esm/Satellite/useCreatePortal.d.ts +4 -0
  799. package/esm/Satellite/useCreatePortal.js +17 -0
  800. package/esm/ScrollIndicator/ScrollIndicator.d.ts +14 -0
  801. package/esm/ScrollIndicator/ScrollIndicator.js +79 -0
  802. package/esm/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
  803. package/esm/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
  804. package/esm/ScrollIndicator/index.d.ts +2 -0
  805. package/esm/ScrollIndicator/index.js +2 -0
  806. package/esm/Select/Select.d.ts +15 -0
  807. package/esm/Select/Select.js +37 -0
  808. package/esm/Select/Select.tailwind.d.ts +5 -0
  809. package/esm/Select/Select.tailwind.js +77 -0
  810. package/esm/Select/index.d.ts +2 -0
  811. package/esm/Select/index.js +2 -0
  812. package/esm/Sidebar/Sidebar.d.ts +35 -0
  813. package/esm/Sidebar/Sidebar.js +54 -0
  814. package/esm/Sidebar/SidebarButtonLink.d.ts +20 -0
  815. package/esm/Sidebar/SidebarButtonLink.js +84 -0
  816. package/esm/Sidebar/SidebarContext.d.ts +9 -0
  817. package/esm/Sidebar/SidebarContext.js +9 -0
  818. package/esm/Sidebar/SidebarHeader.d.ts +6 -0
  819. package/esm/Sidebar/SidebarHeader.js +13 -0
  820. package/esm/Sidebar/SidebarHeading.d.ts +7 -0
  821. package/esm/Sidebar/SidebarHeading.js +18 -0
  822. package/esm/Sidebar/SidebarLink.d.ts +9 -0
  823. package/esm/Sidebar/SidebarLink.js +44 -0
  824. package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +8 -0
  825. package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +30 -0
  826. package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
  827. package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +30 -0
  828. package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +23 -0
  829. package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +90 -0
  830. package/esm/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
  831. package/esm/Sidebar/SidebarLinksGroup/index.js +2 -0
  832. package/esm/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
  833. package/esm/Sidebar/SidebarLinksGroup/types.js +1 -0
  834. package/esm/Sidebar/SidebarNav.d.ts +10 -0
  835. package/esm/Sidebar/SidebarNav.js +29 -0
  836. package/esm/Sidebar/index.d.ts +9 -0
  837. package/esm/Sidebar/index.js +9 -0
  838. package/esm/Sidebar/types.d.ts +6 -0
  839. package/esm/Sidebar/types.js +1 -0
  840. package/esm/Switch/Switch.d.ts +13 -0
  841. package/esm/Switch/Switch.js +78 -0
  842. package/esm/Switch/Switch.tailwind.d.ts +5 -0
  843. package/esm/Switch/Switch.tailwind.js +24 -0
  844. package/esm/Switch/SwitchOption.d.ts +8 -0
  845. package/esm/Switch/SwitchOption.js +37 -0
  846. package/esm/Switch/index.d.ts +3 -0
  847. package/esm/Switch/index.js +3 -0
  848. package/esm/Switch/types.d.ts +7 -0
  849. package/esm/Switch/types.js +1 -0
  850. package/esm/Switch/utils.d.ts +6 -0
  851. package/esm/Switch/utils.js +11 -0
  852. package/esm/Tables/DataTable/DataTable.d.ts +60 -0
  853. package/esm/Tables/DataTable/DataTable.js +253 -0
  854. package/esm/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
  855. package/esm/Tables/DataTable/DataTable.tailwind.js +22 -0
  856. package/esm/Tables/DataTable/components/Body.d.ts +15 -0
  857. package/esm/Tables/DataTable/components/Body.js +112 -0
  858. package/esm/Tables/DataTable/components/Footer.d.ts +8 -0
  859. package/esm/Tables/DataTable/components/Footer.js +53 -0
  860. package/esm/Tables/DataTable/components/Header.d.ts +10 -0
  861. package/esm/Tables/DataTable/components/Header.js +32 -0
  862. package/esm/Tables/DataTable/components/HeaderCell.d.ts +12 -0
  863. package/esm/Tables/DataTable/components/HeaderCell.js +52 -0
  864. package/esm/Tables/DataTable/components/Loader.d.ts +8 -0
  865. package/esm/Tables/DataTable/components/Loader.js +40 -0
  866. package/esm/Tables/DataTable/components/index.d.ts +5 -0
  867. package/esm/Tables/DataTable/components/index.js +5 -0
  868. package/esm/Tables/DataTable/index.d.ts +3 -0
  869. package/esm/Tables/DataTable/index.js +3 -0
  870. package/esm/Tables/DataTable/types.d.ts +49 -0
  871. package/esm/Tables/DataTable/types.js +1 -0
  872. package/esm/Tables/DataTable/utils.d.ts +4 -0
  873. package/esm/Tables/DataTable/utils.js +13 -0
  874. package/esm/Tables/Table/Table.d.ts +28 -0
  875. package/esm/Tables/Table/Table.js +54 -0
  876. package/esm/Tables/Table/Table.tailwind.d.ts +5 -0
  877. package/esm/Tables/Table/Table.tailwind.js +38 -0
  878. package/esm/Tables/Table/components/TableFooter.d.ts +8 -0
  879. package/esm/Tables/Table/components/TableFooter.js +19 -0
  880. package/esm/Tables/Table/index.d.ts +3 -0
  881. package/esm/Tables/Table/index.js +3 -0
  882. package/esm/Tables/index.d.ts +3 -0
  883. package/esm/Tables/index.js +3 -0
  884. package/esm/Tabs/ContentTabs.d.ts +4 -0
  885. package/esm/Tabs/ContentTabs.js +54 -0
  886. package/esm/Tabs/LinkTabs.d.ts +33 -0
  887. package/esm/Tabs/LinkTabs.js +68 -0
  888. package/esm/Tabs/Tabs.tailwind.d.ts +5 -0
  889. package/esm/Tabs/Tabs.tailwind.js +52 -0
  890. package/esm/Tabs/components/LinkTab.d.ts +9 -0
  891. package/esm/Tabs/components/LinkTab.js +78 -0
  892. package/esm/Tabs/index.d.ts +4 -0
  893. package/esm/Tabs/index.js +4 -0
  894. package/esm/Tabs/types.d.ts +35 -0
  895. package/esm/Tabs/types.js +1 -0
  896. package/esm/Tabs/utils.d.ts +2 -0
  897. package/esm/Tabs/utils.js +11 -0
  898. package/esm/Tag/Tag.d.ts +58 -0
  899. package/esm/Tag/Tag.js +127 -0
  900. package/esm/Tag/Tag.tailwind.d.ts +5 -0
  901. package/esm/Tag/Tag.tailwind.js +53 -0
  902. package/esm/Tag/index.d.ts +2 -0
  903. package/esm/Tag/index.js +2 -0
  904. package/esm/TextArea/TextArea.d.ts +5 -0
  905. package/esm/TextArea/TextArea.js +21 -0
  906. package/esm/TextArea/TextArea.tailwind.d.ts +5 -0
  907. package/esm/TextArea/TextArea.tailwind.js +40 -0
  908. package/esm/TextArea/index.d.ts +2 -0
  909. package/esm/TextArea/index.js +2 -0
  910. package/esm/TextWrap/TextWrap.d.ts +8 -0
  911. package/esm/TextWrap/TextWrap.js +47 -0
  912. package/esm/TextWrap/index.d.ts +2 -0
  913. package/esm/TextWrap/index.js +2 -0
  914. package/esm/Toggle/Toggle.d.ts +10 -0
  915. package/esm/Toggle/Toggle.js +64 -0
  916. package/esm/Toggle/Toggle.tailwind.d.ts +5 -0
  917. package/esm/Toggle/Toggle.tailwind.js +66 -0
  918. package/esm/Toggle/index.d.ts +2 -0
  919. package/esm/Toggle/index.js +2 -0
  920. package/esm/Tooltip/OverflowTooltipWrapper.d.ts +6 -0
  921. package/esm/Tooltip/OverflowTooltipWrapper.js +94 -0
  922. package/esm/Tooltip/Tooltip.d.ts +24 -0
  923. package/esm/Tooltip/Tooltip.js +45 -0
  924. package/esm/Tooltip/Tooltip.tailwind.d.ts +5 -0
  925. package/esm/Tooltip/Tooltip.tailwind.js +113 -0
  926. package/esm/Tooltip/TooltipWrapper.d.ts +28 -0
  927. package/esm/Tooltip/TooltipWrapper.js +183 -0
  928. package/esm/Tooltip/index.d.ts +4 -0
  929. package/esm/Tooltip/index.js +4 -0
  930. package/esm/Tooltip/types.d.ts +14 -0
  931. package/esm/Tooltip/types.js +1 -0
  932. package/esm/Typography/Typography.tailwind.d.ts +5 -0
  933. package/esm/Typography/Typography.tailwind.js +169 -0
  934. package/esm/UserContent/UserContent.d.ts +8 -0
  935. package/esm/UserContent/UserContent.js +19 -0
  936. package/esm/UserContent/UserContent.tailwind.d.ts +5 -0
  937. package/esm/UserContent/UserContent.tailwind.js +141 -0
  938. package/esm/index.d.ts +48 -0
  939. package/esm/index.js +48 -0
  940. package/esm/styles/base.tailwind.d.ts +5 -0
  941. package/esm/styles/base.tailwind.js +45 -0
  942. package/esm/styles/brandColors.d.ts +42 -0
  943. package/esm/styles/brandColors.js +46 -0
  944. package/esm/styles/colors.d.ts +110 -0
  945. package/esm/styles/colors.js +114 -0
  946. package/esm/styles/disabledColor.d.ts +6 -0
  947. package/esm/styles/disabledColor.js +14 -0
  948. package/esm/styles/helpers/icons.d.ts +15 -0
  949. package/esm/styles/helpers/icons.js +40 -0
  950. package/esm/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
  951. package/esm/styles/helpers/makePurgeCssExtractor.js +49 -0
  952. package/esm/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
  953. package/esm/styles/helpers/makeTailwindPrefixer.js +34 -0
  954. package/esm/styles/helpers/prefixTailwindClassName.d.ts +7 -0
  955. package/esm/styles/helpers/prefixTailwindClassName.js +26 -0
  956. package/esm/styles/helpers/satellitePrefixer.d.ts +3 -0
  957. package/esm/styles/helpers/satellitePrefixer.js +7 -0
  958. package/esm/styles/rgba.d.ts +8 -0
  959. package/esm/styles/rgba.js +14 -0
  960. package/esm/styles/tailwind.config.d.ts +2 -0
  961. package/esm/styles/tailwind.config.js +145 -0
  962. package/esm/styles/zIndexes.d.ts +7 -0
  963. package/esm/styles/zIndexes.js +12 -0
  964. package/esm/types.d.ts +28 -0
  965. package/esm/types.js +1 -0
  966. package/esm/utilities/utilities.tailwind.d.ts +5 -0
  967. package/esm/utilities/utilities.tailwind.js +25 -0
  968. package/esm/utils/NumberUnion.d.ts +5 -0
  969. package/esm/utils/NumberUnion.js +1 -0
  970. package/esm/utils/event-polyfill.d.ts +0 -0
  971. package/esm/utils/event-polyfill.js +23 -0
  972. package/esm/utils/formatters.d.ts +25 -0
  973. package/esm/utils/formatters.js +36 -0
  974. package/esm/utils/genericChangeHandler.d.ts +5 -0
  975. package/esm/utils/genericChangeHandler.js +18 -0
  976. package/esm/utils/hashCode.d.ts +2 -0
  977. package/esm/utils/hashCode.js +15 -0
  978. package/esm/utils/index.d.ts +7 -0
  979. package/{types/utils/index.d.ts → esm/utils/index.js} +2 -2
  980. package/esm/utils/isCssPropertySupported.d.ts +2 -0
  981. package/esm/utils/isCssPropertySupported.js +9 -0
  982. package/esm/utils/isNil.d.ts +19 -0
  983. package/esm/utils/isNil.js +21 -0
  984. package/esm/utils/isRenderedChild.d.ts +8 -0
  985. package/esm/utils/isRenderedChild.js +9 -0
  986. package/esm/utils/matchLocation.d.ts +3 -0
  987. package/esm/utils/matchLocation.js +5 -0
  988. package/esm/utils/onlyText.d.ts +3 -0
  989. package/esm/utils/onlyText.js +33 -0
  990. package/esm/utils/parseUrl.d.ts +11 -0
  991. package/esm/utils/parseUrl.js +15 -0
  992. package/esm/utils/pluralize.d.ts +6 -0
  993. package/esm/utils/pluralize.js +16 -0
  994. package/esm/utils/range.d.ts +2 -0
  995. package/esm/utils/range.js +7 -0
  996. package/esm/utils/toSentenceCase.d.ts +3 -0
  997. package/esm/utils/toSentenceCase.js +9 -0
  998. package/esm/utils/uniqBy.d.ts +2 -0
  999. package/esm/utils/uniqBy.js +13 -0
  1000. package/esm/utils/uniqueId.d.ts +2 -0
  1001. package/esm/utils/uniqueId.js +7 -0
  1002. package/esm/utils/useForwardedRef.d.ts +3 -0
  1003. package/esm/utils/useForwardedRef.js +17 -0
  1004. package/esm/utils/useLinkProps.d.ts +7 -0
  1005. package/esm/utils/useLinkProps.js +46 -0
  1006. package/esm/utils/useTriggerInputChange.d.ts +8 -0
  1007. package/esm/utils/useTriggerInputChange.js +21 -0
  1008. package/package.json +82 -49
  1009. package/satellite.min.css +3 -0
  1010. package/scss/colors.scss +139 -0
  1011. package/scss/variables.scss +7 -0
  1012. package/components/Alert/Alert.js +0 -49
  1013. package/components/AutoComplete/AutoComplete.js +0 -512
  1014. package/components/AutoComplete/index.js +0 -27
  1015. package/components/AutoComplete/types.js +0 -1
  1016. package/components/Button/Button.js +0 -59
  1017. package/components/Button/LinkButton.js +0 -52
  1018. package/components/Button/index.js +0 -40
  1019. package/components/Card/Card.js +0 -71
  1020. package/components/Card/components/CardHeader.js +0 -25
  1021. package/components/Card/components/CardTitle.js +0 -30
  1022. package/components/Card/index.js +0 -19
  1023. package/components/Checkbox/Checkbox.js +0 -66
  1024. package/components/Checkbox/index.js +0 -27
  1025. package/components/Chip/Chip.js +0 -77
  1026. package/components/Chip/index.js +0 -21
  1027. package/components/Dropdown/Dropdown.js +0 -163
  1028. package/components/Dropdown/DropdownButton.js +0 -117
  1029. package/components/Dropdown/components/DropdownDivider.js +0 -24
  1030. package/components/Dropdown/components/DropdownItem.js +0 -46
  1031. package/components/Dropdown/components/DropdownTitle.js +0 -34
  1032. package/components/Dropdown/index.js +0 -29
  1033. package/components/HelpUnderline/HelpUnderline.js +0 -39
  1034. package/components/HelpUnderline/index.js +0 -27
  1035. package/components/Input/Input.js +0 -134
  1036. package/components/Input/index.js +0 -27
  1037. package/components/LoaderIcon/LoaderIcon.js +0 -65
  1038. package/components/LoaderIcon/index.js +0 -27
  1039. package/components/MaterialIcon/MaterialIcon.js +0 -48
  1040. package/components/MaterialIcon/index.js +0 -27
  1041. package/components/Modal/Modal.js +0 -207
  1042. package/components/Modal/components/ModalFooter.js +0 -34
  1043. package/components/Modal/components/ModalSection.js +0 -38
  1044. package/components/Modal/index.js +0 -21
  1045. package/components/Pagination/Pagination.js +0 -131
  1046. package/components/Pagination/index.js +0 -27
  1047. package/components/RadioGroup/RadioButton.js +0 -35
  1048. package/components/RadioGroup/RadioGroup.js +0 -140
  1049. package/components/RadioGroup/index.js +0 -29
  1050. package/components/ScrollIndicator/ScrollIndicator.js +0 -165
  1051. package/components/ScrollIndicator/index.js +0 -21
  1052. package/components/Select/Select.js +0 -40
  1053. package/components/Select/index.js +0 -27
  1054. package/components/Table/Table.js +0 -36
  1055. package/components/Table/index.js +0 -19
  1056. package/components/TextArea/TextArea.js +0 -34
  1057. package/components/TextArea/index.js +0 -27
  1058. package/components/Tooltip/Tooltip.js +0 -29
  1059. package/components/Tooltip/TooltipWrapper.js +0 -164
  1060. package/components/Tooltip/index.js +0 -40
  1061. package/index.js +0 -173
  1062. package/nothing-to-see-here.gif +0 -0
  1063. package/satellite.css +0 -32
  1064. package/satellite.css.map +0 -1
  1065. package/styles/_colors.scss +0 -147
  1066. package/styles/_mixins.scss +0 -72
  1067. package/styles/_variables.scss +0 -71
  1068. package/types/components/Alert/Alert.d.ts +0 -9
  1069. package/types/components/AutoComplete/AutoComplete.d.ts +0 -66
  1070. package/types/components/AutoComplete/index.d.ts +0 -2
  1071. package/types/components/AutoComplete/types.d.ts +0 -21
  1072. package/types/components/AutoComplete/utils.d.ts +0 -3
  1073. package/types/components/Button/Button.d.ts +0 -13
  1074. package/types/components/Button/LinkButton.d.ts +0 -9
  1075. package/types/components/Button/index.d.ts +0 -3
  1076. package/types/components/Card/Card.d.ts +0 -13
  1077. package/types/components/Card/components/CardHeader.d.ts +0 -3
  1078. package/types/components/Card/components/CardTitle.d.ts +0 -7
  1079. package/types/components/Card/index.d.ts +0 -3
  1080. package/types/components/Checkbox/Checkbox.d.ts +0 -5
  1081. package/types/components/Chip/Chip.d.ts +0 -9
  1082. package/types/components/Chip/index.d.ts +0 -2
  1083. package/types/components/Dropdown/Dropdown.d.ts +0 -27
  1084. package/types/components/Dropdown/DropdownButton.d.ts +0 -12
  1085. package/types/components/Dropdown/components/DropdownDivider.d.ts +0 -6
  1086. package/types/components/Dropdown/components/DropdownItem.d.ts +0 -10
  1087. package/types/components/Dropdown/components/DropdownTitle.d.ts +0 -4
  1088. package/types/components/Dropdown/index.d.ts +0 -3
  1089. package/types/components/HelpUnderline/HelpUnderline.d.ts +0 -10
  1090. package/types/components/Input/Input.d.ts +0 -25
  1091. package/types/components/LoaderIcon/LoaderIcon.d.ts +0 -7
  1092. package/types/components/LoaderIcon/index.d.ts +0 -2
  1093. package/types/components/MaterialIcon/MaterialIcon.d.ts +0 -12
  1094. package/types/components/MaterialIcon/index.d.ts +0 -2
  1095. package/types/components/Modal/Modal.d.ts +0 -30
  1096. package/types/components/Modal/components/ModalFooter.d.ts +0 -4
  1097. package/types/components/Modal/components/ModalSection.d.ts +0 -6
  1098. package/types/components/Modal/index.d.ts +0 -2
  1099. package/types/components/Pagination/Pagination.d.ts +0 -12
  1100. package/types/components/RadioGroup/RadioButton.d.ts +0 -4
  1101. package/types/components/RadioGroup/RadioGroup.d.ts +0 -20
  1102. package/types/components/RadioGroup/index.d.ts +0 -3
  1103. package/types/components/ScrollIndicator/ScrollIndicator.d.ts +0 -24
  1104. package/types/components/ScrollIndicator/index.d.ts +0 -2
  1105. package/types/components/Select/Select.d.ts +0 -6
  1106. package/types/components/Table/Table.d.ts +0 -6
  1107. package/types/components/Table/index.d.ts +0 -3
  1108. package/types/components/TextArea/TextArea.d.ts +0 -5
  1109. package/types/components/Tooltip/Tooltip.d.ts +0 -5
  1110. package/types/components/Tooltip/TooltipWrapper.d.ts +0 -32
  1111. package/types/index.d.ts +0 -19
  1112. package/types/utils/clamp.d.ts +0 -2
  1113. package/types/utils/genericChangeHandler.d.ts +0 -5
  1114. package/types/utils/omit.d.ts +0 -2
  1115. package/utils/clamp.js +0 -20
  1116. package/utils/omit.js +0 -25
  1117. /package/{types/components → cjs/Banners}/Alert/index.d.ts +0 -0
  1118. /package/{types/components → cjs}/Checkbox/index.d.ts +0 -0
  1119. /package/{types/components → cjs}/HelpUnderline/index.d.ts +0 -0
  1120. /package/{types/components → cjs}/Input/index.d.ts +0 -0
  1121. /package/{types/components → cjs/Pagination}/Pagination/index.d.ts +0 -0
  1122. /package/{types/components → cjs}/Select/index.d.ts +0 -0
  1123. /package/{types/components → cjs}/TextArea/index.d.ts +0 -0
  1124. /package/{types → cjs}/utils/pluralize.d.ts +0 -0
  1125. /package/{types → cjs}/utils/range.d.ts +0 -0
  1126. /package/{types → cjs}/utils/uniqBy.d.ts +0 -0
  1127. /package/{types → cjs}/utils/uniqueId.d.ts +0 -0
@@ -1,72 +0,0 @@
1
- @mixin page-content-width {
2
- max-width: $content-width;
3
-
4
- @media only screen and (min-width: 1920px) {
5
- max-width: $content-width-large;
6
- }
7
- }
8
-
9
- @mixin reset-list {
10
- list-style: none;
11
- margin: 0;
12
- padding: 0;
13
- }
14
-
15
- @mixin reset-button {
16
- display: inline-block;
17
- border: none;
18
- background: none;
19
- text-align: center;
20
- white-space: nowrap;
21
- cursor: pointer;
22
- margin: 0;
23
- padding: 0;
24
- line-height: inherit;
25
-
26
- &:focus,
27
- &:hover {
28
- text-decoration: none;
29
- outline: 0;
30
- }
31
- }
32
-
33
- @mixin single-color-link($color) {
34
- &,
35
- &:visited,
36
- &:hover,
37
- &:focus {
38
- color: $color;
39
- }
40
- }
41
-
42
- @mixin text-truncate($single-line: true, $text-overflow: ellipsis) {
43
- overflow: hidden;
44
- text-overflow: $text-overflow;
45
- white-space: if($single-line, nowrap, initial);
46
- }
47
-
48
- @mixin table-base($last-column-align: true) {
49
- width: 100%;
50
- border-collapse: collapse;
51
-
52
- thead {
53
- font-weight: 600;
54
- }
55
-
56
- tr {
57
- border-bottom: 1px solid $divider-color;
58
- }
59
-
60
- td,
61
- th {
62
- text-align: left;
63
- padding: $s-small;
64
- }
65
-
66
- @if $last-column-align {
67
- th:last-of-type,
68
- td:last-of-type {
69
- text-align: right;
70
- }
71
- }
72
- }
@@ -1,71 +0,0 @@
1
- // Color variables;
2
- $text-color: $dark;
3
- $text-muted-color: $dark-medium;
4
- $icon-color: $grey-2;
5
-
6
- $border-color: $grey-4;
7
- $border-light-color: rgba($dark, 0.1);
8
- $divider-color: rgba($dark, 0.1);
9
-
10
- $background-light-color: $white;
11
- $background-dark-color: $grey-6;
12
-
13
- $input-small-size: 32px;
14
- $input-medium-size: 40px;
15
- $input-large-size: 48px;
16
- $input-border-color: rgba($dark, 0.2);
17
- $input-border-hover-color: $grey-2;
18
- $input-border-focus-color: $accent;
19
- $input-background-color: $background-light-color;
20
- $input-background-disabled-color: $grey-6;
21
- $input-placeholder-color: $grey-3;
22
- $input-inset-box-shadow: inset 1px 1px 2px 0 rgba($dark, 0.1);
23
- $input-focus-extra-inset-box-shadow: inset 0 0 0 1px $input-border-focus-color;
24
- $input-danger-extra-inset-box-shadow: inset 0 0 0 1px $danger;
25
-
26
- $search-highlight-color: $accent;
27
- $search-highlight-background: rgba($accent, 0.1);
28
- $search-highlight-color-inverse: $dark;
29
- $search-highlight-background-inverse: $accent-lightest;
30
-
31
- // Border
32
- $border-radius-default: 2px;
33
-
34
- // Spacings
35
- $s-base: 4px;
36
- $s-small: 2 * $s-base;
37
- $s-medium: 3 * $s-base;
38
- $s-large: 4 * $s-base;
39
- $s-xlarge: 6 * $s-base;
40
- $s-xxlarge: 8 * $s-base;
41
- $s-xxxlarge: 12 * $s-base;
42
-
43
- // Layout constants
44
- $sidebar-width: 224px;
45
- $header-height: 64px;
46
- $content-width: 1048px;
47
- $content-width-large: 1280px;
48
-
49
- // z-index
50
- $z-sidebar: 200;
51
- $z-header: 200;
52
- $z-overlay: 300;
53
- $z-modal: 400;
54
- $z-dropdown: 450;
55
- $z-dropdown-arrow: 451;
56
- $z-sticky: 475;
57
- $z-tooltip: 500;
58
- $z-notification: 550;
59
- $z-error-overlay: 600;
60
-
61
- // Text
62
- $font-family: "Open Sans", sans-serif;
63
- $font-size-small: 12px;
64
- $font-size-medium: 14px;
65
- $font-size-large: 16px;
66
- $font-size-xlarge: 18px;
67
- $font-size-xxlarge: 20px;
68
- $font-size-xxxlarge: 24px;
69
- $font-size-biggest: 32px;
70
- $default-font-size: $font-size-medium;
71
- $default-line-height: 1.5;
@@ -1,9 +0,0 @@
1
- import * as React from "react";
2
- export declare type AlertType = "neutral" | "info" | "success" | "warning" | "danger";
3
- export declare type AlertSize = "compact" | "default";
4
- export interface Props extends React.HTMLAttributes<HTMLDivElement> {
5
- type?: AlertType;
6
- size?: AlertSize;
7
- }
8
- export declare const Alert: React.SFC<Props>;
9
- export default Alert;
@@ -1,66 +0,0 @@
1
- import * as React from "react";
2
- import { ControllerStateAndHelpers } from "downshift";
3
- import { InputStatus } from "../Input";
4
- import { Option, CreateFromInputValue, RenderValueTemplateArgs, OptionRendererParams } from "./types";
5
- interface Props<T extends Option = Option> {
6
- id?: string;
7
- name?: string;
8
- className?: string;
9
- status?: InputStatus;
10
- placeholder?: string;
11
- disabled?: boolean;
12
- autoFocus?: boolean;
13
- options?: T[];
14
- value?: T | T[];
15
- inputValue?: string;
16
- onChange: (option: T | T[] | null) => void;
17
- onTextChange?: (text: string) => any;
18
- onBlur?: () => void;
19
- creatable?: boolean;
20
- clearable?: boolean;
21
- multiple?: boolean;
22
- selectOnBlur?: boolean;
23
- maxResults?: number;
24
- noResultsLabel?: string;
25
- createFromInputValue?: CreateFromInputValue<T>;
26
- separatorKeyCodes?: number[];
27
- renderValueTemplate?: (args: RenderValueTemplateArgs<T>) => JSX.Element;
28
- renderOption?: (option: T, params: OptionRendererParams) => React.ReactNode;
29
- }
30
- interface State {
31
- inputFocused: boolean;
32
- inputValue: string;
33
- inputWidth?: number;
34
- showAllResults: boolean;
35
- }
36
- export declare class AutoComplete<T extends Option> extends React.Component<Props<T>, State> {
37
- static defaultProps: {
38
- clearable: boolean;
39
- creatable: boolean;
40
- multiple: boolean;
41
- maxResults: number;
42
- noResultsLabel: string;
43
- createFromInputValue: CreateFromInputValue<Option>;
44
- options: never[];
45
- separatorKeyCodes: never[];
46
- onBlur: () => void;
47
- renderOption: (option: Option, { multiple }: OptionRendererParams) => JSX.Element;
48
- };
49
- state: State;
50
- inputRef: HTMLInputElement | null;
51
- showAllResultsButtonRef: React.RefObject<HTMLButtonElement>;
52
- componentDidUpdate(prevProps: Props<T>): void;
53
- handleClearClick: () => void;
54
- handleFakeInputClick: () => void | null;
55
- handleInputBlur: (state: ControllerStateAndHelpers<T>) => (evt: React.FocusEvent<any>) => void;
56
- handleInputChange: (evt: React.ChangeEvent<HTMLInputElement>) => void;
57
- handleDropdownWidthUpdate: (el?: HTMLElement | undefined) => void;
58
- handleKeyDown: (state: ControllerStateAndHelpers<T>) => (evt: React.KeyboardEvent<any>) => void;
59
- handleChange: (option: T) => void;
60
- handleShowAllResults: () => void;
61
- readonly inputValue: string;
62
- removeValue: (removedOption: T) => void;
63
- renderSelect: (autocompleteHelpers: ControllerStateAndHelpers<T>) => JSX.Element;
64
- render(): JSX.Element;
65
- }
66
- export default AutoComplete;
@@ -1,2 +0,0 @@
1
- export * from "./AutoComplete";
2
- export { default } from "./AutoComplete";
@@ -1,21 +0,0 @@
1
- declare type OptionsValue = string | number | boolean;
2
- export interface Option {
3
- value: OptionsValue;
4
- label: string;
5
- metadata?: string[];
6
- new?: boolean;
7
- disabled?: boolean;
8
- bypassNeedleMatch?: boolean;
9
- }
10
- export interface OptionRendererParams {
11
- multiple: boolean;
12
- inputValue: string;
13
- highlighted: boolean;
14
- }
15
- export interface RenderValueTemplateArgs<T extends Option> {
16
- option: T;
17
- key: string;
18
- editable: boolean;
19
- }
20
- export declare type CreateFromInputValue<T> = (options: T[] | undefined, inputValue: string) => T[];
21
- export {};
@@ -1,3 +0,0 @@
1
- import { Option, CreateFromInputValue } from "./types";
2
- export declare const defaultCreateFromInputValue: CreateFromInputValue<Option>;
3
- export declare const caseInsensitiveCreateFromInputValue: CreateFromInputValue<Option>;
@@ -1,13 +0,0 @@
1
- import * as React from 'react';
2
- export declare type ButtonKind = 'primary' | 'neutral' | 'destruction' | 'completion';
3
- export declare type ButtonSize = 'small' | 'medium' | 'large';
4
- interface ButtonProps {
5
- kind?: ButtonKind;
6
- size?: ButtonSize;
7
- }
8
- export interface Props extends ButtonProps, React.ButtonHTMLAttributes<HTMLButtonElement> {
9
- kind?: ButtonKind;
10
- size?: ButtonSize;
11
- }
12
- export declare const Button: React.SFC<Props>;
13
- export default Button;
@@ -1,9 +0,0 @@
1
- import * as React from "react";
2
- import { IconName } from "../MaterialIcon";
3
- declare type LinkButtonKind = "default" | "dimmed" | "destruction";
4
- interface Props extends React.ButtonHTMLAttributes<HTMLButtonElement> {
5
- icon?: IconName;
6
- kind?: LinkButtonKind;
7
- }
8
- export declare const LinkButton: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLButtonElement>>;
9
- export default LinkButton;
@@ -1,3 +0,0 @@
1
- export * from "./Button";
2
- export * from "./LinkButton";
3
- export { default } from "./Button";
@@ -1,13 +0,0 @@
1
- import * as React from "react";
2
- interface Props {
3
- className?: string;
4
- style?: React.CSSProperties;
5
- fullBleed?: boolean;
6
- children: React.ReactNode;
7
- }
8
- export declare class Card extends React.PureComponent<Props> {
9
- static Header: React.FunctionComponent<{}>;
10
- static Title: React.FunctionComponent<import("./components/CardTitle").Props>;
11
- render(): JSX.Element;
12
- }
13
- export default Card;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- export declare const CardHeader: React.SFC;
3
- export default CardHeader;
@@ -1,7 +0,0 @@
1
- import * as React from "react";
2
- export interface Props {
3
- id?: string;
4
- className?: string;
5
- }
6
- export declare const CardTitle: React.SFC<Props>;
7
- export default CardTitle;
@@ -1,3 +0,0 @@
1
- import Card from "./Card";
2
- export { Card } from "./Card";
3
- export default Card;
@@ -1,5 +0,0 @@
1
- import * as React from "react";
2
- export declare const Checkbox: React.ForwardRefExoticComponent<Pick<React.InputHTMLAttributes<HTMLInputElement>, "defaultChecked" | "onChange" | "checked"> & {
3
- textPosition?: "left" | "right" | undefined;
4
- } & React.RefAttributes<HTMLInputElement>>;
5
- export default Checkbox;
@@ -1,9 +0,0 @@
1
- import * as React from "react";
2
- declare type ChipKind = "neutral" | "default" | "danger" | "warning" | "completion";
3
- interface Props extends React.HTMLAttributes<HTMLElement> {
4
- kind?: ChipKind;
5
- editable?: boolean;
6
- onDelete?: React.MouseEventHandler<HTMLElement>;
7
- }
8
- export declare const Chip: React.SFC<Props>;
9
- export default Chip;
@@ -1,2 +0,0 @@
1
- export { Chip } from "./Chip";
2
- export { default } from "./Chip";
@@ -1,27 +0,0 @@
1
- import * as React from "react";
2
- export interface RenderTargetParams {
3
- toggle: (open?: boolean) => any;
4
- isShowingMenu: boolean;
5
- }
6
- interface Props {
7
- renderTarget: (params: RenderTargetParams) => React.ReactNode;
8
- }
9
- interface State {
10
- showMenu: boolean;
11
- }
12
- export declare class Dropdown extends React.Component<Props, State> {
13
- static Item: React.FunctionComponent<import("./components/DropdownItem").Props>;
14
- static Divider: React.FunctionComponent<import("./components/DropdownDivider").Props>;
15
- static Title: React.FunctionComponent<React.HTMLAttributes<HTMLElement>>;
16
- state: State;
17
- menuContainerRef: React.RefObject<HTMLDivElement>;
18
- targetRef: React.RefObject<HTMLSpanElement>;
19
- componentDidMount(): void;
20
- componentWillUnmount(): void;
21
- handleDismiss: (ev: Event) => void;
22
- handleMenuToggle: (open?: boolean | undefined) => void;
23
- handleItemClick: (onClick?: ((event: React.MouseEvent<any, MouseEvent>) => void) | undefined) => (evt: React.MouseEvent<any, MouseEvent>) => void;
24
- adaptItem: (element: React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
25
- render(): JSX.Element;
26
- }
27
- export default Dropdown;
@@ -1,12 +0,0 @@
1
- import * as React from "react";
2
- import { Props as ButtonProps } from "../Button";
3
- import { RenderTargetParams } from "./Dropdown";
4
- interface OwnProps {
5
- title?: React.ReactNode;
6
- }
7
- declare type Props = OwnProps & ButtonProps;
8
- export declare class DropdownButton extends React.Component<Props> {
9
- renderButton: ({ toggle }: RenderTargetParams) => JSX.Element;
10
- render(): JSX.Element;
11
- }
12
- export default DropdownButton;
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- export interface Props {
3
- children: never;
4
- }
5
- export declare const DropdownDivider: React.SFC<Props>;
6
- export default DropdownDivider;
@@ -1,10 +0,0 @@
1
- import * as React from "react";
2
- export interface Props {
3
- className?: string;
4
- onClick?: React.MouseEventHandler<HTMLElement>;
5
- disabled?: boolean;
6
- toggle?: boolean;
7
- kind?: "default" | "success" | "warning" | "danger";
8
- }
9
- export declare const DropdownItem: React.SFC<Props>;
10
- export default DropdownItem;
@@ -1,4 +0,0 @@
1
- import * as React from "react";
2
- export declare type Props = React.HTMLAttributes<HTMLElement>;
3
- export declare const DropdownTitle: React.SFC<Props>;
4
- export default DropdownTitle;
@@ -1,3 +0,0 @@
1
- export { Dropdown } from "./Dropdown";
2
- export { DropdownButton } from "./DropdownButton";
3
- export { default } from "./Dropdown";
@@ -1,10 +0,0 @@
1
- import * as React from "react";
2
- import { TooltipWrapper } from "../Tooltip";
3
- interface Props {
4
- placement?: TooltipWrapper["props"]["placement"];
5
- tooltipClassName?: TooltipWrapper["props"]["tooltipClassName"];
6
- tooltipContent: TooltipWrapper["props"]["content"];
7
- children: string;
8
- }
9
- export declare const HelpUnderline: React.SFC<Props>;
10
- export default HelpUnderline;
@@ -1,25 +0,0 @@
1
- import * as React from "react";
2
- declare type InputKind = "small" | "medium" | "large";
3
- export declare type InputStatus = "default" | "danger";
4
- export interface Props extends React.InputHTMLAttributes<HTMLInputElement> {
5
- kind?: InputKind;
6
- icon?: JSX.Element;
7
- type?: "text" | "number" | "search" | "email" | "password";
8
- rightItem?: React.ReactNode;
9
- innerRef?: (el: HTMLInputElement | null) => any;
10
- status?: InputStatus;
11
- }
12
- interface State {
13
- focused: boolean;
14
- }
15
- export declare class Input extends React.PureComponent<Props, State> {
16
- static defaultProps: Partial<Props>;
17
- inputElement?: HTMLInputElement;
18
- state: State;
19
- handleFocus: (evt: React.FocusEvent<HTMLInputElement>) => void;
20
- handleBlur: (evt: React.FocusEvent<HTMLInputElement>) => void;
21
- handleInputRef: (el: HTMLInputElement) => void;
22
- focusInput: () => void;
23
- render(): JSX.Element;
24
- }
25
- export default Input;
@@ -1,7 +0,0 @@
1
- import * as React from 'react';
2
- export interface Props {
3
- className?: string;
4
- size?: number;
5
- }
6
- export declare const LoaderIcon: React.SFC<Props>;
7
- export default LoaderIcon;
@@ -1,2 +0,0 @@
1
- export * from "./LoaderIcon";
2
- export { default } from "./LoaderIcon";
@@ -1,12 +0,0 @@
1
- import * as React from "react";
2
- /**
3
- * Go on material icons website https://material.io/tools/icons/?icon=fiber_manual_record&style=baseline
4
- * run copy(Array.from(document.querySelectorAll('.icon-item-container i[class^=baseline-]')).map(el => `"${el.classList.item(0).replace('baseline-', '')}"`).join(' | '))
5
- */
6
- export declare type IconName = "3d_rotation" | "accessibility" | "accessibility_new" | "accessible" | "accessible_forward" | "account_balance" | "account_balance_wallet" | "account_box" | "account_circle" | "add_shopping_cart" | "alarm" | "alarm_add" | "alarm_off" | "alarm_on" | "all_inbox" | "all_out" | "android" | "announcement" | "arrow_right_alt" | "aspect_ratio" | "assessment" | "assignment" | "assignment_ind" | "assignment_late" | "assignment_return" | "assignment_returned" | "assignment_turned_in" | "autorenew" | "backup" | "book" | "bookmark" | "bookmark_border" | "bookmarks" | "bug_report" | "build" | "cached" | "calendar_today" | "calendar_view_day" | "camera_enhance" | "card_giftcard" | "card_membership" | "card_travel" | "change_history" | "check_circle" | "check_circle_outline" | "chrome_reader_mode" | "class" | "code" | "commute" | "compare_arrows" | "contact_support" | "copyright" | "credit_card" | "dashboard" | "date_range" | "delete" | "delete_forever" | "delete_outline" | "description" | "dns" | "done" | "done_all" | "done_outline" | "donut_large" | "donut_small" | "drag_indicator" | "eject" | "euro_symbol" | "event" | "event_seat" | "exit_to_app" | "explore" | "explore_off" | "extension" | "face" | "favorite" | "favorite_border" | "feedback" | "find_in_page" | "find_replace" | "fingerprint" | "flight_land" | "flight_takeoff" | "flip_to_back" | "flip_to_front" | "g_translate" | "gavel" | "get_app" | "gif" | "grade" | "group_work" | "help" | "help_outline" | "highlight_off" | "history" | "home" | "horizontal_split" | "hourglass_empty" | "hourglass_full" | "http" | "https" | "important_devices" | "info" | "input" | "invert_colors" | "label" | "label_important" | "label_off" | "language" | "launch" | "line_style" | "line_weight" | "list" | "lock" | "lock_open" | "loyalty" | "markunread_mailbox" | "maximize" | "minimize" | "motorcycle" | "note_add" | "offline_bolt" | "offline_pin" | "opacity" | "open_in_browser" | "open_in_new" | "open_with" | "pageview" | "pan_tool" | "payment" | "perm_camera_mic" | "perm_contact_calendar" | "perm_data_setting" | "perm_device_information" | "perm_identity" | "perm_media" | "perm_phone_msg" | "perm_scan_wifi" | "pets" | "picture_in_picture" | "picture_in_picture_alt" | "play_for_work" | "polymer" | "power_settings_new" | "pregnant_woman" | "print" | "query_builder" | "question_answer" | "receipt" | "record_voice_over" | "redeem" | "remove_shopping_cart" | "reorder" | "report_problem" | "restore" | "restore_from_trash" | "restore_page" | "room" | "rounded_corner" | "rowing" | "schedule" | "search" | "settings" | "settings_applications" | "settings_backup_restore" | "settings_bluetooth" | "settings_brightness" | "settings_cell" | "settings_ethernet" | "settings_input_antenna" | "settings_input_component" | "settings_input_composite" | "settings_input_hdmi" | "settings_input_svideo" | "settings_overscan" | "settings_phone" | "settings_power" | "settings_remote" | "settings_voice" | "shop" | "shop_two" | "shopping_basket" | "shopping_cart" | "speaker_notes" | "speaker_notes_off" | "spellcheck" | "star_rate" | "stars" | "store" | "subject" | "supervised_user_circle" | "supervisor_account" | "swap_horiz" | "swap_horizontal_circle" | "swap_vert" | "swap_vertical_circle" | "tab" | "tab_unselected" | "text_rotate_up" | "text_rotate_vertical" | "text_rotation_down" | "text_rotation_none" | "theaters" | "thumb_down" | "thumb_up" | "thumbs_up_down" | "timeline" | "toc" | "today" | "toll" | "touch_app" | "track_changes" | "translate" | "trending_down" | "trending_flat" | "trending_up" | "turned_in" | "turned_in_not" | "update" | "verified_user" | "vertical_split" | "view_agenda" | "view_array" | "view_carousel" | "view_column" | "view_day" | "view_headline" | "view_list" | "view_module" | "view_quilt" | "view_stream" | "view_week" | "visibility" | "visibility_off" | "voice_over_off" | "watch_later" | "work" | "work_off" | "work_outline" | "youtube_searched_for" | "zoom_in" | "zoom_out" | "add_alert" | "error" | "error_outline" | "notification_important" | "warning" | "4k" | "add_to_queue" | "airplay" | "album" | "art_track" | "av_timer" | "branding_watermark" | "call_to_action" | "closed_caption" | "control_camera" | "equalizer" | "explicit" | "fast_forward" | "fast_rewind" | "featured_play_list" | "featured_video" | "fiber_dvr" | "fiber_manual_record" | "fiber_new" | "fiber_pin" | "fiber_smart_record" | "forward_10" | "forward_30" | "forward_5" | "games" | "hd" | "hearing" | "high_quality" | "library_add" | "library_books" | "library_music" | "loop" | "mic" | "mic_none" | "mic_off" | "missed_video_call" | "movie" | "music_video" | "new_releases" | "not_interested" | "note" | "pause" | "pause_circle_filled" | "pause_circle_outline" | "play_arrow" | "play_circle_filled" | "play_circle_filled_white" | "play_circle_outline" | "playlist_add" | "playlist_add_check" | "playlist_play" | "queue" | "queue_music" | "queue_play_next" | "radio" | "recent_actors" | "remove_from_queue" | "repeat" | "repeat_one" | "replay" | "replay_10" | "replay_30" | "replay_5" | "shuffle" | "skip_next" | "skip_previous" | "slow_motion_video" | "snooze" | "sort_by_alpha" | "stop" | "subscriptions" | "subtitles" | "surround_sound" | "video_call" | "video_label" | "video_library" | "videocam" | "videocam_off" | "volume_down" | "volume_mute" | "volume_off" | "volume_up" | "web" | "web_asset" | "alternate_email" | "business" | "call" | "call_end" | "call_made" | "call_merge" | "call_missed" | "call_missed_outgoing" | "call_received" | "call_split" | "cancel_presentation" | "cell_wifi" | "chat" | "chat_bubble" | "chat_bubble_outline" | "clear_all" | "comment" | "contact_mail" | "contact_phone" | "contacts" | "desktop_access_disabled" | "dialer_sip" | "dialpad" | "domain_disabled" | "duo" | "email" | "forum" | "import_contacts" | "import_export" | "invert_colors_off" | "list_alt" | "live_help" | "location_off" | "location_on" | "mail_outline" | "message" | "mobile_screen_share" | "no_sim" | "pause_presentation" | "person_add_disabled" | "phone" | "phonelink_erase" | "phonelink_lock" | "phonelink_ring" | "phonelink_setup" | "portable_wifi_off" | "present_to_all" | "print_disabled" | "ring_volume" | "rss_feed" | "screen_share" | "sentiment_satisfied_alt" | "speaker_phone" | "stay_current_landscape" | "stay_current_portrait" | "stay_primary_landscape" | "stay_primary_portrait" | "stop_screen_share" | "swap_calls" | "textsms" | "unsubscribe" | "voicemail" | "vpn_key" | "add" | "add_box" | "add_circle" | "add_circle_outline" | "archive" | "backspace" | "ballot" | "block" | "clear" | "create" | "delete_sweep" | "drafts" | "file_copy" | "filter_list" | "flag" | "font_download" | "forward" | "gesture" | "how_to_reg" | "how_to_vote" | "inbox" | "link" | "link_off" | "low_priority" | "mail" | "markunread" | "move_to_inbox" | "next_week" | "outlined_flag" | "redo" | "remove" | "remove_circle" | "remove_circle_outline" | "reply" | "reply_all" | "report" | "report_off" | "save" | "save_alt" | "select_all" | "send" | "sort" | "text_format" | "unarchive" | "undo" | "waves" | "weekend" | "where_to_vote" | "access_alarm" | "access_alarms" | "access_time" | "add_alarm" | "add_to_home_screen" | "airplanemode_active" | "airplanemode_inactive" | "battery_20" | "battery_30" | "battery_50" | "battery_60" | "battery_80" | "battery_90" | "battery_alert" | "battery_charging_20" | "battery_charging_30" | "battery_charging_50" | "battery_charging_60" | "battery_charging_80" | "battery_charging_90" | "battery_charging_full" | "battery_full" | "battery_std" | "battery_unknown" | "bluetooth" | "bluetooth_connected" | "bluetooth_disabled" | "bluetooth_searching" | "brightness_auto" | "brightness_high" | "brightness_low" | "brightness_medium" | "data_usage" | "developer_mode" | "devices" | "dvr" | "gps_fixed" | "gps_not_fixed" | "gps_off" | "graphic_eq" | "location_disabled" | "location_searching" | "mobile_friendly" | "mobile_off" | "network_cell" | "network_wifi" | "nfc" | "screen_lock_landscape" | "screen_lock_portrait" | "screen_lock_rotation" | "screen_rotation" | "sd_storage" | "settings_system_daydream" | "signal_cellular_0_bar" | "signal_cellular_1_bar" | "signal_cellular_2_bar" | "signal_cellular_3_bar" | "signal_cellular_4_bar" | "signal_cellular_alt" | "signal_cellular_connected_no_internet_0_bar" | "signal_cellular_connected_no_internet_1_bar" | "signal_cellular_connected_no_internet_2_bar" | "signal_cellular_connected_no_internet_3_bar" | "signal_cellular_connected_no_internet_4_bar" | "signal_cellular_no_sim" | "signal_cellular_null" | "signal_cellular_off" | "signal_wifi_0_bar" | "signal_wifi_1_bar" | "signal_wifi_1_bar_lock" | "signal_wifi_2_bar" | "signal_wifi_2_bar_lock" | "signal_wifi_3_bar" | "signal_wifi_3_bar_lock" | "signal_wifi_4_bar" | "signal_wifi_4_bar_lock" | "signal_wifi_off" | "storage" | "usb" | "wallpaper" | "widgets" | "wifi_lock" | "wifi_tethering" | "add_comment" | "attach_file" | "attach_money" | "bar_chart" | "border_all" | "border_bottom" | "border_clear" | "border_color" | "border_horizontal" | "border_inner" | "border_left" | "border_outer" | "border_right" | "border_style" | "border_top" | "border_vertical" | "bubble_chart" | "drag_handle" | "format_align_center" | "format_align_justify" | "format_align_left" | "format_align_right" | "format_bold" | "format_clear" | "format_color_fill" | "format_color_reset" | "format_color_text" | "format_indent_decrease" | "format_indent_increase" | "format_italic" | "format_line_spacing" | "format_list_bulleted" | "format_list_numbered" | "format_list_numbered_rtl" | "format_paint" | "format_quote" | "format_shapes" | "format_size" | "format_strikethrough" | "format_textdirection_l_to_r" | "format_textdirection_r_to_l" | "format_underlined" | "functions" | "highlight" | "insert_chart" | "insert_chart_outlined" | "insert_comment" | "insert_drive_file" | "insert_emoticon" | "insert_invitation" | "insert_link" | "insert_photo" | "linear_scale" | "merge_type" | "mode_comment" | "monetization_on" | "money_off" | "multiline_chart" | "notes" | "pie_chart" | "publish" | "scatter_plot" | "score" | "short_text" | "show_chart" | "space_bar" | "strikethrough_s" | "table_chart" | "text_fields" | "title" | "vertical_align_bottom" | "vertical_align_center" | "vertical_align_top" | "wrap_text" | "attachment" | "cloud" | "cloud_circle" | "cloud_done" | "cloud_download" | "cloud_off" | "cloud_queue" | "cloud_upload" | "create_new_folder" | "folder" | "folder_open" | "folder_shared" | "cast" | "cast_connected" | "cast_for_education" | "computer" | "desktop_mac" | "desktop_windows" | "developer_board" | "device_hub" | "device_unknown" | "devices_other" | "dock" | "gamepad" | "headset" | "headset_mic" | "keyboard" | "keyboard_arrow_down" | "keyboard_arrow_left" | "keyboard_arrow_right" | "keyboard_arrow_up" | "keyboard_backspace" | "keyboard_capslock" | "keyboard_hide" | "keyboard_return" | "keyboard_tab" | "keyboard_voice" | "laptop" | "laptop_chromebook" | "laptop_mac" | "laptop_windows" | "memory" | "mouse" | "phone_android" | "phone_iphone" | "phonelink" | "phonelink_off" | "power_input" | "router" | "scanner" | "security" | "sim_card" | "smartphone" | "speaker" | "speaker_group" | "tablet" | "tablet_android" | "tablet_mac" | "toys" | "tv" | "videogame_asset" | "watch" | "add_a_photo" | "add_photo_alternate" | "add_to_photos" | "adjust" | "assistant" | "assistant_photo" | "audiotrack" | "blur_circular" | "blur_linear" | "blur_off" | "blur_on" | "brightness_1" | "brightness_2" | "brightness_3" | "brightness_4" | "brightness_5" | "brightness_6" | "brightness_7" | "broken_image" | "brush" | "burst_mode" | "camera" | "camera_alt" | "camera_front" | "camera_rear" | "camera_roll" | "center_focus_strong" | "center_focus_weak" | "collections" | "collections_bookmark" | "color_lens" | "colorize" | "compare" | "control_point" | "control_point_duplicate" | "crop" | "crop_16_9" | "crop_3_2" | "crop_5_4" | "crop_7_5" | "crop_din" | "crop_free" | "crop_landscape" | "crop_original" | "crop_portrait" | "crop_rotate" | "crop_square" | "dehaze" | "details" | "edit" | "exposure" | "exposure_neg_1" | "exposure_neg_2" | "exposure_plus_1" | "exposure_plus_2" | "exposure_zero" | "filter" | "filter_1" | "filter_2" | "filter_3" | "filter_4" | "filter_5" | "filter_6" | "filter_7" | "filter_8" | "filter_9" | "filter_9_plus" | "filter_b_and_w" | "filter_center_focus" | "filter_drama" | "filter_frames" | "filter_hdr" | "filter_none" | "filter_tilt_shift" | "filter_vintage" | "flare" | "flash_auto" | "flash_off" | "flash_on" | "flip" | "gradient" | "grain" | "grid_off" | "grid_on" | "hdr_off" | "hdr_on" | "hdr_strong" | "hdr_weak" | "healing" | "image" | "image_aspect_ratio" | "image_search" | "iso" | "landscape" | "leak_add" | "leak_remove" | "lens" | "linked_camera" | "looks" | "looks_3" | "looks_4" | "looks_5" | "looks_6" | "looks_one" | "looks_two" | "loupe" | "monochrome_photos" | "movie_creation" | "movie_filter" | "music_note" | "music_off" | "nature" | "nature_people" | "navigate_before" | "navigate_next" | "palette" | "panorama" | "panorama_fish_eye" | "panorama_horizontal" | "panorama_vertical" | "panorama_wide_angle" | "photo" | "photo_album" | "photo_camera" | "photo_filter" | "photo_library" | "photo_size_select_actual" | "photo_size_select_large" | "photo_size_select_small" | "picture_as_pdf" | "portrait" | "remove_red_eye" | "rotate_90_degrees_ccw" | "rotate_left" | "rotate_right" | "shutter_speed" | "slideshow" | "straighten" | "style" | "switch_camera" | "switch_video" | "tag_faces" | "texture" | "timelapse" | "timer" | "timer_10" | "timer_3" | "timer_off" | "tonality" | "transform" | "tune" | "view_comfy" | "view_compact" | "vignette" | "wb_auto" | "wb_cloudy" | "wb_incandescent" | "wb_iridescent" | "wb_sunny" | "360" | "add_location" | "atm" | "beenhere" | "category" | "compass_calibration" | "departure_board" | "directions" | "directions_bike" | "directions_boat" | "directions_bus" | "directions_car" | "directions_railway" | "directions_run" | "directions_subway" | "directions_transit" | "directions_walk" | "edit_attributes" | "edit_location" | "ev_station" | "fastfood" | "flight" | "hotel" | "layers" | "layers_clear" | "local_activity" | "local_airport" | "local_atm" | "local_bar" | "local_cafe" | "local_car_wash" | "local_convenience_store" | "local_dining" | "local_drink" | "local_florist" | "local_gas_station" | "local_grocery_store" | "local_hospital" | "local_hotel" | "local_laundry_service" | "local_library" | "local_mall" | "local_movies" | "local_offer" | "local_parking" | "local_pharmacy" | "local_phone" | "local_pizza" | "local_play" | "local_post_office" | "local_printshop" | "local_see" | "local_shipping" | "local_taxi" | "map" | "money" | "my_location" | "navigation" | "near_me" | "not_listed_location" | "person_pin" | "person_pin_circle" | "pin_drop" | "place" | "rate_review" | "restaurant" | "restaurant_menu" | "satellite" | "store_mall_directory" | "streetview" | "subway" | "terrain" | "traffic" | "train" | "tram" | "transfer_within_a_station" | "transit_enterexit" | "trip_origin" | "zoom_out_map" | "apps" | "arrow_back" | "arrow_back_ios" | "arrow_downward" | "arrow_drop_down" | "arrow_drop_down_circle" | "arrow_drop_up" | "arrow_forward" | "arrow_forward_ios" | "arrow_left" | "arrow_right" | "arrow_upward" | "cancel" | "check" | "chevron_left" | "chevron_right" | "close" | "expand_less" | "expand_more" | "first_page" | "fullscreen" | "fullscreen_exit" | "last_page" | "menu" | "more_horiz" | "more_vert" | "refresh" | "subdirectory_arrow_left" | "subdirectory_arrow_right" | "unfold_less" | "unfold_more" | "adb" | "airline_seat_flat" | "airline_seat_flat_angled" | "airline_seat_individual_suite" | "airline_seat_legroom_extra" | "airline_seat_legroom_normal" | "airline_seat_legroom_reduced" | "airline_seat_recline_extra" | "airline_seat_recline_normal" | "bluetooth_audio" | "confirmation_number" | "disc_full" | "drive_eta" | "enhanced_encryption" | "event_available" | "event_busy" | "event_note" | "folder_special" | "live_tv" | "mms" | "more" | "network_check" | "network_locked" | "no_encryption" | "ondemand_video" | "personal_video" | "phone_bluetooth_speaker" | "phone_callback" | "phone_forwarded" | "phone_in_talk" | "phone_locked" | "phone_missed" | "phone_paused" | "power" | "power_off" | "priority_high" | "sd_card" | "sms" | "sms_failed" | "sync" | "sync_disabled" | "sync_problem" | "system_update" | "tap_and_play" | "time_to_leave" | "tv_off" | "vibration" | "voice_chat" | "vpn_lock" | "wc" | "wifi" | "wifi_off" | "ac_unit" | "airport_shuttle" | "all_inclusive" | "beach_access" | "business_center" | "casino" | "child_care" | "child_friendly" | "fitness_center" | "free_breakfast" | "golf_course" | "hot_tub" | "kitchen" | "meeting_room" | "no_meeting_room" | "pool" | "room_service" | "rv_hookup" | "smoke_free" | "smoking_rooms" | "spa" | "cake" | "domain" | "group" | "group_add" | "location_city" | "mood" | "mood_bad" | "notifications" | "notifications_active" | "notifications_none" | "notifications_off" | "notifications_paused" | "pages" | "party_mode" | "people" | "people_outline" | "person" | "person_add" | "person_outline" | "plus_one" | "poll" | "public" | "school" | "sentiment_dissatisfied" | "sentiment_satisfied" | "sentiment_very_dissatisfied" | "sentiment_very_satisfied" | "share" | "thumb_down_alt" | "thumb_up_alt" | "whatshot" | "check_box" | "check_box_outline_blank" | "indeterminate_check_box" | "radio_button_checked" | "radio_button_unchecked" | "star" | "star_border" | "star_half" | "toggle_off" | "toggle_on";
7
- interface Props extends React.HtmlHTMLAttributes<HTMLElement> {
8
- size?: number | string;
9
- icon: IconName;
10
- }
11
- export declare const MaterialIcon: React.SFC<Props>;
12
- export default MaterialIcon;
@@ -1,2 +0,0 @@
1
- export * from "./MaterialIcon";
2
- export { default } from "./MaterialIcon";
@@ -1,30 +0,0 @@
1
- import * as React from "react";
2
- export interface Props {
3
- open?: boolean;
4
- title?: string | JSX.Element;
5
- animate?: boolean;
6
- size?: "medium" | "large";
7
- showCloseIcon?: boolean;
8
- showTitle?: boolean;
9
- centerY?: boolean;
10
- onDismiss?: () => any;
11
- }
12
- export declare class Modal extends React.Component<Props> {
13
- static Footer: React.FunctionComponent<React.HTMLAttributes<HTMLElement>>;
14
- static Section: React.FunctionComponent<import("./components/ModalSection").Props>;
15
- static defaultProps: Partial<Props>;
16
- dialogRef: React.RefObject<HTMLDivElement>;
17
- mouseDownEl: EventTarget | null;
18
- componentDidMount(): void;
19
- componentWillUnmount(): void;
20
- componentDidUpdate(): void;
21
- toggleBodyClass: (toggle?: boolean) => void;
22
- handleEscape: (evt: KeyboardEvent) => void;
23
- handleWrapperRefUpdate: (el: HTMLDivElement) => void;
24
- handleOverlayMouseDown: (evt: MouseEvent) => EventTarget | null;
25
- handleOverlayMouseUp: (evt: MouseEvent) => void;
26
- handleDimiss: () => any;
27
- renderContent: () => false | JSX.Element | undefined;
28
- render(): React.ReactPortal;
29
- }
30
- export default Modal;
@@ -1,4 +0,0 @@
1
- import * as React from "react";
2
- export declare type Props = React.HTMLAttributes<HTMLElement>;
3
- export declare const ModalFooter: React.SFC<Props>;
4
- export default ModalFooter;
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- export interface Props extends React.HTMLAttributes<HTMLElement> {
3
- notch?: boolean;
4
- }
5
- export declare const ModalSection: React.SFC<Props>;
6
- export default ModalSection;
@@ -1,2 +0,0 @@
1
- export { Modal } from "./Modal";
2
- export { default } from "./Modal";
@@ -1,12 +0,0 @@
1
- import * as React from "react";
2
- interface Props {
3
- nbPages: number;
4
- currentPage: number;
5
- maxButtons?: number;
6
- onChange: (page: number) => void;
7
- }
8
- export declare class Pagination extends React.PureComponent<Props> {
9
- renderGroup: (group: number[]) => JSX.Element[];
10
- render(): JSX.Element;
11
- }
12
- export default Pagination;
@@ -1,4 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = Utils.Omit<React.InputHTMLAttributes<HTMLInputElement>, "type">;
3
- export declare const RadioButton: React.SFC<Props>;
4
- export default RadioButton;
@@ -1,20 +0,0 @@
1
- import * as React from "react";
2
- interface Props {
3
- name?: string;
4
- value: string;
5
- disabled?: boolean;
6
- kind?: "primary" | "neutral";
7
- onChange: (newValue: string) => any;
8
- children: React.ReactElement<any>[];
9
- }
10
- interface ItemProps {
11
- value: string;
12
- disabled?: boolean;
13
- }
14
- export declare class RadioGroup extends React.PureComponent<Props> {
15
- static Item: React.FunctionComponent<ItemProps>;
16
- private readonly componentDefaultName;
17
- handleChange: (value: string) => any;
18
- render(): JSX.Element;
19
- }
20
- export default RadioGroup;
@@ -1,3 +0,0 @@
1
- export { RadioGroup } from "./RadioGroup";
2
- export { RadioButton } from "./RadioButton";
3
- export { default } from "./RadioGroup";