@k-int/stripes-kint-components 5.31.4 → 5.33.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 (397) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/es/__mocks__/@folio/stripes/components.js +7 -3
  3. package/es/__mocks__/@folio/stripes/core.js +6 -4
  4. package/es/__mocks__/@folio/stripes/smart-components.js +6 -4
  5. package/es/__mocks__/react-query.js +6 -4
  6. package/es/__mocks__/react-router-dom.js +6 -6
  7. package/es/lib/ActionList/ActionList.js +33 -26
  8. package/es/lib/ActionList/ActionListFieldArray.js +119 -103
  9. package/es/lib/ButtonTypedown/ButtonTypedown.js +72 -17
  10. package/es/lib/ComboButton/ComboButton.js +47 -42
  11. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.js +17 -11
  12. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +46 -42
  13. package/es/lib/CustomProperties/Config/CustomPropertyForm.js +58 -58
  14. package/es/lib/CustomProperties/Config/CustomPropertyForm.test.js +8 -4
  15. package/es/lib/CustomProperties/Config/CustomPropertyView.js +33 -32
  16. package/es/lib/CustomProperties/Config/CustomPropertyView.test.js +1 -1
  17. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +1 -1
  18. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +3 -3
  19. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +35 -29
  20. package/es/lib/CustomProperties/Edit/CustomPropertyField.js +59 -61
  21. package/es/lib/CustomProperties/Edit/CustomPropertyField.test.js +20 -20
  22. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +2 -2
  23. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +1 -1
  24. package/es/lib/CustomProperties/Edit/testResources.js +12 -11
  25. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +33 -22
  26. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +37 -24
  27. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +1 -1
  28. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +6 -6
  29. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +6 -3
  30. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +8 -4
  31. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +19 -15
  32. package/es/lib/CustomProperties/Filter/testResources.js +2 -1
  33. package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +2 -1
  34. package/es/lib/CustomProperties/View/CustomPropertiesView.js +1 -1
  35. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +25 -17
  36. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +6 -3
  37. package/es/lib/CustomProperties/View/CustomPropertyCard.js +11 -7
  38. package/es/lib/CycleButton/CycleButton.js +17 -9
  39. package/es/lib/FormModal/FormModal.js +32 -24
  40. package/es/lib/FormattedKintMessage/FormattedKintMessage.js +30 -23
  41. package/es/lib/IconSelect/IconSelect.js +32 -22
  42. package/es/lib/NoResultsMessage/NoResultsMessage.js +5 -4
  43. package/es/lib/NumberField/NumberField.js +25 -17
  44. package/es/lib/NumberField/NumberField.test.js +7 -6
  45. package/es/lib/QueryTypedown/QueryTypedown.js +15 -8
  46. package/es/lib/RefdataButtons/RefdataButtons.js +9 -6
  47. package/es/lib/ResponsiveButtonGroup/ResponsiveButtonGroup.js +60 -48
  48. package/es/lib/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js +6 -5
  49. package/es/lib/RichSelect/RichSelect.js +36 -31
  50. package/es/lib/RichSelect/useSelectedOption.js +2 -1
  51. package/es/lib/SASQLookupComponent/SASQLookupComponent.js +94 -91
  52. package/es/lib/SASQLookupComponent/SASQLookupComponent.test.js +36 -44
  53. package/es/lib/SASQLookupComponent/TableBody/TableBody.js +53 -42
  54. package/es/lib/SASQLookupComponent/TableBody/TableBody.test.js +23 -19
  55. package/es/lib/SASQRoute/SASQRoute.js +29 -25
  56. package/es/lib/SASQRoute/SASQRoute.test.js +13 -11
  57. package/es/lib/SASQViewComponent/SASQViewComponent.js +76 -68
  58. package/es/lib/SASQViewComponent/SASQViewComponent.test.js +8 -4
  59. package/es/lib/SearchField/SearchField.js +13 -7
  60. package/es/lib/SearchKeyControl/SearchKeyControl.js +13 -8
  61. package/es/lib/SearchKeyControl/SearchKeyControl.test.js +6 -2
  62. package/es/lib/Settings/EditableRefdataCategoryList/EditableRefdataCategoryList.js +46 -30
  63. package/es/lib/Settings/EditableRefdataList/EditableRefdataList.js +43 -33
  64. package/es/lib/Settings/EditableSettingsList/EditableSettingsListFieldArray/EditableSettingsListFieldArray.js +11 -7
  65. package/es/lib/Settings/EditableSettingsList/SettingField/EditSettingValue/EditSettingValue.js +20 -13
  66. package/es/lib/Settings/EditableSettingsList/SettingField/RenderSettingValue/RenderSettingValue.js +12 -10
  67. package/es/lib/Settings/EditableSettingsList/SettingField/SettingField.js +15 -10
  68. package/es/lib/Settings/EditableSettingsList/SettingField/SettingField.test.js +3 -3
  69. package/es/lib/Settings/RefdataCategoriesSettings/RefdataCategoriesSettings.js +26 -19
  70. package/es/lib/Settings/SettingPage/SettingPagePane/SettingPagePane.js +2 -2
  71. package/es/lib/Settings/Settings/Settings.js +178 -0
  72. package/es/lib/Settings/Settings/index.js +13 -0
  73. package/es/lib/Settings/SettingsFormContainer/SettingsFormContainer.js +35 -30
  74. package/es/lib/Settings/StaticSettingsField/StaticSettingsField.js +8 -5
  75. package/es/lib/Settings/StaticSettingsField/StaticSettingsFieldComponent/StaticSettingsFieldComponent.js +22 -18
  76. package/es/lib/Settings/hooks/staticSettingsPages/useSettingCallout/useSettingCallout.js +2 -2
  77. package/es/lib/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/useSettingsSectionInitalValues.js +1 -1
  78. package/es/lib/Settings/hooks/staticSettingsPages/useStaticSettingsSection.js +7 -3
  79. package/es/lib/Settings/hooks/useAppSettings/useAppSettings.js +11 -7
  80. package/es/lib/Settings/hooks/useSettingSection/useSettingSection.js +22 -16
  81. package/es/lib/Settings/hooks/useSettings/useSettings.js +105 -85
  82. package/es/lib/Settings/index.js +8 -0
  83. package/es/lib/Tags/Tags.js +8 -5
  84. package/es/lib/Tags/hooks/useTags.js +1 -1
  85. package/es/lib/Tags/hooks/useTagsEnabled.js +3 -2
  86. package/es/lib/Tags/tagsConfig.js +1 -1
  87. package/es/lib/Typedown/Typedown.js +31 -21
  88. package/es/lib/hooks/__mocks__/index.js +7 -3
  89. package/es/lib/hooks/intlHooks/useIntlKeyStore/useIntlKeyStore.js +26 -20
  90. package/es/lib/hooks/intlHooks/useKintIntl/useKintIntl.js +34 -24
  91. package/es/lib/hooks/typedownHooks/useTypedown.js +12 -11
  92. package/es/lib/hooks/typedownHooks/useTypedownToggle.js +2 -2
  93. package/es/lib/hooks/useActionListRef.js +1 -1
  94. package/es/lib/hooks/useActiveElement.js +1 -1
  95. package/es/lib/hooks/useCustomProperties.js +10 -6
  96. package/es/lib/hooks/useHelperApp.js +16 -13
  97. package/es/lib/hooks/useKiwtFieldArray.js +8 -7
  98. package/es/lib/hooks/useKiwtSASQuery.js +19 -15
  99. package/es/lib/hooks/useLocalPageStore.js +10 -7
  100. package/es/lib/hooks/useModConfigEntries.js +2 -2
  101. package/es/lib/hooks/useMutateCustomProperties/useMutateCustomProperties.js +17 -10
  102. package/es/lib/hooks/useMutateGeneric/useMutateGeneric.js +2 -2
  103. package/es/lib/hooks/useMutateModConfigEntry.js +2 -2
  104. package/es/lib/hooks/useMutateRefdataCategory/useMutateRefdataCategory.js +21 -15
  105. package/es/lib/hooks/useMutateRefdataValue/useMutateRefdataValue.js +23 -16
  106. package/es/lib/hooks/usePrevNextPagination.js +19 -17
  107. package/es/lib/hooks/useQIndex.js +14 -11
  108. package/es/lib/hooks/useRefdata.js +3 -3
  109. package/es/lib/hooks/useStandaloneSASQQueryParameter/useStandaloneSASQQueryParameter.js +13 -9
  110. package/es/lib/hooks/useTemplates.js +4 -4
  111. package/es/lib/utils/buildUrl.js +3 -2
  112. package/es/lib/utils/filterParsers/deparseKiwtQueryFilters.js +5 -5
  113. package/es/lib/utils/filterParsers/parseKiwtQueryFilters.js +2 -2
  114. package/es/lib/utils/filterParsers/parseKiwtQueryGroups.js +5 -4
  115. package/es/lib/utils/filterParsers/parseKiwtQueryString.js +1 -1
  116. package/es/lib/utils/generateKiwtQueryParams/generateKiwtQueryParams.js +107 -94
  117. package/es/lib/utils/groupCustomPropertiesByCtx.js +9 -5
  118. package/es/lib/utils/matchString.js +7 -5
  119. package/es/lib/utils/parseErrorResponse.js +7 -3
  120. package/es/lib/utils/selectorSafe.js +3 -2
  121. package/es/lib/utils/sortByLabel.js +3 -2
  122. package/es/lib/validators/validators.js +9 -6
  123. package/package.json +1 -1
  124. package/src/artifacts/coverage-jest/ActionList/ActionList.js.html +1 -1
  125. package/src/artifacts/coverage-jest/ActionList/ActionListFieldArray.js.html +1 -1
  126. package/src/artifacts/coverage-jest/ActionList/index.html +1 -1
  127. package/src/artifacts/coverage-jest/ActionList/index.js.html +1 -1
  128. package/src/artifacts/coverage-jest/ButtonTypedown/ButtonTypedown.js.html +215 -23
  129. package/src/artifacts/coverage-jest/ButtonTypedown/index.html +17 -17
  130. package/src/artifacts/coverage-jest/ButtonTypedown/index.js.html +1 -1
  131. package/src/artifacts/coverage-jest/ComboButton/ComboButton.js.html +1 -1
  132. package/src/artifacts/coverage-jest/ComboButton/index.html +1 -1
  133. package/src/artifacts/coverage-jest/ComboButton/index.js.html +1 -1
  134. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertiesLookup.js.html +1 -1
  135. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertiesSettings.js.html +1 -1
  136. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertyForm.js.html +1 -1
  137. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertyView.js.html +1 -1
  138. package/src/artifacts/coverage-jest/CustomProperties/Config/index.html +1 -1
  139. package/src/artifacts/coverage-jest/CustomProperties/Config/index.js.html +1 -1
  140. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertiesEdit.js.html +1 -1
  141. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertiesEditCtx.js.html +1 -1
  142. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertiesListField.js.html +1 -1
  143. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertyField.js.html +1 -1
  144. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertyFormCard.js.html +1 -1
  145. package/src/artifacts/coverage-jest/CustomProperties/Edit/index.html +1 -1
  146. package/src/artifacts/coverage-jest/CustomProperties/Edit/index.js.html +1 -1
  147. package/src/artifacts/coverage-jest/CustomProperties/Edit/testResources.js.html +1 -1
  148. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilter.js.html +1 -1
  149. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilterField.js.html +1 -1
  150. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js.html +1 -1
  151. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilterForm.js.html +1 -1
  152. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesRule.js.html +1 -1
  153. package/src/artifacts/coverage-jest/CustomProperties/Filter/index.html +1 -1
  154. package/src/artifacts/coverage-jest/CustomProperties/Filter/index.js.html +1 -1
  155. package/src/artifacts/coverage-jest/CustomProperties/Filter/testResources.js.html +1 -1
  156. package/src/artifacts/coverage-jest/CustomProperties/Filter/useOperators.js.html +1 -1
  157. package/src/artifacts/coverage-jest/CustomProperties/Filter/useParseActiveFilterStrings.js.html +1 -1
  158. package/src/artifacts/coverage-jest/CustomProperties/Filter/useValueProps.js.html +1 -1
  159. package/src/artifacts/coverage-jest/CustomProperties/View/CustomPropertiesView.js.html +1 -1
  160. package/src/artifacts/coverage-jest/CustomProperties/View/CustomPropertiesViewCtx.js.html +1 -1
  161. package/src/artifacts/coverage-jest/CustomProperties/View/CustomPropertyCard.js.html +1 -1
  162. package/src/artifacts/coverage-jest/CustomProperties/View/index.html +1 -1
  163. package/src/artifacts/coverage-jest/CustomProperties/View/index.js.html +1 -1
  164. package/src/artifacts/coverage-jest/CustomProperties/View/testResources.js.html +1 -1
  165. package/src/artifacts/coverage-jest/CustomProperties/index.html +1 -1
  166. package/src/artifacts/coverage-jest/CustomProperties/index.js.html +1 -1
  167. package/src/artifacts/coverage-jest/CycleButton/CycleButton.js.html +1 -1
  168. package/src/artifacts/coverage-jest/CycleButton/index.html +1 -1
  169. package/src/artifacts/coverage-jest/CycleButton/index.js.html +1 -1
  170. package/src/artifacts/coverage-jest/FieldLabel/FieldLabel.js.html +1 -1
  171. package/src/artifacts/coverage-jest/FieldLabel/index.html +1 -1
  172. package/src/artifacts/coverage-jest/FieldLabel/index.js.html +1 -1
  173. package/src/artifacts/coverage-jest/FormModal/FormModal.js.html +1 -1
  174. package/src/artifacts/coverage-jest/FormModal/index.html +1 -1
  175. package/src/artifacts/coverage-jest/FormModal/index.js.html +1 -1
  176. package/src/artifacts/coverage-jest/FormattedKintMessage/FormattedKintMessage.js.html +1 -1
  177. package/src/artifacts/coverage-jest/FormattedKintMessage/index.html +1 -1
  178. package/src/artifacts/coverage-jest/FormattedKintMessage/index.js.html +1 -1
  179. package/src/artifacts/coverage-jest/IconSelect/IconSelect.js.html +1 -1
  180. package/src/artifacts/coverage-jest/IconSelect/index.html +1 -1
  181. package/src/artifacts/coverage-jest/IconSelect/index.js.html +1 -1
  182. package/src/artifacts/coverage-jest/NoResultsMessage/NoResultsMessage.js.html +1 -1
  183. package/src/artifacts/coverage-jest/NoResultsMessage/index.html +1 -1
  184. package/src/artifacts/coverage-jest/NoResultsMessage/index.js.html +1 -1
  185. package/src/artifacts/coverage-jest/NumberField/NumberField.js.html +15 -15
  186. package/src/artifacts/coverage-jest/NumberField/index.html +1 -1
  187. package/src/artifacts/coverage-jest/NumberField/index.js.html +1 -1
  188. package/src/artifacts/coverage-jest/QueryTypedown/QueryTypedown.js.html +1 -1
  189. package/src/artifacts/coverage-jest/QueryTypedown/index.html +1 -1
  190. package/src/artifacts/coverage-jest/QueryTypedown/index.js.html +1 -1
  191. package/src/artifacts/coverage-jest/RefdataButtons/RefdataButtons.js.html +1 -1
  192. package/src/artifacts/coverage-jest/RefdataButtons/index.html +1 -1
  193. package/src/artifacts/coverage-jest/RefdataButtons/index.js.html +1 -1
  194. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/ResponsiveButtonGroup.js.html +1 -1
  195. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/index.html +1 -1
  196. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/index.js.html +1 -1
  197. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js.html +1 -1
  198. package/src/artifacts/coverage-jest/RichSelect/RichSelect.js.html +1 -1
  199. package/src/artifacts/coverage-jest/RichSelect/index.html +1 -1
  200. package/src/artifacts/coverage-jest/RichSelect/index.js.html +1 -1
  201. package/src/artifacts/coverage-jest/RichSelect/useSelectedOption.js.html +1 -1
  202. package/src/artifacts/coverage-jest/SASQLookupComponent/SASQLookupComponent.js.html +31 -31
  203. package/src/artifacts/coverage-jest/SASQLookupComponent/TableBody/TableBody.js.html +1 -1
  204. package/src/artifacts/coverage-jest/SASQLookupComponent/TableBody/index.html +1 -1
  205. package/src/artifacts/coverage-jest/SASQLookupComponent/TableBody/index.js.html +1 -1
  206. package/src/artifacts/coverage-jest/SASQLookupComponent/index.html +1 -1
  207. package/src/artifacts/coverage-jest/SASQLookupComponent/index.js.html +1 -1
  208. package/src/artifacts/coverage-jest/SASQRoute/SASQRoute.js.html +1 -1
  209. package/src/artifacts/coverage-jest/SASQRoute/index.html +1 -1
  210. package/src/artifacts/coverage-jest/SASQRoute/index.js.html +1 -1
  211. package/src/artifacts/coverage-jest/SASQViewComponent/SASQViewComponent.js.html +1 -1
  212. package/src/artifacts/coverage-jest/SASQViewComponent/index.html +1 -1
  213. package/src/artifacts/coverage-jest/SASQViewComponent/index.js.html +1 -1
  214. package/src/artifacts/coverage-jest/SearchField/SearchField.js.html +1 -1
  215. package/src/artifacts/coverage-jest/SearchField/index.html +1 -1
  216. package/src/artifacts/coverage-jest/SearchField/index.js.html +1 -1
  217. package/src/artifacts/coverage-jest/SearchKeyControl/SearchKeyControl.js.html +1 -1
  218. package/src/artifacts/coverage-jest/SearchKeyControl/index.html +1 -1
  219. package/src/artifacts/coverage-jest/SearchKeyControl/index.js.html +1 -1
  220. package/src/artifacts/coverage-jest/Settings/EditableRefdataCategoryList/EditableRefdataCategoryList.js.html +1 -1
  221. package/src/artifacts/coverage-jest/Settings/EditableRefdataCategoryList/index.html +1 -1
  222. package/src/artifacts/coverage-jest/Settings/EditableRefdataCategoryList/index.js.html +1 -1
  223. package/src/artifacts/coverage-jest/Settings/EditableRefdataList/EditableRefdataList.js.html +1 -1
  224. package/src/artifacts/coverage-jest/Settings/EditableRefdataList/index.html +1 -1
  225. package/src/artifacts/coverage-jest/Settings/EditableRefdataList/index.js.html +1 -1
  226. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsList.js.html +1 -1
  227. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsListFieldArray/EditableSettingsListFieldArray.js.html +1 -1
  228. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsListFieldArray/index.html +1 -1
  229. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsListFieldArray/index.js.html +1 -1
  230. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/EditSettingValue/EditSettingValue.js.html +1 -1
  231. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/EditSettingValue/index.html +1 -1
  232. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/EditSettingValue/index.js.html +1 -1
  233. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/RenderSettingValue/RenderSettingValue.js.html +1 -1
  234. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/RenderSettingValue/index.html +1 -1
  235. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/RenderSettingValue/index.js.html +1 -1
  236. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/SettingField.js.html +1 -1
  237. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/index.html +1 -1
  238. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/index.js.html +1 -1
  239. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/index.html +1 -1
  240. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/index.js.html +1 -1
  241. package/src/artifacts/coverage-jest/Settings/RefdataCategoriesSettings/RefdataCategoriesSettings.js.html +1 -1
  242. package/src/artifacts/coverage-jest/Settings/RefdataCategoriesSettings/index.html +1 -1
  243. package/src/artifacts/coverage-jest/Settings/RefdataCategoriesSettings/index.js.html +1 -1
  244. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPage.js.html +1 -1
  245. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPagePane/SettingPagePane.js.html +1 -1
  246. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPagePane/index.html +1 -1
  247. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPagePane/index.js.html +1 -1
  248. package/src/artifacts/coverage-jest/Settings/SettingPage/index.html +1 -1
  249. package/src/artifacts/coverage-jest/Settings/SettingPage/index.js.html +1 -1
  250. package/src/artifacts/coverage-jest/Settings/Settings/Settings.js.html +730 -0
  251. package/src/artifacts/coverage-jest/Settings/Settings/index.html +131 -0
  252. package/src/artifacts/coverage-jest/Settings/Settings/index.js.html +88 -0
  253. package/src/artifacts/coverage-jest/Settings/SettingsFormContainer/SettingsFormContainer.js.html +1 -1
  254. package/src/artifacts/coverage-jest/Settings/SettingsFormContainer/index.html +1 -1
  255. package/src/artifacts/coverage-jest/Settings/SettingsFormContainer/index.js.html +1 -1
  256. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsField.js.html +1 -1
  257. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsFieldComponent/StaticSettingsFieldComponent.js.html +1 -1
  258. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsFieldComponent/index.html +1 -1
  259. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsFieldComponent/index.js.html +1 -1
  260. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/index.html +1 -1
  261. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/index.js.html +1 -1
  262. package/src/artifacts/coverage-jest/Settings/constants/index.html +1 -1
  263. package/src/artifacts/coverage-jest/Settings/constants/index.js.html +1 -1
  264. package/src/artifacts/coverage-jest/Settings/constants/queryKeys.js.html +1 -1
  265. package/src/artifacts/coverage-jest/Settings/contexts/SettingsContext.js.html +1 -1
  266. package/src/artifacts/coverage-jest/Settings/contexts/index.html +1 -1
  267. package/src/artifacts/coverage-jest/Settings/contexts/index.js.html +1 -1
  268. package/src/artifacts/coverage-jest/Settings/hooks/index.html +1 -1
  269. package/src/artifacts/coverage-jest/Settings/hooks/index.js.html +1 -1
  270. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/index.html +1 -1
  271. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/index.js.html +1 -1
  272. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingCallout/index.html +1 -1
  273. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingCallout/index.js.html +1 -1
  274. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingCallout/useSettingCallout.js.html +1 -1
  275. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/index.html +1 -1
  276. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/index.js.html +1 -1
  277. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/useSettingsSectionInitalValues.js.html +1 -1
  278. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useStaticSettingsSection.js.html +1 -1
  279. package/src/artifacts/coverage-jest/Settings/hooks/useAppSettings/index.html +1 -1
  280. package/src/artifacts/coverage-jest/Settings/hooks/useAppSettings/index.js.html +1 -1
  281. package/src/artifacts/coverage-jest/Settings/hooks/useAppSettings/useAppSettings.js.html +1 -1
  282. package/src/artifacts/coverage-jest/Settings/hooks/useSettingSection/index.html +1 -1
  283. package/src/artifacts/coverage-jest/Settings/hooks/useSettingSection/index.js.html +1 -1
  284. package/src/artifacts/coverage-jest/Settings/hooks/useSettingSection/useSettingSection.js.html +1 -1
  285. package/src/artifacts/coverage-jest/Settings/hooks/useSettings/index.html +11 -11
  286. package/src/artifacts/coverage-jest/Settings/hooks/useSettings/index.js.html +1 -1
  287. package/src/artifacts/coverage-jest/Settings/hooks/useSettings/useSettings.js.html +118 -64
  288. package/src/artifacts/coverage-jest/Settings/index.html +1 -1
  289. package/src/artifacts/coverage-jest/Settings/index.js.html +11 -2
  290. package/src/artifacts/coverage-jest/Tags/Tags.js.html +1 -1
  291. package/src/artifacts/coverage-jest/Tags/hooks/index.html +1 -1
  292. package/src/artifacts/coverage-jest/Tags/hooks/index.js.html +1 -1
  293. package/src/artifacts/coverage-jest/Tags/hooks/useTags.js.html +1 -1
  294. package/src/artifacts/coverage-jest/Tags/hooks/useTagsEnabled.js.html +1 -1
  295. package/src/artifacts/coverage-jest/Tags/index.html +1 -1
  296. package/src/artifacts/coverage-jest/Tags/index.js.html +1 -1
  297. package/src/artifacts/coverage-jest/Tags/tagsConfig.js.html +1 -1
  298. package/src/artifacts/coverage-jest/Typedown/Typedown.js.html +13 -4
  299. package/src/artifacts/coverage-jest/Typedown/index.html +3 -3
  300. package/src/artifacts/coverage-jest/Typedown/index.js.html +1 -1
  301. package/src/artifacts/coverage-jest/cobertura-coverage.xml +457 -284
  302. package/src/artifacts/coverage-jest/constants/comparators.js.html +1 -1
  303. package/src/artifacts/coverage-jest/constants/customProperties.js.html +1 -1
  304. package/src/artifacts/coverage-jest/constants/endpoints.js.html +1 -1
  305. package/src/artifacts/coverage-jest/constants/eventCodes.js.html +1 -1
  306. package/src/artifacts/coverage-jest/constants/index.html +1 -1
  307. package/src/artifacts/coverage-jest/constants/pagination.js.html +1 -1
  308. package/src/artifacts/coverage-jest/hooks/index.html +1 -1
  309. package/src/artifacts/coverage-jest/hooks/index.js.html +1 -1
  310. package/src/artifacts/coverage-jest/hooks/intlHooks/index.html +1 -1
  311. package/src/artifacts/coverage-jest/hooks/intlHooks/index.js.html +1 -1
  312. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKey/index.html +1 -1
  313. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKey/index.js.html +1 -1
  314. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKey/useIntlKey.js.html +7 -7
  315. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKeyStore/index.html +1 -1
  316. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKeyStore/index.js.html +1 -1
  317. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKeyStore/useIntlKeyStore.js.html +6 -6
  318. package/src/artifacts/coverage-jest/hooks/intlHooks/useKintIntl/index.html +1 -1
  319. package/src/artifacts/coverage-jest/hooks/intlHooks/useKintIntl/index.js.html +1 -1
  320. package/src/artifacts/coverage-jest/hooks/intlHooks/useKintIntl/useKintIntl.js.html +6 -6
  321. package/src/artifacts/coverage-jest/hooks/typedownHooks/index.html +1 -1
  322. package/src/artifacts/coverage-jest/hooks/typedownHooks/index.js.html +1 -1
  323. package/src/artifacts/coverage-jest/hooks/typedownHooks/useTypedown.js.html +1 -1
  324. package/src/artifacts/coverage-jest/hooks/typedownHooks/useTypedownData.js.html +1 -1
  325. package/src/artifacts/coverage-jest/hooks/typedownHooks/useTypedownToggle.js.html +1 -1
  326. package/src/artifacts/coverage-jest/hooks/useActionListRef.js.html +1 -1
  327. package/src/artifacts/coverage-jest/hooks/useActiveElement.js.html +1 -1
  328. package/src/artifacts/coverage-jest/hooks/useCustomProperties.js.html +1 -1
  329. package/src/artifacts/coverage-jest/hooks/useHelperApp.js.html +1 -1
  330. package/src/artifacts/coverage-jest/hooks/useInvalidateRefdata/index.html +1 -1
  331. package/src/artifacts/coverage-jest/hooks/useInvalidateRefdata/index.js.html +1 -1
  332. package/src/artifacts/coverage-jest/hooks/useInvalidateRefdata/useInvalidateRefdata.js.html +1 -1
  333. package/src/artifacts/coverage-jest/hooks/useKiwtFieldArray.js.html +1 -1
  334. package/src/artifacts/coverage-jest/hooks/useKiwtSASQuery.js.html +9 -9
  335. package/src/artifacts/coverage-jest/hooks/useLocalPageStore.js.html +1 -1
  336. package/src/artifacts/coverage-jest/hooks/useLocalStorageState.js.html +5 -5
  337. package/src/artifacts/coverage-jest/hooks/useModConfigEntries.js.html +1 -1
  338. package/src/artifacts/coverage-jest/hooks/useMutateCustomProperties/index.html +1 -1
  339. package/src/artifacts/coverage-jest/hooks/useMutateCustomProperties/index.js.html +1 -1
  340. package/src/artifacts/coverage-jest/hooks/useMutateCustomProperties/useMutateCustomProperties.js.html +1 -1
  341. package/src/artifacts/coverage-jest/hooks/useMutateGeneric/index.html +1 -1
  342. package/src/artifacts/coverage-jest/hooks/useMutateGeneric/index.js.html +1 -1
  343. package/src/artifacts/coverage-jest/hooks/useMutateGeneric/useMutateGeneric.js.html +1 -1
  344. package/src/artifacts/coverage-jest/hooks/useMutateModConfigEntry.js.html +1 -1
  345. package/src/artifacts/coverage-jest/hooks/useMutateRefdataCategory/index.html +1 -1
  346. package/src/artifacts/coverage-jest/hooks/useMutateRefdataCategory/index.js.html +1 -1
  347. package/src/artifacts/coverage-jest/hooks/useMutateRefdataCategory/useMutateRefdataCategory.js.html +1 -1
  348. package/src/artifacts/coverage-jest/hooks/useMutateRefdataValue/index.html +1 -1
  349. package/src/artifacts/coverage-jest/hooks/useMutateRefdataValue/index.js.html +1 -1
  350. package/src/artifacts/coverage-jest/hooks/useMutateRefdataValue/useMutateRefdataValue.js.html +1 -1
  351. package/src/artifacts/coverage-jest/hooks/usePrevNextPagination.js.html +20 -20
  352. package/src/artifacts/coverage-jest/hooks/useQIndex.js.html +8 -8
  353. package/src/artifacts/coverage-jest/hooks/useRefdata.js.html +1 -1
  354. package/src/artifacts/coverage-jest/hooks/useSASQQueryMeta.js.html +1 -1
  355. package/src/artifacts/coverage-jest/hooks/useStandaloneSASQQueryParameter/index.html +1 -1
  356. package/src/artifacts/coverage-jest/hooks/useStandaloneSASQQueryParameter/index.js.html +1 -1
  357. package/src/artifacts/coverage-jest/hooks/useStandaloneSASQQueryParameter/useStandaloneSASQQueryParameter.js.html +1 -1
  358. package/src/artifacts/coverage-jest/hooks/useTemplates.js.html +1 -1
  359. package/src/artifacts/coverage-jest/index.html +40 -25
  360. package/src/artifacts/coverage-jest/utils/buildUrl.js.html +1 -1
  361. package/src/artifacts/coverage-jest/utils/filterParsers/deparseKiwtQueryFilters.js.html +1 -1
  362. package/src/artifacts/coverage-jest/utils/filterParsers/index.html +1 -1
  363. package/src/artifacts/coverage-jest/utils/filterParsers/index.js.html +1 -1
  364. package/src/artifacts/coverage-jest/utils/filterParsers/parseKiwtQueryFilters.js.html +1 -1
  365. package/src/artifacts/coverage-jest/utils/filterParsers/parseKiwtQueryGroups.js.html +1 -1
  366. package/src/artifacts/coverage-jest/utils/filterParsers/parseKiwtQueryString.js.html +1 -1
  367. package/src/artifacts/coverage-jest/utils/generateKiwtQuery.js.html +1 -1
  368. package/src/artifacts/coverage-jest/utils/generateKiwtQueryParams/generateKiwtQueryParams.js.html +1 -1
  369. package/src/artifacts/coverage-jest/utils/generateKiwtQueryParams/index.html +1 -1
  370. package/src/artifacts/coverage-jest/utils/generateKiwtQueryParams/index.js.html +1 -1
  371. package/src/artifacts/coverage-jest/utils/groupCustomPropertiesByCtx.js.html +1 -1
  372. package/src/artifacts/coverage-jest/utils/highlightString.js.html +1 -1
  373. package/src/artifacts/coverage-jest/utils/index.html +1 -1
  374. package/src/artifacts/coverage-jest/utils/index.js.html +1 -1
  375. package/src/artifacts/coverage-jest/utils/matchString.js.html +1 -1
  376. package/src/artifacts/coverage-jest/utils/modConfigEntriesQueryKey.js.html +1 -1
  377. package/src/artifacts/coverage-jest/utils/parseErrorResponse.js.html +1 -1
  378. package/src/artifacts/coverage-jest/utils/parseModConfigEntry.js.html +1 -1
  379. package/src/artifacts/coverage-jest/utils/refdataOptions.js.html +1 -1
  380. package/src/artifacts/coverage-jest/utils/refdataQueryKey/index.html +1 -1
  381. package/src/artifacts/coverage-jest/utils/refdataQueryKey/index.js.html +1 -1
  382. package/src/artifacts/coverage-jest/utils/refdataQueryKey/refdataQueryKey.js.html +1 -1
  383. package/src/artifacts/coverage-jest/utils/selectorSafe.js.html +1 -1
  384. package/src/artifacts/coverage-jest/utils/sortByLabel.js.html +1 -1
  385. package/src/artifacts/coverage-jest/utils/toCamelCase.js.html +1 -1
  386. package/src/artifacts/coverage-jest/utils/typedownQueryKey.js.html +1 -1
  387. package/src/artifacts/coverage-jest/validators/index.html +1 -1
  388. package/src/artifacts/coverage-jest/validators/index.js.html +1 -1
  389. package/src/artifacts/coverage-jest/validators/validators.js.html +1 -1
  390. package/src/lib/ButtonTypedown/ButtonTypedown.js +77 -13
  391. package/src/lib/Settings/Settings/Settings.js +215 -0
  392. package/src/lib/Settings/Settings/index.js +1 -0
  393. package/src/lib/Settings/hooks/useSettings/README.md +49 -19
  394. package/src/lib/Settings/hooks/useSettings/useSettings.js +64 -46
  395. package/src/lib/Settings/index.js +3 -0
  396. package/src/lib/Typedown/Typedown.js +4 -1
  397. package/styles/TypeDown.css +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [5.33.0](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/compare/v5.32.0...v5.33.0) (2026-03-06)
