@k-int/stripes-kint-components 3.0.4 → 3.2.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 (323) hide show
  1. package/CHANGELOG.md +13 -10
  2. package/LICENSE +201 -0
  3. package/es/artifacts/coverage-jest/lcov-report/block-navigation.js +6 -19
  4. package/es/artifacts/coverage-jest/lcov-report/prettify.js +2 -182
  5. package/es/artifacts/coverage-jest/lcov-report/sorter.js +64 -94
  6. package/es/index.js +13 -27
  7. package/es/lib/ActionList/ActionList.js +20 -40
  8. package/es/lib/ActionList/ActionListFieldArray.js +67 -129
  9. package/es/lib/ActionList/index.js +0 -2
  10. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.js +34 -61
  11. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.test.js +2 -9
  12. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +92 -138
  13. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.test.js +3 -18
  14. package/es/lib/CustomProperties/Config/CustomPropertyForm.js +18 -51
  15. package/es/lib/CustomProperties/Config/CustomPropertyForm.test.js +13 -35
  16. package/es/lib/CustomProperties/Config/CustomPropertyView.js +5 -14
  17. package/es/lib/CustomProperties/Config/CustomPropertyView.test.js +1 -23
  18. package/es/lib/CustomProperties/Config/index.js +0 -5
  19. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +8 -14
  20. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.test.js +1 -9
  21. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +25 -35
  22. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.test.js +1 -9
  23. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +32 -75
  24. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.test.js +3 -20
  25. package/es/lib/CustomProperties/Edit/CustomPropertyField.js +34 -91
  26. package/es/lib/CustomProperties/Edit/CustomPropertyField.test.js +6 -33
  27. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +15 -27
  28. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +3 -13
  29. package/es/lib/CustomProperties/Edit/index.js +0 -6
  30. package/es/lib/CustomProperties/Edit/testResources.js +0 -3
  31. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +35 -67
  32. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.test.js +2 -19
  33. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +13 -42
  34. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +1 -12
  35. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +6 -18
  36. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +2 -19
  37. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +10 -23
  38. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +2 -19
  39. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +13 -31
  40. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +1 -32
  41. package/es/lib/CustomProperties/Filter/index.js +0 -7
  42. package/es/lib/CustomProperties/Filter/testResources.js +0 -3
  43. package/es/lib/CustomProperties/Filter/useOperators.js +5 -19
  44. package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +3 -15
  45. package/es/lib/CustomProperties/Filter/useValueProps.js +5 -22
  46. package/es/lib/CustomProperties/View/CustomPropertiesView.js +8 -14
  47. package/es/lib/CustomProperties/View/CustomPropertiesView.test.js +1 -10
  48. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +45 -62
  49. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +1 -13
  50. package/es/lib/CustomProperties/View/CustomPropertyCard.js +11 -33
  51. package/es/lib/CustomProperties/View/index.js +0 -4
  52. package/es/lib/CustomProperties/index.js +0 -4
  53. package/es/lib/CycleButton/CycleButton.js +8 -33
  54. package/es/lib/CycleButton/index.js +0 -2
  55. package/es/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +87 -132
  56. package/es/lib/EditableRefdataCategoryList/index.js +0 -2
  57. package/es/lib/EditableRefdataList/EditableRefdataList.js +92 -140
  58. package/es/lib/EditableRefdataList/index.js +0 -2
  59. package/es/lib/EditableSettingsList/EditableSettingsList.js +7 -17
  60. package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.js +6 -19
  61. package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.test.js +4 -19
  62. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.js +7 -29
  63. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +19 -26
  64. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.js +6 -23
  65. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +14 -35
  66. package/es/lib/EditableSettingsList/SettingField/SettingField.js +18 -55
  67. package/es/lib/EditableSettingsList/SettingField/SettingField.test.js +1 -34
  68. package/es/lib/EditableSettingsList/SettingField/index.js +0 -4
  69. package/es/lib/EditableSettingsList/index.js +0 -4
  70. package/es/lib/FormModal/FormModal.js +16 -35
  71. package/es/lib/FormModal/index.js +0 -2
  72. package/es/lib/FormattedKintMessage/FormattedKintMessage.js +10 -31
  73. package/es/lib/FormattedKintMessage/index.js +0 -2
  74. package/es/lib/IconSelect/IconSelect.js +26 -63
  75. package/es/lib/IconSelect/index.js +0 -2
  76. package/es/lib/NoResultsMessage/NoResultsMessage.js +18 -28
  77. package/es/lib/NoResultsMessage/index.js +0 -2
  78. package/es/lib/QueryTypedown/QueryTypedown.js +9 -36
  79. package/es/lib/QueryTypedown/index.js +0 -2
  80. package/es/lib/RefdataButtons/RefdataButtons.js +5 -24
  81. package/es/lib/RefdataButtons/index.js +0 -2
  82. package/es/lib/ResponsiveButtonGroup/ResponsiveButtonGroup.js +148 -0
  83. package/es/lib/ResponsiveButtonGroup/index.js +13 -0
  84. package/es/lib/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js +74 -0
  85. package/es/lib/RichSelect/RichSelect.js +38 -65
  86. package/es/lib/RichSelect/index.js +0 -3
  87. package/es/lib/RichSelect/useSelectedOption.js +3 -14
  88. package/es/lib/SASQLookupComponent/SASQLookupComponent.js +75 -93
  89. package/es/lib/SASQLookupComponent/TableBody/TableBody.js +20 -33
  90. package/es/lib/SASQLookupComponent/TableBody/index.js +0 -2
  91. package/es/lib/SASQLookupComponent/index.js +0 -3
  92. package/es/lib/SASQRoute/SASQRoute.js +21 -29
  93. package/es/lib/SASQRoute/index.js +0 -2
  94. package/es/lib/SASQViewComponent/SASQViewComponent.js +37 -41
  95. package/es/lib/SASQViewComponent/index.js +0 -2
  96. package/es/lib/SearchField/SearchField.js +1 -17
  97. package/es/lib/SearchField/index.js +0 -2
  98. package/es/lib/SettingPage/SettingPage.js +10 -25
  99. package/es/lib/SettingPage/SettingPagePane.js +3 -11
  100. package/es/lib/SettingPage/index.js +0 -3
  101. package/es/lib/Typedown/Typedown.js +51 -82
  102. package/es/lib/Typedown/index.js +0 -2
  103. package/es/lib/contexts/SettingsContext.js +0 -2
  104. package/es/lib/contexts/index.js +0 -2
  105. package/es/lib/hooks/__mocks__/index.js +0 -5
  106. package/es/lib/hooks/index.js +7 -18
  107. package/es/lib/hooks/settingsHooks/index.js +0 -4
  108. package/es/lib/hooks/settingsHooks/useAppSettings.js +6 -27
  109. package/es/lib/hooks/settingsHooks/useSettingSection.js +10 -20
  110. package/es/lib/hooks/settingsHooks/useSettings.js +13 -44
  111. package/es/lib/hooks/typedownHooks/index.js +0 -4
  112. package/es/lib/hooks/typedownHooks/useTypedown.js +17 -37
  113. package/es/lib/hooks/typedownHooks/useTypedownData.js +12 -26
  114. package/es/lib/hooks/typedownHooks/useTypedownToggle.js +5 -19
  115. package/es/lib/hooks/useActiveElement.js +3 -15
  116. package/es/lib/hooks/useCustomProperties.js +11 -25
  117. package/es/lib/hooks/useHelperApp.js +7 -30
  118. package/es/lib/hooks/useIntlKey.js +0 -7
  119. package/es/lib/hooks/useIntlKeyStore.js +2 -24
  120. package/es/lib/hooks/useInvalidateRefdata.js +0 -4
  121. package/es/lib/hooks/useKintIntl.js +13 -32
  122. package/es/lib/hooks/useKiwtFieldArray.js +5 -29
  123. package/es/lib/hooks/useKiwtSASQuery.js +12 -37
  124. package/es/lib/hooks/useLocalStorageState.js +5 -21
  125. package/es/lib/hooks/useMutateCustomProperties.js +11 -28
  126. package/es/lib/hooks/useMutateRefdataCategory.js +9 -29
  127. package/es/lib/hooks/useMutateRefdataValue.js +10 -27
  128. package/es/lib/hooks/useQIndex.js +3 -27
  129. package/es/lib/hooks/useRefdata.js +7 -16
  130. package/es/lib/hooks/useSASQQueryMeta.js +41 -0
  131. package/es/lib/hooks/useTemplates.js +6 -17
  132. package/es/lib/utils/buildUrl.js +1 -10
  133. package/es/lib/utils/generateKiwtQuery.js +3 -8
  134. package/es/lib/utils/generateKiwtQueryParams.js +46 -74
  135. package/es/lib/utils/groupCustomPropertiesByCtx.js +0 -14
  136. package/es/lib/utils/highlightString.js +6 -23
  137. package/es/lib/utils/index.js +0 -15
  138. package/es/lib/utils/matchString.js +0 -6
  139. package/es/lib/utils/parseErrorResponse.js +1 -23
  140. package/es/lib/utils/refdataQueryKey.js +0 -4
  141. package/es/lib/utils/selectorSafe.js +0 -2
  142. package/es/lib/utils/sortByLabel.js +0 -6
  143. package/es/lib/utils/toCamelCase.js +6 -5
  144. package/es/lib/utils/typedownQueryKey.js +0 -4
  145. package/es/lib/utils/validators.js +5 -38
  146. package/junit.xml +148 -148
  147. package/package.json +2 -2
  148. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionList.js.html +1 -1
  149. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionListFieldArray.js.html +44 -254
  150. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionTrigger.js.html +418 -0
  151. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.html +24 -9
  152. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.js.html +1 -1
  153. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesLookup.js.html +1 -1
  154. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesSettings.js.html +4 -4
  155. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyForm.js.html +1 -1
  156. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyView.js.html +1 -1
  157. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.html +5 -5
  158. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.js.html +1 -1
  159. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEdit.js.html +1 -1
  160. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEditCtx.js.html +1 -1
  161. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesListField.js.html +1 -1
  162. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyField.js.html +29 -92
  163. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyFormCard.js.html +1 -1
  164. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.html +19 -19
  165. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.js.html +1 -1
  166. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/testResources.js.html +1 -1
  167. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilter.js.html +1 -1
  168. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterField.js.html +1 -1
  169. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js.html +1 -1
  170. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterForm.js.html +1 -1
  171. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesRule.js.html +1 -1
  172. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.html +1 -1
  173. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.js.html +1 -1
  174. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/testResources.js.html +1 -1
  175. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useOperators.js.html +1 -1
  176. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useParseActiveFilterStrings.js.html +1 -1
  177. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useValueProps.js.html +1 -1
  178. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesView.js.html +1 -1
  179. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesViewCtx.js.html +17 -17
  180. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertyCard.js.html +1 -1
  181. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.html +15 -15
  182. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.js.html +1 -1
  183. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/testResources.js.html +1 -1
  184. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.html +1 -1
  185. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.js.html +1 -1
  186. package/src/artifacts/coverage-jest/lcov-report/CycleButton/CycleButton.js.html +1 -1
  187. package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.html +1 -1
  188. package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.js.html +1 -1
  189. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/EditableRefdataCategoryList.js.html +1 -1
  190. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.html +1 -1
  191. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.js.html +1 -1
  192. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/EditableRefdataList.js.html +74 -8
  193. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.html +9 -9
  194. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.js.html +1 -1
  195. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsList.js.html +31 -4
  196. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsListFieldArray.js.html +1 -1
  197. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/EditSettingValue.js.html +1 -1
  198. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/RenderSettingValue.js.html +2 -2
  199. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/SettingField.js.html +1 -1
  200. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.html +1 -1
  201. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.js.html +1 -1
  202. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.html +7 -7
  203. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.js.html +1 -1
  204. package/src/artifacts/coverage-jest/lcov-report/FormModal/FormModal.js.html +1 -1
  205. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.html +1 -1
  206. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.js.html +1 -1
  207. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/FormattedKintMessage.js.html +3 -3
  208. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.html +1 -1
  209. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.js.html +1 -1
  210. package/src/artifacts/coverage-jest/lcov-report/IconSelect/IconSelect.js.html +1 -1
  211. package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.html +1 -1
  212. package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.js.html +1 -1
  213. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/NoResultsMessage.js.html +1 -1
  214. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.html +1 -1
  215. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.js.html +1 -1
  216. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/QueryTypedown.js.html +1 -1
  217. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.html +1 -1
  218. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.js.html +1 -1
  219. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/RefdataButtons.js.html +18 -3
  220. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.html +1 -1
  221. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.js.html +1 -1
  222. package/src/artifacts/coverage-jest/lcov-report/RichSelect/RichSelect.js.html +1 -1
  223. package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.html +1 -1
  224. package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.js.html +1 -1
  225. package/src/artifacts/coverage-jest/lcov-report/RichSelect/useSelectedOption.js.html +1 -1
  226. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/SASQLookupComponent.js.html +83 -11
  227. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/TableBody.js.html +1 -1
  228. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.html +1 -1
  229. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.js.html +1 -1
  230. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.html +9 -9
  231. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.js.html +1 -1
  232. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/SASQRoute.js.html +53 -8
  233. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.html +7 -7
  234. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.js.html +1 -1
  235. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/SASQViewComponent.js.html +65 -11
  236. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.html +9 -9
  237. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.js.html +1 -1
  238. package/src/artifacts/coverage-jest/lcov-report/SearchField/SearchField.js.html +1 -1
  239. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.html +1 -1
  240. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.js.html +1 -1
  241. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPage.js.html +56 -5
  242. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPagePane.js.html +1 -1
  243. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.html +7 -7
  244. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.js.html +1 -1
  245. package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/EditSettingValue.js.html +514 -0
  246. package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/RenderSettingValue.js.html +358 -0
  247. package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/SettingsActionList.js.html +736 -0
  248. package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/index.html +161 -0
  249. package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/index.js.html +88 -0
  250. package/src/artifacts/coverage-jest/lcov-report/Typedown/Typedown.js.html +1 -1
  251. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.html +1 -1
  252. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.js.html +1 -1
  253. package/src/artifacts/coverage-jest/lcov-report/constants/customProperties.js.html +1 -1
  254. package/src/artifacts/coverage-jest/lcov-report/constants/eventCodes.js.html +1 -1
  255. package/src/artifacts/coverage-jest/lcov-report/constants/index.html +1 -1
  256. package/src/artifacts/coverage-jest/lcov-report/contexts/SettingsContext.js.html +1 -1
  257. package/src/artifacts/coverage-jest/lcov-report/contexts/index.html +1 -1
  258. package/src/artifacts/coverage-jest/lcov-report/contexts/index.js.html +1 -1
  259. package/src/artifacts/coverage-jest/lcov-report/hooks/index.html +24 -9
  260. package/src/artifacts/coverage-jest/lcov-report/hooks/index.js.html +5 -2
  261. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.html +3 -3
  262. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.js.html +1 -1
  263. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useAppSettings.js.html +1 -1
  264. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettingSection.js.html +1 -1
  265. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettings.js.html +9 -3
  266. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.html +1 -1
  267. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.js.html +1 -1
  268. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedown.js.html +1 -1
  269. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownData.js.html +1 -1
  270. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownToggle.js.html +1 -1
  271. package/src/artifacts/coverage-jest/lcov-report/hooks/useActiveElement.js.html +1 -1
  272. package/src/artifacts/coverage-jest/lcov-report/hooks/useCustomProperties.js.html +1 -1
  273. package/src/artifacts/coverage-jest/lcov-report/hooks/useHelperApp.js.html +1 -1
  274. package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKey.js.html +1 -1
  275. package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKeyStore.js.html +3 -3
  276. package/src/artifacts/coverage-jest/lcov-report/hooks/useInvalidateRefdata.js.html +1 -1
  277. package/src/artifacts/coverage-jest/lcov-report/hooks/useKintIntl.js.html +1 -1
  278. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtFieldArray.js.html +1 -1
  279. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtSASQuery.js.html +1 -1
  280. package/src/artifacts/coverage-jest/lcov-report/hooks/useLocalStorageState.js.html +1 -1
  281. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateCustomProperties.js.html +1 -1
  282. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataCategory.js.html +1 -1
  283. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataValue.js.html +1 -1
  284. package/src/artifacts/coverage-jest/lcov-report/hooks/useQIndex.js.html +1 -1
  285. package/src/artifacts/coverage-jest/lcov-report/hooks/useRefdata.js.html +1 -1
  286. package/src/artifacts/coverage-jest/lcov-report/hooks/useSASQQueryMeta.js.html +187 -0
  287. package/src/artifacts/coverage-jest/lcov-report/hooks/useTemplates.js.html +1 -1
  288. package/src/artifacts/coverage-jest/lcov-report/index.html +92 -77
  289. package/src/artifacts/coverage-jest/lcov-report/utils/buildUrl.js.html +1 -1
  290. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQuery.js.html +2 -2
  291. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQueryParams.js.html +2 -2
  292. package/src/artifacts/coverage-jest/lcov-report/utils/groupCustomPropertiesByCtx.js.html +2 -2
  293. package/src/artifacts/coverage-jest/lcov-report/utils/highlightString.js.html +3 -3
  294. package/src/artifacts/coverage-jest/lcov-report/utils/index.html +20 -20
  295. package/src/artifacts/coverage-jest/lcov-report/utils/index.js.html +1 -1
  296. package/src/artifacts/coverage-jest/lcov-report/utils/matchString.js.html +2 -2
  297. package/src/artifacts/coverage-jest/lcov-report/utils/parseErrorResponse.js.html +2 -2
  298. package/src/artifacts/coverage-jest/lcov-report/utils/refdataOptions.js.html +1 -1
  299. package/src/artifacts/coverage-jest/lcov-report/utils/refdataQueryKey.js.html +2 -2
  300. package/src/artifacts/coverage-jest/lcov-report/utils/selectorSafe.js.html +2 -2
  301. package/src/artifacts/coverage-jest/lcov-report/utils/sortByLabel.js.html +2 -2
  302. package/src/artifacts/coverage-jest/lcov-report/utils/toCamelCase.js.html +2 -2
  303. package/src/artifacts/coverage-jest/lcov-report/utils/typedownQueryKey.js.html +2 -2
  304. package/src/artifacts/coverage-jest/lcov-report/utils/validators.js.html +39 -39
  305. package/src/artifacts/coverage-jest/lcov.info +1063 -760
  306. package/src/index.js +4 -1
  307. package/src/lib/CustomProperties/Edit/CustomPropertyField.js +0 -7
  308. package/src/lib/IconSelect/IconSelect.js +22 -20
  309. package/src/lib/NoResultsMessage/NoResultsMessage.js +1 -1
  310. package/src/lib/ResponsiveButtonGroup/README.md +31 -0
  311. package/src/lib/ResponsiveButtonGroup/ResponsiveButtonGroup.js +150 -0
  312. package/src/lib/ResponsiveButtonGroup/index.js +1 -0
  313. package/src/lib/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js +56 -0
  314. package/src/lib/RichSelect/RichSelect.js +1 -0
  315. package/src/lib/SASQLookupComponent/SASQLookupComponent.js +34 -5
  316. package/src/lib/SASQRoute/SASQRoute.js +18 -3
  317. package/src/lib/SASQViewComponent/SASQViewComponent.js +23 -5
  318. package/src/lib/hooks/index.js +1 -0
  319. package/src/lib/hooks/useSASQQueryMeta.js +34 -0
  320. package/src/lib/utils/README.md +3 -1
  321. package/src/lib/utils/generateKiwtQuery.js +3 -3
  322. package/src/lib/utils/generateKiwtQueryParams.js +27 -13
  323. package/styles/ResponsiveButtonGroup.css +79 -0
