@importcsv/react 0.2.14 → 0.4.0

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 (314) hide show
  1. package/README.md +2 -0
  2. package/build/App.d.ts +2 -0
  3. package/build/bundled/index.esm.js +7797 -4626
  4. package/build/bundled/index.esm.js.map +1 -1
  5. package/build/bundled/index.js +58 -31
  6. package/build/bundled/index.js.map +1 -1
  7. package/build/bundled/index.umd.js +58 -31
  8. package/build/bundled/index.umd.js.map +1 -1
  9. package/build/components/CSVImporter/index.d.ts +55 -0
  10. package/build/components/CSVImporterHeadless.d.ts +46 -0
  11. package/build/components/ColumnMapper.d.ts +28 -0
  12. package/build/{preact/components → components}/Modal/index.d.ts +1 -1
  13. package/build/components/Uploader.d.ts +27 -0
  14. package/build/components/Validator.d.ts +28 -0
  15. package/build/components/__tests__/ColumnMapper.test.d.ts +1 -0
  16. package/build/components/__tests__/Uploader.test.d.ts +1 -0
  17. package/build/components/__tests__/Validator.test.d.ts +1 -0
  18. package/build/components/index.d.ts +3 -0
  19. package/build/config/index.d.ts +5 -0
  20. package/build/headless/__tests__/integration.test.d.ts +10 -0
  21. package/build/headless/__tests__/root.test.d.ts +1 -0
  22. package/build/headless/__tests__/root.types.test-d.d.ts +1 -0
  23. package/build/headless/__tests__/slot-components.test.d.ts +1 -0
  24. package/build/headless/__tests__/validator.test.d.ts +1 -0
  25. package/build/headless/back-button.d.ts +29 -0
  26. package/build/headless/index.d.ts +45 -0
  27. package/build/headless/next-button.d.ts +29 -0
  28. package/build/headless/root.d.ts +40 -0
  29. package/build/headless/submit-button.d.ts +29 -0
  30. package/build/headless/types.d.ts +52 -0
  31. package/build/headless/upload-trigger.d.ts +29 -0
  32. package/build/headless/utils/slot.d.ts +20 -0
  33. package/build/headless/utils/zodSchemaToColumns.d.ts +25 -0
  34. package/build/headless/utils/zodSchemaToColumns.test.d.ts +1 -0
  35. package/build/headless/validator.d.ts +28 -0
  36. package/build/importer/components/Box/index.d.ts +2 -0
  37. package/build/importer/components/Box/index.test.d.ts +1 -0
  38. package/build/{preact/importer → importer}/components/Box/types/index.d.ts +1 -0
  39. package/build/importer/components/Checkbox/index.d.ts +3 -0
  40. package/build/importer/components/Checkbox/index.test.d.ts +1 -0
  41. package/build/importer/components/Checkbox/types/index.d.ts +8 -0
  42. package/build/{bundled/importer → importer}/components/Errors/index.d.ts +1 -1
  43. package/build/{bundled/importer → importer}/components/Input/index.d.ts +2 -2
  44. package/build/importer/components/Input/index.test.d.ts +1 -0
  45. package/build/importer/components/Input/types/index.d.ts +24 -0
  46. package/build/importer/components/Root/index.d.ts +2 -0
  47. package/build/{bundled/importer → importer}/components/StepLayout/index.d.ts +3 -2
  48. package/build/importer/components/Stepper/hooks/useStepper.d.ts +4 -0
  49. package/build/importer/components/Stepper/hooks/useStepper.test.d.ts +1 -0
  50. package/build/importer/components/Stepper/index.d.ts +2 -0
  51. package/build/importer/components/Stepper/index.test.d.ts +1 -0
  52. package/build/{bundled/importer → importer}/components/Stepper/types/index.d.ts +3 -3
  53. package/build/{bundled/importer → importer}/components/Table/index.d.ts +2 -2
  54. package/build/{bundled/importer → importer}/components/Table/types/index.d.ts +6 -5
  55. package/build/importer/components/ToggleFilter/index.d.ts +3 -0
  56. package/build/{bundled/importer → importer}/components/Tooltip/index.d.ts +2 -2
  57. package/build/{preact/importer → importer}/components/Tooltip/types/index.d.ts +3 -3
  58. package/build/{bundled/importer → importer}/components/UploaderWrapper/NativeDropzone.d.ts +3 -2
  59. package/build/importer/components/UploaderWrapper/UploaderWrapper.d.ts +2 -0
  60. package/build/{bundled/importer → importer}/components/UploaderWrapper/types/index.d.ts +1 -1
  61. package/build/{preact/importer → importer}/components/VirtualTable/index.d.ts +3 -3
  62. package/build/importer/components/VirtualTable/index.test.d.ts +1 -0
  63. package/build/importer/components/ui/alert.d.ts +15 -0
  64. package/build/{bundled/importer → importer}/components/ui/button.d.ts +8 -5
  65. package/build/importer/components/ui/card.d.ts +20 -0
  66. package/build/importer/components/ui/checkbox.d.ts +10 -0
  67. package/build/importer/components/ui/dialog.d.ts +39 -0
  68. package/build/importer/components/ui/flex.d.ts +24 -0
  69. package/build/importer/components/ui/input.d.ts +8 -0
  70. package/build/importer/components/ui/select.d.ts +17 -0
  71. package/build/importer/components/ui/switch.d.ts +11 -0
  72. package/build/importer/components/ui/toast.d.ts +22 -0
  73. package/build/importer/components/ui/toaster.d.ts +2 -0
  74. package/build/importer/components/ui/tooltip.d.ts +25 -0
  75. package/build/{preact/importer → importer}/components/ui/use-toast.d.ts +2 -2
  76. package/build/importer/features/complete/index.d.ts +2 -0
  77. package/build/{bundled/importer → importer}/features/configure-import/index.d.ts +2 -1
  78. package/build/importer/features/main/hooks/useMutableLocalStorage.test.d.ts +1 -0
  79. package/build/{preact/importer → importer}/features/main/hooks/useStepNavigation.d.ts +1 -1
  80. package/build/importer/features/main/hooks/useStepNavigation.test.d.ts +1 -0
  81. package/build/importer/features/main/index.d.ts +2 -0
  82. package/build/{bundled/importer → importer}/features/map-columns/components/DropDownFields.d.ts +3 -2
  83. package/build/{bundled/importer → importer}/features/map-columns/hooks/useMapColumnsTable.d.ts +6 -5
  84. package/build/importer/features/map-columns/index.d.ts +3 -0
  85. package/build/{bundled/importer → importer}/features/map-columns/types/index.d.ts +2 -2
  86. package/build/{bundled/importer → importer}/features/row-selection/index.d.ts +3 -2
  87. package/build/{preact/importer → importer}/features/row-selection/types/index.d.ts +1 -1
  88. package/build/importer/features/uploader/hooks/useTemplateTable.d.ts +10 -0
  89. package/build/{bundled/importer → importer}/features/uploader/index.d.ts +2 -2
  90. package/build/{bundled/importer → importer}/features/uploader/types/index.d.ts +3 -3
  91. package/build/importer/features/validation/Validation.d.ts +3 -0
  92. package/build/importer/features/validation/__tests__/Validation.zod.test.d.ts +1 -0
  93. package/build/{bundled/importer → importer}/features/validation/components/TransformModal.d.ts +2 -1
  94. package/build/{bundled/importer → importer}/features/validation/components/TransformPanel.d.ts +2 -1
  95. package/build/{bundled/importer → importer}/features/validation/types.d.ts +5 -3
  96. package/build/importer/hooks/useClickOutside.test.d.ts +1 -0
  97. package/build/importer/hooks/useCustomStyles.test.d.ts +1 -0
  98. package/build/{bundled/importer → importer}/hooks/useEventListener.d.ts +1 -1
  99. package/build/importer/hooks/useEventListener.test.d.ts +1 -0
  100. package/build/{bundled/importer → importer}/hooks/useIsomorphicLayoutEffect.d.ts +1 -1
  101. package/build/importer/hooks/useIsomorphicLayoutEffect.test.d.ts +1 -0
  102. package/build/importer/hooks/useRect.test.d.ts +1 -0
  103. package/build/importer/hooks/useWindowSize.test.d.ts +1 -0
  104. package/build/{bundled/importer → importer}/providers/Theme.d.ts +3 -3
  105. package/build/{bundled/importer → importer}/providers/index.d.ts +3 -3
  106. package/build/{preact/importer → importer}/providers/types/index.d.ts +1 -1
  107. package/build/importer/services/api.d.ts +1 -0
  108. package/build/importer/services/mapping.test.d.ts +1 -0
  109. package/build/importer/services/transformation.test.d.ts +1 -0
  110. package/build/importer/settings/theme/index.d.ts +2 -0
  111. package/build/{preact/importer → importer}/stores/theme.d.ts +3 -3
  112. package/build/{preact/importer → importer}/theme/runtime.d.ts +4 -0
  113. package/build/importer/utils/colorUtils.test.d.ts +1 -0
  114. package/build/importer/utils/errorAnalysis.test.d.ts +1 -0
  115. package/build/{bundled/importer → importer}/utils/getStringLengthOfChildren.d.ts +1 -1
  116. package/build/importer/utils/getStringLengthOfChildren.test.d.ts +1 -0
  117. package/build/importer/utils/stringSimilarity.test.d.ts +1 -0
  118. package/build/{bundled/importer → importer}/utils/template.d.ts +1 -1
  119. package/build/importer/utils/template.test.d.ts +1 -0
  120. package/build/{preact/importer → importer}/utils/themeUtils.d.ts +4 -1
  121. package/build/importer/utils/themeUtils.test.d.ts +1 -0
  122. package/build/importer/utils/utils.test.d.ts +1 -0
  123. package/build/index.d.ts +10 -0
  124. package/build/index.dev.d.ts +1 -0
  125. package/build/js.d.ts +57 -0
  126. package/build/preact/index.esm.js +7219 -4047
  127. package/build/preact/index.esm.js.map +1 -1
  128. package/build/preact/index.js +58 -31
  129. package/build/preact/index.js.map +1 -1
  130. package/build/react/index.esm.js +7226 -4051
  131. package/build/react/index.esm.js.map +1 -1
  132. package/build/react/index.js +58 -31
  133. package/build/react/index.js.map +1 -1
  134. package/build/services/api.d.ts +50 -0
  135. package/build/services/apiClient.d.ts +55 -0
  136. package/build/{bundled/settings → settings}/defaults.d.ts +1 -1
  137. package/build/shims/react-compat-shim.d.ts +43 -0
  138. package/build/shims/react-hooks-shim.d.ts +2 -0
  139. package/build/test/helpers.d.ts +28 -0
  140. package/build/test/mocks/api.d.ts +8 -0
  141. package/build/test/mocks/localStorage.d.ts +6 -0
  142. package/build/test/setup.d.ts +1 -0
  143. package/build/{bundled/types → types}/index.d.ts +8 -3
  144. package/build/{bundled/utils → utils}/cn.d.ts +1 -1
  145. package/build/utils/cn.test.d.ts +1 -0
  146. package/package.json +35 -10
  147. package/build/bundled/components/CSVImporter/index.d.ts +0 -5
  148. package/build/bundled/components/Modal/index.d.ts +0 -12
  149. package/build/bundled/importer/components/Box/index.d.ts +0 -2
  150. package/build/bundled/importer/components/Box/types/index.d.ts +0 -5
  151. package/build/bundled/importer/components/Checkbox/index.d.ts +0 -2
  152. package/build/bundled/importer/components/Checkbox/types/index.d.ts +0 -4
  153. package/build/bundled/importer/components/Input/types/index.d.ts +0 -18
  154. package/build/bundled/importer/components/Root/index.d.ts +0 -10
  155. package/build/bundled/importer/components/Stepper/hooks/useStepper.d.ts +0 -2
  156. package/build/bundled/importer/components/Stepper/index.d.ts +0 -2
  157. package/build/bundled/importer/components/ToggleFilter/index.d.ts +0 -3
  158. package/build/bundled/importer/components/Tooltip/types/index.d.ts +0 -11
  159. package/build/bundled/importer/components/UploaderWrapper/UploaderWrapper.d.ts +0 -2
  160. package/build/bundled/importer/components/VirtualTable/index.d.ts +0 -17
  161. package/build/bundled/importer/components/ui/alert.d.ts +0 -13
  162. package/build/bundled/importer/components/ui/card.d.ts +0 -19
  163. package/build/bundled/importer/components/ui/checkbox.d.ts +0 -7
  164. package/build/bundled/importer/components/ui/dialog.d.ts +0 -38
  165. package/build/bundled/importer/components/ui/flex.d.ts +0 -23
  166. package/build/bundled/importer/components/ui/input.d.ts +0 -6
  167. package/build/bundled/importer/components/ui/select.d.ts +0 -13
  168. package/build/bundled/importer/components/ui/switch.d.ts +0 -7
  169. package/build/bundled/importer/components/ui/toast.d.ts +0 -22
  170. package/build/bundled/importer/components/ui/toaster.d.ts +0 -1
  171. package/build/bundled/importer/components/ui/tooltip.d.ts +0 -24
  172. package/build/bundled/importer/components/ui/use-toast.d.ts +0 -46
  173. package/build/bundled/importer/features/complete/index.d.ts +0 -2
  174. package/build/bundled/importer/features/main/hooks/useStepNavigation.d.ts +0 -17
  175. package/build/bundled/importer/features/main/index.d.ts +0 -2
  176. package/build/bundled/importer/features/map-columns/index.d.ts +0 -2
  177. package/build/bundled/importer/features/row-selection/types/index.d.ts +0 -8
  178. package/build/bundled/importer/features/uploader/hooks/useTemplateTable.d.ts +0 -10
  179. package/build/bundled/importer/features/validation/Validation.d.ts +0 -2
  180. package/build/bundled/importer/providers/types/index.d.ts +0 -10
  181. package/build/bundled/importer/settings/theme/index.d.ts +0 -2
  182. package/build/bundled/importer/stores/theme.d.ts +0 -17
  183. package/build/bundled/importer/theme/runtime.d.ts +0 -62
  184. package/build/bundled/importer/utils/themeUtils.d.ts +0 -21
  185. package/build/bundled/index.d.ts +0 -5
  186. package/build/bundled/js.d.ts +0 -12
  187. package/build/preact/bundled-styles.d.ts +0 -1
  188. package/build/preact/components/CSVImporter/index.d.ts +0 -5
  189. package/build/preact/i18n/de.d.ts +0 -32
  190. package/build/preact/i18n/es.d.ts +0 -32
  191. package/build/preact/i18n/fr.d.ts +0 -32
  192. package/build/preact/i18n/i18n.d.ts +0 -6
  193. package/build/preact/i18n/it.d.ts +0 -32
  194. package/build/preact/i18n/useTranslation.d.ts +0 -9
  195. package/build/preact/importer/components/Box/index.d.ts +0 -2
  196. package/build/preact/importer/components/Checkbox/index.d.ts +0 -2
  197. package/build/preact/importer/components/Checkbox/types/index.d.ts +0 -4
  198. package/build/preact/importer/components/Errors/index.d.ts +0 -4
  199. package/build/preact/importer/components/Input/index.d.ts +0 -2
  200. package/build/preact/importer/components/Input/types/index.d.ts +0 -18
  201. package/build/preact/importer/components/Root/index.d.ts +0 -10
  202. package/build/preact/importer/components/StepLayout/index.d.ts +0 -18
  203. package/build/preact/importer/components/Stepper/hooks/useStepper.d.ts +0 -2
  204. package/build/preact/importer/components/Stepper/index.d.ts +0 -2
  205. package/build/preact/importer/components/Stepper/types/index.d.ts +0 -14
  206. package/build/preact/importer/components/Table/index.d.ts +0 -9
  207. package/build/preact/importer/components/Table/types/index.d.ts +0 -42
  208. package/build/preact/importer/components/ToggleFilter/index.d.ts +0 -3
  209. package/build/preact/importer/components/ToggleFilter/types/index.d.ts +0 -11
  210. package/build/preact/importer/components/Tooltip/index.d.ts +0 -2
  211. package/build/preact/importer/components/UploaderWrapper/NativeDropzone.d.ts +0 -11
  212. package/build/preact/importer/components/UploaderWrapper/UploaderWrapper.d.ts +0 -2
  213. package/build/preact/importer/components/UploaderWrapper/types/index.d.ts +0 -2
  214. package/build/preact/importer/components/ui/alert.d.ts +0 -13
  215. package/build/preact/importer/components/ui/button.d.ts +0 -12
  216. package/build/preact/importer/components/ui/card.d.ts +0 -19
  217. package/build/preact/importer/components/ui/checkbox.d.ts +0 -7
  218. package/build/preact/importer/components/ui/dialog.d.ts +0 -38
  219. package/build/preact/importer/components/ui/flex.d.ts +0 -23
  220. package/build/preact/importer/components/ui/input.d.ts +0 -6
  221. package/build/preact/importer/components/ui/select.d.ts +0 -13
  222. package/build/preact/importer/components/ui/switch.d.ts +0 -7
  223. package/build/preact/importer/components/ui/toast.d.ts +0 -22
  224. package/build/preact/importer/components/ui/toaster.d.ts +0 -1
  225. package/build/preact/importer/components/ui/tooltip.d.ts +0 -24
  226. package/build/preact/importer/features/complete/index.d.ts +0 -2
  227. package/build/preact/importer/features/complete/types/index.d.ts +0 -5
  228. package/build/preact/importer/features/configure-import/index.d.ts +0 -13
  229. package/build/preact/importer/features/configure-import/types/index.d.ts +0 -13
  230. package/build/preact/importer/features/main/hooks/useMutableLocalStorage.d.ts +0 -1
  231. package/build/preact/importer/features/main/index.d.ts +0 -2
  232. package/build/preact/importer/features/main/types/index.d.ts +0 -16
  233. package/build/preact/importer/features/map-columns/components/DropDownFields.d.ts +0 -21
  234. package/build/preact/importer/features/map-columns/hooks/useMapColumnsTable.d.ts +0 -16
  235. package/build/preact/importer/features/map-columns/index.d.ts +0 -2
  236. package/build/preact/importer/features/map-columns/types/index.d.ts +0 -16
  237. package/build/preact/importer/features/row-selection/index.d.ts +0 -2
  238. package/build/preact/importer/features/uploader/hooks/useTemplateTable.d.ts +0 -10
  239. package/build/preact/importer/features/uploader/index.d.ts +0 -2
  240. package/build/preact/importer/features/uploader/types/index.d.ts +0 -9
  241. package/build/preact/importer/features/validation/Validation.d.ts +0 -2
  242. package/build/preact/importer/features/validation/components/TransformModal.d.ts +0 -18
  243. package/build/preact/importer/features/validation/components/TransformPanel.d.ts +0 -18
  244. package/build/preact/importer/features/validation/index.d.ts +0 -1
  245. package/build/preact/importer/features/validation/types.d.ts +0 -32
  246. package/build/preact/importer/hooks/useClickOutside.d.ts +0 -1
  247. package/build/preact/importer/hooks/useCustomStyles.d.ts +0 -1
  248. package/build/preact/importer/hooks/useEventListener.d.ts +0 -4
  249. package/build/preact/importer/hooks/useIsomorphicLayoutEffect.d.ts +0 -3
  250. package/build/preact/importer/hooks/useRect.d.ts +0 -12
  251. package/build/preact/importer/hooks/useWindowSize.d.ts +0 -1
  252. package/build/preact/importer/providers/Theme.d.ts +0 -10
  253. package/build/preact/importer/providers/index.d.ts +0 -5
  254. package/build/preact/importer/services/mapping.d.ts +0 -31
  255. package/build/preact/importer/services/transformation.d.ts +0 -70
  256. package/build/preact/importer/settings/theme/colors.d.ts +0 -4
  257. package/build/preact/importer/settings/theme/index.d.ts +0 -2
  258. package/build/preact/importer/settings/theme/sizes.d.ts +0 -7
  259. package/build/preact/importer/theme/index.d.ts +0 -8
  260. package/build/preact/importer/theme/presets.d.ts +0 -314
  261. package/build/preact/importer/theme/styles.d.ts +0 -120
  262. package/build/preact/importer/types/index.d.ts +0 -9
  263. package/build/preact/importer/utils/colorUtils.d.ts +0 -48
  264. package/build/preact/importer/utils/errorAnalysis.d.ts +0 -25
  265. package/build/preact/importer/utils/getStringLengthOfChildren.d.ts +0 -2
  266. package/build/preact/importer/utils/stringSimilarity.d.ts +0 -1
  267. package/build/preact/importer/utils/template.d.ts +0 -2
  268. package/build/preact/importer/utils/utils.d.ts +0 -19
  269. package/build/preact/index.d.ts +0 -5
  270. package/build/preact/js.d.ts +0 -12
  271. package/build/preact/settings/defaults.d.ts +0 -3
  272. package/build/preact/styles.d.ts +0 -1
  273. package/build/preact/types/index.d.ts +0 -132
  274. package/build/preact/types/theme.d.ts +0 -153
  275. package/build/preact/utils/cn.d.ts +0 -6
  276. package/build/preact/validation/transformationStages.d.ts +0 -26
  277. package/build/preact/validation/transformer.d.ts +0 -17
  278. package/build/preact/validation/validator.d.ts +0 -23
  279. /package/build/{bundled/bundled-styles.d.ts → bundled-styles.d.ts} +0 -0
  280. /package/build/{bundled/importer/services/api.d.ts → components/CSVImporter/index.test.d.ts} +0 -0
  281. /package/build/{preact/importer/services/api.d.ts → components/__tests__/CSVImporterHeadless.test.d.ts} +0 -0
  282. /package/build/{bundled/i18n → i18n}/de.d.ts +0 -0
  283. /package/build/{bundled/i18n → i18n}/es.d.ts +0 -0
  284. /package/build/{bundled/i18n → i18n}/fr.d.ts +0 -0
  285. /package/build/{bundled/i18n → i18n}/i18n.d.ts +0 -0
  286. /package/build/{bundled/i18n → i18n}/it.d.ts +0 -0
  287. /package/build/{bundled/i18n → i18n}/useTranslation.d.ts +0 -0
  288. /package/build/{bundled/importer → importer}/components/ToggleFilter/types/index.d.ts +0 -0
  289. /package/build/{bundled/importer → importer}/features/complete/types/index.d.ts +0 -0
  290. /package/build/{bundled/importer → importer}/features/configure-import/types/index.d.ts +0 -0
  291. /package/build/{bundled/importer → importer}/features/main/hooks/useMutableLocalStorage.d.ts +0 -0
  292. /package/build/{bundled/importer → importer}/features/main/types/index.d.ts +0 -0
  293. /package/build/{bundled/importer → importer}/features/validation/index.d.ts +0 -0
  294. /package/build/{bundled/importer → importer}/hooks/useClickOutside.d.ts +0 -0
  295. /package/build/{bundled/importer → importer}/hooks/useCustomStyles.d.ts +0 -0
  296. /package/build/{bundled/importer → importer}/hooks/useRect.d.ts +0 -0
  297. /package/build/{bundled/importer → importer}/hooks/useWindowSize.d.ts +0 -0
  298. /package/build/{bundled/importer → importer}/services/mapping.d.ts +0 -0
  299. /package/build/{bundled/importer → importer}/services/transformation.d.ts +0 -0
  300. /package/build/{bundled/importer → importer}/settings/theme/colors.d.ts +0 -0
  301. /package/build/{bundled/importer → importer}/settings/theme/sizes.d.ts +0 -0
  302. /package/build/{bundled/importer → importer}/theme/index.d.ts +0 -0
  303. /package/build/{bundled/importer → importer}/theme/presets.d.ts +0 -0
  304. /package/build/{bundled/importer → importer}/theme/styles.d.ts +0 -0
  305. /package/build/{bundled/importer → importer}/types/index.d.ts +0 -0
  306. /package/build/{bundled/importer → importer}/utils/colorUtils.d.ts +0 -0
  307. /package/build/{bundled/importer → importer}/utils/errorAnalysis.d.ts +0 -0
  308. /package/build/{bundled/importer → importer}/utils/stringSimilarity.d.ts +0 -0
  309. /package/build/{bundled/importer → importer}/utils/utils.d.ts +0 -0
  310. /package/build/{bundled/styles.d.ts → styles.d.ts} +0 -0
  311. /package/build/{bundled/types → types}/theme.d.ts +0 -0
  312. /package/build/{bundled/validation → validation}/transformationStages.d.ts +0 -0
  313. /package/build/{bundled/validation → validation}/transformer.d.ts +0 -0
  314. /package/build/{bundled/validation → validation}/validator.d.ts +0 -0