2
+
3
+
4
+ ### Features
5
+
6
+ * **Settings:** Settings now includes the ability to turn off contextPerPage. ([73df695](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/commit/73df6953d616cd5f5a6900157d2b5f252e5f63c4))
7
+
8
+ # [5.32.0](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/compare/v5.31.4...v5.32.0) (2026-02-17)
9
+
10
+
11
+ ### Features
12
+
13
+ * **Settings:** Refactor stripes-smart-components Settings component to functional ([6ba245f](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/commit/6ba245faf5a7c92f3501cf70b96881878510c117))
14
+
1
15
  ## [5.31.4](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/compare/v5.31.3...v5.31.4) (2026-02-04)
2
16
 
3
17
 
@@ -2,9 +2,13 @@
2
2
 
3
3
  var _mocks = require("@folio/stripes-erm-testing/jest/mocks");
4
4
  var _jsxRuntime = require("react/jsx-runtime");
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
9
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
5
10
  jest.mock('@folio/stripes-components/lib/Icon', () => _mocks.mockStripesIcon);
6
- module.exports = {
7
- ...jest.requireActual('@folio/stripes/components'),
11
+ module.exports = _objectSpread(_objectSpread({}, jest.requireActual('@folio/stripes/components')), {}, {
8
12
  Icon: _mocks.mockStripesIcon,
9
13
  LoadingView: () => /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
10
14
  children: "LoadingView"
@@ -12,4 +16,4 @@ module.exports = {
12
16
  LoadingPane: () => /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
13
17
  children: "LoadingPane"
14
18
  })
15
- };
19
+ });
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
 