@@ -23,30 +23,30 @@
23
23
  <div class='clearfix'>
24
24
 
25
25
  <div class='fl pad1y space-right2'>
26
- <span class="strong">30.1% </span>
26
+ <span class="strong">27.88% </span>
27
27
  <span class="quiet">Statements</span>
28
- <span class='fraction'>491/1631</span>
28
+ <span class='fraction'>486/1743</span>
29
29
  </div>
30
30
 
31
31
 
32
32
  <div class='fl pad1y space-right2'>
33
- <span class="strong">25.38% </span>
33
+ <span class="strong">23.41% </span>
34
34
  <span class="quiet">Branches</span>
35
- <span class='fraction'>264/1040</span>
35
+ <span class='fraction'>263/1123</span>
36
36
  </div>
37
37
 
38
38
 
39
39
  <div class='fl pad1y space-right2'>
40
- <span class="strong">27.94% </span>
40
+ <span class="strong">24.95% </span>
41
41
  <span class="quiet">Functions</span>
42
- <span class='fraction'>133/476</span>
42
+ <span class='fraction'>126/505</span>
43
43
  </div>
44
44
 
45
45
 
46
46
  <div class='fl pad1y space-right2'>
47
- <span class="strong">30.42% </span>
47
+ <span class="strong">28.15% </span>
48
48
  <span class="quiet">Lines</span>
