@zonos/amino 5.5.29 → 5.5.31

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 (827) hide show
  1. package/all.d.ts +768 -0
  2. package/components/avatar/AvatarBase.d.ts +73 -0
  3. package/components/avatar/ImageAvatar.d.ts +56 -0
  4. package/components/avatar/UserAvatar.d.ts +35 -0
  5. package/components/badge/Badge.d.ts +72 -0
  6. package/components/banner/Banner.d.ts +83 -0
  7. package/components/button/Button.d.ts +140 -0
  8. package/components/button/ButtonIcon.d.ts +5 -0
  9. package/components/button/MenuButton.d.ts +19 -0
  10. package/components/button/RippleGroup.d.ts +21 -0
  11. package/components/button/_Ripple.d.ts +15 -0
  12. package/components/button/button-group/ButtonGroup.d.ts +9 -0
  13. package/components/button/useRipple.d.ts +17 -0
  14. package/components/card/Card.d.ts +68 -0
  15. package/components/checkbox/Checkbox.d.ts +86 -0
  16. package/components/collapse/Collapse.d.ts +87 -0
  17. package/components/connection-map/ConnectionMap.d.ts +75 -0
  18. package/components/country-multi-select/CountryMultiSelectExpanded.d.ts +123 -0
  19. package/components/country-multi-select/CountryMultiSelectExpandedOption.d.ts +23 -0
  20. package/components/cover-sheet/CoverSheet.d.ts +119 -0
  21. package/components/cover-sheet/CoverSheetActions.d.ts +115 -0
  22. package/components/currency/Currency.d.ts +40 -0
  23. package/components/currency/DualCurrency.d.ts +33 -0
  24. package/components/danger-zone/DangerZone.d.ts +71 -0
  25. package/components/dialog/BaseDialog.d.ts +49 -0
  26. package/components/dialog/Dialog.d.ts +105 -0
  27. package/components/dialog/DismissableDialog.d.ts +21 -0
  28. package/components/dialog/alert/AlertContext.d.ts +12 -0
  29. package/components/dialog/alert/AlertDialog.d.ts +6 -0
  30. package/components/dialog/alert/useAlert.d.ts +1 -0
  31. package/components/dialog/announcement/AnnouncementDialog.d.ts +28 -0
  32. package/components/dialog/confirm/ConfirmContext.d.ts +13 -0
  33. package/components/dialog/confirm/ConfirmDialog.d.ts +8 -0
  34. package/components/dialog/confirm/useConfirm.d.ts +1 -0
  35. package/components/divider/Divider.d.ts +58 -0
  36. package/components/drop-zone/DropZone.d.ts +178 -0
  37. package/components/file-upload/FileUpload.d.ts +112 -0
  38. package/components/filter/FilterWrapper.d.ts +115 -0
  39. package/components/filter/filter-amount/FilterAmount.d.ts +55 -0
  40. package/components/filter/filter-amount/filterAmountReducer.d.ts +20 -0
  41. package/components/filter/filter-date/DateControls.d.ts +11 -0
  42. package/components/filter/filter-date/DateControlsWrapper.d.ts +13 -0
  43. package/components/filter/filter-date/FilterDate.d.ts +64 -0
  44. package/components/filter/filter-date/_DateControls/_IsAfter.d.ts +2 -0
  45. package/components/filter/filter-date/_DateControls/_IsBefore.d.ts +2 -0
  46. package/components/filter/filter-date/_DateControls/_IsBeforeOrOn.d.ts +2 -0
  47. package/components/filter/filter-date/_DateControls/_IsBetween.d.ts +3 -0
  48. package/components/filter/filter-date/_DateControls/_IsEqualTo.d.ts +2 -0
  49. package/components/filter/filter-date/_DateControls/_IsInTheLast.d.ts +2 -0
  50. package/components/filter/filter-date/_DateControls/_IsOnOrAfter.d.ts +2 -0
  51. package/components/filter/filter-date/filterDateReducer.d.ts +24 -0
  52. package/components/filter/filter-multi-select/FilterMultiSelect.d.ts +64 -0
  53. package/components/filter/filter-select/FilterSelect.d.ts +88 -0
  54. package/components/filter/filter-text/FilterText.d.ts +48 -0
  55. package/components/filter/useFilterWrapper.d.ts +154 -0
  56. package/components/flex/Flex.d.ts +108 -0
  57. package/components/glow/GlowWrapper.d.ts +84 -0
  58. package/components/help-text/HelpText.d.ts +79 -0
  59. package/components/input/Input.d.ts +112 -0
  60. package/components/input/MultiInput.d.ts +94 -0
  61. package/components/input/input-simple/InputSimple.d.ts +130 -0
  62. package/components/input/input-simple/input-type/_DateInput.d.ts +20 -0
  63. package/components/input/input-simple/input-type/_InputBase.d.ts +125 -0
  64. package/components/input/input-simple/input-type/_NumberInput.d.ts +21 -0
  65. package/components/input/input-simple/input-type/_PasswordInput.d.ts +20 -0
  66. package/components/input/input-simple/input-type/_TimeInput.d.ts +20 -0
  67. package/components/input/input-type/_DateInput.d.ts +20 -0
  68. package/components/input/input-type/_FloatLabelInput.d.ts +127 -0
  69. package/components/input/input-type/_NumberInput.d.ts +21 -0
  70. package/components/input/input-type/_PasswordInput.d.ts +20 -0
  71. package/components/input/input-type/_TimeInput.d.ts +20 -0
  72. package/components/layout/Layout.d.ts +98 -0
  73. package/components/layout/NavigationGroup.d.ts +160 -0
  74. package/components/lightbox/LightBox.d.ts +90 -0
  75. package/components/list/CollapsibleList.d.ts +101 -0
  76. package/components/list/List.d.ts +88 -0
  77. package/components/list-item/ListItem.d.ts +35 -0
  78. package/components/menu/Menu.d.ts +51 -0
  79. package/components/menu/MenuItem.d.ts +74 -0
  80. package/components/nested-data-table/NestedDataTable.d.ts +121 -0
  81. package/components/nested-data-table/NestedDataTableHasura.d.ts +19 -0
  82. package/components/nested-data-table/_Filter.d.ts +7 -0
  83. package/components/nested-data-table/_TableData.d.ts +16 -0
  84. package/components/pivot-table/PivotTable.d.ts +130 -0
  85. package/components/progress-bar/ProgressBar.d.ts +58 -0
  86. package/components/radio/Radio.d.ts +76 -0
  87. package/components/radio/RadioGroup.d.ts +105 -0
  88. package/components/rest-state/RestState.d.ts +72 -0
  89. package/components/rich-card-select/RichCardStateSelect.d.ts +75 -0
  90. package/components/rich-checkbox/RichCheckbox.d.ts +104 -0
  91. package/components/rich-radio/RichRadio.d.ts +177 -0
  92. package/components/rounded-icon/RoundedIcon.d.ts +56 -0
  93. package/components/section/HSection.d.ts +87 -0
  94. package/components/section/VSection.d.ts +94 -0
  95. package/components/section/_SectionHeader.d.ts +9 -0
  96. package/components/section/_SectionInnerWrapper.d.ts +7 -0
  97. package/components/section/_SectionSubheader.d.ts +7 -0
  98. package/components/select/CountryMultiSelect.d.ts +89 -0
  99. package/components/select/CountrySelect.d.ts +102 -0
  100. package/components/select/MultiSelect.d.ts +27 -0
  101. package/components/select/Select.d.ts +127 -0
  102. package/components/select/_StyledReactSelect.d.ts +22 -0
  103. package/components/simple-table/SimpleTable.d.ts +242 -0
  104. package/components/simple-table/SimpleTableRow.d.ts +34 -0
  105. package/components/skeleton/Skeleton.d.ts +50 -0
  106. package/components/slide-over/SlideOver.d.ts +112 -0
  107. package/components/spinner/Spinner.d.ts +55 -0
  108. package/components/split-panel/SplitPanel.d.ts +113 -0
  109. package/components/stack/HStack.d.ts +44 -0
  110. package/components/stack/Stack.d.ts +64 -0
  111. package/components/stack/VStack.d.ts +53 -0
  112. package/components/surface/Surface.d.ts +65 -0
  113. package/components/switch/Switch.d.ts +86 -0
  114. package/components/table/Table.d.ts +121 -0
  115. package/components/table/TableBody.d.ts +6 -0
  116. package/components/table/TableCell.d.ts +11 -0
  117. package/components/table/TableFooter.d.ts +6 -0
  118. package/components/table/TableHead.d.ts +6 -0
  119. package/components/table/TableRow.d.ts +15 -0
  120. package/components/table/TableRowCollapse.d.ts +19 -0
  121. package/components/tabs/Tabs.d.ts +76 -0
  122. package/components/tag/Tag.d.ts +46 -0
  123. package/components/text/Text.d.ts +159 -0
  124. package/components/text-avatar/TextAvatar.d.ts +25 -0
  125. package/components/textarea/Textarea.d.ts +141 -0
  126. package/components/theme-select/ThemeSelect.d.ts +28 -0
  127. package/components/thumbnail/Thumbnail.d.ts +64 -0
  128. package/components/toast/Toast.d.ts +97 -0
  129. package/components/toast/ToastContext.d.ts +17 -0
  130. package/components/toggle/Toggle.d.ts +118 -0
  131. package/components/tooltip/Tooltip.d.ts +37 -0
  132. package/icons/AIDuotoneIcon.d.ts +5 -0
  133. package/icons/AIIcon.d.ts +2 -0
  134. package/icons/ArrowDownDuotoneIcon.d.ts +2 -0
  135. package/icons/ArrowDownIcon.d.ts +2 -0
  136. package/icons/ArrowLeftDuotoneIcon.d.ts +2 -0
  137. package/icons/ArrowLeftIcon.d.ts +2 -0
  138. package/icons/ArrowRightDuotoneIcon.d.ts +2 -0
  139. package/icons/ArrowRightIcon.d.ts +2 -0
  140. package/icons/ArrowSwapDuotoneIcon.d.ts +5 -0
  141. package/icons/ArrowSwapIcon.d.ts +2 -0
  142. package/icons/ArrowUpDuotoneIcon.d.ts +2 -0
  143. package/icons/ArrowUpIcon.d.ts +2 -0
  144. package/icons/BagDuotoneIcon.d.ts +5 -0
  145. package/icons/BagIcon.d.ts +2 -0
  146. package/icons/BankDuotoneIcon.d.ts +5 -0
  147. package/icons/BankIcon.d.ts +2 -0
  148. package/icons/BellDuotoneIcon.d.ts +5 -0
  149. package/icons/BellIcon.d.ts +2 -0
  150. package/icons/BellOffDuotoneIcon.d.ts +5 -0
  151. package/icons/BellOffIcon.d.ts +2 -0
  152. package/icons/BookDuotoneIcon.d.ts +5 -0
  153. package/icons/BookIcon.d.ts +2 -0
  154. package/icons/BookmarkAddDuotoneIcon.d.ts +5 -0
  155. package/icons/BookmarkAddIcon.d.ts +2 -0
  156. package/icons/BookmarkCheckDuotoneIcon.d.ts +5 -0
  157. package/icons/BookmarkCheckIcon.d.ts +2 -0
  158. package/icons/BookmarkDuotoneIcon.d.ts +2 -0
  159. package/icons/BookmarkIcon.d.ts +2 -0
  160. package/icons/BookmarkOffDuotoneIcon.d.ts +5 -0
  161. package/icons/BookmarkOffIcon.d.ts +2 -0
  162. package/icons/BookmarkRemoveDuotoneIcon.d.ts +5 -0
  163. package/icons/BookmarkRemoveIcon.d.ts +2 -0
  164. package/icons/BookmarkSubtractDuotoneIcon.d.ts +5 -0
  165. package/icons/BookmarkSubtractIcon.d.ts +2 -0
  166. package/icons/BoxesDuotoneIcon.d.ts +5 -0
  167. package/icons/BoxesIcon.d.ts +2 -0
  168. package/icons/BufferDuotoneIcon.d.ts +5 -0
  169. package/icons/BufferIcon.d.ts +2 -0
  170. package/icons/CalculatorDuotoneIcon.d.ts +5 -0
  171. package/icons/CalculatorIcon.d.ts +2 -0
  172. package/icons/CalendarDuotoneIcon.d.ts +5 -0
  173. package/icons/CalendarIcon.d.ts +2 -0
  174. package/icons/CardDuotoneIcon.d.ts +5 -0
  175. package/icons/CardIcon.d.ts +2 -0
  176. package/icons/CaretDownDuotoneIcon.d.ts +2 -0
  177. package/icons/CaretDownIcon.d.ts +2 -0
  178. package/icons/CaretLeftDuotoneIcon.d.ts +2 -0
  179. package/icons/CaretLeftIcon.d.ts +2 -0
  180. package/icons/CaretRightDuotoneIcon.d.ts +2 -0
  181. package/icons/CaretRightIcon.d.ts +2 -0
  182. package/icons/CaretUpDuotoneIcon.d.ts +2 -0
  183. package/icons/CaretUpIcon.d.ts +2 -0
  184. package/icons/CartDuotoneIcon.d.ts +5 -0
  185. package/icons/CartIcon.d.ts +2 -0
  186. package/icons/ChartDuotoneIcon.d.ts +5 -0
  187. package/icons/ChartIcon.d.ts +2 -0
  188. package/icons/CheckCircleDuotoneIcon.d.ts +5 -0
  189. package/icons/CheckCircleIcon.d.ts +2 -0
  190. package/icons/CheckmarkDuotoneIcon.d.ts +2 -0
  191. package/icons/CheckmarkIcon.d.ts +2 -0
  192. package/icons/CheckoutDuotoneIcon.d.ts +5 -0
  193. package/icons/CheckoutIcon.d.ts +2 -0
  194. package/icons/ChevronDownCircleDuotoneIcon.d.ts +5 -0
  195. package/icons/ChevronDownCircleIcon.d.ts +2 -0
  196. package/icons/ChevronDownDuotoneIcon.d.ts +2 -0
  197. package/icons/ChevronDownIcon.d.ts +2 -0
  198. package/icons/ChevronLeftCircleDuotoneIcon.d.ts +5 -0
  199. package/icons/ChevronLeftCircleIcon.d.ts +2 -0
  200. package/icons/ChevronLeftDuotoneIcon.d.ts +2 -0
  201. package/icons/ChevronLeftIcon.d.ts +2 -0
  202. package/icons/ChevronRightCircleDuotoneIcon.d.ts +5 -0
  203. package/icons/ChevronRightCircleIcon.d.ts +2 -0
  204. package/icons/ChevronRightDuotoneIcon.d.ts +2 -0
  205. package/icons/ChevronRightIcon.d.ts +2 -0
  206. package/icons/ChevronUpCircleDuotoneIcon.d.ts +2 -0
  207. package/icons/ChevronUpCircleIcon.d.ts +2 -0
  208. package/icons/ChevronUpDuotoneIcon.d.ts +2 -0
  209. package/icons/ChevronUpIcon.d.ts +2 -0
  210. package/icons/CircleDuotoneIcon.d.ts +2 -0
  211. package/icons/CircleIcon.d.ts +2 -0
  212. package/icons/ClassifyDuotoneIcon.d.ts +5 -0
  213. package/icons/ClassifyIcon.d.ts +2 -0
  214. package/icons/ClearDuotoneIcon.d.ts +5 -0
  215. package/icons/ClearIcon.d.ts +2 -0
  216. package/icons/ClockDuotoneIcon.d.ts +5 -0
  217. package/icons/ClockIcon.d.ts +2 -0
  218. package/icons/CodeCircleDuotoneIcon.d.ts +5 -0
  219. package/icons/CodeCircleIcon.d.ts +2 -0
  220. package/icons/CodeDuotoneIcon.d.ts +5 -0
  221. package/icons/CodeIcon.d.ts +2 -0
  222. package/icons/CoinsDuotoneIcon.d.ts +5 -0
  223. package/icons/CoinsIcon.d.ts +2 -0
  224. package/icons/CollectDuotoneIcon.d.ts +5 -0
  225. package/icons/CollectIcon.d.ts +2 -0
  226. package/icons/CommentDuotoneIcon.d.ts +5 -0
  227. package/icons/CommentIcon.d.ts +2 -0
  228. package/icons/CopilotDuotoneIcon.d.ts +5 -0
  229. package/icons/CopilotIcon.d.ts +2 -0
  230. package/icons/CopyDuotoneIcon.d.ts +5 -0
  231. package/icons/CopyIDIcon.d.ts +2 -0
  232. package/icons/CopyIcon.d.ts +2 -0
  233. package/icons/CubeDuotoneIcon.d.ts +5 -0
  234. package/icons/CubeIcon.d.ts +2 -0
  235. package/icons/DashboardDuotoneIcon.d.ts +5 -0
  236. package/icons/DashboardIcon.d.ts +2 -0
  237. package/icons/DiamondDuotoneIcon.d.ts +2 -0
  238. package/icons/DiamondIcon.d.ts +2 -0
  239. package/icons/DislikeDuotoneIcon.d.ts +5 -0
  240. package/icons/DislikeIcon.d.ts +2 -0
  241. package/icons/DocsDuotoneIcon.d.ts +5 -0
  242. package/icons/DocsIcon.d.ts +2 -0
  243. package/icons/DollarDuotoneIcon.d.ts +5 -0
  244. package/icons/DollarIcon.d.ts +2 -0
  245. package/icons/DoubleChevronDuotoneIcon.d.ts +5 -0
  246. package/icons/DoubleChevronIcon.d.ts +2 -0
  247. package/icons/DragDuotoneIcon.d.ts +5 -0
  248. package/icons/DragIcon.d.ts +2 -0
  249. package/icons/EditDuotoneIcon.d.ts +5 -0
  250. package/icons/EditIcon.d.ts +2 -0
  251. package/icons/ExclamationMarkDuotoneIcon.d.ts +5 -0
  252. package/icons/ExclamationMarkIcon.d.ts +2 -0
  253. package/icons/ExportDuotoneIcon.d.ts +5 -0
  254. package/icons/ExportIcon.d.ts +2 -0
  255. package/icons/ExternalDuotoneIcon.d.ts +5 -0
  256. package/icons/ExternalIcon.d.ts +2 -0
  257. package/icons/EyeDuotoneIcon.d.ts +5 -0
  258. package/icons/EyeIcon.d.ts +2 -0
  259. package/icons/EyeOffDuotoneIcon.d.ts +5 -0
  260. package/icons/EyeOffIcon.d.ts +2 -0
  261. package/icons/FileDuotoneIcon.d.ts +5 -0
  262. package/icons/FileIcon.d.ts +2 -0
  263. package/icons/FileUploadDuotoneIcon.d.ts +5 -0
  264. package/icons/FileUploadIcon.d.ts +2 -0
  265. package/icons/FilterDuotoneIcon.d.ts +5 -0
  266. package/icons/FilterIcon.d.ts +2 -0
  267. package/icons/FolderListDuotoneIcon.d.ts +5 -0
  268. package/icons/FolderListIcon.d.ts +2 -0
  269. package/icons/FolderUploadDuotoneIcon.d.ts +5 -0
  270. package/icons/FolderUploadIcon.d.ts +2 -0
  271. package/icons/FusionDuotoneIcon.d.ts +5 -0
  272. package/icons/FusionIcon.d.ts +2 -0
  273. package/icons/GlobeDuotoneIcon.d.ts +5 -0
  274. package/icons/GlobeIcon.d.ts +2 -0
  275. package/icons/GraphQLDuotoneIcon.d.ts +2 -0
  276. package/icons/GraphQLIcon.d.ts +2 -0
  277. package/icons/GridDuotoneIcon.d.ts +5 -0
  278. package/icons/GridIcon.d.ts +2 -0
  279. package/icons/HelloDuotoneIcon.d.ts +5 -0
  280. package/icons/HelloIcon.d.ts +2 -0
  281. package/icons/HelpDuotoneIcon.d.ts +5 -0
  282. package/icons/HelpIcon.d.ts +2 -0
  283. package/icons/HexagonDuotoneIcon.d.ts +2 -0
  284. package/icons/HexagonIcon.d.ts +2 -0
  285. package/icons/HomeDuotoneIcon.d.ts +5 -0
  286. package/icons/HomeIcon.d.ts +2 -0
  287. package/icons/ImageDuotoneIcon.d.ts +5 -0
  288. package/icons/ImageIcon.d.ts +2 -0
  289. package/icons/ImportDuotoneIcon.d.ts +5 -0
  290. package/icons/ImportIcon.d.ts +2 -0
  291. package/icons/InfoDuotoneIcon.d.ts +5 -0
  292. package/icons/InfoIcon.d.ts +2 -0
  293. package/icons/IntegrationDuotoneIcon.d.ts +5 -0
  294. package/icons/IntegrationIcon.d.ts +2 -0
  295. package/icons/LandedCostDuotoneIcon.d.ts +5 -0
  296. package/icons/LandedCostIcon.d.ts +2 -0
  297. package/icons/LaptopDuotoneIcon.d.ts +5 -0
  298. package/icons/LaptopIcon.d.ts +2 -0
  299. package/icons/LeftPanelClosedDuotoneIcon.d.ts +5 -0
  300. package/icons/LeftPanelClosedIcon.d.ts +2 -0
  301. package/icons/LeftPanelOpenDuotoneIcon.d.ts +5 -0
  302. package/icons/LeftPanelOpenIcon.d.ts +2 -0
  303. package/icons/LightDuotoneIcon.d.ts +5 -0
  304. package/icons/LightIcon.d.ts +2 -0
  305. package/icons/LikeDuotoneIcon.d.ts +5 -0
  306. package/icons/LikeIcon.d.ts +2 -0
  307. package/icons/LineDownDuotoneIcon.d.ts +5 -0
  308. package/icons/LineDownIcon.d.ts +2 -0
  309. package/icons/LineUpDuotoneIcon.d.ts +5 -0
  310. package/icons/LineUpIcon.d.ts +2 -0
  311. package/icons/LinkDuotoneIcon.d.ts +5 -0
  312. package/icons/LinkIcon.d.ts +2 -0
  313. package/icons/LocationDuotoneIcon.d.ts +5 -0
  314. package/icons/LocationIcon.d.ts +2 -0
  315. package/icons/LockDuotoneIcon.d.ts +5 -0
  316. package/icons/LockIcon.d.ts +2 -0
  317. package/icons/LoginDuotoneIcon.d.ts +5 -0
  318. package/icons/LoginIcon.d.ts +2 -0
  319. package/icons/LogoutDuotoneIcon.d.ts +5 -0
  320. package/icons/LogoutIcon.d.ts +2 -0
  321. package/icons/MailDuotoneIcon.d.ts +5 -0
  322. package/icons/MailIcon.d.ts +2 -0
  323. package/icons/MaximizeDuotoneIcon.d.ts +5 -0
  324. package/icons/MaximizeIcon.d.ts +2 -0
  325. package/icons/MenuDuotoneIcon.d.ts +5 -0
  326. package/icons/MenuIcon.d.ts +2 -0
  327. package/icons/MinimizeDuotoneIcon.d.ts +5 -0
  328. package/icons/MinimizeIcon.d.ts +2 -0
  329. package/icons/MinusCircleDuotoneIcon.d.ts +5 -0
  330. package/icons/MinusCircleIcon.d.ts +2 -0
  331. package/icons/MinusDuotoneIcon.d.ts +2 -0
  332. package/icons/MinusIcon.d.ts +2 -0
  333. package/icons/MobileDuotoneIcon.d.ts +5 -0
  334. package/icons/MobileIcon.d.ts +2 -0
  335. package/icons/MoneyDuotoneIcon.d.ts +5 -0
  336. package/icons/MoneyIcon.d.ts +2 -0
  337. package/icons/MonitorDuotoneIcon.d.ts +5 -0
  338. package/icons/MonitorIcon.d.ts +2 -0
  339. package/icons/NightDuotoneIcon.d.ts +2 -0
  340. package/icons/NightIcon.d.ts +2 -0
  341. package/icons/NoteIcon.d.ts +2 -0
  342. package/icons/PaletteDuotoneIcon.d.ts +5 -0
  343. package/icons/PaletteIcon.d.ts +2 -0
  344. package/icons/PauseCircleDuotoneIcon.d.ts +5 -0
  345. package/icons/PauseCircleIcon.d.ts +2 -0
  346. package/icons/PenDuotoneIcon.d.ts +5 -0
  347. package/icons/PenIcon.d.ts +2 -0
  348. package/icons/PercentBadgeDuotoneIcon.d.ts +5 -0
  349. package/icons/PercentBadgeIcon.d.ts +2 -0
  350. package/icons/PercentDuotoneIcon.d.ts +5 -0
  351. package/icons/PercentIcon.d.ts +2 -0
  352. package/icons/PlaneDuotoneIcon.d.ts +5 -0
  353. package/icons/PlaneIcon.d.ts +2 -0
  354. package/icons/PlayCircleDuotoneIcon.d.ts +5 -0
  355. package/icons/PlayCircleIcon.d.ts +2 -0
  356. package/icons/PlayDuotoneIcon.d.ts +2 -0
  357. package/icons/PlayIcon.d.ts +2 -0
  358. package/icons/PlusCircleDuotoneIcon.d.ts +5 -0
  359. package/icons/PlusCircleIcon.d.ts +2 -0
  360. package/icons/PlusDuotoneIcon.d.ts +2 -0
  361. package/icons/PlusIcon.d.ts +2 -0
  362. package/icons/PrepayDuotoneIcon.d.ts +5 -0
  363. package/icons/PrepayIcon.d.ts +2 -0
  364. package/icons/PrinterDuotoneIcon.d.ts +5 -0
  365. package/icons/PrinterIcon.d.ts +2 -0
  366. package/icons/RadioIcon.d.ts +2 -0
  367. package/icons/RateDuotoneIcon.d.ts +5 -0
  368. package/icons/RateIcon.d.ts +2 -0
  369. package/icons/ReceiptDuotoneIcon.d.ts +5 -0
  370. package/icons/ReceiptIcon.d.ts +2 -0
  371. package/icons/RefreshDuotoneIcon.d.ts +5 -0
  372. package/icons/RefreshIcon.d.ts +2 -0
  373. package/icons/RemoveCircleDuotoneIcon.d.ts +5 -0
  374. package/icons/RemoveCircleIcon.d.ts +2 -0
  375. package/icons/RemoveDuotoneIcon.d.ts +2 -0
  376. package/icons/RemoveIcon.d.ts +2 -0
  377. package/icons/RestrictDuotoneIcon.d.ts +5 -0
  378. package/icons/RestrictIcon.d.ts +2 -0
  379. package/icons/RightPanelClosedDuotoneIcon.d.ts +5 -0
  380. package/icons/RightPanelClosedIcon.d.ts +2 -0
  381. package/icons/RightPanelOpenDuotoneIcon.d.ts +5 -0
  382. package/icons/RightPanelOpenIcon.d.ts +2 -0
  383. package/icons/RocketDuotoneIcon.d.ts +5 -0
  384. package/icons/RocketIcon.d.ts +2 -0
  385. package/icons/RulesIcon.d.ts +2 -0
  386. package/icons/ScanDuotoneIcon.d.ts +5 -0
  387. package/icons/ScanIcon.d.ts +2 -0
  388. package/icons/ScreenDuotoneIcon.d.ts +5 -0
  389. package/icons/ScreenIcon.d.ts +2 -0
  390. package/icons/SearchDuotoneIcon.d.ts +5 -0
  391. package/icons/SearchIcon.d.ts +2 -0
  392. package/icons/SendDuotoneIcon.d.ts +5 -0
  393. package/icons/SendIcon.d.ts +2 -0
  394. package/icons/SettingsDuotoneIcon.d.ts +5 -0
  395. package/icons/SettingsIcon.d.ts +2 -0
  396. package/icons/ShoppingListDuotoneIcon.d.ts +5 -0
  397. package/icons/ShoppingListIcon.d.ts +2 -0
  398. package/icons/ShoppingTagDuotoneIcon.d.ts +5 -0
  399. package/icons/ShoppingTagIcon.d.ts +2 -0
  400. package/icons/SquareDuotoneIcon.d.ts +2 -0
  401. package/icons/SquareIcon.d.ts +2 -0
  402. package/icons/StarDuotoneIcon.d.ts +2 -0
  403. package/icons/StarIcon.d.ts +2 -0
  404. package/icons/StarOffDuotoneIcon.d.ts +5 -0
  405. package/icons/StarOffIcon.d.ts +2 -0
  406. package/icons/StarsDuotoneIcon.d.ts +5 -0
  407. package/icons/StarsIcon.d.ts +2 -0
  408. package/icons/SunnyDuotoneIcon.d.ts +5 -0
  409. package/icons/SunnyIcon.d.ts +2 -0
  410. package/icons/TagDuotoneIcon.d.ts +5 -0
  411. package/icons/TagIcon.d.ts +2 -0
  412. package/icons/TaxDuotoneIcon.d.ts +5 -0
  413. package/icons/TaxIcon.d.ts +2 -0
  414. package/icons/ThreeDotDuotoneIcon.d.ts +2 -0
  415. package/icons/ThreeDotIcon.d.ts +2 -0
  416. package/icons/TotalLandedCostDuotoneIcon.d.ts +5 -0
  417. package/icons/TotalLandedCostIcon.d.ts +2 -0
  418. package/icons/TrashCanDuotoneIcon.d.ts +5 -0
  419. package/icons/TrashCanIcon.d.ts +2 -0
  420. package/icons/TriangleDuotoneIcon.d.ts +2 -0
  421. package/icons/TriangleIcon.d.ts +2 -0
  422. package/icons/TruckDuotoneIcon.d.ts +5 -0
  423. package/icons/TruckIcon.d.ts +2 -0
  424. package/icons/UFODuotoneIcon.d.ts +5 -0
  425. package/icons/UFOIcon.d.ts +2 -0
  426. package/icons/UserDuotoneIcon.d.ts +5 -0
  427. package/icons/UserIcon.d.ts +2 -0
  428. package/icons/UsersIcon.d.ts +2 -0
  429. package/icons/UtahDuotoneIcon.d.ts +2 -0
  430. package/icons/UtahIcon.d.ts +2 -0
  431. package/icons/WarningDuotoneIcon.d.ts +5 -0
  432. package/icons/WarningIcon.d.ts +2 -0
  433. package/icons/custom/AvatarIcon.d.ts +2 -0
  434. package/icons/custom/logo/ZonosIcon.d.ts +2 -0
  435. package/icons/custom/logo/ZonosLogoIcon.d.ts +2 -0
  436. package/icons/custom/logo/ZonosWordmark.d.ts +2 -0
  437. package/icons/custom/products/CheckoutColorIcon.d.ts +2 -0
  438. package/icons/custom/products/ClassifyColorIcon.d.ts +2 -0
  439. package/icons/custom/products/ClearColorIcon.d.ts +2 -0
  440. package/icons/custom/products/CollectColorIcon.d.ts +2 -0
  441. package/icons/custom/products/CounterCompanionColorIcon.d.ts +2 -0
  442. package/icons/custom/products/DashboardColorIcon.d.ts +2 -0
  443. package/icons/custom/products/HelloColorIcon.d.ts +2 -0
  444. package/icons/custom/products/InclusivePricingColorIcon.d.ts +2 -0
  445. package/icons/custom/products/LandedCostColorIcon.d.ts +2 -0
  446. package/icons/custom/products/PrepayColorIcon.d.ts +2 -0
  447. package/icons/custom/products/RateColorIcon.d.ts +2 -0
  448. package/icons/custom/products/RestrictColorIcon.d.ts +2 -0
  449. package/icons/custom/products/ScreenColorIcon.d.ts +2 -0
  450. package/icons/custom/products/TaxColorIcon.d.ts +2 -0
  451. package/icons/custom/theme/ThemeDarkIcon.d.ts +3 -0
  452. package/icons/custom/theme/ThemeLightIcon.d.ts +3 -0
  453. package/icons/custom/us-states/AlabamaIcon.d.ts +2 -0
  454. package/icons/custom/us-states/AlaskaIcon.d.ts +2 -0
  455. package/icons/custom/us-states/ArizonaIcon.d.ts +2 -0
  456. package/icons/custom/us-states/ArkansasIcon.d.ts +2 -0
  457. package/icons/custom/us-states/CaliforniaIcon.d.ts +2 -0
  458. package/icons/custom/us-states/ColoradoIcon.d.ts +2 -0
  459. package/icons/custom/us-states/ConnecticutIcon.d.ts +2 -0
  460. package/icons/custom/us-states/DelawareIcon.d.ts +2 -0
  461. package/icons/custom/us-states/FloridaIcon.d.ts +2 -0
  462. package/icons/custom/us-states/GeorgiaIcon.d.ts +2 -0
  463. package/icons/custom/us-states/HawaiiIcon.d.ts +2 -0
  464. package/icons/custom/us-states/IdahoIcon.d.ts +2 -0
  465. package/icons/custom/us-states/IllinoisIcon.d.ts +2 -0
  466. package/icons/custom/us-states/IndianaIcon.d.ts +2 -0
  467. package/icons/custom/us-states/IowaIcon.d.ts +2 -0
  468. package/icons/custom/us-states/KansasIcon.d.ts +2 -0
  469. package/icons/custom/us-states/KentuckyIcon.d.ts +2 -0
  470. package/icons/custom/us-states/LouisianaIcon.d.ts +2 -0
  471. package/icons/custom/us-states/MaineIcon.d.ts +2 -0
  472. package/icons/custom/us-states/MarylandIcon.d.ts +2 -0
  473. package/icons/custom/us-states/MassachusettsIcon.d.ts +2 -0
  474. package/icons/custom/us-states/MichiganIcon.d.ts +2 -0
  475. package/icons/custom/us-states/MinnesotaIcon.d.ts +2 -0
  476. package/icons/custom/us-states/MississippiIcon.d.ts +2 -0
  477. package/icons/custom/us-states/MissouriIcon.d.ts +2 -0
  478. package/icons/custom/us-states/MontanaIcon.d.ts +2 -0
  479. package/icons/custom/us-states/NebraskaIcon.d.ts +2 -0
  480. package/icons/custom/us-states/NevadaIcon.d.ts +2 -0
  481. package/icons/custom/us-states/NewHampshireIcon.d.ts +2 -0
  482. package/icons/custom/us-states/NewJerseyIcon.d.ts +2 -0
  483. package/icons/custom/us-states/NewMexicoIcon.d.ts +2 -0
  484. package/icons/custom/us-states/NewYorkIcon.d.ts +2 -0
  485. package/icons/custom/us-states/NorthCarolinaIcon.d.ts +2 -0
  486. package/icons/custom/us-states/NorthDakotaIcon.d.ts +2 -0
  487. package/icons/custom/us-states/OhioIcon.d.ts +2 -0
  488. package/icons/custom/us-states/OklahomaIcon.d.ts +2 -0
  489. package/icons/custom/us-states/OregonIcon.d.ts +2 -0
  490. package/icons/custom/us-states/PennsylvaniaIcon.d.ts +2 -0
  491. package/icons/custom/us-states/PuertoRicoIcon.d.ts +2 -0
  492. package/icons/custom/us-states/RhodeIslandIcon.d.ts +2 -0
  493. package/icons/custom/us-states/SouthCarolinaIcon.d.ts +2 -0
  494. package/icons/custom/us-states/SouthDakotaIcon.d.ts +2 -0
  495. package/icons/custom/us-states/TennesseeIcon.d.ts +2 -0
  496. package/icons/custom/us-states/TexasIcon.d.ts +2 -0
  497. package/icons/custom/us-states/UtahIcon.d.ts +2 -0
  498. package/icons/custom/us-states/VermontIcon.d.ts +2 -0
  499. package/icons/custom/us-states/VirginiaIcon.d.ts +2 -0
  500. package/icons/custom/us-states/WashingtonIcon.d.ts +2 -0
  501. package/icons/custom/us-states/WestVirginiaIcon.d.ts +2 -0
  502. package/icons/custom/us-states/WisconsinIcon.d.ts +2 -0
  503. package/icons/custom/us-states/WyomingIcon.d.ts +2 -0
  504. package/icons/flag-icon/FlagIcon.d.ts +13 -0
  505. package/icons/flag-icon/_FlagIconBase.d.ts +10 -0
  506. package/icons/flags/AD.d.ts +7 -0
  507. package/icons/flags/AE.d.ts +7 -0
  508. package/icons/flags/AF.d.ts +7 -0
  509. package/icons/flags/AG.d.ts +7 -0
  510. package/icons/flags/AI.d.ts +7 -0
  511. package/icons/flags/AL.d.ts +7 -0
  512. package/icons/flags/AM.d.ts +7 -0
  513. package/icons/flags/AO.d.ts +7 -0
  514. package/icons/flags/AQ.d.ts +7 -0
  515. package/icons/flags/AR.d.ts +7 -0
  516. package/icons/flags/AS.d.ts +7 -0
  517. package/icons/flags/AT.d.ts +7 -0
  518. package/icons/flags/AU.d.ts +7 -0
  519. package/icons/flags/AW.d.ts +7 -0
  520. package/icons/flags/AX.d.ts +7 -0
  521. package/icons/flags/AZ.d.ts +7 -0
  522. package/icons/flags/BA.d.ts +7 -0
  523. package/icons/flags/BB.d.ts +7 -0
  524. package/icons/flags/BD.d.ts +7 -0
  525. package/icons/flags/BE.d.ts +7 -0
  526. package/icons/flags/BF.d.ts +7 -0
  527. package/icons/flags/BG.d.ts +7 -0
  528. package/icons/flags/BH.d.ts +7 -0
  529. package/icons/flags/BI.d.ts +7 -0
  530. package/icons/flags/BJ.d.ts +7 -0
  531. package/icons/flags/BL.d.ts +7 -0
  532. package/icons/flags/BM.d.ts +7 -0
  533. package/icons/flags/BN.d.ts +7 -0
  534. package/icons/flags/BO.d.ts +7 -0
  535. package/icons/flags/BQ.d.ts +7 -0
  536. package/icons/flags/BR.d.ts +7 -0
  537. package/icons/flags/BS.d.ts +7 -0
  538. package/icons/flags/BT.d.ts +7 -0
  539. package/icons/flags/BV.d.ts +7 -0
  540. package/icons/flags/BW.d.ts +7 -0
  541. package/icons/flags/BY.d.ts +7 -0
  542. package/icons/flags/BZ.d.ts +7 -0
  543. package/icons/flags/CA.d.ts +7 -0
  544. package/icons/flags/CC.d.ts +7 -0
  545. package/icons/flags/CD.d.ts +7 -0
  546. package/icons/flags/CF.d.ts +7 -0
  547. package/icons/flags/CG.d.ts +7 -0
  548. package/icons/flags/CH.d.ts +7 -0
  549. package/icons/flags/CI.d.ts +7 -0
  550. package/icons/flags/CK.d.ts +7 -0
  551. package/icons/flags/CL.d.ts +7 -0
  552. package/icons/flags/CM.d.ts +7 -0
  553. package/icons/flags/CN.d.ts +7 -0
  554. package/icons/flags/CO.d.ts +7 -0
  555. package/icons/flags/CR.d.ts +7 -0
  556. package/icons/flags/CU.d.ts +7 -0
  557. package/icons/flags/CV.d.ts +7 -0
  558. package/icons/flags/CW.d.ts +7 -0
  559. package/icons/flags/CX.d.ts +7 -0
  560. package/icons/flags/CY.d.ts +7 -0
  561. package/icons/flags/CZ.d.ts +7 -0
  562. package/icons/flags/DE.d.ts +7 -0
  563. package/icons/flags/DJ.d.ts +7 -0
  564. package/icons/flags/DK.d.ts +7 -0
  565. package/icons/flags/DM.d.ts +7 -0
  566. package/icons/flags/DO.d.ts +7 -0
  567. package/icons/flags/DZ.d.ts +7 -0
  568. package/icons/flags/Default.d.ts +7 -0
  569. package/icons/flags/EC.d.ts +7 -0
  570. package/icons/flags/EE.d.ts +7 -0
  571. package/icons/flags/EG.d.ts +7 -0
  572. package/icons/flags/EH.d.ts +7 -0
  573. package/icons/flags/ER.d.ts +7 -0
  574. package/icons/flags/ES.d.ts +7 -0
  575. package/icons/flags/ET.d.ts +7 -0
  576. package/icons/flags/FI.d.ts +7 -0
  577. package/icons/flags/FJ.d.ts +7 -0
  578. package/icons/flags/FK.d.ts +7 -0
  579. package/icons/flags/FM.d.ts +7 -0
  580. package/icons/flags/FO.d.ts +7 -0
  581. package/icons/flags/FR.d.ts +7 -0
  582. package/icons/flags/GA.d.ts +7 -0
  583. package/icons/flags/GB.d.ts +7 -0
  584. package/icons/flags/GD.d.ts +7 -0
  585. package/icons/flags/GE.d.ts +7 -0
  586. package/icons/flags/GF.d.ts +7 -0
  587. package/icons/flags/GG.d.ts +7 -0
  588. package/icons/flags/GH.d.ts +7 -0
  589. package/icons/flags/GI.d.ts +7 -0
  590. package/icons/flags/GL.d.ts +7 -0
  591. package/icons/flags/GM.d.ts +7 -0
  592. package/icons/flags/GN.d.ts +7 -0
  593. package/icons/flags/GP.d.ts +7 -0
  594. package/icons/flags/GQ.d.ts +7 -0
  595. package/icons/flags/GR.d.ts +7 -0
  596. package/icons/flags/GS.d.ts +7 -0
  597. package/icons/flags/GT.d.ts +7 -0
  598. package/icons/flags/GU.d.ts +7 -0
  599. package/icons/flags/GW.d.ts +7 -0
  600. package/icons/flags/GY.d.ts +7 -0
  601. package/icons/flags/HK.d.ts +7 -0
  602. package/icons/flags/HM.d.ts +7 -0
  603. package/icons/flags/HN.d.ts +7 -0
  604. package/icons/flags/HR.d.ts +7 -0
  605. package/icons/flags/HT.d.ts +7 -0
  606. package/icons/flags/HU.d.ts +7 -0
  607. package/icons/flags/IC.d.ts +7 -0
  608. package/icons/flags/ID.d.ts +7 -0
  609. package/icons/flags/IE.d.ts +7 -0
  610. package/icons/flags/IL.d.ts +7 -0
  611. package/icons/flags/IM.d.ts +7 -0
  612. package/icons/flags/IN.d.ts +7 -0
  613. package/icons/flags/IO.d.ts +7 -0
  614. package/icons/flags/IQ.d.ts +7 -0
  615. package/icons/flags/IR.d.ts +7 -0
  616. package/icons/flags/IS.d.ts +7 -0
  617. package/icons/flags/IT.d.ts +7 -0
  618. package/icons/flags/JE.d.ts +7 -0
  619. package/icons/flags/JM.d.ts +7 -0
  620. package/icons/flags/JO.d.ts +7 -0
  621. package/icons/flags/JP.d.ts +7 -0
  622. package/icons/flags/KE.d.ts +7 -0
  623. package/icons/flags/KG.d.ts +7 -0
  624. package/icons/flags/KH.d.ts +7 -0
  625. package/icons/flags/KI.d.ts +7 -0
  626. package/icons/flags/KM.d.ts +7 -0
  627. package/icons/flags/KN.d.ts +7 -0
  628. package/icons/flags/KP.d.ts +7 -0
  629. package/icons/flags/KR.d.ts +7 -0
  630. package/icons/flags/KW.d.ts +7 -0
  631. package/icons/flags/KY.d.ts +7 -0
  632. package/icons/flags/KZ.d.ts +7 -0
  633. package/icons/flags/LA.d.ts +7 -0
  634. package/icons/flags/LB.d.ts +7 -0
  635. package/icons/flags/LC.d.ts +7 -0
  636. package/icons/flags/LI.d.ts +7 -0
  637. package/icons/flags/LK.d.ts +7 -0
  638. package/icons/flags/LR.d.ts +7 -0
  639. package/icons/flags/LS.d.ts +7 -0
  640. package/icons/flags/LT.d.ts +7 -0
  641. package/icons/flags/LU.d.ts +7 -0
  642. package/icons/flags/LV.d.ts +7 -0
  643. package/icons/flags/LY.d.ts +7 -0
  644. package/icons/flags/MA.d.ts +7 -0
  645. package/icons/flags/MC.d.ts +7 -0
  646. package/icons/flags/MD.d.ts +7 -0
  647. package/icons/flags/ME.d.ts +7 -0
  648. package/icons/flags/MF.d.ts +7 -0
  649. package/icons/flags/MG.d.ts +7 -0
  650. package/icons/flags/MH.d.ts +7 -0
  651. package/icons/flags/MK.d.ts +7 -0
  652. package/icons/flags/ML.d.ts +7 -0
  653. package/icons/flags/MM.d.ts +7 -0
  654. package/icons/flags/MN.d.ts +7 -0
  655. package/icons/flags/MO.d.ts +7 -0
  656. package/icons/flags/MP.d.ts +7 -0
  657. package/icons/flags/MQ.d.ts +7 -0
  658. package/icons/flags/MR.d.ts +7 -0
  659. package/icons/flags/MS.d.ts +7 -0
  660. package/icons/flags/MT.d.ts +7 -0
  661. package/icons/flags/MU.d.ts +7 -0
  662. package/icons/flags/MV.d.ts +7 -0
  663. package/icons/flags/MW.d.ts +7 -0
  664. package/icons/flags/MX.d.ts +7 -0
  665. package/icons/flags/MY.d.ts +7 -0
  666. package/icons/flags/MZ.d.ts +7 -0
  667. package/icons/flags/NA.d.ts +7 -0
  668. package/icons/flags/NC.d.ts +7 -0
  669. package/icons/flags/NE.d.ts +7 -0
  670. package/icons/flags/NF.d.ts +7 -0
  671. package/icons/flags/NG.d.ts +7 -0
  672. package/icons/flags/NI.d.ts +7 -0
  673. package/icons/flags/NL.d.ts +7 -0
  674. package/icons/flags/NO.d.ts +7 -0
  675. package/icons/flags/NP.d.ts +7 -0
  676. package/icons/flags/NR.d.ts +7 -0
  677. package/icons/flags/NU.d.ts +7 -0
  678. package/icons/flags/NZ.d.ts +7 -0
  679. package/icons/flags/OM.d.ts +7 -0
  680. package/icons/flags/PA.d.ts +7 -0
  681. package/icons/flags/PE.d.ts +7 -0
  682. package/icons/flags/PF.d.ts +7 -0
  683. package/icons/flags/PG.d.ts +7 -0
  684. package/icons/flags/PH.d.ts +7 -0
  685. package/icons/flags/PK.d.ts +7 -0
  686. package/icons/flags/PL.d.ts +7 -0
  687. package/icons/flags/PM.d.ts +7 -0
  688. package/icons/flags/PN.d.ts +7 -0
  689. package/icons/flags/PR.d.ts +7 -0
  690. package/icons/flags/PS.d.ts +7 -0
  691. package/icons/flags/PT.d.ts +7 -0
  692. package/icons/flags/PW.d.ts +7 -0
  693. package/icons/flags/PY.d.ts +7 -0
  694. package/icons/flags/QA.d.ts +7 -0
  695. package/icons/flags/RE.d.ts +7 -0
  696. package/icons/flags/RO.d.ts +7 -0
  697. package/icons/flags/RS.d.ts +7 -0
  698. package/icons/flags/RU.d.ts +7 -0
  699. package/icons/flags/RW.d.ts +7 -0
  700. package/icons/flags/SA.d.ts +7 -0
  701. package/icons/flags/SB.d.ts +7 -0
  702. package/icons/flags/SC.d.ts +7 -0
  703. package/icons/flags/SD.d.ts +7 -0
  704. package/icons/flags/SE.d.ts +7 -0
  705. package/icons/flags/SG.d.ts +7 -0
  706. package/icons/flags/SH.d.ts +7 -0
  707. package/icons/flags/SI.d.ts +7 -0
  708. package/icons/flags/SJ.d.ts +7 -0
  709. package/icons/flags/SK.d.ts +7 -0
  710. package/icons/flags/SL.d.ts +7 -0
  711. package/icons/flags/SM.d.ts +7 -0
  712. package/icons/flags/SN.d.ts +7 -0
  713. package/icons/flags/SO.d.ts +7 -0
  714. package/icons/flags/SR.d.ts +7 -0
  715. package/icons/flags/SS.d.ts +7 -0
  716. package/icons/flags/ST.d.ts +7 -0
  717. package/icons/flags/SV.d.ts +7 -0
  718. package/icons/flags/SX.d.ts +7 -0
  719. package/icons/flags/SY.d.ts +7 -0
  720. package/icons/flags/SZ.d.ts +7 -0
  721. package/icons/flags/TC.d.ts +7 -0
  722. package/icons/flags/TD.d.ts +7 -0
  723. package/icons/flags/TF.d.ts +7 -0
  724. package/icons/flags/TG.d.ts +7 -0
  725. package/icons/flags/TH.d.ts +7 -0
  726. package/icons/flags/TJ.d.ts +7 -0
  727. package/icons/flags/TK.d.ts +7 -0
  728. package/icons/flags/TL.d.ts +7 -0
  729. package/icons/flags/TM.d.ts +7 -0
  730. package/icons/flags/TN.d.ts +7 -0
  731. package/icons/flags/TO.d.ts +7 -0
  732. package/icons/flags/TR.d.ts +7 -0
  733. package/icons/flags/TT.d.ts +7 -0
  734. package/icons/flags/TV.d.ts +7 -0
  735. package/icons/flags/TW.d.ts +7 -0
  736. package/icons/flags/TZ.d.ts +7 -0
  737. package/icons/flags/UA.d.ts +7 -0
  738. package/icons/flags/UG.d.ts +7 -0
  739. package/icons/flags/UM.d.ts +7 -0
  740. package/icons/flags/US.d.ts +7 -0
  741. package/icons/flags/UY.d.ts +7 -0
  742. package/icons/flags/UZ.d.ts +7 -0
  743. package/icons/flags/VA.d.ts +7 -0
  744. package/icons/flags/VC.d.ts +7 -0
  745. package/icons/flags/VE.d.ts +7 -0
  746. package/icons/flags/VG.d.ts +7 -0
  747. package/icons/flags/VI.d.ts +7 -0
  748. package/icons/flags/VN.d.ts +7 -0
  749. package/icons/flags/VU.d.ts +7 -0
  750. package/icons/flags/WF.d.ts +7 -0
  751. package/icons/flags/WS.d.ts +7 -0
  752. package/icons/flags/YE.d.ts +7 -0
  753. package/icons/flags/YT.d.ts +7 -0
  754. package/icons/flags/ZA.d.ts +7 -0
  755. package/icons/flags/ZM.d.ts +7 -0
  756. package/icons/flags/ZW.d.ts +7 -0
  757. package/icons/flags/_FlagIndex.d.ts +251 -0
  758. package/icons/icon-base/_IconBase.d.ts +6 -0
  759. package/icons/icon-base/_StateIconBase.d.ts +6 -0
  760. package/icons/icon-base/_ThemeIconBase.d.ts +8 -0
  761. package/package.json +1 -1
  762. package/styles/constants/theme.d.ts +534 -0
  763. package/styles/devices.d.ts +10 -0
  764. package/tools/mcp/client.d.ts +37 -0
  765. package/tools/mcp/index.d.ts +3 -0
  766. package/tools/mcp/tools.d.ts +37 -0
  767. package/tools/mcp/types.d.ts +124 -0
  768. package/tsconfig.emitDeclarationOnly.tsbuildinfo +1 -1
  769. package/tsconfig.tsbuildinfo +1 -1
  770. package/types/BaseProps.d.ts +7 -0
  771. package/types/Color.d.ts +5 -0
  772. package/types/Depth.d.ts +1 -0
  773. package/types/GeoJsonWorld.d.ts +21 -0
  774. package/types/GridSpacing.d.ts +2 -0
  775. package/types/IconProps.d.ts +10 -0
  776. package/types/Intent.d.ts +1 -0
  777. package/types/ReactComponent.d.ts +2 -0
  778. package/types/SectionLayout.d.ts +1 -0
  779. package/types/SelectOption.d.ts +12 -0
  780. package/types/Size.d.ts +1 -0
  781. package/types/Theme.d.ts +3 -0
  782. package/types/UnitedStates.d.ts +12 -0
  783. package/types/UploadedFile.d.ts +5 -0
  784. package/types/Variant.d.ts +1 -0
  785. package/types/deep/Deep.test-d.d.ts +1 -0
  786. package/types/deep/DeepKeyof.d.ts +18 -0
  787. package/types/deep/DeepKeyofAtIndex.d.ts +12 -0
  788. package/types/deep/DeepKeyofAtIndex.test-d.d.ts +1 -0
  789. package/types/deep/DeepReducerActions.d.ts +25 -0
  790. package/types/deep/deep.d.ts +4 -0
  791. package/utils/_extractQueryParams.d.ts +5 -0
  792. package/utils/addIndex.d.ts +6 -0
  793. package/utils/changeDeepProperty.d.ts +45 -0
  794. package/utils/changeDeepPropertyAtIndex.d.ts +69 -0
  795. package/utils/countryPhoneCodes.d.ts +4 -0
  796. package/utils/flattenRow.d.ts +8 -0
  797. package/utils/formatCurrency.d.ts +49 -0
  798. package/utils/getAminoColor.d.ts +2 -0
  799. package/utils/getCountryCodeByName.d.ts +2 -0
  800. package/utils/getCountryUrls.d.ts +1 -0
  801. package/utils/getFuzzySearch.d.ts +8 -0
  802. package/utils/getHashId.d.ts +2 -0
  803. package/utils/getIsInternalLink.d.ts +8 -0
  804. package/utils/getProductDetails.d.ts +19 -0
  805. package/utils/getTestId.d.ts +5 -0
  806. package/utils/handleFetch.d.ts +23 -0
  807. package/utils/hooks/action-pivot-table/useHasuraGqlPagination.d.ts +13 -0
  808. package/utils/hooks/useAminoTheme.d.ts +12 -0
  809. package/utils/hooks/useCountryOptions.d.ts +71 -0
  810. package/utils/hooks/useDropdown.d.ts +31 -0
  811. package/utils/hooks/useHeightAdjustTextarea.d.ts +15 -0
  812. package/utils/hooks/useNotify.d.ts +5 -0
  813. package/utils/hooks/usePrevious.d.ts +1 -0
  814. package/utils/hooks/useStateUrl.d.ts +24 -0
  815. package/utils/hooks/useStorage.d.ts +19 -0
  816. package/utils/hooks/useSwr.d.ts +1 -0
  817. package/utils/hooks/useSwrt.d.ts +29 -0
  818. package/utils/isKeyInObj.d.ts +5 -0
  819. package/utils/jsonParse.d.ts +1 -0
  820. package/utils/multiinput/parseStringIntoTags.d.ts +2 -0
  821. package/utils/prepCountryOptions.d.ts +19 -0
  822. package/utils/prepRegionCountryOptions.d.ts +5 -0
  823. package/utils/setupNestedData.d.ts +2 -0
  824. package/utils/storage.d.ts +21 -0
  825. package/utils/truncateText.d.ts +25 -0
  826. package/utils/unitedStates.d.ts +2 -0
  827. package/utils/useCopyText.d.ts +12 -0