3
3
  var _mocks = require("@folio/stripes-erm-testing/jest/mocks");
4
- module.exports = {
5
- ...jest.requireActual('@folio/stripes-core'),
6
- ..._mocks.mockStripesCore
7
- };
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
8
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ module.exports = _objectSpread(_objectSpread({}, jest.requireActual('@folio/stripes-core')), _mocks.mockStripesCore);
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
 
3
3
  var _mocks = require("@folio/stripes-erm-testing/jest/mocks");
4
- module.exports = {
5
- ...jest.requireActual('@folio/stripes/smart-components'),
6
- ..._mocks.mockStripesSmartComponents
7
- };
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
8
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ module.exports = _objectSpread(_objectSpread({}, jest.requireActual('@folio/stripes/smart-components')), _mocks.mockStripesSmartComponents);
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
 
3
3
  var _mocks = require("@folio/stripes-erm-testing/jest/mocks");
4
- module.exports = {
5
- ...jest.requireActual('react-query'),
6
- ..._mocks.mockReactQuery
7
- };
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
8
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ module.exports = _objectSpread(_objectSpread({}, jest.requireActual('react-query')), _mocks.mockReactQuery);
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
 
3
3
  var _mocks = require("@folio/stripes-erm-testing/jest/mocks");
4
- // FIXME currently since erm-testing exports TestForm using stripes-components, we have an issue
5
-
6
- module.exports = {
7
- ...jest.requireActual('react-router-dom'),
8
- ..._mocks.mockReactRouterDom
9
- };
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
8
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } // FIXME currently since erm-testing exports TestForm using stripes-components, we have an issue
9
+ module.exports = _objectSpread(_objectSpread({}, jest.requireActual('react-router-dom')), _mocks.mockReactRouterDom);
@@ -11,8 +11,16 @@ var _reactFinalFormArrays = require("react-final-form-arrays");
11
11
  var _finalFormArrays = _interopRequireDefault(require("final-form-arrays"));