49
- <span class='fraction'>474/1558</span>
49
+ <span class='fraction'>469/1666</span>
50
50
  </div>
51
51
 
52
52
 
@@ -84,13 +84,13 @@
84
84
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
85
85
  </td>
86
86
  <td data-value="0" class="pct low">0%</td>
87
- <td data-value="128" class="abs low">0/128</td>
87
+ <td data-value="125" class="abs low">0/125</td>
88
88
  <td data-value="0" class="pct low">0%</td>
89
- <td data-value="93" class="abs low">0/93</td>
89
+ <td data-value="95" class="abs low">0/95</td>
90
90
  <td data-value="0" class="pct low">0%</td>
91
- <td data-value="35" class="abs low">0/35</td>
91
+ <td data-value="36" class="abs low">0/36</td>
92
92
  <td data-value="0" class="pct low">0%</td>
93
- <td data-value="119" class="abs low">0/119</td>
93
+ <td data-value="115" class="abs low">0/115</td>
94
94
  </tr>
95
95
 
96
96
  <tr>
@@ -115,8 +115,8 @@
115
115
  </td>
116
116
  <td data-value="54.71" class="pct medium">54.71%</td>
117
117
  <td data-value="106" class="abs medium">58/106</td>
118
- <td data-value="51.85" class="pct medium">51.85%</td>
119
- <td data-value="108" class="abs medium">56/108</td>
118
+ <td data-value="50.9" class="pct medium">50.9%</td>
119
+ <td data-value="110" class="abs medium">56/110</td>
120
120
  <td data-value="38.88" class="pct low">38.88%</td>