@@ -1,4 +0,0 @@
1
- import { InputHTMLAttributes, ReactElement } from 'preact/hooks';
2
- export type CheckboxProps = InputHTMLAttributes<HTMLInputElement> & {
3
- label?: string | ReactElement;
4
- };
@@ -1,4 +0,0 @@
1
- export default function Errors({ error, centered }: {
2
- error?: unknown;
3
- centered?: boolean;
4
- }): import("react/jsx-runtime").JSX.Element | null;
@@ -1,2 +0,0 @@
1
- import { InputProps } from './types';
2
- export default function Input({ as, label, icon, iconAfter, error, options, className, variants, children, ...props }: InputProps): import("react/jsx-runtime").JSX.Element;
@@ -1,18 +0,0 @@
1
- import { ButtonHTMLAttributes, InputHTMLAttributes, ReactElement } from 'preact/hooks';
2
- export type inputTypes = "date" | "datetime-local" | "email" | "file" | "month" | "number" | "password" | "search" | "tel" | "text" | "time" | "url" | "week";
3
- export type InputVariants = "fluid" | "small";
4
- export type InputOption = ButtonHTMLAttributes<HTMLButtonElement> & {
5
- required?: boolean;
6
- };
7
- export type InputProps = InputHTMLAttributes<HTMLInputElement> & InputHTMLAttributes<HTMLSelectElement> & InputHTMLAttributes<HTMLTextAreaElement> & {
8
- as?: "input" | "textarea";
9
- label?: string | ReactElement;
10
- icon?: ReactElement;
11
- iconAfter?: ReactElement;
12
- error?: string;
13
- options?: {
14
- [key: string]: InputOption;
15
- };
16
- variants?: InputVariants[];
17
- type?: inputTypes;
18
- };
@@ -1,10 +0,0 @@
1
- import { ComponentChildren } from 'preact';
2
- interface RootProps {
3
- children?: ComponentChildren;
4
- className?: string;
5
- primaryColor?: string;
6
- }
7
- declare const _default: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<RootProps> & {
8
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
9
- }>;
10
- export default _default;
@@ -1,18 +0,0 @@
1
- import { ComponentChildren } from 'preact';
2
- interface StepLayoutProps {
3
- title?: string;
4
- subtitle?: string;
5
- children: ComponentChildren;
6
- headerContent?: ComponentChildren;
7
- footerContent?: ComponentChildren;
8
- showHeader?: boolean;
9
- showFooter?: boolean;
10
- className?: string;
11
- contentClassName?: string;
12
- }
13
- /**
14
- * Consistent layout wrapper for all importer steps
15
- * Ensures uniform spacing, typography, and structure
16
- */
17
- export default function StepLayout({ title, subtitle, children, headerContent, footerContent, showHeader, showFooter, className, contentClassName, }: StepLayoutProps): import("react/jsx-runtime").JSX.Element;
18
- export {};
@@ -1,2 +0,0 @@
1
- import { Step, StepperProps } from '../types';
2
- export default function useStepper(steps: Step[], initialStep: number | undefined, skipHeader: boolean): StepperProps;
@@ -1,2 +0,0 @@
1
- import { StepperProps } from './types';
2
- export default function Stepper({ steps, current, hide, skipHeader }: StepperProps): import("react/jsx-runtime").JSX.Element | null;
@@ -1,14 +0,0 @@
1
- export type Step = {
2
- label: string;
3
- id?: string | number;
4
- disabled?: boolean;
5
- };
6
- export type StepperProps = {
7
- steps: Step[];
8
- current: number;
9
- setCurrent: (step: number) => void;
10
- step: Step;
11
- clickable?: boolean;
12
- skipHeader: boolean;
13
- hide?: boolean;
14
- };
@@ -1,9 +0,0 @@
1
- import { JSX } from 'preact';
2
- import { TableProps } from './types';
3
- export default function Table({ data, // An array of objects with the data to be displayed
4
- keyAsId, // Has to be a unique property in the data array to be used as key
5
- theme, // A CSS module object to style the table
6
- mergeThemes, // Should 'theme' be the only style applied (false) or be merged with the default style (true)
7
- highlightColumns, // Columns that should use the highlighted style
8
- hideColumns, // Array of columns to be hidden in the display
9
- emptyState, heading, background, columnWidths, columnAlignments, fixHeader, onRowClick, }: TableProps): JSX.Element;
@@ -1,42 +0,0 @@
1
- import { JSX } from 'preact';
2
- type Style = {
3
- readonly [key: string]: string;
4
- };
5
- type Primitive = string | number | boolean | null | undefined;
6
- export type TableComposite = {
7
- raw: Primitive;
8
- content: Primitive | JSX.Element;
9
- tooltip?: string;
10
- captionInfo?: string;
11
- };
12
- export type TableValue = Primitive | TableComposite;
13
- export type TableDatum = {
14
- [key: string]: TableValue;
15
- };
16
- export type TableData = TableDatum[];
17
- export type TableProps = {
18
- data: TableData;
19
- keyAsId?: string;
20
- theme?: Style;
21
- mergeThemes?: boolean;
22
- highlightColumns?: string[];
23
- hideColumns?: string[];
24
- emptyState?: ReactElement;
25
- heading?: ReactElement;
26
- background?: "zebra" | "dark" | "light" | "transparent";
27
- columnWidths?: string[];
28
- columnAlignments?: ("left" | "center" | "right" | "")[];
29
- fixHeader?: boolean;
30
- onRowClick?: (row: TableDatum) => void;
31
- };
32
- export type RowProps = {
33
- datum: TableDatum;
34
- isHeading?: boolean;
35
- onClick?: (row: TableDatum) => void;
36
- };
37
- export type CellProps = PropsWithChildren<{
38
- cellClass?: string;
39
- cellStyle: Style;
40
- tooltip?: string;
41
- }>;
42
- export {};
@@ -1,3 +0,0 @@
1
- import { ToggleFilterProps } from './types';
2
- declare function ToggleFilter({ options, onChange, className }: ToggleFilterProps): import("react/jsx-runtime").JSX.Element;
3
- export default ToggleFilter;
@@ -1,11 +0,0 @@
1
- export interface Option {
2
- label: string;
3
- filterValue: string;
4
- selected: boolean;
5
- color?: string;
6
- }
7
- export interface ToggleFilterProps {
8
- options: Option[];
9
- className?: string;
10
- onChange: (option: string) => void;
11
- }
@@ -1,2 +0,0 @@
1
- import { AsMap, TooltipProps } from './types';
2
- export default function Tooltip<T extends keyof AsMap>({ as, className, title, children, icon, ...props }: TooltipProps<T>): import("react/jsx-runtime").JSX.Element;
@@ -1,11 +0,0 @@
1
- import { ComponentChildren } from 'preact';
2
- interface NativeDropzoneProps {
3
- onFileSelect: (file: File) => void;
4
- accept?: Record<string, string[]>;
5
- disabled?: boolean;
6
- loading?: boolean;
7
- className?: string;
8
- children?: ComponentChildren;
9
- }
10
- export default function NativeDropzone({ onFileSelect, accept, disabled, loading, className, children }: NativeDropzoneProps): import("react/jsx-runtime").JSX.Element;
11
- export {};
@@ -1,2 +0,0 @@
1
- import { UploaderWrapperProps } from './types';
2
- export default function UploaderWrapper({ onSuccess, setDataError, ...props }: UploaderWrapperProps): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +0,0 @@
1
- import { UploaderProps } from '../../../features/uploader/types';
2
- export type UploaderWrapperProps = Omit<UploaderProps, "template"> & {};
@@ -1,13 +0,0 @@
1
- import { VariantProps } from 'class-variance-authority';
2
- declare const Alert: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
3
- variant?: "default" | "destructive" | null | undefined;
4
- } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string>> & {
5
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
6
- }>;
7
- declare const AlertTitle: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLHeadingElement>> & {
8
- ref?: import('preact').Ref<HTMLParagraphElement> | undefined;
9
- }>;
10
- declare const AlertDescription: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLParagraphElement>> & {
11
- ref?: import('preact').Ref<HTMLParagraphElement> | undefined;
12
- }>;
13
- export { Alert, AlertTitle, AlertDescription };
@@ -1,12 +0,0 @@
1
- import { VariantProps } from 'class-variance-authority';
2
- declare const buttonVariants: (props?: ({
3
- variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
4
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
5
- } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
6
- export interface ButtonProps extends JSX.HTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
7
- isLoading?: boolean;
8
- }
9
- declare const Button: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<ButtonProps> & {
10
- ref?: import('preact').Ref<HTMLButtonElement> | undefined;
11
- }>;
12
- export { Button, buttonVariants };
@@ -1,19 +0,0 @@
1
- declare const Card: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement>> & {
2
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
3
- }>;
4
- declare const CardHeader: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement>> & {
5
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
6
- }>;
7
- declare const CardTitle: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLHeadingElement>> & {
8
- ref?: import('preact').Ref<HTMLParagraphElement> | undefined;
9
- }>;
10
- declare const CardDescription: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLParagraphElement>> & {
11
- ref?: import('preact').Ref<HTMLParagraphElement> | undefined;
12
- }>;
13
- declare const CardContent: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement>> & {
14
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
15
- }>;
16
- declare const CardFooter: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement>> & {
17
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
18
- }>;
19
- export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent };
@@ -1,7 +0,0 @@
1
- export interface CheckboxProps extends JSX.HTMLAttributes<HTMLInputElement> {
2
- onCheckedChange?: (checked: boolean) => void;
3
- }
4
- declare const Checkbox: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<CheckboxProps> & {
5
- ref?: import('preact').Ref<HTMLInputElement> | undefined;
6
- }>;
7
- export { Checkbox };
@@ -1,38 +0,0 @@
1
- import { h, ComponentChildren, JSX } from 'preact';
2
- interface DialogProps {
3
- open?: boolean;
4
- onOpenChange?: (open: boolean) => void;
5
- children: ComponentChildren;
6
- }
7
- declare const Dialog: ({ open, onOpenChange, children }: DialogProps) => import("react/jsx-runtime").JSX.Element;
8
- declare const DialogTrigger: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLButtonElement>> & {
9
- ref?: import('preact').Ref<HTMLButtonElement> | undefined;
10
- }>;
11
- interface DialogContentProps extends JSX.HTMLAttributes<HTMLDialogElement> {
12
- onClose?: () => void;
13
- }
14
- declare const DialogContent: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<DialogContentProps> & {
15
- ref?: import('preact').Ref<HTMLDialogElement> | undefined;
16
- }>;
17
- declare const DialogHeader: {
18
- ({ className, ...props }: JSX.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
19
- displayName: string;
20
- };
21
- declare const DialogFooter: {
22
- ({ className, ...props }: JSX.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
23
- displayName: string;
24
- };
25
- declare const DialogTitle: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLHeadingElement>> & {
26
- ref?: import('preact').Ref<HTMLHeadingElement> | undefined;
27
- }>;
28
- declare const DialogDescription: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLParagraphElement>> & {
29
- ref?: import('preact').Ref<HTMLParagraphElement> | undefined;
30
- }>;
31
- declare const DialogPortal: ({ children }: {
32
- children: ComponentChildren;
33
- }) => ComponentChildren;
34
- declare const DialogOverlay: () => null;
35
- declare const DialogClose: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLButtonElement>> & {
36
- ref?: import('preact').Ref<HTMLButtonElement> | undefined;
37
- }>;
38
- export { Dialog, DialogPortal, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, };
@@ -1,23 +0,0 @@
1
- interface FlexProps extends JSX.HTMLAttributes<HTMLDivElement> {
2
- direction?: "row" | "column" | "row-reverse" | "column-reverse";
3
- align?: "start" | "center" | "end" | "stretch" | "baseline";
4
- justify?: "start" | "center" | "end" | "between" | "around" | "evenly";
5
- wrap?: boolean;
6
- gap?: number | string;
7
- }
8
- declare const Flex: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<FlexProps> & {
9
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
10
- }>;
11
- declare const Box: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement>> & {
12
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
13
- }>;
14
- declare const HStack: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<Omit<FlexProps, "direction">> & {
15
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
16
- }>;
17
- declare const VStack: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<Omit<FlexProps, "direction">> & {
18
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
19
- }>;
20
- declare const Text: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement>> & {
21
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
22
- }>;
23
- export { Flex, Box, HStack, VStack, Text };
@@ -1,6 +0,0 @@
1
- export interface InputProps extends JSX.HTMLAttributes<HTMLInputElement> {
2
- }
3
- declare const Input: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<InputProps> & {
4
- ref?: import('preact').Ref<HTMLInputElement> | undefined;
5
- }>;
6
- export { Input };
@@ -1,13 +0,0 @@
1
- interface SelectProps extends JSX.SelectHTMLAttributes<HTMLSelectElement> {
2
- placeholder?: string;
3
- options?: Array<{
4
- value: string;
5
- label: string;
6
- disabled?: boolean;
7
- }>;
8
- onValueChange?: (value: string) => void;
9
- }
10
- declare const Select: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<SelectProps> & {
11
- ref?: import('preact').Ref<HTMLSelectElement> | undefined;
12
- }>;
13
- export { Select };
@@ -1,7 +0,0 @@
1
- export interface SwitchProps extends Omit<JSX.HTMLAttributes<HTMLInputElement>, 'type'> {
2
- onCheckedChange?: (checked: boolean) => void;
3
- }
4
- declare const Switch: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<SwitchProps> & {
5
- ref?: import('preact').Ref<HTMLInputElement> | undefined;
6
- }>;
7
- export { Switch };
@@ -1,22 +0,0 @@
1
- import { h, JSX } from 'preact';
2
- export interface ToastProps extends JSX.HTMLAttributes<HTMLDivElement> {
3
- variant?: 'default' | 'destructive';
4
- onClose?: () => void;
5
- }
6
- declare const Toast: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<ToastProps> & {
7
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
8
- }>;
9
- declare const ToastAction: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLButtonElement>> & {
10
- ref?: import('preact').Ref<HTMLButtonElement> | undefined;
11
- }>;
12
- declare const ToastClose: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLButtonElement>> & {
13
- ref?: import('preact').Ref<HTMLButtonElement> | undefined;
14
- }>;
15
- declare const ToastTitle: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLDivElement>> & {
16
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
17
- }>;
18
- declare const ToastDescription: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<h.JSX.HTMLAttributes<HTMLDivElement>> & {
19
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
20
- }>;
21
- type ToastActionElement = JSX.Element<typeof ToastAction>;
22
- export { Toast, ToastAction, ToastClose, ToastTitle, ToastDescription, type ToastActionElement, };
@@ -1 +0,0 @@
1
- export declare function Toaster(): import("react/jsx-runtime").JSX.Element;
@@ -1,24 +0,0 @@
1
- import { ComponentChildren } from 'preact';
2
- interface TooltipProps {
3
- content: ComponentChildren;
4
- children: ComponentChildren;
5
- delayDuration?: number;
6
- side?: 'top' | 'bottom' | 'left' | 'right';
7
- className?: string;
8
- }
9
- declare const Tooltip: ({ content, children, delayDuration, side, className }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
10
- declare const TooltipProvider: ({ children }: {
11
- children: ComponentChildren;
12
- }) => import("react/jsx-runtime").JSX.Element;
13
- declare const TooltipRoot: ({ content, children, delayDuration, side, className }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
14
- declare const TooltipTrigger: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement> & {
15
- asChild?: boolean | undefined;
16
- }> & {
17
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
18
- }>;
19
- declare const TooltipContent: import('preact').FunctionalComponent<import('preact/compat').PropsWithoutRef<JSX.HTMLAttributes<HTMLDivElement> & {
20
- sideOffset?: number | undefined;
21
- }> & {
22
- ref?: import('preact').Ref<HTMLDivElement> | undefined;
23
- }>;
24
- export { Tooltip, TooltipRoot, TooltipTrigger, TooltipContent, TooltipProvider };
@@ -1,2 +0,0 @@
1
- import { CompleteProps } from './types';
2
- export default function Complete({ reload, close, isModal }: CompleteProps): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +0,0 @@
1
- export type CompleteProps = {
2
- reload: () => void;
3
- close: () => void;
4
- isModal: boolean;
5
- };
@@ -1,13 +0,0 @@
1
- import { Column, ColumnMappingDictionary } from '../../../types';
2
- interface ConfigureImportProps {
3
- columns?: Column[];
4
- data: any;
5
- onSuccess: (mapping: ColumnMappingDictionary, headerRow: number) => void;
6
- onCancel?: () => void;
7
- isSubmitting?: boolean;
8
- importerKey?: string;
9
- backendUrl?: string;
10
- isDemoMode?: boolean;
11
- }
12
- export default function ConfigureImport({ columns, data, onSuccess, onCancel, isSubmitting, importerKey, backendUrl, isDemoMode, }: ConfigureImportProps): import("react/jsx-runtime").JSX.Element;
13
- export {};
@@ -1,13 +0,0 @@
1
- import { Template } from '../../../types';
2
- import { ColumnMapping, ColumnMappingDictionary } from '../../../../types';
3
- export interface ConfigureImportProps {
4
- template: Template;
5
- data: any;
6
- onSuccess: (mapping: ColumnMappingDictionary, headerRow: number) => void;
7
- onCancel?: () => void;
8
- isSubmitting?: boolean;
9
- importerKey?: string;
10
- backendUrl?: string;
11
- isDemoMode?: boolean;
12
- }
13
- export type { ColumnMapping, ColumnMappingDictionary };
@@ -1 +0,0 @@
1
- export default function useMutableLocalStorage(key: string, initialValue: any): any[];
@@ -1,2 +0,0 @@
1
- import { CSVImporterProps } from '../../../types';
2
- export default function Main(props: CSVImporterProps): import("react/jsx-runtime").JSX.Element;
@@ -1,16 +0,0 @@
1
- export declare enum Steps {
2
- Upload = "upload",
3
- RowSelection = "row-selection",
4
- MapColumns = "map-columns",
5
- Validation = "validation"
6
- }
7
- export type FileRow = {
8
- index: number;
9
- values: string[];
10
- };
11
- export type FileData = {
12
- fileName: string;
13
- rows: FileRow[];
14
- sheetList: string[];
15
- errors: string[];
16
- };
@@ -1,21 +0,0 @@
1
- import { InputOption } from '../../../components/Input/types';
2
- type DropdownFieldsProps = {
3
- options: {
4
- [key: string]: InputOption;
5
- };
6
- value: string;
7
- placeholder: string;
8
- onChange: (value: string) => void;
9
- selectedValues: {
10
- id?: string;
11
- key?: string;
12
- selected: boolean | undefined;
13
- }[];
14
- updateSelectedValues: (updatedValues: {
15
- id?: string;
16
- key?: string;
17
- selected: boolean | undefined;
18
- }[]) => void;
19
- };
20
- export default function DropdownFields({ options, value, placeholder, onChange, selectedValues, updateSelectedValues }: DropdownFieldsProps): import("react/jsx-runtime").JSX.Element;
21
- export {};
@@ -1,16 +0,0 @@
1
- import { UploadColumn } from '../../../types';
2
- import { Column } from '../../../../types';
3
- import { TemplateColumnMapping } from '../types';
4
- export default function useMapColumnsTable(uploadColumns: UploadColumn[], templateColumns: Column[] | undefined, columnsValues: {
5
- [uploadColumnIndex: number]: TemplateColumnMapping;
6
- }, isLoading?: boolean, importerKey?: string, backendUrl?: string): {
7
- rows: {
8
- [x: string]: {
9
- raw: string | boolean;
10
- content: string | import("react/jsx-runtime").JSX.Element;
11
- };
12
- }[];
13
- formValues: {
14
- [key: number]: import('../types').ColumnMapping;
15
- };
16
- };
@@ -1,2 +0,0 @@
1
- import { MapColumnsProps } from './types';
2
- export default function MapColumns({ columns, data, columnMapping, selectedHeaderRow, skipHeaderRowSelection, onSuccess, onCancel, isSubmitting, importerKey, backendUrl, }: MapColumnsProps): import("react/jsx-runtime").JSX.Element | null;
@@ -1,16 +0,0 @@
1
- import { Column, ColumnMapping, ColumnMappingDictionary } from '../../../../types';
2
- import { FileData } from '../../main/types';
3
- export type { ColumnMapping, ColumnMappingDictionary };
4
- export type TemplateColumnMapping = ColumnMapping;
5
- export type MapColumnsProps = {
6
- columns?: Column[];
7
- data: FileData;
8
- columnMapping: ColumnMappingDictionary;
9
- selectedHeaderRow: number | null;
10
- skipHeaderRowSelection?: boolean;
11
- onSuccess: (columnMapping: ColumnMappingDictionary) => void;
12
- onCancel: () => void;
13
- isSubmitting: boolean;
14
- importerKey?: string;
15
- backendUrl?: string;
16
- };
@@ -1,2 +0,0 @@
1
- import { RowSelectionProps } from './types';
2
- export default function RowSelection({ data, onSuccess, onCancel, selectedHeaderRow, setSelectedHeaderRow }: RowSelectionProps): import("react/jsx-runtime").JSX.Element;
@@ -1,10 +0,0 @@
1
- import { Column } from '../../../../types';
2
- export default function useTemplateTable(fields?: Column[]): {
3
- [x: string]: string | {
4
- raw: string;
5
- content: import("react/jsx-runtime").JSX.Element;
6
- } | {
7
- raw: number;
8
- content: import("react/jsx-runtime").JSX.Element;
9
- };
10
- }[];
@@ -1,2 +0,0 @@
1
- import { UploaderProps } from './types';
2
- export default function Uploader({ columns, skipHeaderRowSelection, onSuccess, showDownloadTemplateButton, setDataError }: UploaderProps): import("react/jsx-runtime").JSX.Element;
@@ -1,9 +0,0 @@
1
- import { Column } from '../../../../types';
2
- import { Dispatch, SetStateAction } from 'preact/hooks';
3
- export type UploaderProps = {
4
- columns?: Column[];
5
- skipHeaderRowSelection: boolean;
6
- onSuccess: (file: File) => void;
7
- showDownloadTemplateButton?: boolean;
8
- setDataError: Dispatch<SetStateAction<string | null>>;
9
- };
@@ -1,2 +0,0 @@
1
- import { ValidationProps } from './types';
2
- export default function Validation({ columns, data: fileData, columnMapping, selectedHeaderRow, onSuccess, onCancel, isSubmitting, backendUrl, importerKey, filterInvalidRows, disableOnInvalidRows, }: ValidationProps): import("react/jsx-runtime").JSX.Element;
@@ -1,18 +0,0 @@
1
- import { TransformationChange } from '../../../services/transformation';
2
- interface TransformModalProps {
3
- isOpen: boolean;
4
- onClose: () => void;
5
- data: any[];
6
- columnMapping: Record<string, any>;
7
- backendUrl: string;
8
- importerKey: string;
9
- validationErrors?: Array<{
10
- rowIndex: number;
11
- columnKey: string;
12
- message: string;
13
- value?: any;
14
- }>;
15
- onApplyTransformations: (changes: TransformationChange[]) => void;
16
- }
17
- export default function TransformModal({ isOpen, onClose, data, columnMapping, backendUrl, importerKey, validationErrors, onApplyTransformations }: TransformModalProps): import("react/jsx-runtime").JSX.Element;
18
- export {};
@@ -1,18 +0,0 @@
1
- import { TransformationChange } from '../../../services/transformation';
2
- interface TransformPanelProps {
3
- isOpen: boolean;
4
- onClose: () => void;
5
- data: any[];
6
- columnMapping: Record<string, any>;
7
- backendUrl: string;
8
- importerKey: string;
9
- validationErrors?: Array<{
10
- rowIndex: number;
11
- columnKey: string;
12
- message: string;
13
- value?: any;
14
- }>;
15
- onApplyTransformations: (changes: TransformationChange[]) => void;
16
- }
17
- export default function TransformPanel({ isOpen, onClose, data, columnMapping, backendUrl, importerKey, validationErrors, onApplyTransformations }: TransformPanelProps): import("react/jsx-runtime").JSX.Element | null;
18
- export {};
@@ -1 +0,0 @@
1
- export { default } from './Validation';