12
12
  var _ActionListFieldArray = _interopRequireDefault(require("./ActionListFieldArray"));
13
13
  var _jsxRuntime = require("react/jsx-runtime");
14
+ const _excluded = ["actionAssigner", "columnMapping", "contentData", "creatableFields", "createCallback", "defaultNewObject", "editableFields", "fieldComponents", "hideActionsColumn", "hideCreateButton", "intlKey", "intlNS", "label", "labelOverrides", "validateFields", "visibleFields"];
14
15
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
16
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
17
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
18
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
19
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
20
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
21
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
22
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
23
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
16
24
  const propTypes = {
17
25
  actionAssigner: _propTypes.default.func,
18
26
  columnMapping: _propTypes.default.object,
@@ -33,28 +41,28 @@ const propTypes = {
33
41
  };
34
42
  const ActionList = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
35
43
  let {
36
- actionAssigner,
37
- columnMapping,
38
- contentData,
39
- creatableFields = {},
40
- createCallback,
41
- defaultNewObject = {},
42
- editableFields = {},
43
- fieldComponents = {},
44
- hideActionsColumn = false,
45
- hideCreateButton,
46
- intlKey: passedIntlKey,
47
- intlNS: passedIntlNS,
48
- label,
49
- labelOverrides = {},
50
- validateFields,
51
- visibleFields,
52
- ...mclProps // Assume anything left over is to directly apply to the MCL
53
- } = _ref;
54
- const ActionListFieldArrayWithRef = alfaProps => /*#__PURE__*/(0, _jsxRuntime.jsx)(_ActionListFieldArray.default, {
55
- ref: ref,
56
- ...alfaProps
57
- });
44
+ actionAssigner,
45
+ columnMapping,
46
+ contentData,
47
+ creatableFields = {},
48
+ createCallback,
49
+ defaultNewObject = {},
50
+ editableFields = {},
51
+ fieldComponents = {},
52
+ hideActionsColumn = false,
53
+ hideCreateButton,
54
+ intlKey: passedIntlKey,
55
+ intlNS: passedIntlNS,
56
+ label,
57
+ labelOverrides = {},
58
+ validateFields,
59
+ visibleFields
60
+ // Assume anything left over is to directly apply to the MCL
61
+ } = _ref,
62
+ mclProps = _objectWithoutProperties(_ref, _excluded);
63
+ const ActionListFieldArrayWithRef = alfaProps => /*#__PURE__*/(0, _jsxRuntime.jsx)(_ActionListFieldArray.default, _objectSpread({
64
+ ref: ref
65
+ }, alfaProps));
58
66
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
59
67
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactFinalForm.Form, {
60
68
  enableReinitialize: true,
@@ -74,7 +82,7 @@ const ActionList = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
74
82
  onSubmit: e => {
75
83
  e.preventDefault();
76
84
  },
77
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactFinalFormArrays.FieldArray, {
85
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactFinalFormArrays.FieldArray, _objectSpread({
78
86
  actionAssigner: actionAssigner,
79
87
  columnMapping: columnMapping,
80
88
  component: ActionListFieldArrayWithRef,
@@ -92,9 +100,8 @@ const ActionList = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
92
100
  name: "contentData",
93
101
  triggerFormSubmit: handleSubmit,
94
102
  validateFields: validateFields,
95
- visibleFields: visibleFields,
96
- ...mclProps
97
- })
103
+ visibleFields: visibleFields
104
+ }, mclProps))
98
105
  });