121
121
  <td data-value="36" class="abs low">14/36</td>
122
122
  <td data-value="54.36" class="pct medium">54.36%</td>
@@ -125,17 +125,17 @@
125
125
 
126
126
  <tr>
127
127
  <td class="file medium" data-value="CustomProperties/Edit"><a href="CustomProperties/Edit/index.html">CustomProperties/Edit</a></td>
128
- <td data-value="70.32" class="pic medium">
129
- <div class="chart"><div class="cover-fill" style="width: 70%"></div><div class="cover-empty" style="width: 30%"></div></div>
128
+ <td data-value="72.92" class="pic medium">
129
+ <div class="chart"><div class="cover-fill" style="width: 72%"></div><div class="cover-empty" style="width: 28%"></div></div>
130
130
  </td>
131
- <td data-value="70.32" class="pct medium">70.32%</td>
132
- <td data-value="182" class="abs medium">128/182</td>
133
- <td data-value="57.27" class="pct medium">57.27%</td>
134
- <td data-value="110" class="abs medium">63/110</td>
135
- <td data-value="73.33" class="pct medium">73.33%</td>
136
- <td data-value="60" class="abs medium">44/60</td>
137
- <td data-value="71.67" class="pct medium">71.67%</td>
138
- <td data-value="173" class="abs medium">124/173</td>
131
+ <td data-value="72.92" class="pct medium">72.92%</td>
132
+ <td data-value="181" class="abs medium">132/181</td>
133
+ <td data-value="64.86" class="pct medium">64.86%</td>
134
+ <td data-value="111" class="abs medium">72/111</td>
135
+ <td data-value="72.88" class="pct medium">72.88%</td>
136
+ <td data-value="59" class="abs medium">43/59</td>
137
+ <td data-value="74.41" class="pct medium">74.41%</td>
138
+ <td data-value="172" class="abs medium">128/172</td>
139
139
  </tr>
140
140
 
141
141
  <tr>
@@ -155,17 +155,17 @@
155
155
 
156
156
  <tr>
157
157
  <td class="file medium" data-value="CustomProperties/View"><a href="CustomProperties/View/index.html">CustomProperties/View</a></td>
158
- <td data-value="53.19" class="pic medium">
159
- <div class="chart"><div class="cover-fill" style="width: 53%"></div><div class="cover-empty" style="width: 47%"></div></div>
158
+ <td data-value="55.55" class="pic medium">
159
+ <div class="chart"><div class="cover-fill" style="width: 55%"></div><div class="cover-empty" style="width: 45%"></div></div>
160
160
  </td>
