@veeqo/transfigure 0.0.1

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 (357) hide show
  1. package/README.md +54 -0
  2. package/dist/BusinessLogic/BusinessLogicManager.d.ts +6 -0
  3. package/dist/BusinessLogic/index.d.ts +4 -0
  4. package/dist/BusinessLogic/mocks.d.ts +10 -0
  5. package/dist/BusinessLogic/types.d.ts +18 -0
  6. package/dist/BusinessLogic/useBusinessLogic.d.ts +1 -0
  7. package/dist/api/createCustomView/createCustomView.d.ts +6 -0
  8. package/dist/api/createCustomView/index.d.ts +1 -0
  9. package/dist/api/deleteCustomView/deleteCustomView.d.ts +1 -0
  10. package/dist/api/deleteCustomView/index.d.ts +1 -0
  11. package/dist/api/index.d.ts +5 -0
  12. package/dist/api/patchCurrentUser/index.d.ts +1 -0
  13. package/dist/api/patchCurrentUser/patchCurrentUser.d.ts +1 -0
  14. package/dist/api/patchCustomView/index.d.ts +1 -0
  15. package/dist/api/patchCustomView/patchCustomView.d.ts +6 -0
  16. package/dist/api/types.d.ts +16 -0
  17. package/dist/axiosWrappers/axiosWrappers.d.ts +15 -0
  18. package/dist/axiosWrappers/axiosWrappers.test.d.ts +1 -0
  19. package/dist/axiosWrappers/constants.d.ts +10 -0
  20. package/dist/axiosWrappers/index.d.ts +1 -0
  21. package/dist/axiosWrappers/types.d.ts +6 -0
  22. package/dist/axiosWrappers/utils/filterErrorStack/filterErrorStack.d.ts +14 -0
  23. package/dist/axiosWrappers/utils/filterErrorStack/filterErrorStack.test.d.ts +1 -0
  24. package/dist/axiosWrappers/utils/filterErrorStack/index.d.ts +1 -0
  25. package/dist/axiosWrappers/utils/filteringUtils/filteringUtils.d.ts +3 -0
  26. package/dist/axiosWrappers/utils/filteringUtils/filteringUtils.test.d.ts +1 -0
  27. package/dist/axiosWrappers/utils/filteringUtils/index.d.ts +1 -0
  28. package/dist/axiosWrappers/utils/injectIntoError/index.d.ts +1 -0
  29. package/dist/axiosWrappers/utils/injectIntoError/injectIntoError.d.ts +18 -0
  30. package/dist/axiosWrappers/utils/injectIntoError/injectIntoError.test.d.ts +1 -0
  31. package/dist/axiosWrappers/utils/isError/index.d.ts +1 -0
  32. package/dist/axiosWrappers/utils/isError/isError.d.ts +4 -0
  33. package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +17 -0
  34. package/dist/components/ErrorBoundary/index.d.ts +1 -0
  35. package/dist/components/Filters/ActiveFilters/ActiveFilterArrayTag/ActiveFilterArrayTag.d.ts +6 -0
  36. package/dist/components/Filters/ActiveFilters/ActiveFilterArrayTag/index.d.ts +1 -0
  37. package/dist/components/Filters/ActiveFilters/ActiveFilterDateRangeTag/ActiveFilterDateRangeTag.d.ts +6 -0
  38. package/dist/components/Filters/ActiveFilters/ActiveFilterDateRangeTag/index.d.ts +1 -0
  39. package/dist/components/Filters/ActiveFilters/ActiveFilterNumberRangeTag/ActiveFilterNumberRangeTag.d.ts +6 -0
  40. package/dist/components/Filters/ActiveFilters/ActiveFilterNumberRangeTag/index.d.ts +1 -0
  41. package/dist/components/Filters/ActiveFilters/ActiveFilterTag/ActiveFilterTag.d.ts +6 -0
  42. package/dist/components/Filters/ActiveFilters/ActiveFilterTag/index.d.ts +1 -0
  43. package/dist/components/Filters/ActiveFilters/ActiveFilters.d.ts +1 -0
  44. package/dist/components/Filters/ActiveFilters/index.d.ts +5 -0
  45. package/dist/components/Filters/AdaptiveHeightContainer/AdaptiveHeightContainer.d.ts +8 -0
  46. package/dist/components/Filters/AdaptiveHeightContainer/index.d.ts +1 -0
  47. package/dist/components/Filters/AdaptiveHeightContainer/styled.d.ts +3 -0
  48. package/dist/components/Filters/Fields/AsyncCheckboxFilter/AsyncCheckboxFilter.d.ts +6 -0
  49. package/dist/components/Filters/Fields/AsyncCheckboxFilter/index.d.ts +1 -0
  50. package/dist/components/Filters/Fields/AsyncInlineCheckboxFilter/AsyncInlineCheckboxFilter.d.ts +8 -0
  51. package/dist/components/Filters/Fields/AsyncInlineCheckboxFilter/index.d.ts +1 -0
  52. package/dist/components/Filters/Fields/AsyncInlineRadioFilter/AsyncInlineRadioFilter.d.ts +8 -0
  53. package/dist/components/Filters/Fields/AsyncInlineRadioFilter/index.d.ts +1 -0
  54. package/dist/components/Filters/Fields/AsyncRadioFilter/AsyncRadioFilter.d.ts +6 -0
  55. package/dist/components/Filters/Fields/AsyncRadioFilter/index.d.ts +1 -0
  56. package/dist/components/Filters/Fields/CheckboxFilter/CheckboxFilter.d.ts +6 -0
  57. package/dist/components/Filters/Fields/CheckboxFilter/index.d.ts +1 -0
  58. package/dist/components/Filters/Fields/DateRangeFilter/DateRangeFilter.d.ts +6 -0
  59. package/dist/components/Filters/Fields/DateRangeFilter/index.d.ts +1 -0
  60. package/dist/components/Filters/Fields/FilterArrayField/FilterArrayField.d.ts +8 -0
  61. package/dist/components/Filters/Fields/FilterArrayField/index.d.ts +1 -0
  62. package/dist/components/Filters/Fields/FilterField/FilterField.d.ts +8 -0
  63. package/dist/components/Filters/Fields/FilterField/index.d.ts +1 -0
  64. package/dist/components/Filters/Fields/FilterGroup/FilterGroup.d.ts +6 -0
  65. package/dist/components/Filters/Fields/FilterGroup/index.d.ts +1 -0
  66. package/dist/components/Filters/Fields/FilterNumberRangeFilter/FilterNumberRangeFilter.d.ts +9 -0
  67. package/dist/components/Filters/Fields/FilterNumberRangeFilter/index.d.ts +1 -0
  68. package/dist/components/Filters/Fields/MultipleFieldFilter/MultipleFieldFilter.d.ts +7 -0
  69. package/dist/components/Filters/Fields/MultipleFieldFilter/index.d.ts +1 -0
  70. package/dist/components/Filters/Fields/NumberRangeFilter/MuiSlider.d.ts +27 -0
  71. package/dist/components/Filters/Fields/NumberRangeFilter/NumberRangeFilter.d.ts +6 -0
  72. package/dist/components/Filters/Fields/NumberRangeFilter/index.d.ts +1 -0
  73. package/dist/components/Filters/Fields/RadioFilter/RadioFilter.d.ts +6 -0
  74. package/dist/components/Filters/Fields/RadioFilter/index.d.ts +1 -0
  75. package/dist/components/Filters/Fields/index.d.ts +13 -0
  76. package/dist/components/Filters/FiltersDropdown/FiltersDropdown.d.ts +2 -0
  77. package/dist/components/Filters/FiltersDropdown/index.d.ts +1 -0
  78. package/dist/components/Filters/FiltersList/FiltersList.d.ts +2 -0
  79. package/dist/components/Filters/FiltersList/index.d.ts +1 -0
  80. package/dist/components/Filters/index.d.ts +4 -0
  81. package/dist/components/SearchBar/SearchBar.d.ts +1 -0
  82. package/dist/components/SearchBar/index.d.ts +1 -0
  83. package/dist/components/Table/Table.d.ts +1 -0
  84. package/dist/components/ToastsManager/ToastsManager.d.ts +1 -0
  85. package/dist/components/ToastsManager/index.d.ts +1 -0
  86. package/dist/components/Views/CreateView/CreateView.d.ts +5 -0
  87. package/dist/components/Views/CreateView/index.d.ts +1 -0
  88. package/dist/components/Views/EditDropdown/EditDropdown.d.ts +7 -0
  89. package/dist/components/Views/EditDropdown/index.d.ts +1 -0
  90. package/dist/components/Views/OptionsDropdown/OptionsDropdown.d.ts +10 -0
  91. package/dist/components/Views/OptionsDropdown/index.d.ts +1 -0
  92. package/dist/components/Views/OptionsDropdown/styled.d.ts +17 -0
  93. package/dist/components/Views/PillNotifications/InfoPill.d.ts +1 -0
  94. package/dist/components/Views/PillNotifications/PillNotifications.d.ts +9 -0
  95. package/dist/components/Views/PillNotifications/index.d.ts +1 -0
  96. package/dist/components/Views/PillNotifications/styled.d.ts +33 -0
  97. package/dist/components/Views/SortableViews/LegacySortableViews.d.ts +3 -0
  98. package/dist/components/Views/SortableViews/SortableViews.d.ts +1 -0
  99. package/dist/components/Views/SortableViews/index.d.ts +1 -0
  100. package/dist/components/Views/SortableViews/styled.d.ts +8 -0
  101. package/dist/components/Views/UnsavedChanges/UnsavedChanges.d.ts +5 -0
  102. package/dist/components/Views/UnsavedChanges/index.d.ts +1 -0
  103. package/dist/components/Views/UnsavedChanges/styled.d.ts +33 -0
  104. package/dist/components/Views/ViewDropdowns/ViewDropdowns.d.ts +1 -0
  105. package/dist/components/Views/ViewDropdowns/index.d.ts +1 -0
  106. package/dist/components/Views/ViewList/ViewsList.d.ts +1 -0
  107. package/dist/components/Views/ViewList/index.d.ts +1 -0
  108. package/dist/components/Views/ViewList/styled.d.ts +2 -0
  109. package/dist/components/Views/ViewTab/Confirmation/Confirmation.d.ts +8 -0
  110. package/dist/components/Views/ViewTab/Confirmation/index.d.ts +1 -0
  111. package/dist/components/Views/ViewTab/ViewTab.d.ts +6 -0
  112. package/dist/components/Views/ViewTab/index.d.ts +1 -0
  113. package/dist/components/Views/constants.d.ts +10 -0
  114. package/dist/components/Views/index.d.ts +10 -0
  115. package/dist/constants/constants.d.ts +8 -0
  116. package/dist/constants/dateConstants.d.ts +17 -0
  117. package/dist/constants/index.d.ts +2 -0
  118. package/dist/context/ModalContext/ModalContext.d.ts +6 -0
  119. package/dist/context/ModalContext/hooks.d.ts +1 -0
  120. package/dist/context/ModalContext/index.d.ts +3 -0
  121. package/dist/context/ModalContext/mocks/mockUseModal.d.ts +6 -0
  122. package/dist/context/ModalContext/modalId.d.ts +3 -0
  123. package/dist/context/ModalContext/types.d.ts +7 -0
  124. package/dist/context/index.d.ts +1 -0
  125. package/dist/fetchers/constants.d.ts +12 -0
  126. package/dist/fetchers/fetchers.d.ts +12 -0
  127. package/dist/fetchers/index.d.ts +3 -0
  128. package/dist/fetchers/withCSRF.d.ts +2 -0
  129. package/dist/hooks/index.d.ts +9 -0
  130. package/dist/hooks/useCustomViews/index.d.ts +1 -0
  131. package/dist/hooks/useCustomViews/useCustomViews.d.ts +16 -0
  132. package/dist/hooks/useDropdownManager/index.d.ts +1 -0
  133. package/dist/hooks/useDropdownManager/useDropdownManager.d.ts +35 -0
  134. package/dist/hooks/useDuplicateActiveView/index.d.ts +1 -0
  135. package/dist/hooks/useDuplicateActiveView/useDuplicateActiveView.d.ts +3 -0
  136. package/dist/hooks/useFilterArrayLabel/index.d.ts +1 -0
  137. package/dist/hooks/useFilterArrayLabel/useFilterArrayLabel.d.ts +8 -0
  138. package/dist/hooks/useFilterLabel/index.d.ts +1 -0
  139. package/dist/hooks/useFilterLabel/useFilterLabel.d.ts +8 -0
  140. package/dist/hooks/usePersistUnsavedChanges/index.d.ts +1 -0
  141. package/dist/hooks/usePersistUnsavedChanges/usePersistUnsavedChanges.d.ts +18 -0
  142. package/dist/hooks/useStores/index.d.ts +1 -0
  143. package/dist/hooks/useStores/types.d.ts +8 -0
  144. package/dist/hooks/useStores/useStores.d.ts +2 -0
  145. package/dist/hooks/useViewUrlChange/index.d.ts +1 -0
  146. package/dist/hooks/useViewUrlChange/useViewUrlChange.d.ts +1 -0
  147. package/dist/hooks/useViews/index.d.ts +1 -0
  148. package/dist/hooks/useViews/useViews.d.ts +15 -0
  149. package/dist/index.cjs +1 -0
  150. package/dist/index.d.ts +15 -0
  151. package/dist/index.js +143 -0
  152. package/dist/index10.cjs +1 -0
  153. package/dist/index10.js +29 -0
  154. package/dist/index11.cjs +1 -0
  155. package/dist/index11.js +23 -0
  156. package/dist/index12.cjs +1 -0
  157. package/dist/index12.js +24 -0
  158. package/dist/index13.cjs +1 -0
  159. package/dist/index13.js +42 -0
  160. package/dist/index14.cjs +1 -0
  161. package/dist/index14.js +42 -0
  162. package/dist/index15.cjs +1 -0
  163. package/dist/index15.js +57 -0
  164. package/dist/index16.cjs +1 -0
  165. package/dist/index16.js +49 -0
  166. package/dist/index17.cjs +1 -0
  167. package/dist/index17.js +45 -0
  168. package/dist/index18.cjs +1 -0
  169. package/dist/index18.js +55 -0
  170. package/dist/index19.cjs +1 -0
  171. package/dist/index19.js +39 -0
  172. package/dist/index2.cjs +1 -0
  173. package/dist/index2.js +7 -0
  174. package/dist/index20.cjs +1 -0
  175. package/dist/index20.js +39 -0
  176. package/dist/index21.cjs +1 -0
  177. package/dist/index21.js +55 -0
  178. package/dist/index22.cjs +1 -0
  179. package/dist/index22.js +36 -0
  180. package/dist/index23.cjs +1 -0
  181. package/dist/index23.js +62 -0
  182. package/dist/index24.cjs +1 -0
  183. package/dist/index24.js +21 -0
  184. package/dist/index25.cjs +1 -0
  185. package/dist/index25.js +34 -0
  186. package/dist/index26.cjs +1 -0
  187. package/dist/index26.js +43 -0
  188. package/dist/index27.cjs +1 -0
  189. package/dist/index27.js +38 -0
  190. package/dist/index28.cjs +1 -0
  191. package/dist/index28.js +53 -0
  192. package/dist/index29.cjs +1 -0
  193. package/dist/index29.js +111 -0
  194. package/dist/index3.cjs +1 -0
  195. package/dist/index3.js +9 -0
  196. package/dist/index30.cjs +1 -0
  197. package/dist/index30.js +36 -0
  198. package/dist/index31.cjs +1 -0
  199. package/dist/index31.js +33 -0
  200. package/dist/index32.cjs +1 -0
  201. package/dist/index32.js +17 -0
  202. package/dist/index33.cjs +1 -0
  203. package/dist/index33.js +96 -0
  204. package/dist/index34.cjs +1 -0
  205. package/dist/index34.js +21 -0
  206. package/dist/index35.cjs +1 -0
  207. package/dist/index35.js +75 -0
  208. package/dist/index36.cjs +1 -0
  209. package/dist/index36.js +30 -0
  210. package/dist/index37.cjs +1 -0
  211. package/dist/index37.js +31 -0
  212. package/dist/index38.cjs +1 -0
  213. package/dist/index38.js +57 -0
  214. package/dist/index39.cjs +1 -0
  215. package/dist/index39.js +34 -0
  216. package/dist/index4.cjs +1 -0
  217. package/dist/index4.js +14 -0
  218. package/dist/index40.cjs +1 -0
  219. package/dist/index40.js +40 -0
  220. package/dist/index41.cjs +1 -0
  221. package/dist/index41.js +37 -0
  222. package/dist/index42.cjs +1 -0
  223. package/dist/index42.js +13 -0
  224. package/dist/index43.cjs +1 -0
  225. package/dist/index43.js +9 -0
  226. package/dist/index44.cjs +1 -0
  227. package/dist/index44.js +4 -0
  228. package/dist/index45.cjs +1 -0
  229. package/dist/index45.js +23 -0
  230. package/dist/index46.cjs +1 -0
  231. package/dist/index46.js +4 -0
  232. package/dist/index47.cjs +1 -0
  233. package/dist/index47.js +6 -0
  234. package/dist/index48.cjs +1 -0
  235. package/dist/index48.js +15 -0
  236. package/dist/index49.cjs +1 -0
  237. package/dist/index49.js +15 -0
  238. package/dist/index5.cjs +1 -0
  239. package/dist/index5.js +18 -0
  240. package/dist/index50.cjs +1 -0
  241. package/dist/index50.js +23 -0
  242. package/dist/index51.cjs +1 -0
  243. package/dist/index51.js +221 -0
  244. package/dist/index52.cjs +1 -0
  245. package/dist/index52.js +44 -0
  246. package/dist/index53.cjs +1 -0
  247. package/dist/index53.js +36 -0
  248. package/dist/index54.cjs +1 -0
  249. package/dist/index54.js +39 -0
  250. package/dist/index55.cjs +1 -0
  251. package/dist/index55.js +100 -0
  252. package/dist/index56.cjs +1 -0
  253. package/dist/index56.js +11 -0
  254. package/dist/index57.cjs +1 -0
  255. package/dist/index57.js +63 -0
  256. package/dist/index58.cjs +1 -0
  257. package/dist/index58.js +65 -0
  258. package/dist/index59.cjs +1 -0
  259. package/dist/index59.js +28 -0
  260. package/dist/index6.cjs +1 -0
  261. package/dist/index6.js +110 -0
  262. package/dist/index60.cjs +1 -0
  263. package/dist/index60.js +301 -0
  264. package/dist/index61.cjs +1 -0
  265. package/dist/index61.js +66 -0
  266. package/dist/index62.cjs +1 -0
  267. package/dist/index62.js +65 -0
  268. package/dist/index63.cjs +1 -0
  269. package/dist/index63.js +39 -0
  270. package/dist/index64.cjs +1 -0
  271. package/dist/index64.js +34 -0
  272. package/dist/index65.cjs +1 -0
  273. package/dist/index65.js +11 -0
  274. package/dist/index66.cjs +1 -0
  275. package/dist/index66.js +14 -0
  276. package/dist/index67.cjs +1 -0
  277. package/dist/index67.js +21 -0
  278. package/dist/index68.cjs +1 -0
  279. package/dist/index68.js +21 -0
  280. package/dist/index69.cjs +1 -0
  281. package/dist/index69.js +44 -0
  282. package/dist/index7.cjs +1 -0
  283. package/dist/index7.js +6 -0
  284. package/dist/index70.cjs +1 -0
  285. package/dist/index70.js +19 -0
  286. package/dist/index71.cjs +1 -0
  287. package/dist/index71.js +4 -0
  288. package/dist/index72.cjs +1 -0
  289. package/dist/index72.js +11 -0
  290. package/dist/index73.cjs +3 -0
  291. package/dist/index73.js +16 -0
  292. package/dist/index74.cjs +1 -0
  293. package/dist/index74.js +11 -0
  294. package/dist/index75.cjs +1 -0
  295. package/dist/index75.js +28 -0
  296. package/dist/index76.cjs +1 -0
  297. package/dist/index76.js +21 -0
  298. package/dist/index77.cjs +19 -0
  299. package/dist/index77.js +32 -0
  300. package/dist/index78.cjs +1 -0
  301. package/dist/index78.js +18 -0
  302. package/dist/index79.cjs +1 -0
  303. package/dist/index79.js +11 -0
  304. package/dist/index8.cjs +1 -0
  305. package/dist/index8.js +16 -0
  306. package/dist/index80.cjs +12 -0
  307. package/dist/index80.js +18 -0
  308. package/dist/index81.cjs +80 -0
  309. package/dist/index81.js +99 -0
  310. package/dist/index82.cjs +1 -0
  311. package/dist/index82.js +4 -0
  312. package/dist/index83.cjs +80 -0
  313. package/dist/index83.js +99 -0
  314. package/dist/index84.cjs +1 -0
  315. package/dist/index84.js +38 -0
  316. package/dist/index85.cjs +13 -0
  317. package/dist/index85.js +21 -0
  318. package/dist/index86.cjs +7 -0
  319. package/dist/index86.js +14 -0
  320. package/dist/index9.cjs +1 -0
  321. package/dist/index9.js +149 -0
  322. package/dist/mobx/Filters/Filters.d.ts +51 -0
  323. package/dist/mobx/Filters/index.d.ts +1 -0
  324. package/dist/mobx/MobXProvider/MobXProvider.d.ts +12 -0
  325. package/dist/mobx/MobXProvider/index.d.ts +1 -0
  326. package/dist/mobx/Notifications/Notifications.d.ts +13 -0
  327. package/dist/mobx/Notifications/index.d.ts +1 -0
  328. package/dist/mobx/NumberRangeFilter/NumberRangeFilter.d.ts +20 -0
  329. package/dist/mobx/NumberRangeFilter/index.d.ts +1 -0
  330. package/dist/mobx/RangeFilter/RangeFilter.d.ts +18 -0
  331. package/dist/mobx/RangeFilter/index.d.ts +1 -0
  332. package/dist/mobx/Views/Views.d.ts +10 -0
  333. package/dist/mobx/Views/index.d.ts +1 -0
  334. package/dist/mobx/index.d.ts +6 -0
  335. package/dist/setupTests.d.ts +0 -0
  336. package/dist/storybookHelpers/StoryWrapper.d.ts +13 -0
  337. package/dist/storybookHelpers/apiMocks/current_user.d.ts +272 -0
  338. package/dist/storybookHelpers/apiMocks/custom_views.d.ts +53 -0
  339. package/dist/storybookHelpers/constants.d.ts +5 -0
  340. package/dist/types.d.ts +93 -0
  341. package/dist/utils/createAllView/createAllView.d.ts +3 -0
  342. package/dist/utils/createAllView/createAllView.test.d.ts +1 -0
  343. package/dist/utils/createAllView/index.d.ts +1 -0
  344. package/dist/utils/getAsyncOptions/getAsyncOptions.d.ts +10 -0
  345. package/dist/utils/getAsyncOptions/getAsyncOptions.test.d.ts +1 -0
  346. package/dist/utils/getAsyncOptions/index.d.ts +1 -0
  347. package/dist/utils/getFetcherFunction/getFetcherFunction.d.ts +5 -0
  348. package/dist/utils/getFetcherFunction/getFetcherFunction.test.d.ts +1 -0
  349. package/dist/utils/getFetcherFunction/index.d.ts +1 -0
  350. package/dist/utils/index.d.ts +5 -0
  351. package/dist/utils/isValidDateRange/index.d.ts +1 -0
  352. package/dist/utils/isValidDateRange/isValidDateRange.d.ts +2 -0
  353. package/dist/utils/isValidDateRange/isValidDateRange.test.d.ts +1 -0
  354. package/dist/utils/viewsAdapter/index.d.ts +1 -0
  355. package/dist/utils/viewsAdapter/viewsAdapter.d.ts +7 -0
  356. package/dist/utils/viewsAdapter/viewsAdapter.test.d.ts +1 -0
  357. package/package.json +126 -0