99
106
  }
100
107
  })
@@ -13,8 +13,22 @@ var _components = require("@folio/stripes/components");
13
13
  var _hooks = require("../hooks");
14
14
  var _ActionListFieldArray = _interopRequireDefault(require("../../../styles/ActionListFieldArray.css"));
15
15
  var _jsxRuntime = require("react/jsx-runtime");
16
+ const _excluded = ["action"],
17
+ _excluded2 = ["actionAssigner", "columnMapping", "creatableFields", "createCallback", "defaultNewObject", "editableFields", "fields", "fieldComponents", "hideActionsColumn", "hideCreateButton", "intlKey", "intlNS", "label", "labelOverrides", "onRowClick", "validateFields", "visibleFields", "triggerFormSubmit"],
18
+ _excluded3 = ["actionListActions", "fieldName", "fieldIndex", "_isNewActionListRow"],
19
+ _excluded4 = ["actionListActions", "fieldName", "fieldIndex", "_isNewActionListRow"],
20
+ _excluded5 = ["actionListActions"],
21
+ _excluded6 = ["formatter"],
22
+ _excluded7 = ["actionListActions"];
16
23
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
17
24
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
25
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
26
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
27
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
28
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
29
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
30
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
31
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
18
32
  const EDITING_ACTIONS_WIDTH = 25;