161
- <td data-value="53.19" class="pct medium">53.19%</td>
162
- <td data-value="47" class="abs medium">25/47</td>
163
- <td data-value="17.3" class="pct low">17.3%</td>
164
- <td data-value="52" class="abs low">9/52</td>
161
+ <td data-value="55.55" class="pct medium">55.55%</td>
162
+ <td data-value="45" class="abs medium">25/45</td>
163
+ <td data-value="18" class="pct low">18%</td>
164
+ <td data-value="50" class="abs low">9/50</td>
165
165
  <td data-value="72.72" class="pct medium">72.72%</td>
166
166
  <td data-value="11" class="abs medium">8/11</td>
167
- <td data-value="52.17" class="pct medium">52.17%</td>
168
- <td data-value="46" class="abs medium">24/46</td>
167
+ <td data-value="54.54" class="pct medium">54.54%</td>
168
+ <td data-value="44" class="abs medium">24/44</td>
169
169
  </tr>
170
170
 
171
171
  <tr>
@@ -204,28 +204,28 @@
204
204
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
205
205
  </td>
206
206
  <td data-value="0" class="pct low">0%</td>
207
- <td data-value="41" class="abs low">0/41</td>
207
+ <td data-value="43" class="abs low">0/43</td>
208
208
  <td data-value="0" class="pct low">0%</td>
209
- <td data-value="20" class="abs low">0/20</td>
209
+ <td data-value="25" class="abs low">0/25</td>
210
210
  <td data-value="0" class="pct low">0%</td>
211
- <td data-value="17" class="abs low">0/17</td>
211
+ <td data-value="19" class="abs low">0/19</td>
212
212
  <td data-value="0" class="pct low">0%</td>
213
- <td data-value="40" class="abs low">0/40</td>
213
+ <td data-value="42" class="abs low">0/42</td>
214
214
  </tr>
215
215
 
216
216
  <tr>
217
217
  <td class="file low" data-value="EditableSettingsList"><a href="EditableSettingsList/index.html">EditableSettingsList</a></td>
218
- <td data-value="41.66" class="pic low">
219
- <div class="chart"><div class="cover-fill" style="width: 41%"></div><div class="cover-empty" style="width: 59%"></div></div>
218
+ <td data-value="38.46" class="pic low">
219
+ <div class="chart"><div class="cover-fill" style="width: 38%"></div><div class="cover-empty" style="width: 62%"></div></div>
220
220
  </td>
221
- <td data-value="41.66" class="pct low">41.66%</td>
222
- <td data-value="12" class="abs low">5/12</td>
221
+ <td data-value="38.46" class="pct low">38.46%</td>
222
+ <td data-value="13" class="abs low">5/13</td>
223
223
  <td data-value="50" class="pct medium">50%</td>
224
224
  <td data-value="2" class="abs medium">1/2</td>
225
225
  <td data-value="33.33" class="pct low">33.33%</td>
226
226
  <td data-value="6" class="abs low">2/6</td>
227
- <td data-value="41.66" class="pct low">41.66%</td>
228
- <td data-value="12" class="abs low">5/12</td>
227
+ <td data-value="38.46" class="pct low">38.46%</td>
228
+ <td data-value="13" class="abs low">5/13</td>
229
229
  </tr>
230
230
 
231
231
  <tr>
@@ -354,13 +354,13 @@
354
354
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
355
355
  </td>
356
356
  <td data-value="0" class="pct low">0%</td>
357
- <td data-value="39" class="abs low">0/39</td>
357
+ <td data-value="46" class="abs low">0/46</td>
358
358
  <td data-value="0" class="pct low">0%</td>
359
- <td data-value="31" class="abs low">0/31</td>
359
+ <td data-value="33" class="abs low">0/33</td>
360
360
  <td data-value="0" class="pct low">0%</td>
361
- <td data-value="10" class="abs low">0/10</td>
361
+ <td data-value="11" class="abs low">0/11</td>
362
362
  <td data-value="0" class="pct low">0%</td>
363
- <td data-value="38" class="abs low">0/38</td>
363
+ <td data-value="45" class="abs low">0/45</td>
364
364
  </tr>
365
365
 
366
366
  <tr>
@@ -384,13 +384,13 @@
384
384
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
385
385
  </td>
386
386
  <td data-value="0" class="pct low">0%</td>
387
- <td data-value="10" class="abs low">0/10</td>
387
+ <td data-value="14" class="abs low">0/14</td>
388
388
  <td data-value="0" class="pct low">0%</td>
389
389
  <td data-value="3" class="abs low">0/3</td>
390
390
  <td data-value="0" class="pct low">0%</td>
391
- <td data-value="3" class="abs low">0/3</td>
391
+ <td data-value="4" class="abs low">0/4</td>
392
392
  <td data-value="0" class="pct low">0%</td>
393
- <td data-value="10" class="abs low">0/10</td>
393
+ <td data-value="13" class="abs low">0/13</td>
394
394
  </tr>
395
395
 
396
396
  <tr>
@@ -399,13 +399,13 @@
399
399
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
400
400
  </td>
401
401
  <td data-value="0" class="pct low">0%</td>
402
- <td data-value="9" class="abs low">0/9</td>
402
+ <td data-value="16" class="abs low">0/16</td>
403
403
  <td data-value="0" class="pct low">0%</td>
404
- <td data-value="3" class="abs low">0/3</td>
404
+ <td data-value="5" class="abs low">0/5</td>
405
405
  <td data-value="0" class="pct low">0%</td>
406
- <td data-value="3" class="abs low">0/3</td>
406
+ <td data-value="4" class="abs low">0/4</td>
407
407
  <td data-value="0" class="pct low">0%</td>
408
- <td data-value="9" class="abs low">0/9</td>
408
+ <td data-value="16" class="abs low">0/16</td>
409
409
  </tr>
410
410
 
411
411
  <tr>
@@ -429,13 +429,28 @@
429
429
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
430
430
  </td>
431
431
  <td data-value="0" class="pct low">0%</td>
432
- <td data-value="9" class="abs low">0/9</td>
432
+ <td data-value="11" class="abs low">0/11</td>
433
433
  <td data-value="0" class="pct low">0%</td>
434
- <td data-value="1" class="abs low">0/1</td>
434
+ <td data-value="4" class="abs low">0/4</td>
435
435
  <td data-value="0" class="pct low">0%</td>
436
436
  <td data-value="2" class="abs low">0/2</td>
437
437
  <td data-value="0" class="pct low">0%</td>