package/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # React + TypeScript + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
+
10
+ ## Expanding the ESLint configuration
11
+
12
+ If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
13
+
14
+ ```js
15
+ export default tseslint.config({
16
+ extends: [
17
+ // Remove ...tseslint.configs.recommended and replace with this
18
+ ...tseslint.configs.recommendedTypeChecked,
19
+ // Alternatively, use this for stricter rules
20
+ ...tseslint.configs.strictTypeChecked,
21
+ // Optionally, add this for stylistic rules
22
+ ...tseslint.configs.stylisticTypeChecked,
23
+ ],
24
+ languageOptions: {
25
+ // other options...
26
+ parserOptions: {
27
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
28
+ tsconfigRootDir: import.meta.dirname,
29
+ },
30
+ },
31
+ })
32
+ ```
33
+
34
+ You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
35
+
36
+ ```js
37
+ // eslint.config.js
38
+ import reactX from 'eslint-plugin-react-x'
39
+ import reactDom from 'eslint-plugin-react-dom'
40
+
41
+ export default tseslint.config({
42
+ plugins: {
43
+ // Add the react-x and react-dom plugins
44
+ 'react-x': reactX,
45
+ 'react-dom': reactDom,
46
+ },
47
+ rules: {
48
+ // other rules...
49
+ // Enable its recommended typescript rules
50
+ ...reactX.configs['recommended-typescript'].rules,
51
+ ...reactDom.configs.recommended.rules,
52
+ },
53
+ })
54
+ ```
@@ -0,0 +1,6 @@
1
+ import { BusinessLogicType } from './types';
2
+ export declare class BusinessLogicManager {
3
+ private static appData;
4
+ static setBusinessLogic: (data: BusinessLogicType) => void;
5
+ static getBusinessLogic: () => BusinessLogicType;
6
+ }
@@ -0,0 +1,4 @@
1
+ export { useBusinessLogic } from './useBusinessLogic';
2
+ export type { BusinessLogicType } from './types';
3
+ export { BusinessLogicManager } from './BusinessLogicManager';
4
+ export { setMockedBusinessLogic } from './mocks';
@@ -0,0 +1,10 @@
1
+ import { BusinessLogicType } from './types';
2
+ import { Filter, FilterGroup } from 'src/types';
3
+ export declare const DATE_RANGE_FILTERS: string[];
4
+ export declare const NUMBER_RANGE_FILTERS: string[];
5
+ export declare const customAppBusinessLogic: Omit<BusinessLogicType, 'FIELDS_MAP' | 'GROUP_MAP'>;
6
+ export declare const generateMockedFilterMaps: () => {
7
+ FIELDS_MAP: Map<string, Filter>;
8
+ GROUP_MAP: Map<string, FilterGroup>;
9
+ };
10
+ export declare const setMockedBusinessLogic: () => void;
@@ -0,0 +1,18 @@
1
+ import { DateRanges } from '../../node_modules/@veeqo/ui';
2
+ import { SelectOption } from '../../node_modules/@veeqo/ui/dist/components/Select/Select';
3
+ import { DateRange } from '../../node_modules/react-aria-components';
4
+ import { Filter, FilterGroup } from 'src/types';
5
+ export type BusinessLogicType = {
6
+ DATE_RANGE_FILTERS: string[];
7
+ SEARCH_FILTER_ID: string;
8
+ NUMBER_RANGE_FILTERS: string[];
9
+ DEFAULT_DATE_SELECTION: DateRanges;
10
+ DEFAULT_DATE_RANGE: DateRange;
11
+ DEFAULT_DATE_PRESET: SelectOption;
12
+ DEFAULT_PAGE_SIZE: string;
13
+ DEFAULT_PAGE_NUMBER: string;
14
+ VIEW_TYPE: 'order' | 'inventory';
15
+ FIELDS_MAP: Map<string, Filter>;
16
+ GROUP_MAP: Map<string, FilterGroup>;
17
+ FILTERS_DEBOUCE_INTERVAL_MS: number;
18
+ };
@@ -0,0 +1 @@
1
+ export declare const useBusinessLogic: () => import('./types').BusinessLogicType;
@@ -0,0 +1,6 @@
1
+ import { CustomViewPayload } from '../types';
2
+ type CreateCustomViewAttributes = {
3
+ attributes: Partial<Omit<CustomViewPayload, 'type'>>;
4
+ };
5
+ export declare const createCustomView: ({ attributes }: CreateCustomViewAttributes) => Promise<any>;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { createCustomView } from './createCustomView';
@@ -0,0 +1 @@
1
+ export declare const deleteCustomView: (id: number) => Promise<import('../../../node_modules/axios').AxiosResponse<any, any>>;
@@ -0,0 +1 @@
1
+ export { deleteCustomView } from './deleteCustomView';
@@ -0,0 +1,5 @@
1
+ export { deleteCustomView } from './deleteCustomView';
2
+ export { patchCurrentUser } from './patchCurrentUser';
3
+ export { patchCustomView } from './patchCustomView';
4
+ export { createCustomView } from './createCustomView';
5
+ export type { CustomViewPayload } from './types';
@@ -0,0 +1 @@
1
+ export { patchCurrentUser } from './patchCurrentUser';
@@ -0,0 +1 @@
1
+ export declare const patchCurrentUser: (data?: {}) => Promise<import('../../../node_modules/axios').AxiosResponse<any, any>>;
@@ -0,0 +1 @@
1
+ export { patchCustomView } from './patchCustomView';
@@ -0,0 +1,6 @@
1
+ import { CustomViewPayload } from '../types';
2
+ type PatchCustomViewAttributes = {
3
+ attributes: Partial<Omit<CustomViewPayload, 'type'>>;
4
+ };
5
+ export declare const patchCustomView: (id: string, { attributes }: PatchCustomViewAttributes) => Promise<import('../../../node_modules/axios').AxiosResponse<any, any>>;
6
+ export {};
@@ -0,0 +1,16 @@
1
+ import { UniqueIdentifier } from '@dnd-kit/core';
2
+ import { ColumnWidthsType } from '../../node_modules/@veeqo/ui/dist/components/DataTable/types';
3
+ export type CustomViewPayload = {
4
+ title: string;
5
+ filters: {
6
+ filter: Record<string, unknown>;
7
+ };
8
+ columns: {
9
+ columnIds: UniqueIdentifier[];
10
+ columnWidths?: ColumnWidthsType;
11
+ } | string[];
12
+ columnWidths: ColumnWidthsType;
13
+ shared: boolean;
14
+ editable: boolean;
15
+ type: 'order' | 'inventory' | 'reports';
16
+ };
@@ -0,0 +1,15 @@
1
+ import { AxiosRequestConfig, AxiosResponse } from '../../node_modules/axios';
2
+ export declare const axios: {
3
+ get: <T = any, R = AxiosResponse<T, any>>(url: string, config?: AxiosRequestConfig<any>) => Promise<R>;
4
+ delete: <T = any, R = AxiosResponse<T, any>>(url: string, config?: AxiosRequestConfig<any>) => Promise<R>;
5
+ post: <T = any, R = AxiosResponse<T, any>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>) => Promise<R>;
6
+ patch: <T = any, R = AxiosResponse<T, any>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>) => Promise<R>;
7
+ put: <T = any, R = AxiosResponse<T, any>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>) => Promise<R>;
8
+ postForm: <T = any, R = AxiosResponse<T, any>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>) => Promise<R>;
9
+ putForm: <T = any, R = AxiosResponse<T, any>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>) => Promise<R>;
10
+ patchForm: <T = any, R = AxiosResponse<T, any>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>) => Promise<R>;
11
+ CancelToken: import('../../node_modules/axios').CancelTokenStatic;
12
+ isCancel: typeof import('../../node_modules/axios').isCancel;
13
+ getUri: (config?: AxiosRequestConfig) => string;
14
+ isAxiosError: typeof import('../../node_modules/axios').isAxiosError;
15
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ export declare enum AxiosErrorType {
2
+ GET = "AxiosGet",
3
+ DELETE = "AxiosDelete",
4
+ POST = "AxiosPost",
5
+ PATCH = "AxiosPatch",
6
+ PUT = "AxiosPut",
7
+ POST_FORM = "AxioPostForm",
8
+ PUT_FORM = "AxiosPutForm",
9
+ PATCH_FORM = "AxiosPatchForm"
10
+ }
@@ -0,0 +1 @@
1
+ export { axios } from './axiosWrappers';
@@ -0,0 +1,6 @@
1
+ import { AxiosErrorType } from './constants';
2
+ export type InjectCustomStackTraceProps = {
3
+ customError: Error;
4
+ originalError: unknown;
5
+ type: AxiosErrorType;
6
+ };
@@ -0,0 +1,14 @@
1
+ /**
2
+ * filterErrorStack should be used inside the wrappers that are defined in axiosWrappers
3
+ * @see {@link app/assets/react/common/utils/axiosWrappers/axiosWrappers.ts}. These wrappers all
4
+ * create custom errors and ensure that those stack traces and extracted and propogated to all
5
+ * different axios use cases.
6
+ *
7
+ * However, by wrapping each axios call in a custom error it adds overhead to a stack trace which
8
+ * cause it (and every other wrapped request) to point to the same code location.
9
+ *
10
+ * filterErrorStack ensures that the stack trace containing any filtering and/or axios wrapping
11
+ * is removed from @param customError, ensuring it has a clean stack trace after processing.
12
+ *
13
+ */
14
+ export declare const filterErrorStack: (customError: Error) => Error;
@@ -0,0 +1 @@
1
+ export { filterErrorStack } from './filterErrorStack';
@@ -0,0 +1,3 @@
1
+ import { AxiosRequestConfig } from '../../../../node_modules/axios';
2
+ export declare const filterOptionalArgsGetDelete: <D = any>(url: string, config?: AxiosRequestConfig<D>) => [string, (AxiosRequestConfig<D> | undefined)?];
3
+ export declare const filterOptionalArgs: <D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>) => [string, (D | undefined)?, (AxiosRequestConfig<D> | undefined)?];
@@ -0,0 +1 @@
1
+ export { filterOptionalArgs, filterOptionalArgsGetDelete } from './filteringUtils';
@@ -0,0 +1 @@
1
+ export { injectIntoError } from './injectIntoError';
@@ -0,0 +1,18 @@
1
+ import { InjectCustomStackTraceProps } from '../../types';
2
+ /**
3
+ * The purpose of injectIntoError is to ensure that an error's stack trace can be replaced with one
4
+ * defined elsewhere, which will provide a more descriptive location and code path. Its to assist
5
+ * with debugging software such as Sentry.
6
+ *
7
+ * This function mutates its parameters, ensuring that the @param originalError has its stack property
8
+ * replaced with that of the @param customError.
9
+ *
10
+ * It also mutates the @property {name} of @param originalError so that it contains the type of error that
11
+ * is to be thrown should the request fail.
12
+ *
13
+ * @param customError a custom error containing a stack property which can provide value
14
+ * @param originalError the original error that was thrown, which needs its stack property updated
15
+ * @param type a value from the @enum AxiosErrorType
16
+ *
17
+ */
18
+ export declare const injectIntoError: ({ customError, originalError, type, }: InjectCustomStackTraceProps) => void;
@@ -0,0 +1 @@
1
+ export { isError } from './isError';
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Used to assert that an error of type unknown, is actually an error - with an error message.
3
+ */
4
+ export declare const isError: (error: unknown) => error is Error;
@@ -0,0 +1,17 @@
1
+ import { Component, ErrorInfo, ReactNode } from 'react';
2
+ type ErrorBoundaryType = {
3
+ children: ReactNode;
4
+ errorComponent?: ReactNode;
5
+ };
6
+ type State = {
7
+ hasError: boolean;
8
+ };
9
+ export declare class ErrorBoundary extends Component<ErrorBoundaryType, State> {
10
+ constructor(props: ErrorBoundaryType);
11
+ static getDerivedStateFromError(): {
12
+ hasError: boolean;
13
+ };
14
+ componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
15
+ render(): ReactNode;
16
+ }
17
+ export {};
@@ -0,0 +1 @@
1
+ export { ErrorBoundary } from './ErrorBoundary';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type ActiveFilterArrayTagProps = {
3
+ filterData: Filter;
4
+ };
5
+ export declare const ActiveFilterArrayTag: ({ filterData }: ActiveFilterArrayTagProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { ActiveFilterArrayTag } from './ActiveFilterArrayTag';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type ActiveFilterDateRangeTagProps = {
3
+ filterData: Filter;
4
+ };
5
+ export declare const ActiveFilterDateRangeTag: ({ filterData }: ActiveFilterDateRangeTagProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { ActiveFilterDateRangeTag } from './ActiveFilterDateRangeTag';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type ActiveFilterNumberRangeTagProps = {
3
+ filterData: Filter;
4
+ };
5
+ export declare const ActiveFilterNumberRangeTag: ({ filterData }: ActiveFilterNumberRangeTagProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { ActiveFilterNumberRangeTag } from './ActiveFilterNumberRangeTag';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type ActiveFilterTagProps = {
3
+ filterData: Filter;
4
+ };
5
+ export declare const ActiveFilterTag: ({ filterData }: ActiveFilterTagProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { ActiveFilterTag } from './ActiveFilterTag';
@@ -0,0 +1 @@
1
+ export declare const ActiveFilters: () => JSX.Element | null;
@@ -0,0 +1,5 @@
1
+ export * from './ActiveFilterTag';
2
+ export * from './ActiveFilterArrayTag';
3
+ export * from './ActiveFilterDateRangeTag';
4
+ export * from './ActiveFilterNumberRangeTag';
5
+ export * from './ActiveFilters';
@@ -0,0 +1,8 @@
1
+ import { ReactNode } from 'react';
2
+ type AdaptiveHeightContainerProps = {
3
+ children: ReactNode;
4
+ className?: string;
5
+ style?: React.CSSProperties;
6
+ };
7
+ export declare const AdaptiveHeightContainer: ({ children, style, className }: AdaptiveHeightContainerProps) => JSX.Element;
8
+ export {};
@@ -0,0 +1 @@
1
+ export { AdaptiveHeightContainer } from './AdaptiveHeightContainer';
@@ -0,0 +1,3 @@
1
+ export declare const AdaptiveStyledContainer: import('styled-components').StyledComponent<"div", any, {
2
+ offset?: number;
3
+ }, never>;
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type AsyncCheckboxFilterProps = {
3
+ field: Filter;
4
+ };
5
+ export declare const AsyncCheckboxFilter: ({ field }: AsyncCheckboxFilterProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { AsyncCheckboxFilter } from './AsyncCheckboxFilter';
@@ -0,0 +1,8 @@
1
+ import { Filter } from 'src/types';
2
+ type AsyncInlineCheckboxFilterProps = {
3
+ field: Filter;
4
+ editedValue: string[];
5
+ setEditedValue: (value: string[]) => void;
6
+ };
7
+ export declare const AsyncInlineCheckboxFilter: ({ field, editedValue, setEditedValue }: AsyncInlineCheckboxFilterProps) => JSX.Element;
8
+ export {};
@@ -0,0 +1 @@
1
+ export { AsyncInlineCheckboxFilter } from './AsyncInlineCheckboxFilter';
@@ -0,0 +1,8 @@
1
+ import { Filter } from 'src/types';
2
+ type AsyncInlineRadioFilterProps = {
3
+ field: Filter;
4
+ editedValue: string;
5
+ setEditedValue: (value: string) => void;
6
+ };
7
+ export declare const AsyncInlineRadioFilter: ({ field, editedValue, setEditedValue }: AsyncInlineRadioFilterProps) => JSX.Element;
8
+ export {};
@@ -0,0 +1 @@
1
+ export { AsyncInlineRadioFilter } from './AsyncInlineRadioFilter';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type AsyncRadioFilterProps = {
3
+ field: Filter;
4
+ };
5
+ export declare const AsyncRadioFilter: ({ field }: AsyncRadioFilterProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { AsyncRadioFilter } from './AsyncRadioFilter';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type CheckboxFilterProps = {
3
+ field: Filter;
4
+ };
5
+ export declare const CheckboxFilter: ({ field }: CheckboxFilterProps) => JSX.Element | null;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { CheckboxFilter } from './CheckboxFilter';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type DateRangeFilterProps = {
3
+ field: Filter;
4
+ };
5
+ export declare const DateRangeFilter: ({ field }: DateRangeFilterProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { DateRangeFilter } from './DateRangeFilter';
@@ -0,0 +1,8 @@
1
+ import { Filter } from 'src/types';
2
+ type FilterArrayFieldProps = {
3
+ data: Filter;
4
+ editedValue: string[];
5
+ setEditedValue: (value: string[]) => void;
6
+ };
7
+ export declare const FilterArrayField: ({ data, editedValue, setEditedValue }: FilterArrayFieldProps) => JSX.Element | null;
8
+ export {};
@@ -0,0 +1 @@
1
+ export { FilterArrayField } from './FilterArrayField';
@@ -0,0 +1,8 @@
1
+ import { Filter } from 'src/types';
2
+ type FilterGroupProps = {
3
+ data: Filter;
4
+ editedValue: string;
5
+ setEditedValue: (value: string) => void;
6
+ };
7
+ export declare const FilterField: ({ data, editedValue, setEditedValue }: FilterGroupProps) => JSX.Element | null;
8
+ export {};
@@ -0,0 +1 @@
1
+ export { FilterField } from './FilterField';
@@ -0,0 +1,6 @@
1
+ import { FilterGroup as FilterGroupType } from 'src/types';
2
+ type FilterGroupProps = {
3
+ data: FilterGroupType;
4
+ };
5
+ export declare const FilterGroup: ({ data }: FilterGroupProps) => JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { FilterGroup as FilterGroupComponent } from './FilterGroup';
@@ -0,0 +1,9 @@
1
+ import { Filter } from 'src/types';
2
+ import { NumberRangeFilter as NumberRangeFilterClass } from '../../../../mobx/NumberRangeFilter/NumberRangeFilter';
3
+ type FilterNumberRangeFilterProps = {
4
+ data: Filter;
5
+ editedValue?: NumberRangeFilterClass;
6
+ setEditedValue: (value: NumberRangeFilterClass) => void;
7
+ };
8
+ export declare const FilterNumberRangeFilter: ({ data, editedValue, setEditedValue }: FilterNumberRangeFilterProps) => JSX.Element | null;
9
+ export {};
@@ -0,0 +1 @@
1
+ export { FilterNumberRangeFilter } from './FilterNumberRangeFilter';
@@ -0,0 +1,7 @@
1
+ import { Filter } from 'src/types';
2
+ type MultipleFieldFilterProps = {
3
+ fields: Filter[];
4
+ groupId: string;
5
+ };
6
+ export declare const MultipleFieldFilter: ({ fields, groupId }: MultipleFieldFilterProps) => JSX.Element;
7
+ export {};
@@ -0,0 +1 @@
1
+ export { MultipleFieldFilter } from './MultipleFieldFilter';
@@ -0,0 +1,27 @@
1
+ export declare const MUISlider: import('react').ComponentType<Pick<{
2
+ 'aria-label'?: string;
3
+ 'aria-labelledby'?: string;
4
+ 'aria-valuetext'?: string;
5
+ color?: "primary" | "secondary";
6
+ defaultValue?: number | number[];
7
+ disabled?: boolean;
8
+ getAriaLabel?: (index: number) => string;
9
+ getAriaValueText?: (value: number, index: number) => string;
10
+ marks?: boolean | import('../../../../../node_modules/@material-ui/core/Slider').Mark[];
11
+ max?: number;
12
+ min?: number;
13
+ name?: string;
14
+ onChange?: (event: React.ChangeEvent<{}>, value: number | number[]) => void;
15
+ onChangeCommitted?: (event: React.ChangeEvent<{}>, value: number | number[]) => void;
16
+ orientation?: "horizontal" | "vertical";
17
+ step?: number | null;
18
+ scale?: (value: number) => number;
19
+ ThumbComponent?: React.ElementType<React.HTMLAttributes<HTMLSpanElement>>;
20
+ track?: "normal" | false | "inverted";
21
+ value?: number | number[];
22
+ ValueLabelComponent?: React.ElementType<import('../../../../../node_modules/@material-ui/core/Slider').ValueLabelProps>;
23
+ valueLabelDisplay?: "on" | "auto" | "off";
24
+ valueLabelFormat?: string | ((value: number, index: number) => React.ReactNode);
25
+ } & import('../../../../../node_modules/@material-ui/core/OverridableComponent').CommonProps<import('../../../../../node_modules/@material-ui/core/Slider').SliderTypeMap<{}, "span">> & Pick<Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "key" | keyof import('react').HTMLAttributes<HTMLSpanElement>> & {
26
+ ref?: ((instance: HTMLSpanElement | null) => void) | import('react').RefObject<HTMLSpanElement> | null | undefined;
27
+ }, "slot" | "title" | "dir" | "id" | "children" | "ref" | "key" | "placeholder" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture">, "slot" | "style" | "title" | "track" | "name" | "dir" | "value" | "id" | "children" | "ref" | "key" | "onChange" | "disabled" | "max" | "min" | "placeholder" | "step" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "scale" | "innerRef" | "getAriaLabel" | "getAriaValueText" | "marks" | "onChangeCommitted" | "orientation" | "ThumbComponent" | "ValueLabelComponent" | "valueLabelDisplay" | "valueLabelFormat"> & import('@material-ui/styles').StyledComponentProps<"track" | "root" | "thumb" | "valueLabel" | "rail">>;
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type NumberRangeFilterProps = {
3
+ field: Filter;
4
+ };
5
+ export declare const NumberRangeFilter: ({ field }: NumberRangeFilterProps) => JSX.Element | null;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { NumberRangeFilter } from './NumberRangeFilter';
@@ -0,0 +1,6 @@
1
+ import { Filter } from 'src/types';
2
+ type RadioFilterProps = {
3
+ field: Filter;
4
+ };
5
+ export declare const RadioFilter: ({ field }: RadioFilterProps) => JSX.Element | null;
6
+ export {};
@@ -0,0 +1 @@
1
+ export { RadioFilter } from './RadioFilter';
@@ -0,0 +1,13 @@
1
+ export * from './AsyncCheckboxFilter';
2
+ export * from './AsyncInlineCheckboxFilter';
3
+ export * from './AsyncInlineRadioFilter';
4
+ export * from './AsyncRadioFilter';
5
+ export * from './CheckboxFilter';
6
+ export * from './DateRangeFilter';
7
+ export * from './FilterArrayField';
8
+ export * from './FilterField';
9
+ export * from './FilterGroup';
10
+ export * from './FilterNumberRangeFilter';
11
+ export * from './MultipleFieldFilter';
12
+ export * from './NumberRangeFilter';
13
+ export * from './RadioFilter';