19
33
  const NON_EDITING_ACTIONS_WIDTH = 20;
20
34
  const TOTAL_WIDTH = 100;
@@ -42,23 +56,23 @@ const propTypes = {
42
56
 
43
57
  // This needs to be outside of the main component for forwardRef to work properly it seems.
44
58
  const ActionTrigger = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
59
+ var _action$label;
45
60
  let {
46
- action,
47
- ...actionTriggerProps
48
- } = _ref;
61
+ action
62
+ } = _ref,
63
+ actionTriggerProps = _objectWithoutProperties(_ref, _excluded);
49
64
  if (action.icon) {
50
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.IconButton, {
65
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.IconButton, _objectSpread({
51
66
  ref: ref,
52
- icon: action.icon,
53
- ...actionTriggerProps
54
- });
67
+ icon: action.icon
68
+ }, actionTriggerProps));
55
69
  }
56
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Button, {
70
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Button, _objectSpread(_objectSpread({
57
71
  ref: ref,
58
- marginBottom0: true,
59
- ...actionTriggerProps,
60
- children: action.label ?? action.name
61
- });
72
+ marginBottom0: true
73
+ }, actionTriggerProps), {}, {
74
+ children: (_action$label = action.label) !== null && _action$label !== void 0 ? _action$label : action.name
75
+ }));
62
76
  });