438
- <td data-value="9" class="abs low">0/9</td>
438
+ <td data-value="11" class="abs low">0/11</td>
439
+ </tr>
440
+
441
+ <tr>
442
+ <td class="file low" data-value="SettingsActionList"><a href="SettingsActionList/index.html">SettingsActionList</a></td>
443
+ <td data-value="0" class="pic low">
444
+ <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
445
+ </td>
446
+ <td data-value="0" class="pct low">0%</td>
447
+ <td data-value="81" class="abs low">0/81</td>
448
+ <td data-value="0" class="pct low">0%</td>
449
+ <td data-value="63" class="abs low">0/63</td>
450
+ <td data-value="0" class="pct low">0%</td>
451
+ <td data-value="21" class="abs low">0/21</td>
452
+ <td data-value="0" class="pct low">0%</td>
453
+ <td data-value="79" class="abs low">0/79</td>
439
454
  </tr>
440
455
 
441
456
  <tr>
@@ -485,17 +500,17 @@
485
500
 
486
501
  <tr>
487
502
  <td class="file low" data-value="hooks"><a href="hooks/index.html">hooks</a></td>
488
- <td data-value="8.49" class="pic low">
503
+ <td data-value="8.05" class="pic low">
489
504
  <div class="chart"><div class="cover-fill" style="width: 8%"></div><div class="cover-empty" style="width: 92%"></div></div>
490
505
  </td>
491
- <td data-value="8.49" class="pct low">8.49%</td>
492
- <td data-value="259" class="abs low">22/259</td>
493
- <td data-value="11.32" class="pct low">11.32%</td>
494
- <td data-value="106" class="abs low">12/106</td>
495
- <td data-value="5.97" class="pct low">5.97%</td>
496
- <td data-value="67" class="abs low">4/67</td>
497
- <td data-value="8.46" class="pct low">8.46%</td>
498
- <td data-value="248" class="abs low">21/248</td>
506
+ <td data-value="8.05" class="pct low">8.05%</td>
507
+ <td data-value="273" class="abs low">22/273</td>
508
+ <td data-value="10.9" class="pct low">10.9%</td>
509
+ <td data-value="110" class="abs low">12/110</td>
510
+ <td data-value="5.71" class="pct low">5.71%</td>
511
+ <td data-value="70" class="abs low">4/70</td>
512
+ <td data-value="8.01" class="pct low">8.01%</td>
513
+ <td data-value="262" class="abs low">21/262</td>
499
514
  </tr>
500
515
 
501
516
  <tr>
@@ -506,7 +521,7 @@
506
521
  <td data-value="0" class="pct low">0%</td>
507
522
  <td data-value="50" class="abs low">0/50</td>
508
523
  <td data-value="0" class="pct low">0%</td>
509
- <td data-value="30" class="abs low">0/30</td>
524
+ <td data-value="31" class="abs low">0/31</td>
510
525
  <td data-value="0" class="pct low">0%</td>
511
526
  <td data-value="14" class="abs low">0/14</td>
512
527
  <td data-value="0" class="pct low">0%</td>
@@ -530,17 +545,17 @@
530
545
 
531
546
  <tr>
532
547
  <td class="file low" data-value="utils"><a href="utils/index.html">utils</a></td>
533
- <td data-value="25.3" class="pic low">
534
- <div class="chart"><div class="cover-fill" style="width: 25%"></div><div class="cover-empty" style="width: 75%"></div></div>
548
+ <td data-value="19.87" class="pic low">
549
+ <div class="chart"><div class="cover-fill" style="width: 19%"></div><div class="cover-empty" style="width: 81%"></div></div>
535
550
  </td>
536
- <td data-value="25.3" class="pct low">25.3%</td>
537
- <td data-value="166" class="abs low">42/166</td>
538
- <td data-value="19.35" class="pct low">19.35%</td>
539
- <td data-value="124" class="abs low">24/124</td>
540
- <td data-value="28.57" class="pct low">28.57%</td>
541
- <td data-value="49" class="abs low">14/49</td>
542
- <td data-value="27.09" class="pct low">27.09%</td>
543
- <td data-value="155" class="abs low">42/155</td>
551
+ <td data-value="19.87" class="pct low">19.87%</td>
552
+ <td data-value="166" class="abs low">33/166</td>
553
+ <td data-value="11.29" class="pct low">11.29%</td>
554
+ <td data-value="124" class="abs low">14/124</td>
555
+ <td data-value="16.32" class="pct low">16.32%</td>
556
+ <td data-value="49" class="abs low">8/49</td>
557
+ <td data-value="21.29" class="pct low">21.29%</td>
558
+ <td data-value="155" class="abs low">33/155</td>
544
559
  </tr>
545
560
 
546
561
  </tbody>
@@ -551,7 +566,7 @@
551
566
  <div class='footer quiet pad2 space-top1 center small'>
552
567
  Code coverage generated by
553
568
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
554
- at 2022-09-16T13:23:25.290Z
569
+ at 2022-10-18T08:59:08.296Z
555
570
  </div>
556
571
  <script src="prettify.js"></script>
557
572
  <script>
@@ -178,7 +178,7 @@ export default function <span class="fstat-no" title="function not covered" >bui
178
178
  <div class='footer quiet pad2 space-top1 center small'>
179
179
  Code coverage generated by
180
180
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
181
- at 2022-09-16T13:23:25.290Z
181
+ at 2022-10-18T08:59:08.296Z
182
182
  </div>
183
183
  <script src="../prettify.js"></script>
184
184
  <script>
@@ -73,7 +73,7 @@
73
73
  <a name='L8'></a><a href='#L8'>8</a>
74
74
  <a name='L9'></a><a href='#L9'>9</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral">&nbsp;</span>
75
75
  <span class="cline-any cline-neutral">&nbsp;</span>
76
- <span class="cline-any cline-yes">4x</span>
76
+ <span class="cline-any cline-yes">3x</span>
77
77
  <span class="cline-any cline-no">&nbsp;</span>
78
78
  <span class="cline-any cline-no">&nbsp;</span>
79
79
  <span class="cline-any cline-neutral">&nbsp;</span>
@@ -94,7 +94,7 @@ export default generateKiwtQuery;
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
97
- at 2022-09-16T13:23:25.290Z
97
+ at 2022-10-18T08:59:08.296Z
98
98
  </div>
99
99
  <script src="../prettify.js"></script>
100
100
  <script>
