@strato-admin/core 0.1.1 → 0.3.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 (841) hide show
  1. package/dist/index.d.ts +3 -2
  2. package/dist/index.js +3 -3
  3. package/dist/ra-core/src/auth/AuthContext.d.ts +2 -0
  4. package/dist/ra-core/src/auth/AuthContext.js +3 -0
  5. package/dist/ra-core/src/auth/Authenticated.d.ts +40 -0
  6. package/dist/ra-core/src/auth/Authenticated.js +39 -0
  7. package/dist/ra-core/src/auth/CanAccess.d.ts +20 -0
  8. package/dist/ra-core/src/auth/CanAccess.js +31 -0
  9. package/dist/ra-core/src/auth/LogoutOnMount.d.ts +8 -0
  10. package/dist/ra-core/src/auth/LogoutOnMount.js +16 -0
  11. package/dist/ra-core/src/auth/WithPermissions.d.ts +19 -0
  12. package/dist/ra-core/src/auth/WithPermissions.js +66 -0
  13. package/dist/ra-core/src/auth/addRefreshAuthToAuthProvider.d.ts +22 -0
  14. package/dist/ra-core/src/auth/addRefreshAuthToAuthProvider.js +41 -0
  15. package/dist/ra-core/src/auth/addRefreshAuthToDataProvider.d.ts +21 -0
  16. package/dist/ra-core/src/auth/addRefreshAuthToDataProvider.js +30 -0
  17. package/dist/ra-core/src/auth/convertLegacyAuthProvider.d.ts +12 -0
  18. package/dist/ra-core/src/auth/convertLegacyAuthProvider.js +19 -0
  19. package/dist/ra-core/src/auth/index.d.ts +27 -0
  20. package/dist/ra-core/src/auth/index.js +34 -0
  21. package/dist/ra-core/src/auth/types.d.ts +7 -0
  22. package/dist/ra-core/src/auth/types.js +5 -0
  23. package/dist/ra-core/src/auth/useAuthProvider.d.ts +10 -0
  24. package/dist/ra-core/src/auth/useAuthProvider.js +11 -0
  25. package/dist/ra-core/src/auth/useAuthState.d.ts +48 -0
  26. package/dist/ra-core/src/auth/useAuthState.js +171 -0
  27. package/dist/ra-core/src/auth/useAuthenticated.d.ts +36 -0
  28. package/dist/ra-core/src/auth/useAuthenticated.js +34 -0
  29. package/dist/ra-core/src/auth/useCanAccess.d.ts +56 -0
  30. package/dist/ra-core/src/auth/useCanAccess.js +108 -0
  31. package/dist/ra-core/src/auth/useCanAccessCallback.d.ts +39 -0
  32. package/dist/ra-core/src/auth/useCanAccessCallback.js +45 -0
  33. package/dist/ra-core/src/auth/useCanAccessResources.d.ts +67 -0
  34. package/dist/ra-core/src/auth/useCanAccessResources.js +92 -0
  35. package/dist/ra-core/src/auth/useCheckAuth.d.ts +48 -0
  36. package/dist/ra-core/src/auth/useCheckAuth.js +76 -0
  37. package/dist/ra-core/src/auth/useGetIdentity.d.ts +41 -0
  38. package/dist/ra-core/src/auth/useGetIdentity.js +86 -0
  39. package/dist/ra-core/src/auth/useGetPermissions.d.ts +41 -0
  40. package/dist/ra-core/src/auth/useGetPermissions.js +47 -0
  41. package/dist/ra-core/src/auth/useHandleAuthCallback.d.ts +20 -0
  42. package/dist/ra-core/src/auth/useHandleAuthCallback.js +83 -0
  43. package/dist/ra-core/src/auth/useIsAuthPending.d.ts +13 -0
  44. package/dist/ra-core/src/auth/useIsAuthPending.js +30 -0
  45. package/dist/ra-core/src/auth/useLogin.d.ts +34 -0
  46. package/dist/ra-core/src/auth/useLogin.js +78 -0
  47. package/dist/ra-core/src/auth/useLogout.d.ts +31 -0
  48. package/dist/ra-core/src/auth/useLogout.js +117 -0
  49. package/dist/ra-core/src/auth/useLogoutIfAccessDenied.d.ts +42 -0
  50. package/dist/ra-core/src/auth/useLogoutIfAccessDenied.js +111 -0
  51. package/dist/ra-core/src/auth/usePermissions.d.ts +41 -0
  52. package/dist/ra-core/src/auth/usePermissions.js +123 -0
  53. package/dist/ra-core/src/auth/useRequireAccess.d.ts +140 -0
  54. package/dist/ra-core/src/auth/useRequireAccess.js +56 -0
  55. package/dist/ra-core/src/controller/button/index.d.ts +7 -0
  56. package/dist/ra-core/src/controller/button/index.js +7 -0
  57. package/dist/ra-core/src/controller/button/useBulkDeleteController.d.ts +14 -0
  58. package/dist/ra-core/src/controller/button/useBulkDeleteController.js +66 -0
  59. package/dist/ra-core/src/controller/button/useBulkUpdateController.d.ts +16 -0
  60. package/dist/ra-core/src/controller/button/useBulkUpdateController.js +70 -0
  61. package/dist/ra-core/src/controller/button/useDeleteController.d.ts +64 -0
  62. package/dist/ra-core/src/controller/button/useDeleteController.js +119 -0
  63. package/dist/ra-core/src/controller/button/useDeleteWithConfirmController.d.ts +69 -0
  64. package/dist/ra-core/src/controller/button/useDeleteWithConfirmController.js +139 -0
  65. package/dist/ra-core/src/controller/button/useDeleteWithUndoController.d.ts +46 -0
  66. package/dist/ra-core/src/controller/button/useDeleteWithUndoController.js +52 -0
  67. package/dist/ra-core/src/controller/button/useUpdateController.d.ts +68 -0
  68. package/dist/ra-core/src/controller/button/useUpdateController.js +113 -0
  69. package/dist/ra-core/src/controller/checkMinimumRequiredProps.d.ts +4 -0
  70. package/dist/ra-core/src/controller/checkMinimumRequiredProps.js +21 -0
  71. package/dist/ra-core/src/controller/create/CreateBase.d.ts +46 -0
  72. package/dist/ra-core/src/controller/create/CreateBase.js +55 -0
  73. package/dist/ra-core/src/controller/create/CreateContext.d.ts +20 -0
  74. package/dist/ra-core/src/controller/create/CreateContext.js +21 -0
  75. package/dist/ra-core/src/controller/create/CreateContextProvider.d.ts +29 -0
  76. package/dist/ra-core/src/controller/create/CreateContextProvider.js +31 -0
  77. package/dist/ra-core/src/controller/create/CreateController.d.ts +19 -0
  78. package/dist/ra-core/src/controller/create/CreateController.js +18 -0
  79. package/dist/ra-core/src/controller/create/index.d.ts +6 -0
  80. package/dist/ra-core/src/controller/create/index.js +6 -0
  81. package/dist/ra-core/src/controller/create/useCreateContext.d.ts +12 -0
  82. package/dist/ra-core/src/controller/create/useCreateContext.js +18 -0
  83. package/dist/ra-core/src/controller/create/useCreateController.d.ts +50 -0
  84. package/dist/ra-core/src/controller/create/useCreateController.js +149 -0
  85. package/dist/ra-core/src/controller/edit/EditBase.d.ts +41 -0
  86. package/dist/ra-core/src/controller/edit/EditBase.js +72 -0
  87. package/dist/ra-core/src/controller/edit/EditContext.d.ts +20 -0
  88. package/dist/ra-core/src/controller/edit/EditContext.js +21 -0
  89. package/dist/ra-core/src/controller/edit/EditContextProvider.d.ts +29 -0
  90. package/dist/ra-core/src/controller/edit/EditContextProvider.js +28 -0
  91. package/dist/ra-core/src/controller/edit/EditController.d.ts +19 -0
  92. package/dist/ra-core/src/controller/edit/EditController.js +18 -0
  93. package/dist/ra-core/src/controller/edit/index.d.ts +6 -0
  94. package/dist/ra-core/src/controller/edit/index.js +6 -0
  95. package/dist/ra-core/src/controller/edit/useEditContext.d.ts +12 -0
  96. package/dist/ra-core/src/controller/edit/useEditContext.js +18 -0
  97. package/dist/ra-core/src/controller/edit/useEditController.d.ts +72 -0
  98. package/dist/ra-core/src/controller/edit/useEditController.js +206 -0
  99. package/dist/ra-core/src/controller/field/ReferenceArrayFieldBase.d.ts +77 -0
  100. package/dist/ra-core/src/controller/field/ReferenceArrayFieldBase.js +119 -0
  101. package/dist/ra-core/src/controller/field/ReferenceFieldBase.d.ts +51 -0
  102. package/dist/ra-core/src/controller/field/ReferenceFieldBase.js +71 -0
  103. package/dist/ra-core/src/controller/field/ReferenceFieldContext.d.ts +4 -0
  104. package/dist/ra-core/src/controller/field/ReferenceFieldContext.js +10 -0
  105. package/dist/ra-core/src/controller/field/ReferenceManyCountBase.d.ts +20 -0
  106. package/dist/ra-core/src/controller/field/ReferenceManyCountBase.js +35 -0
  107. package/dist/ra-core/src/controller/field/ReferenceManyFieldBase.d.ts +59 -0
  108. package/dist/ra-core/src/controller/field/ReferenceManyFieldBase.js +108 -0
  109. package/dist/ra-core/src/controller/field/ReferenceOneFieldBase.d.ts +26 -0
  110. package/dist/ra-core/src/controller/field/ReferenceOneFieldBase.js +64 -0
  111. package/dist/ra-core/src/controller/field/index.d.ts +12 -0
  112. package/dist/ra-core/src/controller/field/index.js +12 -0
  113. package/dist/ra-core/src/controller/field/sanitizeFieldRestProps.d.ts +1 -0
  114. package/dist/ra-core/src/controller/field/sanitizeFieldRestProps.js +1 -0
  115. package/dist/ra-core/src/controller/field/types.d.ts +28 -0
  116. package/dist/ra-core/src/controller/field/types.js +1 -0
  117. package/dist/ra-core/src/controller/field/useReferenceArrayFieldController.d.ts +39 -0
  118. package/dist/ra-core/src/controller/field/useReferenceArrayFieldController.js +82 -0
  119. package/dist/ra-core/src/controller/field/useReferenceFieldController.d.ts +14 -0
  120. package/dist/ra-core/src/controller/field/useReferenceFieldController.js +31 -0
  121. package/dist/ra-core/src/controller/field/useReferenceManyFieldController.d.ts +49 -0
  122. package/dist/ra-core/src/controller/field/useReferenceManyFieldController.js +264 -0
  123. package/dist/ra-core/src/controller/field/useReferenceOneFieldController.d.ts +41 -0
  124. package/dist/ra-core/src/controller/field/useReferenceOneFieldController.js +67 -0
  125. package/dist/ra-core/src/controller/index.d.ts +17 -0
  126. package/dist/ra-core/src/controller/index.js +16 -0
  127. package/dist/ra-core/src/controller/input/ArrayInputBase.d.ts +46 -0
  128. package/dist/ra-core/src/controller/input/ArrayInputBase.js +130 -0
  129. package/dist/ra-core/src/controller/input/ArrayInputContext.d.ts +9 -0
  130. package/dist/ra-core/src/controller/input/ArrayInputContext.js +8 -0
  131. package/dist/ra-core/src/controller/input/ReferenceArrayInputBase.d.ts +78 -0
  132. package/dist/ra-core/src/controller/input/ReferenceArrayInputBase.js +97 -0
  133. package/dist/ra-core/src/controller/input/ReferenceInputBase.d.ts +65 -0
  134. package/dist/ra-core/src/controller/input/ReferenceInputBase.js +75 -0
  135. package/dist/ra-core/src/controller/input/SimpleFormIteratorBase.d.ts +17 -0
  136. package/dist/ra-core/src/controller/input/SimpleFormIteratorBase.js +55 -0
  137. package/dist/ra-core/src/controller/input/SimpleFormIteratorContext.d.ts +15 -0
  138. package/dist/ra-core/src/controller/input/SimpleFormIteratorContext.js +8 -0
  139. package/dist/ra-core/src/controller/input/SimpleFormIteratorItemBase.d.ts +12 -0
  140. package/dist/ra-core/src/controller/input/SimpleFormIteratorItemBase.js +53 -0
  141. package/dist/ra-core/src/controller/input/SimpleFormIteratorItemContext.d.ts +13 -0
  142. package/dist/ra-core/src/controller/input/SimpleFormIteratorItemContext.js +8 -0
  143. package/dist/ra-core/src/controller/input/index.d.ts +17 -0
  144. package/dist/ra-core/src/controller/input/index.js +17 -0
  145. package/dist/ra-core/src/controller/input/referenceDataStatus.d.ts +32 -0
  146. package/dist/ra-core/src/controller/input/referenceDataStatus.js +74 -0
  147. package/dist/ra-core/src/controller/input/sanitizeInputRestProps.d.ts +1 -0
  148. package/dist/ra-core/src/controller/input/sanitizeInputRestProps.js +1 -0
  149. package/dist/ra-core/src/controller/input/types.d.ts +3 -0
  150. package/dist/ra-core/src/controller/input/types.js +1 -0
  151. package/dist/ra-core/src/controller/input/useArrayInput.d.ts +8 -0
  152. package/dist/ra-core/src/controller/input/useArrayInput.js +29 -0
  153. package/dist/ra-core/src/controller/input/useGetArrayInputNewItemDefaults.d.ts +3 -0
  154. package/dist/ra-core/src/controller/input/useGetArrayInputNewItemDefaults.js +37 -0
  155. package/dist/ra-core/src/controller/input/useReferenceArrayInputController.d.ts +48 -0
  156. package/dist/ra-core/src/controller/input/useReferenceArrayInputController.js +137 -0
  157. package/dist/ra-core/src/controller/input/useReferenceInputController.d.ts +54 -0
  158. package/dist/ra-core/src/controller/input/useReferenceInputController.js +208 -0
  159. package/dist/ra-core/src/controller/input/useReferenceParams.d.ts +106 -0
  160. package/dist/ra-core/src/controller/input/useReferenceParams.js +226 -0
  161. package/dist/ra-core/src/controller/input/useSimpleFormIterator.d.ts +7 -0
  162. package/dist/ra-core/src/controller/input/useSimpleFormIterator.js +15 -0
  163. package/dist/ra-core/src/controller/input/useSimpleFormIteratorItem.d.ts +7 -0
  164. package/dist/ra-core/src/controller/input/useSimpleFormIteratorItem.js +15 -0
  165. package/dist/ra-core/src/controller/input/useSupportCreateSuggestion.d.ts +54 -0
  166. package/dist/ra-core/src/controller/input/useSupportCreateSuggestion.js +90 -0
  167. package/dist/ra-core/src/controller/list/FilterContext.d.ts +6 -0
  168. package/dist/ra-core/src/controller/list/FilterContext.js +5 -0
  169. package/dist/ra-core/src/controller/list/InfiniteListBase.d.ts +47 -0
  170. package/dist/ra-core/src/controller/list/InfiniteListBase.js +103 -0
  171. package/dist/ra-core/src/controller/list/InfinitePaginationContext.d.ts +25 -0
  172. package/dist/ra-core/src/controller/list/InfinitePaginationContext.js +32 -0
  173. package/dist/ra-core/src/controller/list/ListBase.d.ts +48 -0
  174. package/dist/ra-core/src/controller/list/ListBase.js +98 -0
  175. package/dist/ra-core/src/controller/list/ListContext.d.ts +54 -0
  176. package/dist/ra-core/src/controller/list/ListContext.js +55 -0
  177. package/dist/ra-core/src/controller/list/ListContextProvider.d.ts +33 -0
  178. package/dist/ra-core/src/controller/list/ListContextProvider.js +33 -0
  179. package/dist/ra-core/src/controller/list/ListController.d.ts +19 -0
  180. package/dist/ra-core/src/controller/list/ListController.js +18 -0
  181. package/dist/ra-core/src/controller/list/ListFilterContext.d.ts +39 -0
  182. package/dist/ra-core/src/controller/list/ListFilterContext.js +55 -0
  183. package/dist/ra-core/src/controller/list/ListPaginationContext.d.ts +43 -0
  184. package/dist/ra-core/src/controller/list/ListPaginationContext.js +67 -0
  185. package/dist/ra-core/src/controller/list/ListSortContext.d.ts +36 -0
  186. package/dist/ra-core/src/controller/list/ListSortContext.js +39 -0
  187. package/dist/ra-core/src/controller/list/RecordsIterator.d.ts +16 -0
  188. package/dist/ra-core/src/controller/list/RecordsIterator.js +22 -0
  189. package/dist/ra-core/src/controller/list/WithListContext.d.ts +32 -0
  190. package/dist/ra-core/src/controller/list/WithListContext.js +42 -0
  191. package/dist/ra-core/src/controller/list/index.d.ts +30 -0
  192. package/dist/ra-core/src/controller/list/index.js +30 -0
  193. package/dist/ra-core/src/controller/list/queryReducer.d.ts +45 -0
  194. package/dist/ra-core/src/controller/list/queryReducer.js +85 -0
  195. package/dist/ra-core/src/controller/list/useExpanded.d.ts +31 -0
  196. package/dist/ra-core/src/controller/list/useExpanded.js +70 -0
  197. package/dist/ra-core/src/controller/list/useFilterContext.d.ts +2 -0
  198. package/dist/ra-core/src/controller/list/useFilterContext.js +5 -0
  199. package/dist/ra-core/src/controller/list/useInfiniteListController.d.ts +44 -0
  200. package/dist/ra-core/src/controller/list/useInfiniteListController.js +175 -0
  201. package/dist/ra-core/src/controller/list/useInfinitePaginationContext.d.ts +16 -0
  202. package/dist/ra-core/src/controller/list/useInfinitePaginationContext.js +17 -0
  203. package/dist/ra-core/src/controller/list/useList.d.ts +55 -0
  204. package/dist/ra-core/src/controller/list/useList.js +223 -0
  205. package/dist/ra-core/src/controller/list/useListContext.d.ts +59 -0
  206. package/dist/ra-core/src/controller/list/useListContext.js +65 -0
  207. package/dist/ra-core/src/controller/list/useListContextWithProps.d.ts +44 -0
  208. package/dist/ra-core/src/controller/list/useListContextWithProps.js +84 -0
  209. package/dist/ra-core/src/controller/list/useListController.d.ts +296 -0
  210. package/dist/ra-core/src/controller/list/useListController.js +234 -0
  211. package/dist/ra-core/src/controller/list/useListFilterContext.d.ts +11 -0
  212. package/dist/ra-core/src/controller/list/useListFilterContext.js +18 -0
  213. package/dist/ra-core/src/controller/list/useListPaginationContext.d.ts +12 -0
  214. package/dist/ra-core/src/controller/list/useListPaginationContext.js +19 -0
  215. package/dist/ra-core/src/controller/list/useListParams.d.ts +116 -0
  216. package/dist/ra-core/src/controller/list/useListParams.js +281 -0
  217. package/dist/ra-core/src/controller/list/useListSortContext.d.ts +12 -0
  218. package/dist/ra-core/src/controller/list/useListSortContext.js +19 -0
  219. package/dist/ra-core/src/controller/list/useRecordSelection.d.ts +32 -0
  220. package/dist/ra-core/src/controller/list/useRecordSelection.js +93 -0
  221. package/dist/ra-core/src/controller/list/useSavedQueries.d.ts +14 -0
  222. package/dist/ra-core/src/controller/list/useSavedQueries.js +29 -0
  223. package/dist/ra-core/src/controller/list/useSelectAll.d.ts +48 -0
  224. package/dist/ra-core/src/controller/list/useSelectAll.js +102 -0
  225. package/dist/ra-core/src/controller/list/useUnselect.d.ts +10 -0
  226. package/dist/ra-core/src/controller/list/useUnselect.js +18 -0
  227. package/dist/ra-core/src/controller/list/useUnselectAll.d.ts +9 -0
  228. package/dist/ra-core/src/controller/list/useUnselectAll.js +18 -0
  229. package/dist/ra-core/src/controller/record/OptionalRecordContextProvider.d.ts +21 -0
  230. package/dist/ra-core/src/controller/record/OptionalRecordContextProvider.js +18 -0
  231. package/dist/ra-core/src/controller/record/RecordContext.d.ts +37 -0
  232. package/dist/ra-core/src/controller/record/RecordContext.js +33 -0
  233. package/dist/ra-core/src/controller/record/RecordRepresentation.d.ts +11 -0
  234. package/dist/ra-core/src/controller/record/RecordRepresentation.js +15 -0
  235. package/dist/ra-core/src/controller/record/WithRecord.d.ts +20 -0
  236. package/dist/ra-core/src/controller/record/WithRecord.js +18 -0
  237. package/dist/ra-core/src/controller/record/index.d.ts +5 -0
  238. package/dist/ra-core/src/controller/record/index.js +5 -0
  239. package/dist/ra-core/src/controller/record/useRecordContext.d.ts +34 -0
  240. package/dist/ra-core/src/controller/record/useRecordContext.js +36 -0
  241. package/dist/ra-core/src/controller/saveContext/SaveContext.d.ts +20 -0
  242. package/dist/ra-core/src/controller/saveContext/SaveContext.js +2 -0
  243. package/dist/ra-core/src/controller/saveContext/SaveContextProvider.d.ts +4 -0
  244. package/dist/ra-core/src/controller/saveContext/SaveContextProvider.js +3 -0
  245. package/dist/ra-core/src/controller/saveContext/index.d.ts +6 -0
  246. package/dist/ra-core/src/controller/saveContext/index.js +6 -0
  247. package/dist/ra-core/src/controller/saveContext/useMutationMiddlewares.d.ts +39 -0
  248. package/dist/ra-core/src/controller/saveContext/useMutationMiddlewares.js +79 -0
  249. package/dist/ra-core/src/controller/saveContext/usePickSaveContext.d.ts +5 -0
  250. package/dist/ra-core/src/controller/saveContext/usePickSaveContext.js +25 -0
  251. package/dist/ra-core/src/controller/saveContext/useRegisterMutationMiddleware.d.ts +6 -0
  252. package/dist/ra-core/src/controller/saveContext/useRegisterMutationMiddleware.js +18 -0
  253. package/dist/ra-core/src/controller/saveContext/useSaveContext.d.ts +14 -0
  254. package/dist/ra-core/src/controller/saveContext/useSaveContext.js +17 -0
  255. package/dist/ra-core/src/controller/show/ShowBase.d.ts +42 -0
  256. package/dist/ra-core/src/controller/show/ShowBase.js +72 -0
  257. package/dist/ra-core/src/controller/show/ShowContext.d.ts +20 -0
  258. package/dist/ra-core/src/controller/show/ShowContext.js +21 -0
  259. package/dist/ra-core/src/controller/show/ShowContextProvider.d.ts +27 -0
  260. package/dist/ra-core/src/controller/show/ShowContextProvider.js +25 -0
  261. package/dist/ra-core/src/controller/show/ShowController.d.ts +19 -0
  262. package/dist/ra-core/src/controller/show/ShowController.js +18 -0
  263. package/dist/ra-core/src/controller/show/index.d.ts +6 -0
  264. package/dist/ra-core/src/controller/show/index.js +6 -0
  265. package/dist/ra-core/src/controller/show/useShowContext.d.ts +12 -0
  266. package/dist/ra-core/src/controller/show/useShowContext.js +19 -0
  267. package/dist/ra-core/src/controller/show/useShowController.d.ts +75 -0
  268. package/dist/ra-core/src/controller/show/useShowController.js +110 -0
  269. package/dist/ra-core/src/controller/useFilterState.d.ts +46 -0
  270. package/dist/ra-core/src/controller/useFilterState.js +70 -0
  271. package/dist/ra-core/src/controller/usePaginationState.d.ts +33 -0
  272. package/dist/ra-core/src/controller/usePaginationState.js +45 -0
  273. package/dist/ra-core/src/controller/usePrevNextController.d.ts +127 -0
  274. package/dist/ra-core/src/controller/usePrevNextController.js +215 -0
  275. package/dist/ra-core/src/controller/useReference.d.ts +49 -0
  276. package/dist/ra-core/src/controller/useReference.js +42 -0
  277. package/dist/ra-core/src/controller/useSortState.d.ts +61 -0
  278. package/dist/ra-core/src/controller/useSortState.js +96 -0
  279. package/dist/ra-core/src/core/CoreAdmin.d.ts +83 -0
  280. package/dist/ra-core/src/core/CoreAdmin.js +86 -0
  281. package/dist/ra-core/src/core/CoreAdminContext.d.ts +154 -0
  282. package/dist/ra-core/src/core/CoreAdminContext.js +27 -0
  283. package/dist/ra-core/src/core/CoreAdminRoutes.d.ts +15 -0
  284. package/dist/ra-core/src/core/CoreAdminRoutes.js +33 -0
  285. package/dist/ra-core/src/core/CoreAdminUI.d.ts +260 -0
  286. package/dist/ra-core/src/core/CoreAdminUI.js +33 -0
  287. package/dist/ra-core/src/core/CustomRoutes.d.ts +16 -0
  288. package/dist/ra-core/src/core/CustomRoutes.js +11 -0
  289. package/dist/ra-core/src/core/DefaultTitleContext.d.ts +15 -0
  290. package/dist/ra-core/src/core/DefaultTitleContext.js +15 -0
  291. package/dist/ra-core/src/core/HasDashboardContext.d.ts +21 -0
  292. package/dist/ra-core/src/core/HasDashboardContext.js +22 -0
  293. package/dist/ra-core/src/core/IsOffline.d.ts +4 -0
  294. package/dist/ra-core/src/core/IsOffline.js +5 -0
  295. package/dist/ra-core/src/core/NavigateToFirstResource.d.ts +10 -0
  296. package/dist/ra-core/src/core/NavigateToFirstResource.js +21 -0
  297. package/dist/ra-core/src/core/OptionalResourceContextProvider.d.ts +22 -0
  298. package/dist/ra-core/src/core/OptionalResourceContextProvider.js +18 -0
  299. package/dist/ra-core/src/core/Resource.d.ts +16 -0
  300. package/dist/ra-core/src/core/Resource.js +31 -0
  301. package/dist/ra-core/src/core/ResourceContext.d.ts +19 -0
  302. package/dist/ra-core/src/core/ResourceContext.js +19 -0
  303. package/dist/ra-core/src/core/ResourceContextProvider.d.ts +26 -0
  304. package/dist/ra-core/src/core/ResourceContextProvider.js +22 -0
  305. package/dist/ra-core/src/core/ResourceDefinitionContext.d.ts +35 -0
  306. package/dist/ra-core/src/core/ResourceDefinitionContext.js +48 -0
  307. package/dist/ra-core/src/core/SourceContext.d.ts +27 -0
  308. package/dist/ra-core/src/core/SourceContext.js +35 -0
  309. package/dist/ra-core/src/core/UserMenuContext.d.ts +34 -0
  310. package/dist/ra-core/src/core/UserMenuContext.js +28 -0
  311. package/dist/ra-core/src/core/UserMenuContextProvider.d.ts +16 -0
  312. package/dist/ra-core/src/core/UserMenuContextProvider.js +9 -0
  313. package/dist/ra-core/src/core/index.d.ts +27 -0
  314. package/dist/ra-core/src/core/index.js +27 -0
  315. package/dist/ra-core/src/core/useConfigureAdminRouterFromChildren.d.ts +34 -0
  316. package/dist/ra-core/src/core/useConfigureAdminRouterFromChildren.js +227 -0
  317. package/dist/ra-core/src/core/useFirstResourceWithListAccess.d.ts +8 -0
  318. package/dist/ra-core/src/core/useFirstResourceWithListAccess.js +19 -0
  319. package/dist/ra-core/src/core/useGetRecordRepresentation.d.ts +13 -0
  320. package/dist/ra-core/src/core/useGetRecordRepresentation.js +44 -0
  321. package/dist/ra-core/src/core/useGetResourceLabel.d.ts +22 -0
  322. package/dist/ra-core/src/core/useGetResourceLabel.js +42 -0
  323. package/dist/ra-core/src/core/useIsOffline.d.ts +7 -0
  324. package/dist/ra-core/src/core/useIsOffline.js +18 -0
  325. package/dist/ra-core/src/core/useResourceContext.d.ts +36 -0
  326. package/dist/ra-core/src/core/useResourceContext.js +38 -0
  327. package/dist/ra-core/src/core/useResourceDefinition.d.ts +31 -0
  328. package/dist/ra-core/src/core/useResourceDefinition.js +48 -0
  329. package/dist/ra-core/src/core/useResourceDefinitionContext.d.ts +1 -0
  330. package/dist/ra-core/src/core/useResourceDefinitionContext.js +3 -0
  331. package/dist/ra-core/src/core/useResourceDefinitions.d.ts +21 -0
  332. package/dist/ra-core/src/core/useResourceDefinitions.js +20 -0
  333. package/dist/ra-core/src/core/useUserMenu.d.ts +28 -0
  334. package/dist/ra-core/src/core/useUserMenu.js +30 -0
  335. package/dist/ra-core/src/core/useWrappedSource.d.ts +11 -0
  336. package/dist/ra-core/src/core/useWrappedSource.js +15 -0
  337. package/dist/ra-core/src/dataProvider/DataProviderContext.d.ts +3 -0
  338. package/dist/ra-core/src/dataProvider/DataProviderContext.js +4 -0
  339. package/dist/ra-core/src/dataProvider/HttpError.d.ts +6 -0
  340. package/dist/ra-core/src/dataProvider/HttpError.js +19 -0
  341. package/dist/ra-core/src/dataProvider/combineDataProviders.d.ts +21 -0
  342. package/dist/ra-core/src/dataProvider/combineDataProviders.js +32 -0
  343. package/dist/ra-core/src/dataProvider/convertLegacyDataProvider.d.ts +12 -0
  344. package/dist/ra-core/src/dataProvider/convertLegacyDataProvider.js +40 -0
  345. package/dist/ra-core/src/dataProvider/dataFetchActions.d.ts +15 -0
  346. package/dist/ra-core/src/dataProvider/dataFetchActions.js +49 -0
  347. package/dist/ra-core/src/dataProvider/defaultDataProvider.d.ts +2 -0
  348. package/dist/ra-core/src/dataProvider/defaultDataProvider.js +12 -0
  349. package/dist/ra-core/src/dataProvider/fetch.d.ts +32 -0
  350. package/dist/ra-core/src/dataProvider/fetch.js +78 -0
  351. package/dist/ra-core/src/dataProvider/index.d.ts +34 -0
  352. package/dist/ra-core/src/dataProvider/index.js +33 -0
  353. package/dist/ra-core/src/dataProvider/populateQueryCache.d.ts +22 -0
  354. package/dist/ra-core/src/dataProvider/populateQueryCache.js +30 -0
  355. package/dist/ra-core/src/dataProvider/testDataProvider.d.ts +2 -0
  356. package/dist/ra-core/src/dataProvider/testDataProvider.js +41 -0
  357. package/dist/ra-core/src/dataProvider/undo/AddUndoableMutationContext.d.ts +2 -0
  358. package/dist/ra-core/src/dataProvider/undo/AddUndoableMutationContext.js +2 -0
  359. package/dist/ra-core/src/dataProvider/undo/TakeUndoableMutationContext.d.ts +2 -0
  360. package/dist/ra-core/src/dataProvider/undo/TakeUndoableMutationContext.js +2 -0
  361. package/dist/ra-core/src/dataProvider/undo/UndoableMutationsContextProvider.d.ts +13 -0
  362. package/dist/ra-core/src/dataProvider/undo/UndoableMutationsContextProvider.js +38 -0
  363. package/dist/ra-core/src/dataProvider/undo/index.d.ts +6 -0
  364. package/dist/ra-core/src/dataProvider/undo/index.js +6 -0
  365. package/dist/ra-core/src/dataProvider/undo/types.d.ts +3 -0
  366. package/dist/ra-core/src/dataProvider/undo/types.js +1 -0
  367. package/dist/ra-core/src/dataProvider/undo/useAddUndoableMutation.d.ts +1 -0
  368. package/dist/ra-core/src/dataProvider/undo/useAddUndoableMutation.js +3 -0
  369. package/dist/ra-core/src/dataProvider/undo/useTakeUndoableMutation.d.ts +1 -0
  370. package/dist/ra-core/src/dataProvider/undo/useTakeUndoableMutation.js +3 -0
  371. package/dist/ra-core/src/dataProvider/undoableEventEmitter.d.ts +3 -0
  372. package/dist/ra-core/src/dataProvider/undoableEventEmitter.js +2 -0
  373. package/dist/ra-core/src/dataProvider/useCreate.d.ts +89 -0
  374. package/dist/ra-core/src/dataProvider/useCreate.js +155 -0
  375. package/dist/ra-core/src/dataProvider/useDataProvider.d.ts +2 -0
  376. package/dist/ra-core/src/dataProvider/useDataProvider.js +140 -0
  377. package/dist/ra-core/src/dataProvider/useDelete.d.ts +83 -0
  378. package/dist/ra-core/src/dataProvider/useDelete.js +171 -0
  379. package/dist/ra-core/src/dataProvider/useDeleteMany.d.ts +81 -0
  380. package/dist/ra-core/src/dataProvider/useDeleteMany.js +193 -0
  381. package/dist/ra-core/src/dataProvider/useGetList.d.ts +58 -0
  382. package/dist/ra-core/src/dataProvider/useGetList.js +131 -0
  383. package/dist/ra-core/src/dataProvider/useGetMany.d.ts +49 -0
  384. package/dist/ra-core/src/dataProvider/useGetMany.js +143 -0
  385. package/dist/ra-core/src/dataProvider/useGetManyAggregate.d.ts +62 -0
  386. package/dist/ra-core/src/dataProvider/useGetManyAggregate.js +295 -0
  387. package/dist/ra-core/src/dataProvider/useGetManyReference.d.ts +62 -0
  388. package/dist/ra-core/src/dataProvider/useGetManyReference.js +117 -0
  389. package/dist/ra-core/src/dataProvider/useGetOne.d.ts +48 -0
  390. package/dist/ra-core/src/dataProvider/useGetOne.js +94 -0
  391. package/dist/ra-core/src/dataProvider/useGetRecordId.d.ts +14 -0
  392. package/dist/ra-core/src/dataProvider/useGetRecordId.js +22 -0
  393. package/dist/ra-core/src/dataProvider/useInfiniteGetList.d.ts +64 -0
  394. package/dist/ra-core/src/dataProvider/useInfiniteGetList.js +177 -0
  395. package/dist/ra-core/src/dataProvider/useIsDataLoaded.d.ts +13 -0
  396. package/dist/ra-core/src/dataProvider/useIsDataLoaded.js +35 -0
  397. package/dist/ra-core/src/dataProvider/useLoading.d.ts +12 -0
  398. package/dist/ra-core/src/dataProvider/useLoading.js +41 -0
  399. package/dist/ra-core/src/dataProvider/useMutationWithMutationMode.d.ts +51 -0
  400. package/dist/ra-core/src/dataProvider/useMutationWithMutationMode.js +238 -0
  401. package/dist/ra-core/src/dataProvider/useRefresh.d.ts +14 -0
  402. package/dist/ra-core/src/dataProvider/useRefresh.js +21 -0
  403. package/dist/ra-core/src/dataProvider/useUpdate.d.ts +89 -0
  404. package/dist/ra-core/src/dataProvider/useUpdate.js +183 -0
  405. package/dist/ra-core/src/dataProvider/useUpdateMany.d.ts +81 -0
  406. package/dist/ra-core/src/dataProvider/useUpdateMany.js +171 -0
  407. package/dist/ra-core/src/dataProvider/validateResponseFormat.d.ts +2 -0
  408. package/dist/ra-core/src/dataProvider/validateResponseFormat.js +35 -0
  409. package/dist/ra-core/src/dataProvider/withLifecycleCallbacks.d.ts +162 -0
  410. package/dist/ra-core/src/dataProvider/withLifecycleCallbacks.js +377 -0
  411. package/dist/ra-core/src/dataTable/DataTableBase.d.ts +36 -0
  412. package/dist/ra-core/src/dataTable/DataTableBase.js +104 -0
  413. package/dist/ra-core/src/dataTable/DataTableCallbacksContext.d.ts +18 -0
  414. package/dist/ra-core/src/dataTable/DataTableCallbacksContext.js +3 -0
  415. package/dist/ra-core/src/dataTable/DataTableColumnFilterContext.d.ts +2 -0
  416. package/dist/ra-core/src/dataTable/DataTableColumnFilterContext.js +3 -0
  417. package/dist/ra-core/src/dataTable/DataTableColumnRankContext.d.ts +2 -0
  418. package/dist/ra-core/src/dataTable/DataTableColumnRankContext.js +3 -0
  419. package/dist/ra-core/src/dataTable/DataTableConfigContext.d.ts +22 -0
  420. package/dist/ra-core/src/dataTable/DataTableConfigContext.js +7 -0
  421. package/dist/ra-core/src/dataTable/DataTableDataContext.d.ts +4 -0
  422. package/dist/ra-core/src/dataTable/DataTableDataContext.js +3 -0
  423. package/dist/ra-core/src/dataTable/DataTableRenderContext.d.ts +3 -0
  424. package/dist/ra-core/src/dataTable/DataTableRenderContext.js +3 -0
  425. package/dist/ra-core/src/dataTable/DataTableSelectedIdsContext.d.ts +3 -0
  426. package/dist/ra-core/src/dataTable/DataTableSelectedIdsContext.js +3 -0
  427. package/dist/ra-core/src/dataTable/DataTableSortContext.d.ts +3 -0
  428. package/dist/ra-core/src/dataTable/DataTableSortContext.js +3 -0
  429. package/dist/ra-core/src/dataTable/DataTableStoreContext.d.ts +8 -0
  430. package/dist/ra-core/src/dataTable/DataTableStoreContext.js +6 -0
  431. package/dist/ra-core/src/dataTable/index.d.ts +11 -0
  432. package/dist/ra-core/src/dataTable/index.js +11 -0
  433. package/dist/ra-core/src/dataTable/types.d.ts +2 -0
  434. package/dist/ra-core/src/dataTable/types.js +1 -0
  435. package/dist/ra-core/src/export/ExporterContext.d.ts +2 -0
  436. package/dist/ra-core/src/export/ExporterContext.js +4 -0
  437. package/dist/ra-core/src/export/defaultExporter.d.ts +2 -0
  438. package/dist/ra-core/src/export/defaultExporter.js +3 -0
  439. package/dist/ra-core/src/export/downloadCSV.d.ts +1 -0
  440. package/dist/ra-core/src/export/downloadCSV.js +17 -0
  441. package/dist/ra-core/src/export/fetchRelatedRecords.d.ts +14 -0
  442. package/dist/ra-core/src/export/fetchRelatedRecords.js +19 -0
  443. package/dist/ra-core/src/export/getRelatedIds.d.ts +24 -0
  444. package/dist/ra-core/src/export/getRelatedIds.js +26 -0
  445. package/dist/ra-core/src/export/index.d.ts +5 -0
  446. package/dist/ra-core/src/export/index.js +5 -0
  447. package/dist/ra-core/src/export/useBulkExport.d.ts +11 -0
  448. package/dist/ra-core/src/export/useBulkExport.js +30 -0
  449. package/dist/ra-core/src/form/FilterLiveForm.d.ts +56 -0
  450. package/dist/ra-core/src/form/FilterLiveForm.js +161 -0
  451. package/dist/ra-core/src/form/Form.d.ts +56 -0
  452. package/dist/ra-core/src/form/Form.js +55 -0
  453. package/dist/ra-core/src/form/FormDataConsumer.d.ts +74 -0
  454. package/dist/ra-core/src/form/FormDataConsumer.js +68 -0
  455. package/dist/ra-core/src/form/WarnWhenUnsavedChanges.d.ts +5 -0
  456. package/dist/ra-core/src/form/WarnWhenUnsavedChanges.js +5 -0
  457. package/dist/ra-core/src/form/choices/ChoicesContext.d.ts +65 -0
  458. package/dist/ra-core/src/form/choices/ChoicesContext.js +7 -0
  459. package/dist/ra-core/src/form/choices/ChoicesContextProvider.d.ts +6 -0
  460. package/dist/ra-core/src/form/choices/ChoicesContextProvider.js +3 -0
  461. package/dist/ra-core/src/form/choices/index.d.ts +4 -0
  462. package/dist/ra-core/src/form/choices/index.js +4 -0
  463. package/dist/ra-core/src/form/choices/useChoices.d.ts +31 -0
  464. package/dist/ra-core/src/form/choices/useChoices.js +42 -0
  465. package/dist/ra-core/src/form/choices/useChoicesContext.d.ts +5 -0
  466. package/dist/ra-core/src/form/choices/useChoicesContext.js +62 -0
  467. package/dist/ra-core/src/form/getFormInitialValues.d.ts +8 -0
  468. package/dist/ra-core/src/form/getFormInitialValues.js +14 -0
  469. package/dist/ra-core/src/form/groups/FormGroupContext.d.ts +9 -0
  470. package/dist/ra-core/src/form/groups/FormGroupContext.js +9 -0
  471. package/dist/ra-core/src/form/groups/FormGroupContextProvider.d.ts +49 -0
  472. package/dist/ra-core/src/form/groups/FormGroupContextProvider.js +64 -0
  473. package/dist/ra-core/src/form/groups/FormGroupsContext.d.ts +15 -0
  474. package/dist/ra-core/src/form/groups/FormGroupsContext.js +3 -0
  475. package/dist/ra-core/src/form/groups/FormGroupsProvider.d.ts +11 -0
  476. package/dist/ra-core/src/form/groups/FormGroupsProvider.js +67 -0
  477. package/dist/ra-core/src/form/groups/index.d.ts +6 -0
  478. package/dist/ra-core/src/form/groups/index.js +6 -0
  479. package/dist/ra-core/src/form/groups/useFormGroup.d.ts +67 -0
  480. package/dist/ra-core/src/form/groups/useFormGroup.js +146 -0
  481. package/dist/ra-core/src/form/groups/useFormGroupContext.d.ts +4 -0
  482. package/dist/ra-core/src/form/groups/useFormGroupContext.js +9 -0
  483. package/dist/ra-core/src/form/groups/useFormGroups.d.ts +4 -0
  484. package/dist/ra-core/src/form/groups/useFormGroups.js +9 -0
  485. package/dist/ra-core/src/form/index.d.ts +14 -0
  486. package/dist/ra-core/src/form/index.js +14 -0
  487. package/dist/ra-core/src/form/sanitizeEmptyValues.d.ts +7 -0
  488. package/dist/ra-core/src/form/sanitizeEmptyValues.js +26 -0
  489. package/dist/ra-core/src/form/useApplyInputDefaultValues.d.ts +19 -0
  490. package/dist/ra-core/src/form/useApplyInputDefaultValues.js +71 -0
  491. package/dist/ra-core/src/form/useAugmentedForm.d.ts +32 -0
  492. package/dist/ra-core/src/form/useAugmentedForm.js +101 -0
  493. package/dist/ra-core/src/form/useFormIsDirty.d.ts +4 -0
  494. package/dist/ra-core/src/form/useFormIsDirty.js +39 -0
  495. package/dist/ra-core/src/form/useFormValues.d.ts +4 -0
  496. package/dist/ra-core/src/form/useFormValues.js +9 -0
  497. package/dist/ra-core/src/form/useInput.d.ts +33 -0
  498. package/dist/ra-core/src/form/useInput.js +100 -0
  499. package/dist/ra-core/src/form/useRecordFromLocation.d.ts +22 -0
  500. package/dist/ra-core/src/form/useRecordFromLocation.js +59 -0
  501. package/dist/ra-core/src/form/useSuggestions.d.ts +43 -0
  502. package/dist/ra-core/src/form/useSuggestions.js +186 -0
  503. package/dist/ra-core/src/form/useWarnWhenUnsavedChanges.d.ts +7 -0
  504. package/dist/ra-core/src/form/useWarnWhenUnsavedChanges.js +74 -0
  505. package/dist/ra-core/src/form/validation/ValidationError.d.ts +5 -0
  506. package/dist/ra-core/src/form/validation/ValidationError.js +22 -0
  507. package/dist/ra-core/src/form/validation/getSimpleValidationResolver.d.ts +31 -0
  508. package/dist/ra-core/src/form/validation/getSimpleValidationResolver.js +87 -0
  509. package/dist/ra-core/src/form/validation/index.d.ts +7 -0
  510. package/dist/ra-core/src/form/validation/index.js +7 -0
  511. package/dist/ra-core/src/form/validation/setSubmissionErrors.d.ts +21 -0
  512. package/dist/ra-core/src/form/validation/setSubmissionErrors.js +34 -0
  513. package/dist/ra-core/src/form/validation/useGetValidationErrorMessage.d.ts +26 -0
  514. package/dist/ra-core/src/form/validation/useGetValidationErrorMessage.js +35 -0
  515. package/dist/ra-core/src/form/validation/useNotifyIsFormInvalid.d.ts +9 -0
  516. package/dist/ra-core/src/form/validation/useNotifyIsFormInvalid.js +30 -0
  517. package/dist/ra-core/src/form/validation/useUnique.d.ts +57 -0
  518. package/dist/ra-core/src/form/validation/useUnique.js +107 -0
  519. package/dist/ra-core/src/form/validation/validate.d.ts +168 -0
  520. package/dist/ra-core/src/form/validation/validate.js +218 -0
  521. package/dist/ra-core/src/i18n/I18nContext.d.ts +3 -0
  522. package/dist/ra-core/src/i18n/I18nContext.js +11 -0
  523. package/dist/ra-core/src/i18n/I18nContextProvider.d.ts +10 -0
  524. package/dist/ra-core/src/i18n/I18nContextProvider.js +47 -0
  525. package/dist/ra-core/src/i18n/TestTranslationProvider.d.ts +8 -0
  526. package/dist/ra-core/src/i18n/TestTranslationProvider.js +20 -0
  527. package/dist/ra-core/src/i18n/TranslatableContext.d.ts +16 -0
  528. package/dist/ra-core/src/i18n/TranslatableContext.js +2 -0
  529. package/dist/ra-core/src/i18n/TranslatableContextProvider.d.ts +6 -0
  530. package/dist/ra-core/src/i18n/TranslatableContextProvider.js +5 -0
  531. package/dist/ra-core/src/i18n/Translate.d.ts +7 -0
  532. package/dist/ra-core/src/i18n/Translate.js +10 -0
  533. package/dist/ra-core/src/i18n/TranslationMessages.d.ts +221 -0
  534. package/dist/ra-core/src/i18n/TranslationMessages.js +1 -0
  535. package/dist/ra-core/src/i18n/TranslationUtils.d.ts +60 -0
  536. package/dist/ra-core/src/i18n/TranslationUtils.js +70 -0
  537. package/dist/ra-core/src/i18n/index.d.ts +20 -0
  538. package/dist/ra-core/src/i18n/index.js +20 -0
  539. package/dist/ra-core/src/i18n/substituteTokens.d.ts +8 -0
  540. package/dist/ra-core/src/i18n/substituteTokens.js +18 -0
  541. package/dist/ra-core/src/i18n/useI18nProvider.d.ts +12 -0
  542. package/dist/ra-core/src/i18n/useI18nProvider.js +14 -0
  543. package/dist/ra-core/src/i18n/useLocale.d.ts +17 -0
  544. package/dist/ra-core/src/i18n/useLocale.js +21 -0
  545. package/dist/ra-core/src/i18n/useLocaleState.d.ts +27 -0
  546. package/dist/ra-core/src/i18n/useLocaleState.js +34 -0
  547. package/dist/ra-core/src/i18n/useLocales.d.ts +31 -0
  548. package/dist/ra-core/src/i18n/useLocales.js +28 -0
  549. package/dist/ra-core/src/i18n/useResourceTranslation.d.ts +8 -0
  550. package/dist/ra-core/src/i18n/useResourceTranslation.js +18 -0
  551. package/dist/ra-core/src/i18n/useSetLocale.d.ts +25 -0
  552. package/dist/ra-core/src/i18n/useSetLocale.js +29 -0
  553. package/dist/ra-core/src/i18n/useTranslatable.d.ts +29 -0
  554. package/dist/ra-core/src/i18n/useTranslatable.js +98 -0
  555. package/dist/ra-core/src/i18n/useTranslatableContext.d.ts +31 -0
  556. package/dist/ra-core/src/i18n/useTranslatableContext.js +38 -0
  557. package/dist/ra-core/src/i18n/useTranslate.d.ts +21 -0
  558. package/dist/ra-core/src/i18n/useTranslate.js +29 -0
  559. package/dist/ra-core/src/i18n/useTranslateLabel.d.ts +6 -0
  560. package/dist/ra-core/src/i18n/useTranslateLabel.js +26 -0
  561. package/dist/ra-core/src/index.d.ts +16 -0
  562. package/dist/ra-core/src/index.js +16 -0
  563. package/dist/ra-core/src/inference/InferredElement.d.ts +12 -0
  564. package/dist/ra-core/src/inference/InferredElement.js +40 -0
  565. package/dist/ra-core/src/inference/assertions.d.ts +26 -0
  566. package/dist/ra-core/src/inference/assertions.js +38 -0
  567. package/dist/ra-core/src/inference/getElementsFromRecords.d.ts +35 -0
  568. package/dist/ra-core/src/inference/getElementsFromRecords.js +39 -0
  569. package/dist/ra-core/src/inference/getValuesFromRecords.d.ts +28 -0
  570. package/dist/ra-core/src/inference/getValuesFromRecords.js +40 -0
  571. package/dist/ra-core/src/inference/index.d.ts +6 -0
  572. package/dist/ra-core/src/inference/index.js +6 -0
  573. package/dist/ra-core/src/inference/inferElementFromValues.d.ts +41 -0
  574. package/dist/ra-core/src/inference/inferElementFromValues.js +161 -0
  575. package/dist/ra-core/src/inference/inferTypeFromValues.d.ts +21 -0
  576. package/dist/ra-core/src/inference/inferTypeFromValues.js +141 -0
  577. package/dist/ra-core/src/inference/types.d.ts +9 -0
  578. package/dist/ra-core/src/inference/types.js +1 -0
  579. package/dist/ra-core/src/notification/AddNotificationContext.d.ts +2 -0
  580. package/dist/ra-core/src/notification/AddNotificationContext.js +2 -0
  581. package/dist/ra-core/src/notification/CloseNotificationContext.d.ts +2 -0
  582. package/dist/ra-core/src/notification/CloseNotificationContext.js +2 -0
  583. package/dist/ra-core/src/notification/NotificationContext.d.ts +37 -0
  584. package/dist/ra-core/src/notification/NotificationContext.js +35 -0
  585. package/dist/ra-core/src/notification/NotificationContextProvider.d.ts +3 -0
  586. package/dist/ra-core/src/notification/NotificationContextProvider.js +31 -0
  587. package/dist/ra-core/src/notification/index.d.ts +9 -0
  588. package/dist/ra-core/src/notification/index.js +9 -0
  589. package/dist/ra-core/src/notification/types.d.ts +14 -0
  590. package/dist/ra-core/src/notification/types.js +1 -0
  591. package/dist/ra-core/src/notification/useAddNotificationContext.d.ts +1 -0
  592. package/dist/ra-core/src/notification/useAddNotificationContext.js +3 -0
  593. package/dist/ra-core/src/notification/useCloseNotification.d.ts +1 -0
  594. package/dist/ra-core/src/notification/useCloseNotification.js +9 -0
  595. package/dist/ra-core/src/notification/useNotificationContext.d.ts +1 -0
  596. package/dist/ra-core/src/notification/useNotificationContext.js +3 -0
  597. package/dist/ra-core/src/notification/useNotify.d.ts +20 -0
  598. package/dist/ra-core/src/notification/useNotify.js +28 -0
  599. package/dist/ra-core/src/preferences/PreferenceKeyContext.d.ts +7 -0
  600. package/dist/ra-core/src/preferences/PreferenceKeyContext.js +7 -0
  601. package/dist/ra-core/src/preferences/PreferencesEditorContext.d.ts +16 -0
  602. package/dist/ra-core/src/preferences/PreferencesEditorContext.js +2 -0
  603. package/dist/ra-core/src/preferences/PreferencesEditorContextProvider.d.ts +3 -0
  604. package/dist/ra-core/src/preferences/PreferencesEditorContextProvider.js +48 -0
  605. package/dist/ra-core/src/preferences/index.d.ts +7 -0
  606. package/dist/ra-core/src/preferences/index.js +7 -0
  607. package/dist/ra-core/src/preferences/usePreference.d.ts +18 -0
  608. package/dist/ra-core/src/preferences/usePreference.js +10 -0
  609. package/dist/ra-core/src/preferences/usePreferenceInput.d.ts +22 -0
  610. package/dist/ra-core/src/preferences/usePreferenceInput.js +43 -0
  611. package/dist/ra-core/src/preferences/usePreferencesEditor.d.ts +2 -0
  612. package/dist/ra-core/src/preferences/usePreferencesEditor.js +9 -0
  613. package/dist/ra-core/src/preferences/useSetInspectorTitle.d.ts +7 -0
  614. package/dist/ra-core/src/preferences/useSetInspectorTitle.js +19 -0
  615. package/dist/ra-core/src/routing/AdminRouter.d.ts +13 -0
  616. package/dist/ra-core/src/routing/AdminRouter.js +15 -0
  617. package/dist/ra-core/src/routing/BasenameContext.d.ts +1 -0
  618. package/dist/ra-core/src/routing/BasenameContext.js +2 -0
  619. package/dist/ra-core/src/routing/BasenameContextProvider.d.ts +12 -0
  620. package/dist/ra-core/src/routing/BasenameContextProvider.js +11 -0
  621. package/dist/ra-core/src/routing/LinkBase.d.ts +17 -0
  622. package/dist/ra-core/src/routing/LinkBase.js +22 -0
  623. package/dist/ra-core/src/routing/Navigate.d.ts +14 -0
  624. package/dist/ra-core/src/routing/Navigate.js +17 -0
  625. package/dist/ra-core/src/routing/Outlet.d.ts +19 -0
  626. package/dist/ra-core/src/routing/Outlet.js +22 -0
  627. package/dist/ra-core/src/routing/RestoreScrollPosition.d.ts +24 -0
  628. package/dist/ra-core/src/routing/RestoreScrollPosition.js +23 -0
  629. package/dist/ra-core/src/routing/RouterProvider.d.ts +163 -0
  630. package/dist/ra-core/src/routing/RouterProvider.js +1 -0
  631. package/dist/ra-core/src/routing/RouterProviderContext.d.ts +15 -0
  632. package/dist/ra-core/src/routing/RouterProviderContext.js +19 -0
  633. package/dist/ra-core/src/routing/TestMemoryRouter.d.ts +21 -0
  634. package/dist/ra-core/src/routing/TestMemoryRouter.js +42 -0
  635. package/dist/ra-core/src/routing/adapters/reactRouterProvider.d.ts +6 -0
  636. package/dist/ra-core/src/routing/adapters/reactRouterProvider.js +86 -0
  637. package/dist/ra-core/src/routing/index.d.ts +28 -0
  638. package/dist/ra-core/src/routing/index.js +28 -0
  639. package/dist/ra-core/src/routing/types.d.ts +3 -0
  640. package/dist/ra-core/src/routing/types.js +1 -0
  641. package/dist/ra-core/src/routing/useBasename.d.ts +21 -0
  642. package/dist/ra-core/src/routing/useBasename.js +23 -0
  643. package/dist/ra-core/src/routing/useBlocker.d.ts +14 -0
  644. package/dist/ra-core/src/routing/useBlocker.js +17 -0
  645. package/dist/ra-core/src/routing/useCanBlock.d.ts +7 -0
  646. package/dist/ra-core/src/routing/useCanBlock.js +11 -0
  647. package/dist/ra-core/src/routing/useCreatePath.d.ts +42 -0
  648. package/dist/ra-core/src/routing/useCreatePath.js +69 -0
  649. package/dist/ra-core/src/routing/useGetPathForRecord.d.ts +42 -0
  650. package/dist/ra-core/src/routing/useGetPathForRecord.js +135 -0
  651. package/dist/ra-core/src/routing/useGetPathForRecordCallback.d.ts +6 -0
  652. package/dist/ra-core/src/routing/useGetPathForRecordCallback.js +82 -0
  653. package/dist/ra-core/src/routing/useInRouterContext.d.ts +11 -0
  654. package/dist/ra-core/src/routing/useInRouterContext.js +15 -0
  655. package/dist/ra-core/src/routing/useLocation.d.ts +10 -0
  656. package/dist/ra-core/src/routing/useLocation.js +13 -0
  657. package/dist/ra-core/src/routing/useMatch.d.ts +15 -0
  658. package/dist/ra-core/src/routing/useMatch.js +15 -0
  659. package/dist/ra-core/src/routing/useMatchPath.d.ts +17 -0
  660. package/dist/ra-core/src/routing/useMatchPath.js +17 -0
  661. package/dist/ra-core/src/routing/useNavigate.d.ts +12 -0
  662. package/dist/ra-core/src/routing/useNavigate.js +15 -0
  663. package/dist/ra-core/src/routing/useParams.d.ts +9 -0
  664. package/dist/ra-core/src/routing/useParams.js +13 -0
  665. package/dist/ra-core/src/routing/useRedirect.d.ts +30 -0
  666. package/dist/ra-core/src/routing/useRedirect.js +66 -0
  667. package/dist/ra-core/src/routing/useResetErrorBoundaryOnLocationChange.d.ts +7 -0
  668. package/dist/ra-core/src/routing/useResetErrorBoundaryOnLocationChange.js +17 -0
  669. package/dist/ra-core/src/routing/useRestoreScrollPosition.d.ts +40 -0
  670. package/dist/ra-core/src/routing/useRestoreScrollPosition.js +70 -0
  671. package/dist/ra-core/src/routing/useScrollToTop.d.ts +22 -0
  672. package/dist/ra-core/src/routing/useScrollToTop.js +33 -0
  673. package/dist/ra-core/src/routing/useSplatPathBase.d.ts +13 -0
  674. package/dist/ra-core/src/routing/useSplatPathBase.js +21 -0
  675. package/dist/ra-core/src/store/StoreContext.d.ts +2 -0
  676. package/dist/ra-core/src/store/StoreContext.js +4 -0
  677. package/dist/ra-core/src/store/StoreContextProvider.d.ts +7 -0
  678. package/dist/ra-core/src/store/StoreContextProvider.js +12 -0
  679. package/dist/ra-core/src/store/StoreSetter.d.ts +37 -0
  680. package/dist/ra-core/src/store/StoreSetter.js +40 -0
  681. package/dist/ra-core/src/store/index.d.ts +11 -0
  682. package/dist/ra-core/src/store/index.js +11 -0
  683. package/dist/ra-core/src/store/localStorageStore.d.ts +27 -0
  684. package/dist/ra-core/src/store/localStorageStore.js +198 -0
  685. package/dist/ra-core/src/store/memoryStore.d.ts +15 -0
  686. package/dist/ra-core/src/store/memoryStore.js +108 -0
  687. package/dist/ra-core/src/store/types.d.ts +11 -0
  688. package/dist/ra-core/src/store/types.js +1 -0
  689. package/dist/ra-core/src/store/useRemoveFromStore.d.ts +17 -0
  690. package/dist/ra-core/src/store/useRemoveFromStore.js +29 -0
  691. package/dist/ra-core/src/store/useRemoveItemsFromStore.d.ts +17 -0
  692. package/dist/ra-core/src/store/useRemoveItemsFromStore.js +29 -0
  693. package/dist/ra-core/src/store/useResetStore.d.ts +17 -0
  694. package/dist/ra-core/src/store/useResetStore.js +21 -0
  695. package/dist/ra-core/src/store/useStore.d.ts +48 -0
  696. package/dist/ra-core/src/store/useStore.js +32 -0
  697. package/dist/ra-core/src/store/useStoreContext.d.ts +4 -0
  698. package/dist/ra-core/src/store/useStoreContext.js +6 -0
  699. package/dist/ra-core/src/test-ui/Admin.d.ts +2 -0
  700. package/dist/ra-core/src/test-ui/Admin.js +8 -0
  701. package/dist/ra-core/src/test-ui/ArrayInput.d.ts +10 -0
  702. package/dist/ra-core/src/test-ui/ArrayInput.js +8 -0
  703. package/dist/ra-core/src/test-ui/AutocompleteArrayInput.d.ts +5 -0
  704. package/dist/ra-core/src/test-ui/AutocompleteArrayInput.js +5 -0
  705. package/dist/ra-core/src/test-ui/AutocompleteInput.d.ts +5 -0
  706. package/dist/ra-core/src/test-ui/AutocompleteInput.js +29 -0
  707. package/dist/ra-core/src/test-ui/BooleanInput.d.ts +2 -0
  708. package/dist/ra-core/src/test-ui/BooleanInput.js +10 -0
  709. package/dist/ra-core/src/test-ui/Confirm.d.ts +10 -0
  710. package/dist/ra-core/src/test-ui/Confirm.js +25 -0
  711. package/dist/ra-core/src/test-ui/CreateButton.d.ts +3 -0
  712. package/dist/ra-core/src/test-ui/CreateButton.js +9 -0
  713. package/dist/ra-core/src/test-ui/DataTable.d.ts +15 -0
  714. package/dist/ra-core/src/test-ui/DataTable.js +88 -0
  715. package/dist/ra-core/src/test-ui/DeleteButton.d.ts +5 -0
  716. package/dist/ra-core/src/test-ui/DeleteButton.js +18 -0
  717. package/dist/ra-core/src/test-ui/EditButton.d.ts +5 -0
  718. package/dist/ra-core/src/test-ui/EditButton.js +13 -0
  719. package/dist/ra-core/src/test-ui/Layout.d.ts +4 -0
  720. package/dist/ra-core/src/test-ui/Layout.js +36 -0
  721. package/dist/ra-core/src/test-ui/Notification.d.ts +13 -0
  722. package/dist/ra-core/src/test-ui/Notification.js +109 -0
  723. package/dist/ra-core/src/test-ui/Pagination.d.ts +1 -0
  724. package/dist/ra-core/src/test-ui/Pagination.js +28 -0
  725. package/dist/ra-core/src/test-ui/PrevNextButtons.d.ts +5 -0
  726. package/dist/ra-core/src/test-ui/PrevNextButtons.js +18 -0
  727. package/dist/ra-core/src/test-ui/ShowButton.d.ts +5 -0
  728. package/dist/ra-core/src/test-ui/ShowButton.js +13 -0
  729. package/dist/ra-core/src/test-ui/SimpleForm.d.ts +2 -0
  730. package/dist/ra-core/src/test-ui/SimpleForm.js +11 -0
  731. package/dist/ra-core/src/test-ui/SimpleFormIterator.d.ts +46 -0
  732. package/dist/ra-core/src/test-ui/SimpleFormIterator.js +101 -0
  733. package/dist/ra-core/src/test-ui/SimpleList.d.ts +6 -0
  734. package/dist/ra-core/src/test-ui/SimpleList.js +12 -0
  735. package/dist/ra-core/src/test-ui/SimpleShowLayout.d.ts +4 -0
  736. package/dist/ra-core/src/test-ui/SimpleShowLayout.js +3 -0
  737. package/dist/ra-core/src/test-ui/TextInput.d.ts +6 -0
  738. package/dist/ra-core/src/test-ui/TextInput.js +9 -0
  739. package/dist/ra-core/src/test-ui/defaultI18nProvider.d.ts +2 -0
  740. package/dist/ra-core/src/test-ui/defaultI18nProvider.js +10 -0
  741. package/dist/ra-core/src/test-ui/index.d.ts +21 -0
  742. package/dist/ra-core/src/test-ui/index.js +21 -0
  743. package/dist/ra-core/src/types.d.ts +284 -0
  744. package/dist/ra-core/src/types.js +5 -0
  745. package/dist/ra-core/src/util/FieldTitle.d.ts +17 -0
  746. package/dist/ra-core/src/util/FieldTitle.js +24 -0
  747. package/dist/ra-core/src/util/Ready.d.ts +2 -0
  748. package/dist/ra-core/src/util/Ready.js +57 -0
  749. package/dist/ra-core/src/util/asyncDebounce.d.ts +7 -0
  750. package/dist/ra-core/src/util/asyncDebounce.js +29 -0
  751. package/dist/ra-core/src/util/escapePath.d.ts +11 -0
  752. package/dist/ra-core/src/util/escapePath.js +10 -0
  753. package/dist/ra-core/src/util/genericMemo.d.ts +5 -0
  754. package/dist/ra-core/src/util/genericMemo.js +14 -0
  755. package/dist/ra-core/src/util/getFieldLabelTranslationArgs.d.ts +22 -0
  756. package/dist/ra-core/src/util/getFieldLabelTranslationArgs.js +73 -0
  757. package/dist/ra-core/src/util/getMutationMode.d.ts +1 -0
  758. package/dist/ra-core/src/util/getMutationMode.js +13 -0
  759. package/dist/ra-core/src/util/hooks.d.ts +15 -0
  760. package/dist/ra-core/src/util/hooks.js +73 -0
  761. package/dist/ra-core/src/util/index.d.ts +20 -0
  762. package/dist/ra-core/src/util/index.js +19 -0
  763. package/dist/ra-core/src/util/mergeRefs.d.ts +2 -0
  764. package/dist/ra-core/src/util/mergeRefs.js +13 -0
  765. package/dist/ra-core/src/util/removeEmpty.d.ts +2 -0
  766. package/dist/ra-core/src/util/removeEmpty.js +16 -0
  767. package/dist/ra-core/src/util/removeKey.d.ts +2 -0
  768. package/dist/ra-core/src/util/removeKey.js +22 -0
  769. package/dist/ra-core/src/util/shallowEqual.d.ts +1 -0
  770. package/dist/ra-core/src/util/shallowEqual.js +29 -0
  771. package/dist/ra-core/src/util/useCheckForApplicationUpdate.d.ts +21 -0
  772. package/dist/ra-core/src/util/useCheckForApplicationUpdate.js +84 -0
  773. package/dist/ra-core/src/util/useDebouncedEvent.d.ts +8 -0
  774. package/dist/ra-core/src/util/useDebouncedEvent.js +28 -0
  775. package/dist/ra-core/src/util/useEvent.d.ts +7 -0
  776. package/dist/ra-core/src/util/useEvent.js +19 -0
  777. package/dist/ra-core/src/util/useFieldValue.d.ts +21 -0
  778. package/dist/ra-core/src/util/useFieldValue.js +27 -0
  779. package/dist/ra-core/src/util/useWhyDidYouUpdate.d.ts +12 -0
  780. package/dist/ra-core/src/util/useWhyDidYouUpdate.js +42 -0
  781. package/dist/ra-core/src/util/warning.d.ts +2 -0
  782. package/dist/ra-core/src/util/warning.js +5 -0
  783. package/dist/resource/Resource.d.ts +14 -0
  784. package/dist/resource/Resource.js +31 -0
  785. package/dist/resource/ResourceSchema.d.ts +170 -13
  786. package/dist/resource/ResourceSchema.js +118 -20
  787. package/dist/resource/ResourceSchemaProvider.d.ts +2 -1
  788. package/dist/resource/ResourceSchemaProvider.js +9 -9
  789. package/dist/resource/SchemaRegistry.d.ts +64 -5
  790. package/dist/resource/SchemaRegistry.js +189 -22
  791. package/dist/resource/index.d.ts +2 -0
  792. package/dist/resource/index.js +2 -0
  793. package/dist/resource/useConstructedPageTitle.d.ts +1 -0
  794. package/dist/resource/useConstructedPageTitle.js +27 -0
  795. package/dist/routing/index.d.ts +2 -0
  796. package/dist/routing/index.js +2 -0
  797. package/dist/routing/useCreatePath.d.ts +7 -0
  798. package/dist/routing/useCreatePath.js +36 -0
  799. package/dist/routing/useGetPathForRecord.d.ts +11 -0
  800. package/dist/routing/useGetPathForRecord.js +94 -0
  801. package/dist/settings/SettingsContext.d.ts +16 -0
  802. package/dist/settings/SettingsContext.js +3 -0
  803. package/dist/settings/useSettingValue.d.ts +15 -0
  804. package/dist/settings/useSettingValue.js +23 -0
  805. package/dist/strato-core/src/core/Resource.d.ts +0 -0
  806. package/dist/strato-core/src/core/Resource.js +1 -0
  807. package/dist/strato-core/src/core/index.d.ts +0 -0
  808. package/dist/strato-core/src/core/index.js +1 -0
  809. package/dist/strato-core/src/index.d.ts +3 -0
  810. package/dist/strato-core/src/index.js +4 -0
  811. package/dist/strato-core/src/ra-messages.d.ts +1 -0
  812. package/dist/strato-core/src/ra-messages.js +296 -0
  813. package/dist/strato-core/src/resource/FieldSchema.d.ts +18 -0
  814. package/dist/strato-core/src/resource/FieldSchema.js +19 -0
  815. package/dist/strato-core/src/resource/InputSchema.d.ts +18 -0
  816. package/dist/strato-core/src/resource/InputSchema.js +19 -0
  817. package/dist/strato-core/src/resource/ResourceContext.d.ts +2 -0
  818. package/dist/strato-core/src/resource/ResourceContext.js +3 -0
  819. package/dist/strato-core/src/resource/ResourceSchema.d.ts +33 -0
  820. package/dist/strato-core/src/resource/ResourceSchema.js +90 -0
  821. package/dist/strato-core/src/resource/ResourceSchemaProvider.d.ts +15 -0
  822. package/dist/strato-core/src/resource/ResourceSchemaProvider.js +71 -0
  823. package/dist/strato-core/src/resource/SchemaRegistry.d.ts +71 -0
  824. package/dist/strato-core/src/resource/SchemaRegistry.js +212 -0
  825. package/dist/strato-core/src/resource/index.d.ts +6 -0
  826. package/dist/strato-core/src/resource/index.js +6 -0
  827. package/package.json +9 -3
  828. package/src/index.ts +3 -4
  829. package/src/resource/Resource.test.tsx +87 -0
  830. package/src/resource/Resource.tsx +62 -0
  831. package/src/resource/ResourceSchema.tsx +378 -57
  832. package/src/resource/ResourceSchemaProvider.tsx +17 -27
  833. package/src/resource/SchemaRegistry.tsx +295 -46
  834. package/src/resource/index.ts +2 -0
  835. package/src/resource/useConstructedPageTitle.ts +31 -0
  836. package/src/routing/index.ts +2 -0
  837. package/src/routing/useCreatePath.test.tsx +38 -0
  838. package/src/routing/useCreatePath.ts +40 -0
  839. package/src/routing/useGetPathForRecord.ts +127 -0
  840. package/src/settings/SettingsContext.ts +20 -0
  841. package/src/settings/useSettingValue.ts +32 -0
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export declare const SimpleList: ({ children, render, inline, }: {
3
+ children?: React.ReactNode;
4
+ render?: (record: any) => React.ReactNode;
5
+ inline?: boolean;
6
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { RecordContextProvider } from '../controller/record';
3
+ import { WithListContext } from '../controller/list/WithListContext';
4
+ export const SimpleList = ({ children, render, inline = false, }) => (_jsx(WithListContext, { render: ({ data, isPending }) => isPending ? null : children ? (children) : (_jsx("ul", { style: {
5
+ display: 'flex',
6
+ flexDirection: inline ? 'row' : 'column',
7
+ gap: '1em',
8
+ listStyle: 'none',
9
+ marginBlockStart: 0,
10
+ marginBlockEnd: 0,
11
+ paddingInlineStart: 0,
12
+ }, children: data?.map(record => (_jsx(RecordContextProvider, { value: record, children: _jsx("li", { children: render ? render(record) : children }) }, record.id))) })) }));
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ export declare const SimpleShowLayout: ({ children, }: {
3
+ children: React.ReactNode;
4
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import * as React from 'react';
3
+ export const SimpleShowLayout = ({ children, }) => (_jsx("div", { style: { display: 'flex', flexDirection: 'column', gap: '1em' }, children: React.Children.map(children, child => (_jsx("div", { children: child }))) }));
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { type InputProps } from '../form/useInput';
3
+ export declare const TextInput: ({ multiline, type, ...props }: InputProps & {
4
+ type?: React.HTMLInputTypeAttribute;
5
+ multiline?: boolean;
6
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { isRequired } from '../form/validation/validate';
3
+ import { ValidationError } from '../form/validation/ValidationError';
4
+ import { useInput } from '../form/useInput';
5
+ import { FieldTitle } from '../util/FieldTitle';
6
+ export const TextInput = ({ multiline, type = 'text', ...props }) => {
7
+ const { id, field, fieldState: { error, invalid }, } = useInput(props);
8
+ return (_jsxs("div", { children: [_jsx("label", { htmlFor: id, children: _jsx(FieldTitle, { label: props.label, source: props.source, resource: props.resource, isRequired: isRequired(props.validate) }) }), _jsx("br", {}), multiline ? (_jsx("textarea", { id: id, ...field, "aria-describedby": invalid ? `error-${id}` : undefined })) : (_jsx("input", { id: id, ...field, type: type, "aria-describedby": invalid ? `error-${id}` : undefined })), invalid && error?.message ? (_jsx("p", { style: { color: 'red' }, id: `error-${id}`, children: _jsx(ValidationError, { error: error.message }) })) : null] }));
9
+ };
@@ -0,0 +1,2 @@
1
+ import { I18nProvider } from '../types';
2
+ export declare const defaultI18nProvider: I18nProvider;
@@ -0,0 +1,10 @@
1
+ export const defaultI18nProvider = {
2
+ translate: (key, options = {}) => {
3
+ if (options._) {
4
+ return options._;
5
+ }
6
+ return key;
7
+ },
8
+ changeLocale: () => Promise.resolve(),
9
+ getLocale: () => 'en',
10
+ };
@@ -0,0 +1,21 @@
1
+ export * from './Admin';
2
+ export * from './ArrayInput';
3
+ export * from './AutocompleteArrayInput';
4
+ export * from './AutocompleteInput';
5
+ export * from './BooleanInput';
6
+ export * from './Confirm';
7
+ export * from './CreateButton';
8
+ export * from './DataTable';
9
+ export * from './defaultI18nProvider';
10
+ export * from './DeleteButton';
11
+ export * from './EditButton';
12
+ export * from './Layout';
13
+ export * from './Notification';
14
+ export * from './Pagination';
15
+ export * from './PrevNextButtons';
16
+ export * from './ShowButton';
17
+ export * from './SimpleForm';
18
+ export * from './SimpleFormIterator';
19
+ export * from './SimpleList';
20
+ export * from './SimpleShowLayout';
21
+ export * from './TextInput';
@@ -0,0 +1,21 @@
1
+ export * from './Admin';
2
+ export * from './ArrayInput';
3
+ export * from './AutocompleteArrayInput';
4
+ export * from './AutocompleteInput';
5
+ export * from './BooleanInput';
6
+ export * from './Confirm';
7
+ export * from './CreateButton';
8
+ export * from './DataTable';
9
+ export * from './defaultI18nProvider';
10
+ export * from './DeleteButton';
11
+ export * from './EditButton';
12
+ export * from './Layout';
13
+ export * from './Notification';
14
+ export * from './Pagination';
15
+ export * from './PrevNextButtons';
16
+ export * from './ShowButton';
17
+ export * from './SimpleForm';
18
+ export * from './SimpleFormIterator';
19
+ export * from './SimpleList';
20
+ export * from './SimpleShowLayout';
21
+ export * from './TextInput';
@@ -0,0 +1,284 @@
1
+ import { ComponentType, ReactElement, ReactNode } from 'react';
2
+ import { FieldPath } from 'react-hook-form';
3
+ import { WithPermissionsChildrenParams } from './auth/WithPermissions';
4
+ import { AuthActionType } from './auth/types';
5
+ /**
6
+ * data types
7
+ */
8
+ export type Identifier = string | number;
9
+ export interface RaRecord<IdentifierType extends Identifier = Identifier> extends Record<string, any> {
10
+ id: IdentifierType;
11
+ }
12
+ export interface SortPayload {
13
+ field: string;
14
+ order: 'ASC' | 'DESC';
15
+ }
16
+ export interface FilterPayload {
17
+ [k: string]: any;
18
+ }
19
+ export interface PaginationPayload {
20
+ page: number;
21
+ perPage: number;
22
+ }
23
+ export type ValidUntil = Date;
24
+ /**
25
+ * i18nProvider types
26
+ */
27
+ export declare const I18N_TRANSLATE = "I18N_TRANSLATE";
28
+ export declare const I18N_CHANGE_LOCALE = "I18N_CHANGE_LOCALE";
29
+ export type TranslateFunction = (key: string, options?: any) => string;
30
+ export type Locale = {
31
+ locale: string;
32
+ name: string;
33
+ };
34
+ export type I18nProvider = {
35
+ translate: TranslateFunction;
36
+ changeLocale: (locale: string, options?: any) => Promise<void>;
37
+ getLocale: () => string;
38
+ getLocales?: () => Locale[];
39
+ [key: string]: any;
40
+ };
41
+ export interface UserIdentity {
42
+ id: Identifier;
43
+ fullName?: string;
44
+ avatar?: string;
45
+ [key: string]: any;
46
+ }
47
+ /**
48
+ * authProvider types
49
+ */
50
+ export type AuthProvider = {
51
+ login: (params: any) => Promise<{
52
+ redirectTo?: string | boolean;
53
+ } | void | any>;
54
+ logout: (params: any) => Promise<void | false | string>;
55
+ checkAuth: (params: any & QueryFunctionContext) => Promise<void>;
56
+ checkError: (error: any) => Promise<void>;
57
+ getIdentity?: (params?: QueryFunctionContext) => Promise<UserIdentity>;
58
+ getPermissions?: (params: any & QueryFunctionContext) => Promise<any>;
59
+ handleCallback?: (params?: QueryFunctionContext) => Promise<AuthRedirectResult | void | any>;
60
+ canAccess?: <RecordType extends Record<string, any> = Record<string, any>>(params: QueryFunctionContext & {
61
+ action: string;
62
+ resource: string;
63
+ record?: RecordType;
64
+ }) => Promise<boolean>;
65
+ [key: string]: any;
66
+ supportAbortSignal?: boolean;
67
+ };
68
+ export type AuthRedirectResult = {
69
+ redirectTo?: string | false;
70
+ logoutOnFailure?: boolean;
71
+ };
72
+ export type LegacyAuthProvider = (type: AuthActionType, params?: any) => Promise<any>;
73
+ /**
74
+ * dataProvider types
75
+ */
76
+ export type DataProvider<ResourceType extends string = string> = {
77
+ getList: <RecordType extends RaRecord = any>(resource: ResourceType, params: GetListParams & QueryFunctionContext) => Promise<GetListResult<RecordType>>;
78
+ getOne: <RecordType extends RaRecord = any>(resource: ResourceType, params: GetOneParams<RecordType> & QueryFunctionContext) => Promise<GetOneResult<RecordType>>;
79
+ getMany: <RecordType extends RaRecord = any>(resource: ResourceType, params: GetManyParams<RecordType> & QueryFunctionContext) => Promise<GetManyResult<RecordType>>;
80
+ getManyReference: <RecordType extends RaRecord = any>(resource: ResourceType, params: GetManyReferenceParams & QueryFunctionContext) => Promise<GetManyReferenceResult<RecordType>>;
81
+ update: <RecordType extends RaRecord = any>(resource: ResourceType, params: UpdateParams) => Promise<UpdateResult<RecordType>>;
82
+ updateMany: <RecordType extends RaRecord = any>(resource: ResourceType, params: UpdateManyParams) => Promise<UpdateManyResult<RecordType>>;
83
+ create: <RecordType extends Omit<RaRecord, 'id'> = any, ResultRecordType extends RaRecord = RecordType & {
84
+ id: Identifier;
85
+ }>(resource: ResourceType, params: CreateParams) => Promise<CreateResult<ResultRecordType>>;
86
+ delete: <RecordType extends RaRecord = any>(resource: ResourceType, params: DeleteParams<RecordType>) => Promise<DeleteResult<RecordType>>;
87
+ deleteMany: <RecordType extends RaRecord = any>(resource: ResourceType, params: DeleteManyParams<RecordType>) => Promise<DeleteManyResult<RecordType>>;
88
+ [key: string]: any;
89
+ supportAbortSignal?: boolean;
90
+ };
91
+ export interface QueryFunctionContext {
92
+ signal?: AbortSignal;
93
+ }
94
+ export interface GetListParams {
95
+ pagination?: PaginationPayload;
96
+ sort?: SortPayload;
97
+ filter?: any;
98
+ meta?: any;
99
+ signal?: AbortSignal;
100
+ }
101
+ export interface GetListResult<RecordType extends RaRecord = any> {
102
+ data: RecordType[];
103
+ total?: number;
104
+ pageInfo?: {
105
+ hasNextPage?: boolean;
106
+ hasPreviousPage?: boolean;
107
+ };
108
+ meta?: any;
109
+ }
110
+ export interface GetInfiniteListResult<RecordType extends RaRecord = any> extends GetListResult<RecordType> {
111
+ pageParam: number;
112
+ }
113
+ export interface GetOneParams<RecordType extends RaRecord = any> {
114
+ id: RecordType['id'];
115
+ meta?: any;
116
+ signal?: AbortSignal;
117
+ }
118
+ export interface GetOneResult<RecordType extends RaRecord = any> {
119
+ data: RecordType;
120
+ meta?: any;
121
+ }
122
+ export interface GetManyParams<RecordType extends RaRecord = any> {
123
+ ids: RecordType['id'][];
124
+ meta?: any;
125
+ signal?: AbortSignal;
126
+ }
127
+ export interface GetManyResult<RecordType extends RaRecord = any> {
128
+ data: RecordType[];
129
+ meta?: any;
130
+ }
131
+ export interface GetManyReferenceParams {
132
+ target: string;
133
+ id: Identifier;
134
+ pagination: PaginationPayload;
135
+ sort: SortPayload;
136
+ filter: any;
137
+ meta?: any;
138
+ signal?: AbortSignal;
139
+ }
140
+ export interface GetManyReferenceResult<RecordType extends RaRecord = any> {
141
+ data: RecordType[];
142
+ total?: number;
143
+ pageInfo?: {
144
+ hasNextPage?: boolean;
145
+ hasPreviousPage?: boolean;
146
+ };
147
+ meta?: any;
148
+ }
149
+ export interface UpdateParams<RecordType extends RaRecord = any> {
150
+ id: RecordType['id'];
151
+ data: Partial<RecordType>;
152
+ previousData: RecordType;
153
+ meta?: any;
154
+ }
155
+ export interface UpdateResult<RecordType extends RaRecord = any> {
156
+ data: RecordType;
157
+ meta?: any;
158
+ }
159
+ export interface UpdateManyParams<T = any> {
160
+ ids: Identifier[];
161
+ data: Partial<T>;
162
+ meta?: any;
163
+ }
164
+ export interface UpdateManyResult<RecordType extends RaRecord = any> {
165
+ data?: RecordType['id'][];
166
+ meta?: any;
167
+ }
168
+ export interface CreateParams<T = any> {
169
+ data: Partial<T>;
170
+ meta?: any;
171
+ }
172
+ export interface CreateResult<RecordType extends RaRecord = any> {
173
+ data: RecordType;
174
+ meta?: any;
175
+ }
176
+ export interface DeleteParams<RecordType extends RaRecord = any> {
177
+ id: RecordType['id'];
178
+ previousData?: RecordType;
179
+ meta?: any;
180
+ }
181
+ export interface DeleteResult<RecordType extends RaRecord = any> {
182
+ data: RecordType;
183
+ meta?: any;
184
+ }
185
+ export interface DeleteManyParams<RecordType extends RaRecord = any> {
186
+ ids: RecordType['id'][];
187
+ meta?: any;
188
+ }
189
+ export interface DeleteManyResult<RecordType extends RaRecord = any> {
190
+ data?: RecordType['id'][];
191
+ meta?: any;
192
+ }
193
+ export type DataProviderResult<RecordType extends RaRecord = any> = CreateResult<RecordType> | DeleteResult<RecordType> | DeleteManyResult | GetListResult<RecordType> | GetManyResult<RecordType> | GetManyReferenceResult<RecordType> | GetOneResult<RecordType> | UpdateResult<RecordType> | UpdateManyResult;
194
+ export type MutationMode = 'pessimistic' | 'optimistic' | 'undoable';
195
+ export type OnSuccess = (response?: any, variables?: any, onMutateResult?: any, context?: any) => void;
196
+ export type OnError = (error?: any, variables?: any, onMutateResult?: any, context?: any) => void;
197
+ export type TransformData = (data: any, options?: {
198
+ previousData: any;
199
+ }) => any | Promise<any>;
200
+ export interface UseDataProviderOptions {
201
+ action?: string;
202
+ fetch?: string;
203
+ meta?: object;
204
+ mutationMode?: MutationMode;
205
+ onSuccess?: OnSuccess;
206
+ onError?: OnError;
207
+ enabled?: boolean;
208
+ }
209
+ export type LegacyDataProvider = (type: string, resource: string, params: any) => Promise<any>;
210
+ export type RecordToStringFunction = (record: any) => string;
211
+ export interface ResourceDefinition<OptionsType extends ResourceOptions = any> {
212
+ readonly name: string;
213
+ readonly options?: OptionsType;
214
+ readonly hasList?: boolean;
215
+ readonly hasEdit?: boolean;
216
+ readonly hasShow?: boolean;
217
+ readonly hasCreate?: boolean;
218
+ readonly icon?: any;
219
+ readonly recordRepresentation?: React.ReactNode | RecordToStringFunction;
220
+ }
221
+ /**
222
+ * Misc types
223
+ */
224
+ export type Dispatch<T> = T extends (...args: infer A) => any ? (...args: A) => void : never;
225
+ export type ResourceElement = ReactElement<ResourceProps>;
226
+ export type RenderResourcesFunction = (permissions: any) => ReactNode | Promise<ReactNode> | ResourceElement[] | Promise<ResourceElement[]>;
227
+ export type AdminChildren = RenderResourcesFunction | Iterable<ReactNode | RenderResourcesFunction> | ReactNode;
228
+ export type TitleComponent = string | ReactElement<any>;
229
+ export type CatchAllComponent = ComponentType<{
230
+ title?: TitleComponent;
231
+ }>;
232
+ export type LoginComponent = ComponentType<{}> | ReactElement<any>;
233
+ export type DashboardComponent = ComponentType<WithPermissionsChildrenParams>;
234
+ export interface CoreLayoutProps {
235
+ children: ReactNode;
236
+ }
237
+ export type LayoutComponent = ComponentType<CoreLayoutProps>;
238
+ export type LoadingComponent = ComponentType<{
239
+ loadingPrimary?: string;
240
+ loadingSecondary?: string;
241
+ }>;
242
+ export interface ResourceComponentInjectedProps {
243
+ permissions?: any;
244
+ resource?: string;
245
+ options?: any;
246
+ hasList?: boolean;
247
+ hasEdit?: boolean;
248
+ hasShow?: boolean;
249
+ hasCreate?: boolean;
250
+ }
251
+ export interface ResourceOptions {
252
+ label?: string;
253
+ [key: string]: any;
254
+ }
255
+ export interface ResourceProps {
256
+ intent?: 'route' | 'registration';
257
+ name: string;
258
+ list?: ComponentType<any> | ReactElement;
259
+ create?: ComponentType<any> | ReactElement;
260
+ edit?: ComponentType<any> | ReactElement;
261
+ show?: ComponentType<any> | ReactElement;
262
+ hasCreate?: boolean;
263
+ hasEdit?: boolean;
264
+ hasShow?: boolean;
265
+ icon?: ComponentType<any>;
266
+ recordRepresentation?: React.ReactNode | RecordToStringFunction;
267
+ options?: ResourceOptions;
268
+ children?: ReactNode;
269
+ }
270
+ export type Exporter<RecordType extends RaRecord = any> = (data: RecordType[], fetchRelatedRecords: FetchRelatedRecords, dataProvider: DataProvider, resource?: string) => void | Promise<void>;
271
+ export type FetchRelatedRecords = <RecordType = any>(data: any[], field: string, resource: string) => Promise<{
272
+ [key: Identifier]: RecordType;
273
+ }>;
274
+ export type SetOnSave = (onSave?: (values: object, redirect: any) => void) => void;
275
+ export type FormFunctions = {
276
+ setOnSave?: SetOnSave;
277
+ };
278
+ export type HintedString<KnownValues extends string> = AnyString | KnownValues;
279
+ export type RecordValues = Record<string, any>;
280
+ export type RecordPath<TRecordValues extends RecordValues> = FieldPath<TRecordValues>;
281
+ export type ExtractRecordPaths<T extends RecordValues> = [
282
+ T
283
+ ] extends [never] ? string : RecordPath<T>;
284
+ export type AnyString = string & {};
@@ -0,0 +1,5 @@
1
+ /**
2
+ * i18nProvider types
3
+ */
4
+ export const I18N_TRANSLATE = 'I18N_TRANSLATE';
5
+ export const I18N_CHANGE_LOCALE = 'I18N_CHANGE_LOCALE';
@@ -0,0 +1,17 @@
1
+ import * as React from 'react';
2
+ import { ReactNode } from 'react';
3
+ export interface FieldTitleProps {
4
+ isRequired?: boolean;
5
+ resource?: string;
6
+ source?: string;
7
+ label?: ReactNode;
8
+ }
9
+ export declare const FieldTitle: {
10
+ (props: FieldTitleProps): number | bigint | import("react/jsx-runtime").JSX.Element | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | null;
11
+ displayName: string;
12
+ };
13
+ declare const _default: React.MemoExoticComponent<{
14
+ (props: FieldTitleProps): number | bigint | import("react/jsx-runtime").JSX.Element | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | null;
15
+ displayName: string;
16
+ }>;
17
+ export default _default;
@@ -0,0 +1,24 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { memo } from 'react';
3
+ import { useTranslateLabel } from '../i18n';
4
+ export const FieldTitle = (props) => {
5
+ const { source, label, resource, isRequired } = props;
6
+ const translateLabel = useTranslateLabel();
7
+ if (label === true) {
8
+ throw new Error('Label parameter must be a string, a ReactElement or false');
9
+ }
10
+ if (label === false || label === '') {
11
+ return null;
12
+ }
13
+ if (label != null && typeof label !== 'string') {
14
+ return label;
15
+ }
16
+ return (_jsxs("span", { children: [translateLabel({
17
+ label,
18
+ resource,
19
+ source,
20
+ }), isRequired && _jsx("span", { "aria-hidden": "true", children: "\u2009*" })] }));
21
+ };
22
+ // What? TypeScript loses the displayName if we don't set it explicitly
23
+ FieldTitle.displayName = 'FieldTitle';
24
+ export default memo(FieldTitle);
@@ -0,0 +1,2 @@
1
+ declare const _default: () => import("react/jsx-runtime").JSX.Element;
2
+ export default _default;
@@ -0,0 +1,57 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useState } from 'react';
3
+ const styles = {
4
+ root: {
5
+ width: '100vw',
6
+ height: '100vh',
7
+ display: 'flex',
8
+ flexDirection: 'column',
9
+ fontFamily: '"Roboto", sans-serif',
10
+ },
11
+ main: {
12
+ flex: 1,
13
+ display: 'flex',
14
+ alignItems: 'center',
15
+ justifyContent: 'center',
16
+ textAlign: 'center',
17
+ flexDirection: 'column',
18
+ background: 'linear-gradient(135deg, #00023b 0%, #00023b 50%, #313264 100%)',
19
+ color: 'white',
20
+ fontSize: '1.5em',
21
+ fontWeight: 'bold',
22
+ },
23
+ secondary: {
24
+ height: '20vh',
25
+ background: '#e8e8e8',
26
+ color: 'black',
27
+ display: 'flex',
28
+ alignItems: 'center',
29
+ justifyContent: 'space-evenly',
30
+ },
31
+ link: {
32
+ textAlign: 'center',
33
+ width: 150,
34
+ display: 'block',
35
+ textDecoration: 'none',
36
+ color: 'black',
37
+ opacity: 0.7,
38
+ },
39
+ linkHovered: {
40
+ opacity: 1,
41
+ },
42
+ image: {
43
+ display: 'block',
44
+ margin: 'auto',
45
+ width: 50,
46
+ },
47
+ logo: {
48
+ height: 100,
49
+ },
50
+ };
51
+ const Button = ({ img, label, href }) => {
52
+ const [hovered, setHovered] = useState(false);
53
+ return (_jsx("div", { children: _jsxs("a", { href: href, style: hovered
54
+ ? { ...styles.link, ...styles.linkHovered }
55
+ : styles.link, onMouseEnter: () => setHovered(true), onMouseLeave: () => setHovered(false), children: [_jsx("img", { src: img, alt: label, style: styles.image }), _jsx("br", {}), label] }) }));
56
+ };
57
+ export default () => process.env.NODE_ENV === 'production' ? (_jsx("span", {})) : (_jsxs("div", { style: styles.root, children: [_jsxs("div", { style: styles.main, children: [_jsx("img", { style: styles.logo, src: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhbHF1ZV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMTMxIDEzMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTMxIDEzMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMyMjI0NTg7fQoJLnN0MXtmaWxsOiM1MTUzN0Q7fQoJLnN0MntmaWxsOiNBM0E0Qjk7fQoJLnN0M3tmaWxsOiMwMDAyM0I7fQoJLnN0NHtmaWxsOiNGRkZGRkY7fQoJLnN0NXtlbmFibGUtYmFja2dyb3VuZDpuZXcgICAgO30KPC9zdHlsZT4KPHRpdGxlPkxvZ29fc29tYnJlX2FpPC90aXRsZT4KPGcgaWQ9IlJlY3RhbmdsZV81NiI+Cgk8Zz4KCQk8cmVjdCB4PSIxOS4xIiB5PSIxOSIgdHJhbnNmb3JtPSJtYXRyaXgoMC41IC0wLjg2NiAwLjg2NiAwLjUgLTIzLjkyMjYgODkuNTQ2KSIgY2xhc3M9InN0MCIgd2lkdGg9IjkyLjkiIGhlaWdodD0iOTIuOSIvPgoJCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik04MywxMzAuM0wwLjgsODIuOUw0OC4yLDAuN2w4Mi4yLDQ3LjVMODMsMTMwLjN6IE0zLjUsODIuMWw3OC43LDQ1LjVsNDUuNS03OC43TDQ5LDMuNEwzLjUsODIuMXoiLz4KCTwvZz4KPC9nPgo8ZyBpZD0iUmVjdGFuZ2xlXzU2LTIiPgoJPGc+CgkJPHJlY3QgeD0iMTkiIHk9IjE5LjEiIHRyYW5zZm9ybT0ibWF0cml4KDAuODY2IC0wLjUgMC41IDAuODY2IC0yMy45Nzc3IDQxLjUyNykiIGNsYXNzPSJzdDAiIHdpZHRoPSI5Mi45IiBoZWlnaHQ9IjkyLjkiLz4KCQk8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNDcuOSwxMzFMMCw0OEw4My4xLDBsNDgsODMuMUw0Ny45LDEzMXogTTQuMSw0OS4xbDQ1LDc3LjlsNzcuOS00NUw4Miw0LjFMNC4xLDQ5LjF6Ii8+Cgk8L2c+CjwvZz4KPGcgaWQ9IlJlY3RhbmdsZV81Ni0zIj4KCTxnPgoJCTxyZWN0IHg9IjE5LjEiIHk9IjE5IiBjbGFzcz0ic3QzIiB3aWR0aD0iOTIuOSIgaGVpZ2h0PSI5Mi45Ii8+CgkJPHBhdGggY2xhc3M9InN0NCIgZD0iTTExNC41LDExNC41SDE2LjZWMTYuNWg5Ny45VjExNC41eiBNMjEuNiwxMDkuNWg4Ny45VjIxLjVIMjEuNlYxMDkuNXoiLz4KCTwvZz4KPC9nPgo8ZyBpZD0iUmEiPgoJPGcgY2xhc3M9InN0NSI+CgkJPHBhdGggY2xhc3M9InN0NCIgZD0iTTU5LDg2LjdsLTYuNy0xOS4yaC0xLjJIMzguOXYxOS4yaC01LjZWMzguNWgxOC41YzMuNiwwLDYuMywwLjYsOC4xLDEuOGMxLjgsMS4yLDMsMi44LDMuNSw0LjgKCQkJYzAuNSwyLDAuOCw0LjYsMC44LDcuOGMwLDMuNS0wLjQsNi40LTEuMyw4LjdjLTAuOCwyLjMtMi42LDMuOS01LjMsNC44TDY1LDg2LjdINTl6IE01NS43LDYxLjZjMS4yLTAuNywyLTEuNywyLjQtMwoJCQljMC40LTEuMywwLjYtMy4yLDAuNi01LjZjMC0yLjUtMC4yLTQuMy0wLjUtNS42Yy0wLjMtMS4zLTEuMS0yLjItMi4zLTIuOWMtMS4yLTAuNy0zLTEtNS41LTFIMzguOXYxOS4xSDUwCgkJCUM1Mi41LDYyLjYsNTQuNCw2Mi4zLDU1LjcsNjEuNnoiLz4KCQk8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNNzQuMyw4NWMtMS42LTEuNS0yLjUtNC4yLTIuNS04LjJjMC0yLjcsMC4zLTQuOCwwLjktNi4zYzAuNi0xLjUsMS42LTIuNiwzLTMuM2MxLjQtMC43LDMuNC0xLDYtMQoJCQljMS4zLDAsNS4xLDAuMSwxMS40LDAuM3YtMi40YzAtMi45LTAuMi01LTAuNy02LjJjLTAuNS0xLjItMS4zLTItMi42LTIuNGMtMS4yLTAuMy0zLjMtMC41LTYuMy0wLjVjLTEuMywwLTMsMC4xLTQuOSwwLjIKCQkJYy0yLDAuMS0zLjYsMC4zLTQuOCwwLjV2LTQuM2MzLjMtMC43LDcuMS0xLDExLjQtMWMzLjcsMCw2LjUsMC40LDguNCwxLjJjMS44LDAuOCwzLjEsMi4yLDMuOCw0LjFjMC43LDEuOSwxLDQuNywxLDguNHYyMi41aC00LjgKCQkJbC0wLjMtNWgtMC4zYy0wLjgsMi4yLTIuMiwzLjctNC4xLDQuNGMtMS45LDAuNy00LjEsMS4xLTYuNiwxLjFDNzguNiw4Ny4yLDc2LDg2LjUsNzQuMyw4NXogTTg5LjEsODJjMS4yLTAuNCwyLjItMS4yLDIuOC0yLjQKCQkJYzAuOS0xLjgsMS4zLTQuMywxLjMtNy4zdi0yaC0xMGMtMS43LDAtMywwLjItMy44LDAuNWMtMC44LDAuMy0xLjQsMC45LTEuNywxLjhjLTAuMywwLjktMC41LDIuMi0wLjUsNGMwLDEuOCwwLjIsMy4xLDAuNiwzLjkKCQkJYzAuNCwwLjgsMS4xLDEuNCwyLDEuOGMxLDAuMywyLjUsMC41LDQuNSwwLjVDODYuMiw4Mi42LDg3LjgsODIuNCw4OS4xLDgyeiIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=", alt: "react-admin logo" }), _jsx("h1", { children: "Welcome to React-admin" }), _jsxs("div", { children: ["Your application is properly configured.", _jsx("br", {}), "Now you can add a <Resource> as child of <Admin>."] })] }), _jsxs("div", { style: styles.secondary, children: [_jsx(Button, { href: "https://marmelab.com/react-admin/documentation.html", img: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IgoJIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnIGlkPSJCb3VuZGluZ19Cb3giPgoJPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+CjwvZz4KPGcgaWQ9IkZsYXQiPgoJPGcgaWQ9InVpX3g1Rl9zcGVjX3g1Rl9oZWFkZXJfY29weV8yIj4KCTwvZz4KCTxnPgoJCTxwYXRoIGQ9Ik0yMSw1Yy0xLjExLTAuMzUtMi4zMy0wLjUtMy41LTAuNWMtMS45NSwwLTQuMDUsMC40LTUuNSwxLjVjLTEuNDUtMS4xLTMuNTUtMS41LTUuNS0xLjVTMi40NSw0LjksMSw2djE0LjY1CgkJCWMwLDAuMjUsMC4yNSwwLjUsMC41LDAuNWMwLjEsMCwwLjE1LTAuMDUsMC4yNS0wLjA1QzMuMSwyMC40NSw1LjA1LDIwLDYuNSwyMGMxLjk1LDAsNC4wNSwwLjQsNS41LDEuNWMxLjM1LTAuODUsMy44LTEuNSw1LjUtMS41CgkJCWMxLjY1LDAsMy4zNSwwLjMsNC43NSwxLjA1YzAuMSwwLjA1LDAuMTUsMC4wNSwwLjI1LDAuMDVjMC4yNSwwLDAuNS0wLjI1LDAuNS0wLjVWNkMyMi40LDUuNTUsMjEuNzUsNS4yNSwyMSw1eiBNMywxOC41VjcKCQkJYzEuMS0wLjM1LDIuMy0wLjUsMy41LTAuNWMxLjM0LDAsMy4xMywwLjQxLDQuNSwwLjk5djExLjVDOS42MywxOC40MSw3Ljg0LDE4LDYuNSwxOEM1LjMsMTgsNC4xLDE4LjE1LDMsMTguNXogTTIxLDE4LjUKCQkJYy0xLjEtMC4zNS0yLjMtMC41LTMuNS0wLjVjLTEuMzQsMC0zLjEzLDAuNDEtNC41LDAuOTlWNy40OWMxLjM3LTAuNTksMy4xNi0wLjk5LDQuNS0wLjk5YzEuMiwwLDIuNCwwLjE1LDMuNSwwLjVWMTguNXoiLz4KCQk8cGF0aCBvcGFjaXR5PSIwLjMiIGQ9Ik0xMSw3LjQ5QzkuNjMsNi45MSw3Ljg0LDYuNSw2LjUsNi41QzUuMyw2LjUsNC4xLDYuNjUsMyw3djExLjVDNC4xLDE4LjE1LDUuMywxOCw2LjUsMTgKCQkJYzEuMzQsMCwzLjEzLDAuNDEsNC41LDAuOTlWNy40OXoiLz4KCTwvZz4KCTxnPgoJCTxwYXRoIGQ9Ik0xNy41LDEwLjVjMC44OCwwLDEuNzMsMC4wOSwyLjUsMC4yNlY5LjI0QzE5LjIxLDkuMDksMTguMzYsOSwxNy41LDljLTEuMjgsMC0yLjQ2LDAuMTYtMy41LDAuNDd2MS41NwoJCQlDMTQuOTksMTAuNjksMTYuMTgsMTAuNSwxNy41LDEwLjV6Ii8+CgkJPHBhdGggZD0iTTE3LjUsMTMuMTZjMC44OCwwLDEuNzMsMC4wOSwyLjUsMC4yNlYxMS45Yy0wLjc5LTAuMTUtMS42NC0wLjI0LTIuNS0wLjI0Yy0xLjI4LDAtMi40NiwwLjE2LTMuNSwwLjQ3djEuNTcKCQkJQzE0Ljk5LDEzLjM2LDE2LjE4LDEzLjE2LDE3LjUsMTMuMTZ6Ii8+CgkJPHBhdGggZD0iTTE3LjUsMTUuODNjMC44OCwwLDEuNzMsMC4wOSwyLjUsMC4yNnYtMS41MmMtMC43OS0wLjE1LTEuNjQtMC4yNC0yLjUtMC4yNGMtMS4yOCwwLTIuNDYsMC4xNi0zLjUsMC40N3YxLjU3CgkJCUMxNC45OSwxNi4wMiwxNi4xOCwxNS44MywxNy41LDE1LjgzeiIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=", label: "Documentation" }), _jsx(Button, { href: "https://github.com/marmelab/react-admin/tree/master/examples", img: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAwaDI0djI0SDBWMHoiLz48cGF0aCBkPSJNOS40IDE2LjZMNC44IDEybDQuNi00LjZMOCA2bC02IDYgNiA2IDEuNC0xLjR6bTUuMiAwbDQuNi00LjYtNC42LTQuNkwxNiA2bDYgNi02IDYtMS40LTEuNHoiLz48L3N2Zz4=", label: "Examples" }), _jsx(Button, { href: "https://stackoverflow.com/questions/tagged/react-admin", img: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IgoJIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnIGlkPSJCb3VuZGluZ19Cb3giPgoJPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+CjwvZz4KPGcgaWQ9IkZsYXQiPgoJPGcgaWQ9InVpX3g1Rl9zcGVjX3g1Rl9oZWFkZXJfY29weV8yIj4KCTwvZz4KCTxnPgoJCTxjaXJjbGUgb3BhY2l0eT0iMC4zIiBjeD0iOSIgY3k9IjgiIHI9IjIiLz4KCQk8cGF0aCBvcGFjaXR5PSIwLjMiIGQ9Ik05LDE1Yy0yLjcsMC01LjgsMS4yOS02LDIuMDFMMywxOGgxMnYtMUMxNC44LDE2LjI5LDExLjcsMTUsOSwxNXoiLz4KCQk8cGF0aCBkPSJNMTYuNjcsMTMuMTNDMTguMDQsMTQuMDYsMTksMTUuMzIsMTksMTd2M2g0di0zQzIzLDE0LjgyLDE5LjQzLDEzLjUzLDE2LjY3LDEzLjEzeiIvPgoJCTxwYXRoIGQ9Ik0xNSwxMmMyLjIxLDAsNC0xLjc5LDQtNGMwLTIuMjEtMS43OS00LTQtNGMtMC40NywwLTAuOTEsMC4xLTEuMzMsMC4yNEMxNC41LDUuMjcsMTUsNi41OCwxNSw4cy0wLjUsMi43My0xLjMzLDMuNzYKCQkJQzE0LjA5LDExLjksMTQuNTMsMTIsMTUsMTJ6Ii8+CgkJPHBhdGggZD0iTTksMTJjMi4yMSwwLDQtMS43OSw0LTRjMC0yLjIxLTEuNzktNC00LTRTNSw1Ljc5LDUsOEM1LDEwLjIxLDYuNzksMTIsOSwxMnogTTksNmMxLjEsMCwyLDAuOSwyLDJjMCwxLjEtMC45LDItMiwyCgkJCVM3LDkuMSw3LDhDNyw2LjksNy45LDYsOSw2eiIvPgoJCTxwYXRoIGQ9Ik05LDEzYy0yLjY3LDAtOCwxLjM0LTgsNHYzaDE2di0zQzE3LDE0LjM0LDExLjY3LDEzLDksMTN6IE0xNSwxOEgzbDAtMC45OUMzLjIsMTYuMjksNi4zLDE1LDksMTVzNS44LDEuMjksNiwyVjE4eiIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=", label: "Community" })] })] }));
@@ -0,0 +1,7 @@
1
+ /**
2
+ * A version of lodash/debounce that always returns a promise but wait for the debounced function to return to resolve it.
3
+ * @param func The function to debounce
4
+ * @param wait The debounce delay
5
+ * @returns A debounced function that returns a promise
6
+ */
7
+ export declare function asyncDebounce<FunctionType extends (...args: any[]) => Promise<any>>(func: FunctionType, wait?: number): (...args: Parameters<FunctionType>) => ReturnType<FunctionType>;
@@ -0,0 +1,29 @@
1
+ import debounce from 'lodash/debounce.js';
2
+ /**
3
+ * A version of lodash/debounce that always returns a promise but wait for the debounced function to return to resolve it.
4
+ * @param func The function to debounce
5
+ * @param wait The debounce delay
6
+ * @returns A debounced function that returns a promise
7
+ */
8
+ export function asyncDebounce(func, wait) {
9
+ const resolveSet = new Set();
10
+ const rejectSet = new Set();
11
+ const debounced = debounce((args) => {
12
+ func(...args)
13
+ .then((...res) => {
14
+ resolveSet.forEach(resolve => resolve(...res));
15
+ })
16
+ .catch((...res) => {
17
+ rejectSet.forEach(reject => reject(...res));
18
+ })
19
+ .finally(() => {
20
+ resolveSet.clear();
21
+ rejectSet.clear();
22
+ });
23
+ }, wait);
24
+ return (...args) => new Promise((resolve, reject) => {
25
+ resolveSet.add(resolve);
26
+ rejectSet.add(reject);
27
+ debounced(args);
28
+ });
29
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Escape special characters in path so that react-router Route does not do any special treatment
3
+ *
4
+ * @see https://github.com/ReactTraining/react-router/blob/v3/docs/guides/RouteMatching.md#path-syntax
5
+ *
6
+ * @example
7
+ *
8
+ * escapePath('/foo(bar)') => 'foo\(bar\)'
9
+ */
10
+ declare const _default: (url: any) => any;
11
+ export default _default;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Escape special characters in path so that react-router Route does not do any special treatment
3
+ *
4
+ * @see https://github.com/ReactTraining/react-router/blob/v3/docs/guides/RouteMatching.md#path-syntax
5
+ *
6
+ * @example
7
+ *
8
+ * escapePath('/foo(bar)') => 'foo\(bar\)'
9
+ */
10
+ export default url => url.replace(/(\(|\))/g, '\\$1');
@@ -0,0 +1,5 @@
1
+ /**
2
+ * A version of React.memo that preserves the original component type allowing it to accept generics.
3
+ * See {@link https://stackoverflow.com/a/70890101}
4
+ */
5
+ export declare const genericMemo: <T>(component: T) => T;
@@ -0,0 +1,14 @@
1
+ import { memo } from 'react';
2
+ /**
3
+ * A version of React.memo that preserves the original component type allowing it to accept generics.
4
+ * See {@link https://stackoverflow.com/a/70890101}
5
+ */
6
+ export const genericMemo = (component) => {
7
+ const result = memo(component);
8
+ // We have to set the displayName on both the field implementation and the memoized version.
9
+ // On the implementation so that the memoized version can pick them up and users may reference the defaultProps in their components.
10
+ // On the memoized version so that components that inspect their children props may read them.
11
+ // @ts-ignore
12
+ result.displayName = component.displayName?.replace('Impl', '');
13
+ return result;
14
+ };
@@ -0,0 +1,22 @@
1
+ interface Args {
2
+ label?: string;
3
+ defaultLabel?: string;
4
+ resource?: string;
5
+ resourceFromContext?: string;
6
+ source?: string;
7
+ }
8
+ type TranslationArguments = [string, any?];
9
+ /**
10
+ * Returns an array of arguments to use with the translate function for the label of a field.
11
+ * The label will be computed from the resource and source props.
12
+ *
13
+ * Usage:
14
+ * <span>
15
+ * {translate(...getFieldLabelTranslationArgs({ label, resource, source }))}
16
+ * </span>
17
+ *
18
+ * @see useTranslateLabel for a ready-to-use hook
19
+ */
20
+ export declare const getFieldLabelTranslationArgs: (options?: Args) => TranslationArguments;
21
+ export default getFieldLabelTranslationArgs;
22
+ export declare const getResourceFieldLabelKey: (resource: string, source: string) => string;