63
77
  ActionTrigger.propTypes = {
64
78
  action: _propTypes.default.shape({
@@ -69,27 +83,29 @@ ActionTrigger.propTypes = {
69
83
  };
70
84
  const NEW_ROW = 'NEW_ROW';
71
85
  const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) => {
86
+ var _fields$value$filter$, _fields$value;
72
87
  let {
73
- actionAssigner,
74
- columnMapping,
75
- creatableFields,
76
- createCallback,
77
- defaultNewObject,
78
- editableFields,
79
- fields,
80
- fieldComponents,
81
- hideActionsColumn = false,
82
- hideCreateButton = false,
83
- intlKey: passedIntlKey,
84
- intlNS: passedIntlNS,
85
- label,
86
- labelOverrides = {},
87
- onRowClick,
88
- validateFields,
89
- visibleFields,
90
- triggerFormSubmit,
91
- ...mclProps // Assume anything left over is to directly apply to the MCL
92
- } = _ref2;
88
+ actionAssigner,
89
+ columnMapping,
90
+ creatableFields,
91
+ createCallback,
92
+ defaultNewObject,
93
+ editableFields,
94
+ fields,
95
+ fieldComponents,
96
+ hideActionsColumn = false,
97
+ hideCreateButton = false,
98
+ intlKey: passedIntlKey,
99
+ intlNS: passedIntlNS,
100
+ label,
101
+ labelOverrides = {},
102
+ onRowClick,
103
+ validateFields,
104
+ visibleFields,
105
+ triggerFormSubmit
106
+ // Assume anything left over is to directly apply to the MCL
107
+ } = _ref2,
108
+ mclProps = _objectWithoutProperties(_ref2, _excluded2);
93
109
  // Grab finalForm functions/values from form hooks
94
110
  const {
95
111
  change
@@ -107,7 +123,7 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
107
123
  null for no field, string id if we are editing an existing field and
108
124
  'NEW_ROW' for a new row
109
125
  */
110
- const [editing, setEditing] = (0, _react.useState)((fields?.value?.filter(f => f._isNewActionListRow)?.length ?? 0) > 0 ? NEW_ROW : undefined);
126
+ const [editing, setEditing] = (0, _react.useState)(((_fields$value$filter$ = fields === null || fields === void 0 || (_fields$value = fields.value) === null || _fields$value === void 0 || (_fields$value = _fields$value.filter(f => f._isNewActionListRow)) === null || _fields$value === void 0 ? void 0 : _fields$value.length) !== null && _fields$value$filter$ !== void 0 ? _fields$value$filter$ : 0) > 0 ? NEW_ROW : undefined);
111
127
  const toggleEditing = (0, _react.useCallback)(id => {
112
128
  if (editing) {
113
129
  setEditing();
@@ -118,43 +134,46 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
118
134
 
119
135
  // Ensure editing doesn't get stuck in "NEW_ROW" state;
120
136
  (0, _react.useEffect)(() => {
121
- if (editing === NEW_ROW && (fields?.value?.filter(f => f._isNewActionListRow)?.length ?? 0) === 0) {
137
+ var _fields$value$filter$2, _fields$value2;
138
+ if (editing === NEW_ROW && ((_fields$value$filter$2 = fields === null || fields === void 0 || (_fields$value2 = fields.value) === null || _fields$value2 === void 0 || (_fields$value2 = _fields$value2.filter(f => f._isNewActionListRow)) === null || _fields$value2 === void 0 ? void 0 : _fields$value2.length) !== null && _fields$value$filter$2 !== void 0 ? _fields$value$filter$2 : 0) === 0) {
122
139
  setEditing();
123
140
  }
124
- }, [editing, fields?.value]);
141
+ }, [editing, fields === null || fields === void 0 ? void 0 : fields.value]);
125
142
  const handleSave = index => {
126
- const {
127
- actionListActions: _a,
128
- fieldName: _fn,
129
- fieldIndex: _fi,
130
- _isNewActionListRow: _inalr,
131
- ...rowData
132
- } = fields.value[index];
143
+ var _actionAssigner;
144
+ const _fields$value$index = fields.value[index],
145
+ {
146
+ actionListActions: _a,
147
+ fieldName: _fn,
148
+ fieldIndex: _fi,
149
+ _isNewActionListRow: _inalr
150
+ } = _fields$value$index,
151
+ rowData = _objectWithoutProperties(_fields$value$index, _excluded3);
133
152
 
134
153
  // Find "edit" entry in actionAssigner
135
- const editCallback = actionAssigner(rowData)?.find(act => act.name === 'edit')?.callback;
154
+ const editCallback = (_actionAssigner = actionAssigner(rowData)) === null || _actionAssigner === void 0 || (_actionAssigner = _actionAssigner.find(act => act.name === 'edit')) === null || _actionAssigner === void 0 ? void 0 : _actionAssigner.callback;
136
155
  if (editCallback) {
137
156
  editCallback(rowData);
138
157
  }
139
158
  };
140
159
  const handleCreate = index => {
141
- const {
142
- actionListActions: _a,
143
- fieldName: _fn,
144
- fieldIndex: _fi,
145
- _isNewActionListRow: _inalr,
146
- ...rowData
147
- } = fields.value[index];
160
+ const _fields$value$index2 = fields.value[index],
161
+ {
162
+ actionListActions: _a,
163
+ fieldName: _fn,
164
+ fieldIndex: _fi,
165
+ _isNewActionListRow: _inalr
166
+ } = _fields$value$index2,
167
+ rowData = _objectWithoutProperties(_fields$value$index2, _excluded4);
148
168
  if (createCallback) {
149
169
  createCallback(rowData);
150
170
  }
151
171
  };
152
172
  const handleClickCreate = (0, _react.useCallback)(() => {
153
173
  toggleEditing(NEW_ROW);
154
- fields.unshift({
155
- ...defaultNewObject,
174
+ fields.unshift(_objectSpread(_objectSpread({}, defaultNewObject), {}, {
156
175
  _isNewActionListRow: true
157
- });
176
+ }));
158
177
  }, [defaultNewObject, fields, toggleEditing]);
159
178
 
160
179
  // Way to go into create mode from external component, and way to tell internal editing state
@@ -168,22 +187,22 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
168
187
  const widthsObject = {};
169
188
  visibleFields.forEach(f => {
170
189
  if (f !== 'actionListActions') {
171
- widthsObject[f] = `${staticWidth}%`;
190
+ widthsObject[f] = "".concat(staticWidth, "%");
172
191
  }
173
192
  });
174
- widthsObject.actionListActions = editing ? `${EDITING_ACTIONS_WIDTH}%` : `${NON_EDITING_ACTIONS_WIDTH}%`;
193
+ widthsObject.actionListActions = editing ? "".concat(EDITING_ACTIONS_WIDTH, "%") : "".concat(NON_EDITING_ACTIONS_WIDTH, "%");
175
194
  return widthsObject;
176
195
  };
177
196
  const renderActionButtons = data => {
178
- const fieldName = `contentData[${data.rowIndex}]`;
197
+ const fieldName = "contentData[".concat(data.rowIndex, "]");
179
198
  const {
180
- actionListActions: actions,
181
- ...rest
182
- } = data;
199
+ actionListActions: actions
200
+ } = data,
201
+ rest = _objectWithoutProperties(data, _excluded5);
183
202
  if (data.id === editing || !data.id && editing === NEW_ROW) {
184
203
  // Render the save/cancel buttons
185
204
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
186
- id: `action-button-parent-${data.rowIndex + 1}`,
205
+ id: "action-button-parent-".concat(data.rowIndex + 1),
187
206
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Button, {
188
207
  buttonStyle: "primary",
189
208
  disabled: hasValidationErrors || submitting || pristine,
@@ -203,9 +222,9 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
203
222
  type: "submit",
204
223
  children: kintIntl.formatKintMessage({
205
224
  id: 'save',
206
- overrideValue: labelOverrides?.save
225
+ overrideValue: labelOverrides === null || labelOverrides === void 0 ? void 0 : labelOverrides.save
207
226
  })
208
- }, `save[${data.rowIndex}]`), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Button, {
227
+ }, "save[".concat(data.rowIndex, "]")), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Button, {
209
228
  "data-type-button": "cancel",
210
229
  marginBottom0: true,
211
230
  onClick: () => {
@@ -219,14 +238,14 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
219
238
  },
220
239
  children: kintIntl.formatKintMessage({
221
240
  id: 'cancel',
222
- overrideValue: labelOverrides?.cancel
241
+ overrideValue: labelOverrides === null || labelOverrides === void 0 ? void 0 : labelOverrides.cancel
223
242
  })
224
- }, `cancel[${data.rowIndex}]`)]
243
+ }, "cancel[".concat(data.rowIndex, "]"))]
225
244
  });
226
245
  }