@@ -195,7 +195,7 @@
195
195
  <a name='L130'></a><a href='#L130'>130</a>
196
196
  <a name='L131'></a><a href='#L131'>131</a>
197
197
  <a name='L132'></a><a href='#L132'>132</a>
198
- <a name='L133'></a><a href='#L133'>133</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">4x</span>
198
+ <a name='L133'></a><a href='#L133'>133</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
199
199
  <span class="cline-any cline-no">&nbsp;</span>
200
200
  <span class="cline-any cline-neutral">&nbsp;</span>
201
201
  <span class="cline-any cline-neutral">&nbsp;</span>
@@ -466,7 +466,7 @@ export default generateKiwtQueryParams;
466
466
  <div class='footer quiet pad2 space-top1 center small'>
467
467
  Code coverage generated by
468
468
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
469
- at 2022-09-16T13:23:25.290Z
469
+ at 2022-10-18T08:59:08.296Z
470
470
  </div>
471
471
  <script src="../prettify.js"></script>
472
472
  <script>
@@ -76,7 +76,7 @@
76
76
  <a name='L11'></a><a href='#L11'>11</a>
77
77
  <a name='L12'></a><a href='#L12'>12</a>
78
78
  <a name='L13'></a><a href='#L13'>13</a>
79
- <a name='L14'></a><a href='#L14'>14</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">4x</span>
79
+ <a name='L14'></a><a href='#L14'>14</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
80
80
  <span class="cline-any cline-yes">4x</span>
81
81
  <span class="cline-any cline-yes">48x</span>
82
82
  <span class="cline-any cline-yes">48x</span>
@@ -109,7 +109,7 @@ export default groupCustomPropertiesByCtx;
109
109
  <div class='footer quiet pad2 space-top1 center small'>
110
110
  Code coverage generated by
111
111
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
112
- at 2022-09-16T13:23:25.290Z
112
+ at 2022-10-18T08:59:08.296Z
113
113
  </div>
114
114
  <script src="../prettify.js"></script>
115
115
  <script>
@@ -107,7 +107,7 @@
107
107
  <a name='L42'></a><a href='#L42'>42</a>
108
108
  <a name='L43'></a><a href='#L43'>43</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral">&nbsp;</span>
109
109
  <span class="cline-any cline-neutral">&nbsp;</span>
110
- <span class="cline-any cline-yes">4x</span>
110
+ <span class="cline-any cline-yes">3x</span>
111
111
  <span class="cline-any cline-no">&nbsp;</span>
112
112
  <span class="cline-any cline-neutral">&nbsp;</span>
113
113
  <span class="cline-any cline-no">&nbsp;</span>
@@ -125,7 +125,7 @@
125
125
  <span class="cline-any cline-neutral">&nbsp;</span>
126
126
  <span class="cline-any cline-neutral">&nbsp;</span>
127
127
  <span class="cline-any cline-neutral">&nbsp;</span>
128
- <span class="cline-any cline-yes">4x</span>
128
+ <span class="cline-any cline-yes">3x</span>
129
129
  <span class="cline-any cline-no">&nbsp;</span>
130
130
  <span class="cline-any cline-neutral">&nbsp;</span>
131
131
  <span class="cline-any cline-no">&nbsp;</span>