@@ -0,0 +1,112 @@
1
+ import { type DropzoneOptions } from 'react-dropzone';
2
+ import type { BaseProps } from "../../types/BaseProps";
3
+ type UploadFileNoImage = {
4
+ name: string;
5
+ size?: string;
6
+ };
7
+ export type FileUploadProps = BaseProps & {
8
+ /**
9
+ * This `disabled` state only applies when no file is selected
10
+ * @default false
11
+ * */
12
+ disabled?: boolean;
13
+ dropzoneOptions: Omit<DropzoneOptions, 'disabled' | 'multiple'>;
14
+ /**
15
+ * Display error state with red border
16
+ * @default false
17
+ */
18
+ error?: boolean;
19
+ /**
20
+ * Text to display in empty state
21
+ * @default 'or drag your file here'
22
+ * */
23
+ instructionText?: string;
24
+ /**
25
+ * Show loading state
26
+ * @default false
27
+ */
28
+ loading?: boolean;
29
+ /**
30
+ * Text to show while loading state is active
31
+ * @default 'Uploading...'
32
+ */
33
+ loadingText?: string;
34
+ /**
35
+ * Function called when the remove button is clicked
36
+ */
37
+ onRemoveFile?: () => void;
38
+ /**
39
+ * Display file info if uploaded file property has data
40
+ */
41
+ uploadedFile: UploadFileNoImage | null;
42
+ };
43
+ /**
44
+ * FileUpload component provides a drag-and-drop interface for uploading single files.
45
+ * It displays file information once uploaded and supports loading states.
46
+ *
47
+ * @example Basic usage
48
+ * ```tsx
49
+ * <FileUpload
50
+ * dropzoneOptions={{
51
+ * maxSize: 5 * 1024 * 1024, // 5MB
52
+ * onDrop: (acceptedFiles) => {
53
+ * const file = acceptedFiles[0];
54
+ * if (file) {
55
+ * setUploadedFile({ name: file.name, size: `${file.size} bytes` });
56
+ * }
57
+ * }
58
+ * }}
59
+ * uploadedFile={null}
60
+ * />
61
+ * ```
62
+ *
63
+ * @example With a file already uploaded
64
+ * ```tsx
65
+ * <FileUpload
66
+ * dropzoneOptions={{
67
+ * maxSize: 5 * 1024 * 1024,
68
+ * onDrop: (acceptedFiles) => {
69
+ * // Handle file drop
70
+ * }
71
+ * }}
72
+ * uploadedFile={{ name: 'document.pdf', size: '1.2 MB' }}
73
+ * onRemoveFile={() => setUploadedFile(null)}
74
+ * />
75
+ * ```
76
+ *
77
+ * @example With custom instruction text and error state
78
+ * ```tsx
79
+ * <FileUpload
80
+ * dropzoneOptions={{
81
+ * accept: {
82
+ * 'image/*': ['.jpg', '.jpeg', '.png']
83
+ * },
84
+ * onDrop: (acceptedFiles, rejections) => {
85
+ * // Handle file drop and rejection
86
+ * setError(rejections.length > 0);
87
+ * }
88
+ * }}
89
+ * error={hasError}
90
+ * instructionText="Drop image files here"
91
+ * uploadedFile={uploadedFile}
92
+ * />
93
+ * ```
94
+ *
95
+ * @example With loading state
96
+ * ```tsx
97
+ * <FileUpload
98
+ * dropzoneOptions={{
99
+ * onDrop: (acceptedFiles) => {
100
+ * // Start upload
101
+ * setLoading(true);
102
+ * uploadFile(acceptedFiles[0]).then(() => setLoading(false));
103
+ * }
104
+ * }}
105
+ * loading={isLoading}
106
+ * loadingText="Uploading file..."
107
+ * uploadedFile={uploadedFile}
108
+ * />
109
+ * ```
110
+ */
111
+ export declare const FileUpload: ({ className, disabled, dropzoneOptions, error, instructionText, loading, loadingText, onRemoveFile, style, uploadedFile, }: FileUploadProps) => import("react").JSX.Element;
112
+ export {};
@@ -0,0 +1,115 @@
1
+ import type { KeyboardEvent, MouseEvent, ReactNode, RefObject } from 'react';
2
+ import type { BaseProps } from "../../types/BaseProps";
3
+ type FilterWrapperProps = BaseProps & {
4
+ active: boolean;
5
+ children: ReactNode;
6
+ dropDownOpen: boolean;
7
+ dropdownRef: RefObject<HTMLDivElement>;
8
+ dropdownTitle: string;
9
+ filterText: string;
10
+ handleApply: () => void;
11
+ handleKeyDown: (event: KeyboardEvent) => void;
12
+ handleOpenDropdown: (e: MouseEvent) => void;
13
+ handleToggle: () => void;
14
+ hasFilter: boolean;
15
+ label: string;
16
+ };
17
+ /**
18
+ * FilterWrapper provides a standardized UI for creating filters in data views.
19
+ * It displays a toggle button to activate the filter, a dropdown to select filter options,
20
+ * and includes the apply button to confirm filter selections.
21
+ *
22
+ * This component is typically used with other filtering components like FilterDate,
23
+ * FilterSelect, etc., and is designed to work with the useFilterWrapper hook for state
24
+ * management.
25
+ *
26
+ * @example Basic usage with useFilterWrapper hook
27
+ * ```tsx
28
+ * const {
29
+ * renderWrapper,
30
+ * setFilterText
31
+ * } = useFilterWrapper({
32
+ * dropdownTitle: "Status Filter",
33
+ * isActive: isStatusFilterActive,
34
+ * label: "Status",
35
+ * setActive: setIsStatusFilterActive,
36
+ * initialFilterText: "All statuses",
37
+ * onApply: (setFilterText) => {
38
+ * setFilterText(selectedStatus ? selectedStatus.label : "All statuses");
39
+ * onFilterApplied(selectedStatus?.value);
40
+ * },
41
+ * onApplyFilterText: (setFilterText) => {
42
+ * setFilterText(selectedStatus ? selectedStatus.label : "All statuses");
43
+ * },
44
+ * onClose: () => {},
45
+ * onRemove: () => {
46
+ * setSelectedStatus(undefined);
47
+ * onFilterApplied(undefined);
48
+ * }
49
+ * });
50
+ *
51
+ * return renderWrapper(
52
+ * <FilterSelect
53
+ * options={[
54
+ * { label: "Active", value: "active" },
55
+ * { label: "Pending", value: "pending" },
56
+ * { label: "Inactive", value: "inactive" }
57
+ * ]}
58
+ * onChange={setSelectedStatus}
59
+ * value={selectedStatus}
60
+ * />
61
+ * );
62
+ * ```
63
+ *
64
+ * @example With date filter
65
+ * ```tsx
66
+ * const {
67
+ * renderWrapper,
68
+ * setFilterText
69
+ * } = useFilterWrapper({
70
+ * dropdownTitle: "Date Range",
71
+ * isActive: isDateFilterActive,
72
+ * label: "Date",
73
+ * setActive: setIsDateFilterActive,
74
+ * initialFilterText: "All dates",
75
+ * onApply: (setFilterText) => {
76
+ * if (startDate && endDate) {
77
+ * const formattedText = `${formatDate(startDate)} - ${formatDate(endDate)}`;
78
+ * setFilterText(formattedText);
79
+ * onFilterApplied({ startDate, endDate });
80
+ * }
81
+ * },
82
+ * onApplyFilterText: (setFilterText) => {
83
+ * if (startDate && endDate) {
84
+ * setFilterText(`${formatDate(startDate)} - ${formatDate(endDate)}`);
85
+ * }
86
+ * },
87
+ * onClose: () => {},
88
+ * onRemove: () => {
89
+ * setStartDate(undefined);
90
+ * setEndDate(undefined);
91
+ * onFilterApplied({ startDate: null, endDate: null });
92
+ * }
93
+ * });
94
+ *
95
+ * return renderWrapper(
96
+ * <FilterDate
97
+ * startDate={startDate}
98
+ * endDate={endDate}
99
+ * onStartDateChange={setStartDate}
100
+ * onEndDateChange={setEndDate}
101
+ * />
102
+ * );
103
+ * ```
104
+ *
105
+ * @example Multiple filters in a filter bar
106
+ * ```tsx
107
+ * <div style={{ display: 'flex', gap: '8px' }}>
108
+ * {statusFilterWrapper}
109
+ * {dateFilterWrapper}
110
+ * {textFilterWrapper}
111
+ * </div>
112
+ * ```
113
+ */
114
+ export declare const FilterWrapper: ({ active, children, className, dropDownOpen, dropdownRef, dropdownTitle, filterText, handleApply, handleKeyDown, handleOpenDropdown, handleToggle, hasFilter, label, style, }: FilterWrapperProps) => import("react").JSX.Element;
115
+ export {};
@@ -0,0 +1,55 @@
1
+ import { type Dispatch } from 'react';
2
+ import { type FilterAmountAction, type FilterAmountState } from "./filterAmountReducer";
3
+ import { type BaseFilterProps } from "../useFilterWrapper";
4
+ export type FilterAmountType = 'equal' | 'between' | 'greater' | 'less';
5
+ export type FilterAmountProps = BaseFilterProps & {
6
+ dispatch: Dispatch<FilterAmountAction>;
7
+ filter: FilterAmountState;
8
+ };
9
+ /**
10
+ * FilterAmount provides a specialized filter interface for numeric amount values.
11
+ * It allows users to filter by equal to, between, greater than, or less than specific amounts.
12
+ * Integrates with the filter wrapper system for consistent behavior across filters.
13
+ *
14
+ * @example Basic usage with a reducer
15
+ * ```tsx
16
+ * const [filter, dispatch] = useReducer(filterAmountReducer, initialFilterAmountState);
17
+ *
18
+ * <FilterAmount
19
+ * dispatch={dispatch}
20
+ * dropdownTitle="Amount"
21
+ * filter={filter}
22
+ * label="Amount"
23
+ * />
24
+ * ```
25
+ *
26
+ * @example With specific initial filter value
27
+ * ```tsx
28
+ * const [filter, dispatch] = useReducer(filterAmountReducer, {
29
+ * ...initialFilterAmountState,
30
+ * amountFilterType: 'greater',
31
+ * amountTotalMin: 100
32
+ * });
33
+ *
34
+ * <FilterAmount
35
+ * dispatch={dispatch}
36
+ * dropdownTitle="Price"
37
+ * filter={filter}
38
+ * label="Price"
39
+ * />
40
+ * ```
41
+ *
42
+ * @example As part of a filter group
43
+ * ```tsx
44
+ * <FilterWrapper>
45
+ * <FilterAmount
46
+ * dispatch={dispatch}
47
+ * dropdownTitle="Total"
48
+ * filter={filter}
49
+ * label="Total Amount"
50
+ * />
51
+ * <OtherFilters... />
52
+ * </FilterWrapper>
53
+ * ```
54
+ */
55
+ export declare const FilterAmount: ({ dispatch, dropdownTitle, filter, label, }: FilterAmountProps) => import("react").JSX.Element;
@@ -0,0 +1,20 @@
1
+ import type { DeepReducerActions } from "../../../types/deep/DeepReducerActions";
2
+ export declare const filterAmountTypes: readonly ["equal", "between", "greater", "less"];
3
+ export type FilterAmountType = (typeof filterAmountTypes)[number];
4
+ export declare const filterAmountOptions: {
5
+ label: string;
6
+ value: FilterAmountType;
7
+ }[];
8
+ export type FilterAmountState = {
9
+ amountFilterType: FilterAmountType;
10
+ amountTotalMax: number | null;
11
+ amountTotalMin: number | null;
12
+ isActive: boolean;
13
+ };
14
+ export declare const initialFilterAmountState: FilterAmountState;
15
+ export type FilterAmountAction = DeepReducerActions<FilterAmountState> | {
16
+ type: 'reset';
17
+ };
18
+ export declare const filterAmountReducer: (state: FilterAmountState, action: FilterAmountAction) => FilterAmountState;
19
+ export declare const filterAmountReducerUrl: (prefixKey?: string) => (state: FilterAmountState, action: FilterAmountAction) => FilterAmountState;
20
+ export declare const getInitialFilterAmountStateUrl: (prefixKey?: string) => FilterAmountState;
@@ -0,0 +1,11 @@
1
+ import { type FilterDateData, type FilterDateRangeType } from "./filterDateReducer";
2
+ import type { BaseProps } from "../../../types/BaseProps";
3
+ type DateControlProps = BaseProps & {
4
+ onChange: (value: FilterDateData) => void;
5
+ onChangeFilterText: (text: string) => void;
6
+ rangeType: FilterDateRangeType;
7
+ setRangeType: (range: FilterDateRangeType) => void;
8
+ value: FilterDateData;
9
+ };
10
+ export declare const DateControls: ({ onChange, onChangeFilterText, rangeType, setRangeType, value, }: DateControlProps) => import("react").JSX.Element;
11
+ export {};
@@ -0,0 +1,13 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { FilterDateData } from "./filterDateReducer";
3
+ import type { BaseProps } from "../../../types/BaseProps";
4
+ export type _DateControlProps = {
5
+ onChange: (value: FilterDateData) => void;
6
+ onChangeFilterText: (text: string) => void;
7
+ value: FilterDateData;
8
+ };
9
+ export declare const formatDate: (date: string) => string;
10
+ export declare const defaultDateFormat = "YYYY-MM-DD";
11
+ export declare const DateControlsWrapper: ({ children, className, style, }: BaseProps & {
12
+ children: ReactNode;
13
+ }) => import("react").JSX.Element;
@@ -0,0 +1,64 @@
1
+ import { type Dispatch } from 'react';
2
+ import { type FilterDateAction, type FilterDateState } from "./filterDateReducer";
3
+ import { type BaseFilterProps } from "../useFilterWrapper";
4
+ export type FilterDateProps = BaseFilterProps & {
5
+ dispatch: Dispatch<FilterDateAction>;
6
+ filter: FilterDateState;
7
+ };
8
+ /**
9
+ * FilterDate provides an interface for filtering by date ranges.
10
+ * It supports various range types such as "is between", "is equal to", "is on or after", and "is before or on".
11
+ * The component handles date formatting, adjustments, and integrates with the filter wrapper system.
12
+ *
13
+ * @example Basic usage with a reducer
14
+ * ```tsx
15
+ * const [filter, dispatch] = useReducer(filterDateReducer, initialFilterDateState);
16
+ *
17
+ * <FilterDate
18
+ * dispatch={dispatch}
19
+ * dropdownTitle="Date Range"
20
+ * filter={filter}
21
+ * label="Date"
22
+ * />
23
+ * ```
24
+ *
25
+ * @example With specific initial date filter
26
+ * ```tsx
27
+ * const [filter, dispatch] = useReducer(filterDateReducer, {
28
+ * ...initialFilterDateState,
29
+ * dateRangeType: 'is on or after',
30
+ * dateData: {
31
+ * ...initialFilterDateState.dateData,
32
+ * dateBegin: '2025-01-01'
33
+ * }
34
+ * });
35
+ *
36
+ * <FilterDate
37
+ * dispatch={dispatch}
38
+ * dropdownTitle="Created"
39
+ * filter={filter}
40
+ * label="Creation Date"
41
+ * />
42
+ * ```
43
+ *
44
+ * @example With "last N days" filtering
45
+ * ```tsx
46
+ * const [filter, dispatch] = useReducer(filterDateReducer, {
47
+ * ...initialFilterDateState,
48
+ * dateRangeType: 'last',
49
+ * dateData: {
50
+ * ...initialFilterDateState.dateData,
51
+ * lastCount: 30,
52
+ * lastUnit: 'days'
53
+ * }
54
+ * });
55
+ *
56
+ * <FilterDate
57
+ * dispatch={dispatch}
58
+ * dropdownTitle="Recent"
59
+ * filter={filter}
60
+ * label="Recent Activity"
61
+ * />
62
+ * ```
63
+ */
64
+ export declare const FilterDate: ({ dispatch, dropdownTitle, filter, label, }: FilterDateProps) => import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { type _DateControlProps } from "../DateControlsWrapper";
2
+ export declare const IsAfter: ({ onChange, onChangeFilterText, value, }: _DateControlProps) => import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { type _DateControlProps } from "../DateControlsWrapper";
2
+ export declare const IsBefore: ({ onChange, onChangeFilterText, value, }: _DateControlProps) => import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { type _DateControlProps } from "../DateControlsWrapper";
2
+ export declare const IsBeforeOrOn: ({ onChange, onChangeFilterText, value, }: _DateControlProps) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { type _DateControlProps } from "../DateControlsWrapper";
2
+ /** Inclusive */
3
+ export declare const IsBetween: ({ onChange, onChangeFilterText, value, }: _DateControlProps) => import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { type _DateControlProps } from "../DateControlsWrapper";
2
+ export declare const IsEqualTo: ({ onChange, onChangeFilterText, value, }: _DateControlProps) => import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { type _DateControlProps } from "../DateControlsWrapper";
2
+ export declare const IsInTheLast: ({ onChange, onChangeFilterText, value, }: _DateControlProps) => import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { type _DateControlProps } from "../DateControlsWrapper";
2
+ export declare const IsOnOrAfter: ({ onChange, onChangeFilterText, value, }: _DateControlProps) => import("react").JSX.Element;
@@ -0,0 +1,24 @@
1
+ import type { DeepReducerActions } from "../../../types/deep/DeepReducerActions";
2
+ export type FilterDateType = 'equal' | 'between' | 'greater' | 'less';
3
+ export declare const filterDateRanges: readonly ["is in the last", "is equal to", "is after", "is before", "is between", "is on or after", "is before or on"];
4
+ export type FilterDateRangeType = (typeof filterDateRanges)[number];
5
+ export declare const dateUnits: readonly ["days", "months"];
6
+ export type FilterDateLastRangeUnit = (typeof dateUnits)[number];
7
+ export type FilterDateData = {
8
+ dateBegin: string | null;
9
+ dateEnd: string | null;
10
+ lastCount: number;
11
+ lastUnit: FilterDateLastRangeUnit;
12
+ };
13
+ export type FilterDateState = {
14
+ dateData: FilterDateData;
15
+ dateRangeType: FilterDateRangeType;
16
+ isActive: boolean;
17
+ };
18
+ export declare const initialFilterDateState: FilterDateState;
19
+ export type FilterDateAction = DeepReducerActions<FilterDateState> | {
20
+ type: 'reset';
21
+ };
22
+ export declare const filterDateReducer: (state: FilterDateState, action: FilterDateAction) => FilterDateState;
23
+ export declare const filterDateReducerUrl: (prefixKey?: string) => (state: FilterDateState, action: FilterDateAction) => FilterDateState;
24
+ export declare const getInitialFilterDateStateUrl: (prefixKey?: string) => FilterDateState;
@@ -0,0 +1,64 @@
1
+ import { type BaseFilterProps } from "../useFilterWrapper";
2
+ import type { SelectOption, SelectValue } from "../../../types/SelectOption";
3
+ export type FilterMultiSelectProps<T extends SelectValue = SelectValue> = BaseFilterProps & {
4
+ onChange: (value: T[]) => void;
5
+ options: SelectOption<T>[];
6
+ value: T[];
7
+ };
8
+ /**
9
+ * FilterMultiSelect provides a checkbox-based multi-selection filter.
10
+ * It allows users to select multiple options from a list and integrates
11
+ * with the filter wrapper system for consistent behavior.
12
+ *
13
+ * @example Basic usage
14
+ * ```tsx
15
+ * const [selected, setSelected] = useState<string[]>([]);
16
+ *
17
+ * <FilterMultiSelect
18
+ * dropdownTitle="Categories"
19
+ * label="Category"
20
+ * onChange={setSelected}
21
+ * options={[
22
+ * { label: 'Electronics', value: 'electronics' },
23
+ * { label: 'Clothing', value: 'clothing' },
24
+ * { label: 'Books', value: 'books' }
25
+ * ]}
26
+ * value={selected}
27
+ * />
28
+ * ```
29
+ *
30
+ * @example With initial selection
31
+ * ```tsx
32
+ * const [selected, setSelected] = useState<string[]>(['electronics']);
33
+ *
34
+ * <FilterMultiSelect
35
+ * dropdownTitle="Product Type"
36
+ * label="Type"
37
+ * onChange={setSelected}
38
+ * options={[
39
+ * { label: 'Electronics', value: 'electronics' },
40
+ * { label: 'Clothing', value: 'clothing' },
41
+ * { label: 'Books', value: 'books' }
42
+ * ]}
43
+ * value={selected}
44
+ * />
45
+ * ```
46
+ *
47
+ * @example With numeric values
48
+ * ```tsx
49
+ * const [selected, setSelected] = useState<number[]>([]);
50
+ *
51
+ * <FilterMultiSelect<number>
52
+ * dropdownTitle="Priority"
53
+ * label="Priority Level"
54
+ * onChange={setSelected}
55
+ * options={[
56
+ * { label: 'High', value: 3 },
57
+ * { label: 'Medium', value: 2 },
58
+ * { label: 'Low', value: 1 }
59
+ * ]}
60
+ * value={selected}
61
+ * />
62
+ * ```
63
+ */
64
+ export declare const FilterMultiSelect: <T extends SelectValue = SelectValue>({ dropdownTitle, label, onChange, options, value, }: FilterMultiSelectProps<T>) => import("react").JSX.Element;
@@ -0,0 +1,88 @@
1
+ import { type BaseFilterProps } from "../useFilterWrapper";
2
+ import { type SelectProps } from "../../select/Select";
3
+ import type { SelectOption } from "../../../types/SelectOption";
4
+ type CustomSelectProps<T extends string = string, O extends SelectOption<string> = SelectOption<T>> = Omit<SelectProps<T, O>, 'onChange' | 'value' | 'options'>;
5
+ export type FilterSelectProps<T extends string = string, O extends SelectOption<string> = SelectOption<T>> = BaseFilterProps & {
6
+ filterTextCharacterLimit?: number;
7
+ /**
8
+ * @default `is ${value.label}`
9
+ */
10
+ getFilterText?: (value: O) => string;
11
+ onChange: (value: T | null) => void;
12
+ options: O[];
13
+ selectProps?: CustomSelectProps<T, O> | ((editingValue: O | null) => CustomSelectProps<T, O>);
14
+ value: T | null;
15
+ };
16
+ /**
17
+ * FilterSelect provides a dropdown-based single selection filter.
18
+ * It allows users to select a single option from a list and integrates
19
+ * with the filter wrapper system for consistent behavior.
20
+ *
21
+ * @example Basic usage
22
+ * ```tsx
23
+ * const [selected, setSelected] = useState<string | null>(null);
24
+ *
25
+ * <FilterSelect
26
+ * dropdownTitle="Status"
27
+ * label="Status"
28
+ * onChange={setSelected}
29
+ * options={[
30
+ * { label: 'Active', value: 'active' },
31
+ * { label: 'Pending', value: 'pending' },
32
+ * { label: 'Completed', value: 'completed' }
33
+ * ]}
34
+ * value={selected}
35
+ * />
36
+ * ```
37
+ *
38
+ * @example With initial selection
39
+ * ```tsx
40
+ * const [selected, setSelected] = useState<string | null>('active');
41
+ *
42
+ * <FilterSelect
43
+ * dropdownTitle="Status"
44
+ * label="Status"
45
+ * onChange={setSelected}
46
+ * options={[
47
+ * { label: 'Active', value: 'active' },
48
+ * { label: 'Pending', value: 'pending' },
49
+ * { label: 'Completed', value: 'completed' }
50
+ * ]}
51
+ * value={selected}
52
+ * />
53
+ * ```
54
+ *
55
+ * @example With custom filter text formatter
56
+ * ```tsx
57
+ * <FilterSelect
58
+ * dropdownTitle="Priority"
59
+ * getFilterText={(option) => `Priority: ${option.label}`}
60
+ * label="Priority"
61
+ * onChange={setPriority}
62
+ * options={[
63
+ * { label: 'High', value: 'high' },
64
+ * { label: 'Medium', value: 'medium' },
65
+ * { label: 'Low', value: 'low' }
66
+ * ]}
67
+ * value={priority}
68
+ * />
69
+ * ```
70
+ *
71
+ * @example With custom select props
72
+ * ```tsx
73
+ * <FilterSelect
74
+ * dropdownTitle="Country"
75
+ * label="Country"
76
+ * onChange={setCountry}
77
+ * options={countryOptions}
78
+ * selectProps={{
79
+ * isSearchable: true,
80
+ * placeholder: 'Select a country...',
81
+ * size: "md"
82
+ * }}
83
+ * value={country}
84
+ * />
85
+ * ```
86
+ */
87
+ export declare const FilterSelect: <T extends string = string, O extends SelectOption<T> = SelectOption<T>>({ filterTextCharacterLimit, getFilterText: _getFilterText, onChange, options, selectProps, value, ...props }: FilterSelectProps<T, O>) => import("react").JSX.Element;
88
+ export {};
@@ -0,0 +1,48 @@
1
+ import { type BaseFilterProps } from "../useFilterWrapper";
2
+ export type FilterTextProps = BaseFilterProps & {
3
+ onChange: (value: string | null) => void;
4
+ value: string | null;
5
+ };
6
+ /**
7
+ * FilterText provides a text input filter for searching or filtering by text.
8
+ * It allows users to type text input and integrates with the filter wrapper system
9
+ * for consistent behavior across filters.
10
+ *
11
+ * @example Basic usage
12
+ * ```tsx
13
+ * const [searchText, setSearchText] = useState<string | null>(null);
14
+ *
15
+ * <FilterText
16
+ * dropdownTitle="Search"
17
+ * label="Name"
18
+ * onChange={setSearchText}
19
+ * value={searchText}
20
+ * />
21
+ * ```
22
+ *
23
+ * @example With initial value
24
+ * ```tsx
25
+ * const [searchText, setSearchText] = useState<string | null>("initial search");
26
+ *
27
+ * <FilterText
28
+ * dropdownTitle="Search Products"
29
+ * label="Product Name"
30
+ * onChange={setSearchText}
31
+ * value={searchText}
32
+ * />
33
+ * ```
34
+ *
35
+ * @example As part of a filter group
36
+ * ```tsx
37
+ * <FilterWrapper>
38
+ * <FilterText
39
+ * dropdownTitle="Search"
40
+ * label="Search"
41
+ * onChange={setSearchText}
42
+ * value={searchText}
43
+ * />
44
+ * <OtherFilters... />
45
+ * </FilterWrapper>
46
+ * ```
47
+ */
48
+ export declare const FilterText: ({ dropdownTitle, label, onChange, value, }: FilterTextProps) => import("react").JSX.Element;