227
246
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
228
- id: `action-button-parent-${data.rowIndex + 1}`,
229
- children: actions?.map(action => {
247
+ id: "action-button-parent-".concat(data.rowIndex + 1),
248
+ children: actions === null || actions === void 0 ? void 0 : actions.map(action => {
230
249
  let actionFunction;
231
250
  if (action.callback) {
232
251
  actionFunction = () => action.callback(rest);
@@ -236,25 +255,25 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
236
255
  if (action.name === 'edit') {
237
256
  actionFunction = () => toggleEditing(data.id);
238
257
  }
239
- let ariaLabel = `action-${action.name}[${data.rowIndex}]`;
240
- if (action?.ariaLabel) {
258
+ let ariaLabel = "action-".concat(action.name, "[").concat(data.rowIndex, "]");
259
+ if (action !== null && action !== void 0 && action.ariaLabel) {
241
260
  if (typeof action.ariaLabel === 'function') {
242
261
  ariaLabel = action.ariaLabel(data);
243
262
  } else if (typeof action.ariaLabel === 'string') {
244
263
  ariaLabel = action.ariaLabel;
245
264
  } else {
246
- throw new Error(`Provided ariaLabel for action "${action.name}" must be a function or a string.`);
265
+ throw new Error("Provided ariaLabel for action \"".concat(action.name, "\" must be a function or a string."));
247
266
  }
248
267
  }
249
268
  let tooltip;
250
269
  let tooltipSub;
251
- if (action?.tooltip) {
270
+ if (action !== null && action !== void 0 && action.tooltip) {
252
271
  if (typeof action.tooltip === 'function') {
253
272
  tooltip = action.tooltip(data);
254
273
  } else {
255
274
  tooltip = action.tooltip;
256
275
  }
257
- if (action?.tooltipSub) {
276
+ if (action !== null && action !== void 0 && action.tooltipSub) {
258
277
  if (typeof action.tooltipSub === 'function') {
259
278
  tooltipSub = action.tooltipSub(data);
260
279
  } else {
@@ -266,7 +285,7 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
266
285
  // If a tooltip is declared, render that around the actionButton
267
286
  if (tooltip) {
268
287
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Tooltip, {
269
- id: `action-${action.name}[${data.rowIndex}]-tooltip`,
288
+ id: "action-".concat(action.name, "[").concat(data.rowIndex, "]-tooltip"),
270
289
  sub: tooltipSub,
271
290
  text: tooltip,
272
291
  children: _ref3 => {
@@ -288,7 +307,7 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
288
307
  return null;
289
308
  },
290
309
  to: action.to
291
- }, `action-${action.name}[${data.rowIndex}]`);
310
+ }, "action-".concat(action.name, "[").concat(data.rowIndex, "]"));
292
311
  }
293
312
  });
294
313
  }
@@ -306,7 +325,7 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
306
325
  return null;
307
326
  },
308
327
  to: action.to
309
- }, `action-${action.name}[${data.rowIndex}]`);
328
+ }, "action-".concat(action.name, "[").concat(data.rowIndex, "]"));
310
329
  })
311
330
  });
312
331
  };
@@ -315,17 +334,16 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
315
334
  // Fetch the content from the field Values
316
335
  const cd = (0, _cloneDeep.default)((0, _get.default)(values, fieldName));
317
336
  cd.actionListActions = actionAssigner(cd);
318
- return {
319
- ...cd,
337
+ return _objectSpread(_objectSpread({}, cd), {}, {
320
338
  fieldName,
321
339
  fieldIndex
322
- };
340
+ });
323
341
  });
324
342
  };
325
343
  const {
326
- formatter,
327
- ...restOfMclProps
328
- } = mclProps; // Destructure formatter part of mclProps
344
+ formatter
345
+ } = mclProps,
346
+ restOfMclProps = _objectWithoutProperties(mclProps, _excluded6); // Destructure formatter part of mclProps
329
347
 
330
348
  const fieldAwareFormatter = () => {
331
349
  const returnObj = {};
@@ -339,16 +357,17 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
339
357
  const editingRow = cd.id === editing || !cd.id;
340
358
 
341
359
  // Default to the passed formatter values
342
- let returnValue = formatter?.[key] ? formatter[key](cd) : cd[key];
360
+ let returnValue = formatter !== null && formatter !== void 0 && formatter[key] ? formatter[key](cd) : cd[key];
343
361
 
344
362
  // If editing, replace values with fields
345
363
  if (editingRow) {
364
+ var _editableFields$key, _creatableFields$key;
346
365
  /*
347
366
  Check if the property is a visible field.
348
367
  If it is not then we don't allow editing in this component.
349
368
  */
350
- const editFunction = editableFields[key] ?? (() => true);
351
- const createFunction = creatableFields[key] ?? (() => true);
369
+ const editFunction = (_editableFields$key = editableFields[key]) !== null && _editableFields$key !== void 0 ? _editableFields$key : () => true;
370
+ const createFunction = (_creatableFields$key = creatableFields[key]) !== null && _creatableFields$key !== void 0 ? _creatableFields$key : () => true;
352
371
  /*
353
372
  Next check if this is a new row, if so we should run the createableField function with the data.
354
373
  If it is not a new row, then we run the editableField function with the data,
@@ -359,12 +378,12 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
359
378
  if (!cd.id && createFunction(cd) || !!cd.id && editFunction(cd)) {
360
379
  const passedObject = {
361
380
  allValues: values,
362
- index: cd?.fieldIndex,
381
+ index: cd === null || cd === void 0 ? void 0 : cd.fieldIndex,
363
382
  key,
364
- name: `${cd.fieldName}.${key}`,
383
+ name: "".concat(cd.fieldName, ".").concat(key),
365
384
  rowFieldName: cd.fieldName
366
385
  };
367
- const validateFunction = validateFields?.[key] ? validateFields?.[key](passedObject) : null;
386
+ const validateFunction = validateFields !== null && validateFields !== void 0 && validateFields[key] ? validateFields === null || validateFields === void 0 ? void 0 : validateFields[key](passedObject) : null;
368
387
  returnValue = fieldComponents[key] ? fieldComponents[key](passedObject) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactFinalForm.Field, {
369
388
  ariaLabel: key // TODO at the moment the only way to override this is passing in an entire fieldComponent.
370
389
  ,
@@ -372,7 +391,7 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
372
391
  ,
373
392
  component: _components.TextField,
374
393
  marginBottom0: true,
375
- name: `${cd.fieldName}.${key}`,
394
+ name: "".concat(cd.fieldName, ".").concat(key),
376
395
  parse: v => v,
377
396
  validate: validateFunction
378
397
  });
@@ -396,38 +415,35 @@ const ActionListFieldArray = /*#__PURE__*/(0, _react.forwardRef)((_ref2, ref) =>
396
415
  onClick: handleClickCreate,
397
416
  children: kintIntl.formatKintMessage({
398
417
  id: 'new',
399
- overrideValue: labelOverrides?.new
418
+ overrideValue: labelOverrides === null || labelOverrides === void 0 ? void 0 : labelOverrides.new
400
419
  })
401
420
  })]
402
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.MultiColumnList, {
403
- columnMapping: {
404
- ...columnMapping,
421
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.MultiColumnList, _objectSpread({
422
+ columnMapping: _objectSpread(_objectSpread({}, columnMapping), {}, {
405
423
  actionListActions: kintIntl.formatKintMessage({
406
424
  id: 'actions',
407
- overrideValue: labelOverrides?.actions
425
+ overrideValue: labelOverrides === null || labelOverrides === void 0 ? void 0 : labelOverrides.actions
408
426
  })
409
- },
427
+ }),
410
428
  columnWidths: getColumnWidths(),
411
429
  contentData: assignActions(),
412
- formatter: {
413
- actionListActions: renderActionButtons,
414
- ...fieldAwareFormatter()
415
- },
430
+ formatter: _objectSpread({
431
+ actionListActions: renderActionButtons
432
+ }, fieldAwareFormatter()),
416
433
  interactive: !!onRowClick,
417
434
  onRowClick: onRowClick ? (e, row) => {
418
435
  // Make sure we ONLY fire row click from row, and not from action buttons.
419
436
  const targetIsAction = e.target.closest('[id^=action-button-parent]') !== null;
420
437
  if (!targetIsAction) {
421
438
  const {
422
- actionListActions: _ala,
423
- ...rowWithoutActions
424
- } = row;
439
+ actionListActions: _ala
440
+ } = row,
441
+ rowWithoutActions = _objectWithoutProperties(row, _excluded7);
425
442
  onRowClick(e, rowWithoutActions);
426
443
  }
427
444
  } : null,
428
- visibleColumns: !hideActionsColumn || !!editing ? [...visibleFields, 'actionListActions'] : visibleFields,
429
- ...restOfMclProps
430
- })]
445
+ visibleColumns: !hideActionsColumn || !!editing ? [...visibleFields, 'actionListActions'] : visibleFields
446
+ }, restOfMclProps))]
431
447
  });
432
448
  });
433
449
  ActionListFieldArray.propTypes = propTypes;