@@ -196,7 +196,7 @@ export {
196
196
  <div class='footer quiet pad2 space-top1 center small'>
197
197
  Code coverage generated by
198
198
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
199
- at 2022-09-16T13:23:25.290Z
199
+ at 2022-10-18T08:59:08.296Z
200
200
  </div>
201
201
  <script src="../prettify.js"></script>
202
202
  <script>
@@ -23,30 +23,30 @@
23
23
  <div class='clearfix'>
24
24
 
25
25
  <div class='fl pad1y space-right2'>
26
- <span class="strong">25.3% </span>
26
+ <span class="strong">19.87% </span>
27
27
  <span class="quiet">Statements</span>
28
- <span class='fraction'>42/166</span>
28
+ <span class='fraction'>33/166</span>
29
29
  </div>
30
30
 
31
31
 
32
32
  <div class='fl pad1y space-right2'>
33
- <span class="strong">19.35% </span>
33
+ <span class="strong">11.29% </span>
34
34
  <span class="quiet">Branches</span>
35
- <span class='fraction'>24/124</span>
35
+ <span class='fraction'>14/124</span>
36
36
  </div>
37
37
 
38
38
 
39
39
  <div class='fl pad1y space-right2'>
40
- <span class="strong">28.57% </span>
40
+ <span class="strong">16.32% </span>
41
41
  <span class="quiet">Functions</span>
42
- <span class='fraction'>14/49</span>
42
+ <span class='fraction'>8/49</span>
43
43
  </div>
44
44
 
45
45
 
46
46
  <div class='fl pad1y space-right2'>
47
- <span class="strong">27.09% </span>
47
+ <span class="strong">21.29% </span>
48
48
  <span class="quiet">Lines</span>
49
- <span class='fraction'>42/155</span>
49
+ <span class='fraction'>33/155</span>
50
50
  </div>
51
51
 
52
52
 
@@ -289,18 +289,18 @@
289
289
  </tr>
290
290
 
291
291
  <tr>
292
- <td class="file medium" data-value="validators.js"><a href="validators.js.html">validators.js</a></td>
293
- <td data-value="76.66" class="pic medium">
294
- <div class="chart"><div class="cover-fill" style="width: 76%"></div><div class="cover-empty" style="width: 24%"></div></div>
292
+ <td class="file low" data-value="validators.js"><a href="validators.js.html">validators.js</a></td>
293
+ <td data-value="46.66" class="pic low">
294
+ <div class="chart"><div class="cover-fill" style="width: 46%"></div><div class="cover-empty" style="width: 54%"></div></div>
295
295
  </td>
296
- <td data-value="76.66" class="pct medium">76.66%</td>
297
- <td data-value="30" class="abs medium">23/30</td>
298
- <td data-value="60" class="pct medium">60%</td>
299
- <td data-value="30" class="abs medium">18/30</td>
300
- <td data-value="90.9" class="pct high">90.9%</td>
301
- <td data-value="11" class="abs high">10/11</td>
302
- <td data-value="76.66" class="pct medium">76.66%</td>
303
- <td data-value="30" class="abs medium">23/30</td>
296
+ <td data-value="46.66" class="pct low">46.66%</td>
297
+ <td data-value="30" class="abs low">14/30</td>
298
+ <td data-value="26.66" class="pct low">26.66%</td>
299
+ <td data-value="30" class="abs low">8/30</td>
300
+ <td data-value="36.36" class="pct low">36.36%</td>
301
+ <td data-value="11" class="abs low">4/11</td>
302
+ <td data-value="46.66" class="pct low">46.66%</td>
303
+ <td data-value="30" class="abs low">14/30</td>
304
304
  </tr>
305
305
 
306
306
  </tbody>
@@ -311,7 +311,7 @@
311
311
  <div class='footer quiet pad2 space-top1 center small'>
312
312
  Code coverage generated by
313
313
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
314
- at 2022-09-16T13:23:25.290Z
314
+ at 2022-10-18T08:59:08.296Z
315
315
  </div>
316
316
  <script src="../prettify.js"></script>
317
317
  <script>
@@ -172,7 +172,7 @@ export {
172
172
  <div class='footer quiet pad2 space-top1 center small'>
173
173
  Code coverage generated by
174
174
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
175
- at 2022-09-16T13:23:25.290Z
175
+ at 2022-10-18T08:59:08.296Z
176
176
  </div>
177
177
  <script src="../prettify.js"></script>
178
178
  <script>
@@ -79,7 +79,7 @@
79
79
  <a name='L14'></a><a href='#L14'>14</a>
80
80
  <a name='L15'></a><a href='#L15'>15</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral">&nbsp;</span>
81
81
  <span class="cline-any cline-neutral">&nbsp;</span>
82
- <span class="cline-any cline-yes">4x</span>
82
+ <span class="cline-any cline-yes">3x</span>
83
83
  <span class="cline-any cline-no">&nbsp;</span>
84
84
  <span class="cline-any cline-no">&nbsp;</span>
85
85
  <span class="cline-any cline-no">&nbsp;</span>
@@ -112,7 +112,7 @@ export default matchString;
112
112
  <div class='footer quiet pad2 space-top1 center small'>
113
113
  Code coverage generated by
114
114
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
115
- at 2022-09-16T13:23:25.290Z
115
+ at 2022-10-18T08:59:08.296Z
116
116
  </div>
117
117
  <script src="../prettify.js"></script>
118
118
  <script>
@@ -81,7 +81,7 @@
81
81
  <a name='L16'></a><a href='#L16'>16</a>
82
82
  <a name='L17'></a><a href='#L17'>17</a>
83
83
  <a name='L18'></a><a href='#L18'>18</a>
84
- <a name='L19'></a><a href='#L19'>19</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">4x</span>
84
+ <a name='L19'></a><a href='#L19'>19</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
85
85
  <span class="cline-any cline-neutral">&nbsp;</span>
86
86
  <span class="cline-any cline-no">&nbsp;</span>
87
87
  <span class="cline-any cline-neutral">&nbsp;</span>
@@ -124,7 +124,7 @@ export default parseErrorResponse;
124
124
  <div class='footer quiet pad2 space-top1 center small'>
125
125
  Code coverage generated by
126
126
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
127
- at 2022-09-16T13:23:25.290Z
127
+ at 2022-10-18T08:59:08.296Z
128
128
  </div>
129
129
  <script src="../prettify.js"></script>
130
130
  <script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
97
- at 2022-09-16T13:23:25.290Z
97
+ at 2022-10-18T08:59:08.296Z
98
98
  </div>
99
99
  <script src="../prettify.js"></script>
100
100
  <script>
@@ -72,7 +72,7 @@
72
72
  <a name='L7'></a><a href='#L7'>7</a>
73
73
  <a name='L8'></a><a href='#L8'>8</a>
74
74
  <a name='L9'></a><a href='#L9'>9</a>
75
- <a name='L10'></a><a href='#L10'>10</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">4x</span>
75
+ <a name='L10'></a><a href='#L10'>10</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
76
76
  <span class="cline-any cline-no">&nbsp;</span>
77
77
  <span class="cline-any cline-no">&nbsp;</span>
78
78
  <span class="cline-any cline-no">&nbsp;</span>
@@ -97,7 +97,7 @@ export default refdataQueryKey;
97
97
  <div class='footer quiet pad2 space-top1 center small'>
98
98
  Code coverage generated by
99
99
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
100
- at 2022-09-16T13:23:25.290Z
100
+ at 2022-10-18T08:59:08.296Z
101
101
  </div>
102
102
  <script src="../prettify.js"></script>
103
103
  <script>
@@ -69,7 +69,7 @@
69
69
  <a name='L4'></a><a href='#L4'>4</a>
70
70
  <a name='L5'></a><a href='#L5'>5</a>
71
71
  <a name='L6'></a><a href='#L6'>6</a>
72
- <a name='L7'></a><a href='#L7'>7</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">4x</span>
72
+ <a name='L7'></a><a href='#L7'>7</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
73
73
  <span class="cline-any cline-no">&nbsp;</span>
74
74
  <span class="cline-any cline-neutral">&nbsp;</span>
75
75
  <span class="cline-any cline-neutral">&nbsp;</span>
@@ -88,7 +88,7 @@ export default selectorSafe;
88
88
  <div class='footer quiet pad2 space-top1 center small'>
89
89
  Code coverage generated by
90
90
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
91
- at 2022-09-16T13:23:25.290Z
91
+ at 2022-10-18T08:59:08.296Z
92
92
  </div>
93
93
  <script src="../prettify.js"></script>
94
94
  <script>
@@ -78,7 +78,7 @@
78
78
  <a name='L13'></a><a href='#L13'>13</a>
79
79
  <a name='L14'></a><a href='#L14'>14</a>
80
80
  <a name='L15'></a><a href='#L15'>15</a>
81
- <a name='L16'></a><a href='#L16'>16</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">4x</span>
81
+ <a name='L16'></a><a href='#L16'>16</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
82
82
  <span class="cline-any cline-no">&nbsp;</span>
83
83
  <span class="cline-any cline-no">&nbsp;</span>
84
84
  <span class="cline-any cline-no">&nbsp;</span>
@@ -115,7 +115,7 @@ export default sortByLabel;
115
115
  <div class='footer quiet pad2 space-top1 center small'>
116
116
  Code coverage generated by
117
117
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
118
- at 2022-09-16T13:23:25.290Z
118
+ at 2022-10-18T08:59:08.296Z
119
119
  </div>
120
120
  <script src="../prettify.js"></script>
121
121
  <script>