@k-int/stripes-kint-components 5.31.3 → 5.32.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 (417) hide show
  1. package/CHANGELOG.md +15 -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 +26 -18
  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 +532 -0
  53. package/es/lib/SASQLookupComponent/TableBody/TableBody.js +58 -43
  54. package/es/lib/SASQLookupComponent/TableBody/TableBody.test.js +257 -0
  55. package/es/lib/SASQLookupComponent/__mocks__/SASQLookupComponent.js +33 -0
  56. package/es/lib/SASQLookupComponent/__mocks__/SASQLookupComponentRender.js +24 -0
  57. package/es/lib/SASQLookupComponent/__mocks__/index.js +20 -0
  58. package/es/lib/SASQRoute/SASQRoute.js +29 -25
  59. package/es/lib/SASQRoute/SASQRoute.test.js +269 -0
  60. package/es/lib/SASQViewComponent/SASQViewComponent.js +76 -68
  61. package/es/lib/SASQViewComponent/SASQViewComponent.test.js +108 -0
  62. package/es/lib/SASQViewComponent/__mocks__/SASQViewComponent.js +19 -0
  63. package/es/lib/SASQViewComponent/__mocks__/SASQViewComponentRender.js +19 -0
  64. package/es/lib/SASQViewComponent/__mocks__/index.js +20 -0
  65. package/es/lib/SearchField/SearchField.js +13 -7
  66. package/es/lib/SearchKeyControl/SearchKeyControl.js +13 -8
  67. package/es/lib/SearchKeyControl/SearchKeyControl.test.js +6 -2
  68. package/es/lib/Settings/EditableRefdataCategoryList/EditableRefdataCategoryList.js +46 -30
  69. package/es/lib/Settings/EditableRefdataList/EditableRefdataList.js +43 -33
  70. package/es/lib/Settings/EditableSettingsList/EditableSettingsListFieldArray/EditableSettingsListFieldArray.js +12 -8
  71. package/es/lib/Settings/EditableSettingsList/SettingField/EditSettingValue/EditSettingValue.js +20 -13
  72. package/es/lib/Settings/EditableSettingsList/SettingField/RenderSettingValue/RenderSettingValue.js +12 -10
  73. package/es/lib/Settings/EditableSettingsList/SettingField/SettingField.js +15 -10
  74. package/es/lib/Settings/EditableSettingsList/SettingField/SettingField.test.js +3 -3
  75. package/es/lib/Settings/RefdataCategoriesSettings/RefdataCategoriesSettings.js +26 -19
  76. package/es/lib/Settings/SettingPage/SettingPagePane/SettingPagePane.js +2 -2
  77. package/es/lib/Settings/Settings/Settings.js +158 -0
  78. package/es/lib/Settings/Settings/index.js +13 -0
  79. package/es/lib/Settings/SettingsFormContainer/SettingsFormContainer.js +35 -30
  80. package/es/lib/Settings/StaticSettingsField/StaticSettingsField.js +8 -5
  81. package/es/lib/Settings/StaticSettingsField/StaticSettingsFieldComponent/StaticSettingsFieldComponent.js +22 -18
  82. package/es/lib/Settings/hooks/staticSettingsPages/useSettingCallout/useSettingCallout.js +2 -2
  83. package/es/lib/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/useSettingsSectionInitalValues.js +1 -1
  84. package/es/lib/Settings/hooks/staticSettingsPages/useStaticSettingsSection.js +7 -3
  85. package/es/lib/Settings/hooks/useAppSettings/useAppSettings.js +11 -7
  86. package/es/lib/Settings/hooks/useSettingSection/useSettingSection.js +22 -16
  87. package/es/lib/Settings/hooks/useSettings/useSettings.js +69 -63
  88. package/es/lib/Tags/Tags.js +8 -5
  89. package/es/lib/Tags/hooks/useTags.js +1 -1
  90. package/es/lib/Tags/hooks/useTagsEnabled.js +3 -2
  91. package/es/lib/Tags/tagsConfig.js +1 -1
  92. package/es/lib/Typedown/Typedown.js +31 -21
  93. package/es/lib/hooks/__mocks__/index.js +7 -3
  94. package/es/lib/hooks/intlHooks/useIntlKeyStore/useIntlKeyStore.js +26 -20
  95. package/es/lib/hooks/intlHooks/useKintIntl/useKintIntl.js +34 -24
  96. package/es/lib/hooks/typedownHooks/useTypedown.js +12 -11
  97. package/es/lib/hooks/typedownHooks/useTypedownToggle.js +2 -2
  98. package/es/lib/hooks/useActionListRef.js +1 -1
  99. package/es/lib/hooks/useActiveElement.js +1 -1
  100. package/es/lib/hooks/useCustomProperties.js +10 -6
  101. package/es/lib/hooks/useHelperApp.js +16 -13
  102. package/es/lib/hooks/useKiwtFieldArray.js +8 -7
  103. package/es/lib/hooks/useKiwtSASQuery.js +19 -15
  104. package/es/lib/hooks/useLocalPageStore.js +10 -7
  105. package/es/lib/hooks/useModConfigEntries.js +2 -2
  106. package/es/lib/hooks/useMutateCustomProperties/useMutateCustomProperties.js +17 -10
  107. package/es/lib/hooks/useMutateGeneric/useMutateGeneric.js +2 -2
  108. package/es/lib/hooks/useMutateModConfigEntry.js +2 -2
  109. package/es/lib/hooks/useMutateRefdataCategory/useMutateRefdataCategory.js +21 -15
  110. package/es/lib/hooks/useMutateRefdataValue/useMutateRefdataValue.js +23 -16
  111. package/es/lib/hooks/usePrevNextPagination.js +19 -17
  112. package/es/lib/hooks/useQIndex.js +14 -11
  113. package/es/lib/hooks/useRefdata.js +3 -3
  114. package/es/lib/hooks/useStandaloneSASQQueryParameter/useStandaloneSASQQueryParameter.js +13 -9
  115. package/es/lib/hooks/useTemplates.js +4 -4
  116. package/es/lib/utils/buildUrl.js +3 -2
  117. package/es/lib/utils/filterParsers/deparseKiwtQueryFilters.js +5 -5
  118. package/es/lib/utils/filterParsers/parseKiwtQueryFilters.js +2 -2
  119. package/es/lib/utils/filterParsers/parseKiwtQueryGroups.js +5 -4
  120. package/es/lib/utils/filterParsers/parseKiwtQueryString.js +1 -1
  121. package/es/lib/utils/generateKiwtQueryParams/generateKiwtQueryParams.js +107 -94
  122. package/es/lib/utils/groupCustomPropertiesByCtx.js +9 -5
  123. package/es/lib/utils/matchString.js +7 -5
  124. package/es/lib/utils/parseErrorResponse.js +7 -3
  125. package/es/lib/utils/selectorSafe.js +3 -2
  126. package/es/lib/utils/sortByLabel.js +3 -2
  127. package/es/lib/validators/validators.js +9 -6
  128. package/package.json +5 -1
  129. package/src/artifacts/coverage-jest/ActionList/ActionList.js.html +4 -4
  130. package/src/artifacts/coverage-jest/ActionList/ActionListFieldArray.js.html +10 -10
  131. package/src/artifacts/coverage-jest/ActionList/index.html +1 -1
  132. package/src/artifacts/coverage-jest/ActionList/index.js.html +1 -1
  133. package/src/artifacts/coverage-jest/ButtonTypedown/ButtonTypedown.js.html +217 -25
  134. package/src/artifacts/coverage-jest/ButtonTypedown/index.html +17 -17
  135. package/src/artifacts/coverage-jest/ButtonTypedown/index.js.html +1 -1
  136. package/src/artifacts/coverage-jest/ComboButton/ComboButton.js.html +3 -3
  137. package/src/artifacts/coverage-jest/ComboButton/index.html +1 -1
  138. package/src/artifacts/coverage-jest/ComboButton/index.js.html +1 -1
  139. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertiesLookup.js.html +3 -3
  140. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertiesSettings.js.html +6 -6
  141. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertyForm.js.html +3 -3
  142. package/src/artifacts/coverage-jest/CustomProperties/Config/CustomPropertyView.js.html +3 -3
  143. package/src/artifacts/coverage-jest/CustomProperties/Config/index.html +1 -1
  144. package/src/artifacts/coverage-jest/CustomProperties/Config/index.js.html +1 -1
  145. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertiesEdit.js.html +3 -3
  146. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertiesEditCtx.js.html +3 -3
  147. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertiesListField.js.html +5 -5
  148. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertyField.js.html +3 -3
  149. package/src/artifacts/coverage-jest/CustomProperties/Edit/CustomPropertyFormCard.js.html +3 -3
  150. package/src/artifacts/coverage-jest/CustomProperties/Edit/index.html +1 -1
  151. package/src/artifacts/coverage-jest/CustomProperties/Edit/index.js.html +1 -1
  152. package/src/artifacts/coverage-jest/CustomProperties/Edit/testResources.js.html +1 -1
  153. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilter.js.html +3 -3
  154. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilterField.js.html +3 -3
  155. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js.html +3 -3
  156. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesFilterForm.js.html +3 -3
  157. package/src/artifacts/coverage-jest/CustomProperties/Filter/CustomPropertiesRule.js.html +4 -4
  158. package/src/artifacts/coverage-jest/CustomProperties/Filter/index.html +1 -1
  159. package/src/artifacts/coverage-jest/CustomProperties/Filter/index.js.html +1 -1
  160. package/src/artifacts/coverage-jest/CustomProperties/Filter/testResources.js.html +1 -1
  161. package/src/artifacts/coverage-jest/CustomProperties/Filter/useOperators.js.html +3 -3
  162. package/src/artifacts/coverage-jest/CustomProperties/Filter/useParseActiveFilterStrings.js.html +2 -2
  163. package/src/artifacts/coverage-jest/CustomProperties/Filter/useValueProps.js.html +3 -3
  164. package/src/artifacts/coverage-jest/CustomProperties/View/CustomPropertiesView.js.html +3 -3
  165. package/src/artifacts/coverage-jest/CustomProperties/View/CustomPropertiesViewCtx.js.html +3 -3
  166. package/src/artifacts/coverage-jest/CustomProperties/View/CustomPropertyCard.js.html +3 -3
  167. package/src/artifacts/coverage-jest/CustomProperties/View/index.html +1 -1
  168. package/src/artifacts/coverage-jest/CustomProperties/View/index.js.html +1 -1
  169. package/src/artifacts/coverage-jest/CustomProperties/View/testResources.js.html +1 -1
  170. package/src/artifacts/coverage-jest/CustomProperties/index.html +1 -1
  171. package/src/artifacts/coverage-jest/CustomProperties/index.js.html +1 -1
  172. package/src/artifacts/coverage-jest/CycleButton/CycleButton.js.html +3 -3
  173. package/src/artifacts/coverage-jest/CycleButton/index.html +1 -1
  174. package/src/artifacts/coverage-jest/CycleButton/index.js.html +1 -1
  175. package/src/artifacts/coverage-jest/FieldLabel/FieldLabel.js.html +2 -2
  176. package/src/artifacts/coverage-jest/FieldLabel/index.html +1 -1
  177. package/src/artifacts/coverage-jest/FieldLabel/index.js.html +1 -1
  178. package/src/artifacts/coverage-jest/FormModal/FormModal.js.html +3 -3
  179. package/src/artifacts/coverage-jest/FormModal/index.html +1 -1
  180. package/src/artifacts/coverage-jest/FormModal/index.js.html +1 -1
  181. package/src/artifacts/coverage-jest/FormattedKintMessage/FormattedKintMessage.js.html +3 -3
  182. package/src/artifacts/coverage-jest/FormattedKintMessage/index.html +1 -1
  183. package/src/artifacts/coverage-jest/FormattedKintMessage/index.js.html +1 -1
  184. package/src/artifacts/coverage-jest/IconSelect/IconSelect.js.html +3 -3
  185. package/src/artifacts/coverage-jest/IconSelect/index.html +1 -1
  186. package/src/artifacts/coverage-jest/IconSelect/index.js.html +1 -1
  187. package/src/artifacts/coverage-jest/NoResultsMessage/NoResultsMessage.js.html +3 -3
  188. package/src/artifacts/coverage-jest/NoResultsMessage/index.html +1 -1
  189. package/src/artifacts/coverage-jest/NoResultsMessage/index.js.html +1 -1
  190. package/src/artifacts/coverage-jest/NumberField/NumberField.js.html +3 -3
  191. package/src/artifacts/coverage-jest/NumberField/index.html +1 -1
  192. package/src/artifacts/coverage-jest/NumberField/index.js.html +1 -1
  193. package/src/artifacts/coverage-jest/QueryTypedown/QueryTypedown.js.html +3 -3
  194. package/src/artifacts/coverage-jest/QueryTypedown/index.html +1 -1
  195. package/src/artifacts/coverage-jest/QueryTypedown/index.js.html +1 -1
  196. package/src/artifacts/coverage-jest/RefdataButtons/RefdataButtons.js.html +3 -3
  197. package/src/artifacts/coverage-jest/RefdataButtons/index.html +1 -1
  198. package/src/artifacts/coverage-jest/RefdataButtons/index.js.html +1 -1
  199. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/ResponsiveButtonGroup.js.html +6 -6
  200. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/index.html +1 -1
  201. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/index.js.html +1 -1
  202. package/src/artifacts/coverage-jest/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js.html +2 -2
  203. package/src/artifacts/coverage-jest/RichSelect/RichSelect.js.html +3 -3
  204. package/src/artifacts/coverage-jest/RichSelect/index.html +1 -1
  205. package/src/artifacts/coverage-jest/RichSelect/index.js.html +1 -1
  206. package/src/artifacts/coverage-jest/RichSelect/useSelectedOption.js.html +2 -2
  207. package/src/artifacts/coverage-jest/SASQLookupComponent/SASQLookupComponent.js.html +146 -149
  208. package/src/artifacts/coverage-jest/SASQLookupComponent/TableBody/TableBody.js.html +74 -65
  209. package/src/artifacts/coverage-jest/SASQLookupComponent/TableBody/index.html +21 -21
  210. package/src/artifacts/coverage-jest/SASQLookupComponent/TableBody/index.js.html +1 -1
  211. package/src/artifacts/coverage-jest/SASQLookupComponent/index.html +21 -21
  212. package/src/artifacts/coverage-jest/SASQLookupComponent/index.js.html +1 -1
  213. package/src/artifacts/coverage-jest/SASQRoute/SASQRoute.js.html +43 -43
  214. package/src/artifacts/coverage-jest/SASQRoute/index.html +21 -21
  215. package/src/artifacts/coverage-jest/SASQRoute/index.js.html +1 -1
  216. package/src/artifacts/coverage-jest/SASQViewComponent/SASQViewComponent.js.html +42 -42
  217. package/src/artifacts/coverage-jest/SASQViewComponent/index.html +21 -21
  218. package/src/artifacts/coverage-jest/SASQViewComponent/index.js.html +1 -1
  219. package/src/artifacts/coverage-jest/SearchField/SearchField.js.html +4 -4
  220. package/src/artifacts/coverage-jest/SearchField/index.html +1 -1
  221. package/src/artifacts/coverage-jest/SearchField/index.js.html +1 -1
  222. package/src/artifacts/coverage-jest/SearchKeyControl/SearchKeyControl.js.html +3 -3
  223. package/src/artifacts/coverage-jest/SearchKeyControl/index.html +1 -1
  224. package/src/artifacts/coverage-jest/SearchKeyControl/index.js.html +1 -1
  225. package/src/artifacts/coverage-jest/Settings/EditableRefdataCategoryList/EditableRefdataCategoryList.js.html +4 -4
  226. package/src/artifacts/coverage-jest/Settings/EditableRefdataCategoryList/index.html +1 -1
  227. package/src/artifacts/coverage-jest/Settings/EditableRefdataCategoryList/index.js.html +1 -1
  228. package/src/artifacts/coverage-jest/Settings/EditableRefdataList/EditableRefdataList.js.html +4 -4
  229. package/src/artifacts/coverage-jest/Settings/EditableRefdataList/index.html +1 -1
  230. package/src/artifacts/coverage-jest/Settings/EditableRefdataList/index.js.html +1 -1
  231. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsList.js.html +3 -3
  232. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsListFieldArray/EditableSettingsListFieldArray.js.html +5 -5
  233. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsListFieldArray/index.html +1 -1
  234. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/EditableSettingsListFieldArray/index.js.html +1 -1
  235. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/EditSettingValue/EditSettingValue.js.html +3 -3
  236. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/EditSettingValue/index.html +1 -1
  237. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/EditSettingValue/index.js.html +1 -1
  238. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/RenderSettingValue/RenderSettingValue.js.html +3 -3
  239. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/RenderSettingValue/index.html +1 -1
  240. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/RenderSettingValue/index.js.html +1 -1
  241. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/SettingField.js.html +3 -3
  242. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/index.html +1 -1
  243. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/SettingField/index.js.html +1 -1
  244. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/index.html +1 -1
  245. package/src/artifacts/coverage-jest/Settings/EditableSettingsList/index.js.html +1 -1
  246. package/src/artifacts/coverage-jest/Settings/RefdataCategoriesSettings/RefdataCategoriesSettings.js.html +4 -4
  247. package/src/artifacts/coverage-jest/Settings/RefdataCategoriesSettings/index.html +1 -1
  248. package/src/artifacts/coverage-jest/Settings/RefdataCategoriesSettings/index.js.html +1 -1
  249. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPage.js.html +3 -3
  250. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPagePane/SettingPagePane.js.html +3 -3
  251. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPagePane/index.html +1 -1
  252. package/src/artifacts/coverage-jest/Settings/SettingPage/SettingPagePane/index.js.html +1 -1
  253. package/src/artifacts/coverage-jest/Settings/SettingPage/index.html +1 -1
  254. package/src/artifacts/coverage-jest/Settings/SettingPage/index.js.html +1 -1
  255. package/src/artifacts/coverage-jest/Settings/Settings/Settings.js.html +643 -0
  256. package/src/artifacts/coverage-jest/Settings/Settings/index.html +131 -0
  257. package/src/artifacts/coverage-jest/Settings/Settings/index.js.html +88 -0
  258. package/src/artifacts/coverage-jest/Settings/SettingsFormContainer/SettingsFormContainer.js.html +3 -3
  259. package/src/artifacts/coverage-jest/Settings/SettingsFormContainer/index.html +1 -1
  260. package/src/artifacts/coverage-jest/Settings/SettingsFormContainer/index.js.html +1 -1
  261. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsField.js.html +3 -3
  262. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsFieldComponent/StaticSettingsFieldComponent.js.html +2 -2
  263. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsFieldComponent/index.html +1 -1
  264. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/StaticSettingsFieldComponent/index.js.html +1 -1
  265. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/index.html +1 -1
  266. package/src/artifacts/coverage-jest/Settings/StaticSettingsField/index.js.html +1 -1
  267. package/src/artifacts/coverage-jest/Settings/constants/index.html +1 -1
  268. package/src/artifacts/coverage-jest/Settings/constants/index.js.html +1 -1
  269. package/src/artifacts/coverage-jest/Settings/constants/queryKeys.js.html +5 -5
  270. package/src/artifacts/coverage-jest/Settings/contexts/SettingsContext.js.html +2 -2
  271. package/src/artifacts/coverage-jest/Settings/contexts/index.html +1 -1
  272. package/src/artifacts/coverage-jest/Settings/contexts/index.js.html +1 -1
  273. package/src/artifacts/coverage-jest/Settings/hooks/index.html +1 -1
  274. package/src/artifacts/coverage-jest/Settings/hooks/index.js.html +1 -1
  275. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/index.html +1 -1
  276. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/index.js.html +1 -1
  277. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingCallout/index.html +1 -1
  278. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingCallout/index.js.html +1 -1
  279. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingCallout/useSettingCallout.js.html +2 -2
  280. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/index.html +1 -1
  281. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/index.js.html +1 -1
  282. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useSettingsSectionInitalValues/useSettingsSectionInitalValues.js.html +2 -2
  283. package/src/artifacts/coverage-jest/Settings/hooks/staticSettingsPages/useStaticSettingsSection.js.html +2 -2
  284. package/src/artifacts/coverage-jest/Settings/hooks/useAppSettings/index.html +1 -1
  285. package/src/artifacts/coverage-jest/Settings/hooks/useAppSettings/index.js.html +1 -1
  286. package/src/artifacts/coverage-jest/Settings/hooks/useAppSettings/useAppSettings.js.html +2 -2
  287. package/src/artifacts/coverage-jest/Settings/hooks/useSettingSection/index.html +1 -1
  288. package/src/artifacts/coverage-jest/Settings/hooks/useSettingSection/index.js.html +1 -1
  289. package/src/artifacts/coverage-jest/Settings/hooks/useSettingSection/useSettingSection.js.html +2 -2
  290. package/src/artifacts/coverage-jest/Settings/hooks/useSettings/index.html +12 -12
  291. package/src/artifacts/coverage-jest/Settings/hooks/useSettings/index.js.html +1 -1
  292. package/src/artifacts/coverage-jest/Settings/hooks/useSettings/useSettings.js.html +33 -15
  293. package/src/artifacts/coverage-jest/Settings/index.html +1 -1
  294. package/src/artifacts/coverage-jest/Settings/index.js.html +1 -1
  295. package/src/artifacts/coverage-jest/Tags/Tags.js.html +3 -3
  296. package/src/artifacts/coverage-jest/Tags/hooks/index.html +1 -1
  297. package/src/artifacts/coverage-jest/Tags/hooks/index.js.html +1 -1
  298. package/src/artifacts/coverage-jest/Tags/hooks/useTags.js.html +2 -2
  299. package/src/artifacts/coverage-jest/Tags/hooks/useTagsEnabled.js.html +8 -8
  300. package/src/artifacts/coverage-jest/Tags/index.html +1 -1
  301. package/src/artifacts/coverage-jest/Tags/index.js.html +1 -1
  302. package/src/artifacts/coverage-jest/Tags/tagsConfig.js.html +5 -5
  303. package/src/artifacts/coverage-jest/Typedown/Typedown.js.html +15 -6
  304. package/src/artifacts/coverage-jest/Typedown/index.html +3 -3
  305. package/src/artifacts/coverage-jest/Typedown/index.js.html +1 -1
  306. package/src/artifacts/coverage-jest/cobertura-coverage.xml +1006 -839
  307. package/src/artifacts/coverage-jest/constants/comparators.js.html +1 -1
  308. package/src/artifacts/coverage-jest/constants/customProperties.js.html +12 -12
  309. package/src/artifacts/coverage-jest/constants/endpoints.js.html +4 -4
  310. package/src/artifacts/coverage-jest/constants/eventCodes.js.html +4 -4
  311. package/src/artifacts/coverage-jest/constants/index.html +1 -1
  312. package/src/artifacts/coverage-jest/constants/pagination.js.html +6 -6
  313. package/src/artifacts/coverage-jest/hooks/index.html +51 -51
  314. package/src/artifacts/coverage-jest/hooks/index.js.html +1 -1
  315. package/src/artifacts/coverage-jest/hooks/intlHooks/index.html +1 -1
  316. package/src/artifacts/coverage-jest/hooks/intlHooks/index.js.html +1 -1
  317. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKey/index.html +1 -1
  318. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKey/index.js.html +1 -1
  319. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKey/useIntlKey.js.html +8 -8
  320. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKeyStore/index.html +1 -1
  321. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKeyStore/index.js.html +1 -1
  322. package/src/artifacts/coverage-jest/hooks/intlHooks/useIntlKeyStore/useIntlKeyStore.js.html +12 -12
  323. package/src/artifacts/coverage-jest/hooks/intlHooks/useKintIntl/index.html +1 -1
  324. package/src/artifacts/coverage-jest/hooks/intlHooks/useKintIntl/index.js.html +1 -1
  325. package/src/artifacts/coverage-jest/hooks/intlHooks/useKintIntl/useKintIntl.js.html +10 -10
  326. package/src/artifacts/coverage-jest/hooks/typedownHooks/index.html +1 -1
  327. package/src/artifacts/coverage-jest/hooks/typedownHooks/index.js.html +1 -1
  328. package/src/artifacts/coverage-jest/hooks/typedownHooks/useTypedown.js.html +2 -2
  329. package/src/artifacts/coverage-jest/hooks/typedownHooks/useTypedownData.js.html +2 -2
  330. package/src/artifacts/coverage-jest/hooks/typedownHooks/useTypedownToggle.js.html +2 -2
  331. package/src/artifacts/coverage-jest/hooks/useActionListRef.js.html +2 -2
  332. package/src/artifacts/coverage-jest/hooks/useActiveElement.js.html +2 -2
  333. package/src/artifacts/coverage-jest/hooks/useCustomProperties.js.html +3 -3
  334. package/src/artifacts/coverage-jest/hooks/useHelperApp.js.html +2 -2
  335. package/src/artifacts/coverage-jest/hooks/useInvalidateRefdata/index.html +1 -1
  336. package/src/artifacts/coverage-jest/hooks/useInvalidateRefdata/index.js.html +1 -1
  337. package/src/artifacts/coverage-jest/hooks/useInvalidateRefdata/useInvalidateRefdata.js.html +2 -2
  338. package/src/artifacts/coverage-jest/hooks/useKiwtFieldArray.js.html +2 -2
  339. package/src/artifacts/coverage-jest/hooks/useKiwtSASQuery.js.html +48 -48
  340. package/src/artifacts/coverage-jest/hooks/useLocalPageStore.js.html +3 -3
  341. package/src/artifacts/coverage-jest/hooks/useLocalStorageState.js.html +22 -22
  342. package/src/artifacts/coverage-jest/hooks/useModConfigEntries.js.html +3 -3
  343. package/src/artifacts/coverage-jest/hooks/useMutateCustomProperties/index.html +1 -1
  344. package/src/artifacts/coverage-jest/hooks/useMutateCustomProperties/index.js.html +1 -1
  345. package/src/artifacts/coverage-jest/hooks/useMutateCustomProperties/useMutateCustomProperties.js.html +2 -2
  346. package/src/artifacts/coverage-jest/hooks/useMutateGeneric/index.html +1 -1
  347. package/src/artifacts/coverage-jest/hooks/useMutateGeneric/index.js.html +5 -2
  348. package/src/artifacts/coverage-jest/hooks/useMutateGeneric/useMutateGeneric.js.html +2 -2
  349. package/src/artifacts/coverage-jest/hooks/useMutateModConfigEntry.js.html +2 -2
  350. package/src/artifacts/coverage-jest/hooks/useMutateRefdataCategory/index.html +1 -1
  351. package/src/artifacts/coverage-jest/hooks/useMutateRefdataCategory/index.js.html +1 -1
  352. package/src/artifacts/coverage-jest/hooks/useMutateRefdataCategory/useMutateRefdataCategory.js.html +2 -2
  353. package/src/artifacts/coverage-jest/hooks/useMutateRefdataValue/index.html +1 -1
  354. package/src/artifacts/coverage-jest/hooks/useMutateRefdataValue/index.js.html +1 -1
  355. package/src/artifacts/coverage-jest/hooks/useMutateRefdataValue/useMutateRefdataValue.js.html +2 -2
  356. package/src/artifacts/coverage-jest/hooks/usePrevNextPagination.js.html +68 -68
  357. package/src/artifacts/coverage-jest/hooks/useQIndex.js.html +28 -28
  358. package/src/artifacts/coverage-jest/hooks/useRefdata.js.html +3 -3
  359. package/src/artifacts/coverage-jest/hooks/useSASQQueryMeta.js.html +2 -2
  360. package/src/artifacts/coverage-jest/hooks/useStandaloneSASQQueryParameter/index.html +1 -1
  361. package/src/artifacts/coverage-jest/hooks/useStandaloneSASQQueryParameter/index.js.html +1 -1
  362. package/src/artifacts/coverage-jest/hooks/useStandaloneSASQQueryParameter/useStandaloneSASQQueryParameter.js.html +2 -2
  363. package/src/artifacts/coverage-jest/hooks/useTemplates.js.html +2 -2
  364. package/src/artifacts/coverage-jest/index.html +115 -100
  365. package/src/artifacts/coverage-jest/utils/buildUrl.js.html +34 -34
  366. package/src/artifacts/coverage-jest/utils/filterParsers/deparseKiwtQueryFilters.js.html +3 -3
  367. package/src/artifacts/coverage-jest/utils/filterParsers/index.html +1 -1
  368. package/src/artifacts/coverage-jest/utils/filterParsers/index.js.html +1 -1
  369. package/src/artifacts/coverage-jest/utils/filterParsers/parseKiwtQueryFilters.js.html +3 -3
  370. package/src/artifacts/coverage-jest/utils/filterParsers/parseKiwtQueryGroups.js.html +2 -2
  371. package/src/artifacts/coverage-jest/utils/filterParsers/parseKiwtQueryString.js.html +5 -5
  372. package/src/artifacts/coverage-jest/utils/generateKiwtQuery.js.html +7 -7
  373. package/src/artifacts/coverage-jest/utils/generateKiwtQueryParams/generateKiwtQueryParams.js.html +67 -67
  374. package/src/artifacts/coverage-jest/utils/generateKiwtQueryParams/index.html +21 -21
  375. package/src/artifacts/coverage-jest/utils/generateKiwtQueryParams/index.js.html +1 -1
  376. package/src/artifacts/coverage-jest/utils/groupCustomPropertiesByCtx.js.html +2 -2
  377. package/src/artifacts/coverage-jest/utils/highlightString.js.html +3 -3
  378. package/src/artifacts/coverage-jest/utils/index.html +22 -22
  379. package/src/artifacts/coverage-jest/utils/index.js.html +1 -1
  380. package/src/artifacts/coverage-jest/utils/matchString.js.html +2 -2
  381. package/src/artifacts/coverage-jest/utils/modConfigEntriesQueryKey.js.html +2 -2
  382. package/src/artifacts/coverage-jest/utils/parseErrorResponse.js.html +2 -2
  383. package/src/artifacts/coverage-jest/utils/parseModConfigEntry.js.html +2 -2
  384. package/src/artifacts/coverage-jest/utils/refdataOptions.js.html +1 -1
  385. package/src/artifacts/coverage-jest/utils/refdataQueryKey/index.html +1 -1
  386. package/src/artifacts/coverage-jest/utils/refdataQueryKey/index.js.html +1 -1
  387. package/src/artifacts/coverage-jest/utils/refdataQueryKey/refdataQueryKey.js.html +2 -2
  388. package/src/artifacts/coverage-jest/utils/selectorSafe.js.html +2 -2
  389. package/src/artifacts/coverage-jest/utils/sortByLabel.js.html +2 -2
  390. package/src/artifacts/coverage-jest/utils/toCamelCase.js.html +2 -2
  391. package/src/artifacts/coverage-jest/utils/typedownQueryKey.js.html +2 -2
  392. package/src/artifacts/coverage-jest/validators/index.html +1 -1
  393. package/src/artifacts/coverage-jest/validators/index.js.html +1 -1
  394. package/src/artifacts/coverage-jest/validators/validators.js.html +8 -8
  395. package/src/lib/ButtonTypedown/ButtonTypedown.js +77 -13
  396. package/src/lib/SASQLookupComponent/SASQLookupComponent.js +3 -4
  397. package/src/lib/SASQLookupComponent/SASQLookupComponent.test.js +495 -0
  398. package/src/lib/SASQLookupComponent/TableBody/TableBody.js +6 -3
  399. package/src/lib/SASQLookupComponent/TableBody/TableBody.test.js +247 -0
  400. package/src/lib/SASQLookupComponent/__mocks__/SASQLookupComponent.js +31 -0
  401. package/src/lib/SASQLookupComponent/__mocks__/SASQLookupComponentRender.js +20 -0
  402. package/src/lib/SASQLookupComponent/__mocks__/index.js +2 -0
  403. package/src/lib/SASQRoute/SASQRoute.test.js +281 -0
  404. package/src/lib/SASQViewComponent/SASQViewComponent.test.js +114 -0
  405. package/src/lib/SASQViewComponent/__mocks__/SASQViewComponent.js +13 -0
  406. package/src/lib/SASQViewComponent/__mocks__/SASQViewComponentRender.js +17 -0
  407. package/src/lib/SASQViewComponent/__mocks__/index.js +2 -0
  408. package/src/lib/Settings/EditableSettingsList/EditableSettingsListFieldArray/EditableSettingsListFieldArray.js +1 -1
  409. package/src/lib/Settings/Settings/Settings.js +186 -0
  410. package/src/lib/Settings/Settings/index.js +1 -0
  411. package/src/lib/Settings/hooks/useSettings/useSettings.js +13 -7
  412. package/src/lib/Typedown/Typedown.js +4 -1
  413. package/src/lib/hooks/useMutateGeneric/index.js +1 -1
  414. package/styles/TypeDown.css +2 -2
  415. package/test/helpers/test-implementor-translations.json +2 -1
  416. package/test/helpers/translationsProperties.js +1 -1
  417. package/test/jest/setupTests.js +1 -1
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="2359" lines-covered="811" line-rate="0.34369999999999995" branches-valid="1722" branches-covered="396" branch-rate="0.2299" timestamp="1768836222840" complexity="0" version="0.1">
3
+ <coverage lines-valid="2415" lines-covered="991" line-rate="0.4103" branches-valid="1772" branches-covered="518" branch-rate="0.2923" timestamp="1771336337855" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/builds/knowledge-integration/folio/stripes-kint-components</source>
6
6
  </sources>
@@ -36,14 +36,14 @@
36
36
  </method>
37
37
  </methods>
38
38
  <lines>
39
- <line number="10" hits="23" branch="false"/>
40
- <line number="32" hits="23" branch="false"/>
39
+ <line number="10" hits="27" branch="false"/>
40
+ <line number="32" hits="27" branch="false"/>
41
41
  <line number="51" hits="0" branch="false"/>
42
42
  <line number="52" hits="0" branch="false"/>
43
43
  <line number="55" hits="0" branch="false"/>
44
44
  <line number="61" hits="0" branch="false"/>
45
45
  <line number="65" hits="0" branch="false"/>
46
- <line number="94" hits="23" branch="false"/>
46
+ <line number="94" hits="27" branch="false"/>
47
47
  </lines>
48
48
  </class>
49
49
  <class name="ActionListFieldArray.js" filename="src/lib/ActionList/ActionListFieldArray.js" line-rate="0.07429999999999999" branch-rate="0">
@@ -205,17 +205,17 @@
205
205
  </method>
206
206
  </methods>
207
207
  <lines>
208
- <line number="13" hits="23" branch="false"/>
209
- <line number="14" hits="23" branch="false"/>
210
- <line number="15" hits="23" branch="false"/>
211
- <line number="17" hits="23" branch="false"/>
212
- <line number="43" hits="23" branch="false"/>
208
+ <line number="13" hits="27" branch="false"/>
209
+ <line number="14" hits="27" branch="false"/>
210
+ <line number="15" hits="27" branch="false"/>
211
+ <line number="17" hits="27" branch="false"/>
212
+ <line number="43" hits="27" branch="false"/>
213
213
  <line number="44" hits="0" branch="true" condition-coverage="0% (0/2)"/>
214
214
  <line number="45" hits="0" branch="false"/>
215
215
  <line number="54" hits="0" branch="false"/>
216
- <line number="65" hits="23" branch="false"/>
217
- <line number="73" hits="23" branch="false"/>
218
- <line number="75" hits="23" branch="false"/>
216
+ <line number="65" hits="27" branch="false"/>
217
+ <line number="73" hits="27" branch="false"/>
218
+ <line number="75" hits="27" branch="false"/>
219
219
  <line number="97" hits="0" branch="false"/>
220
220
  <line number="98" hits="0" branch="false"/>
221
221
  <line number="99" hits="0" branch="false"/>
@@ -325,7 +325,7 @@
325
325
  <line number="455" hits="0" branch="true" condition-coverage="0% (0/2)"/>
326
326
  <line number="456" hits="0" branch="false"/>
327
327
  <line number="457" hits="0" branch="false"/>
328
- <line number="473" hits="23" branch="false"/>
328
+ <line number="473" hits="27" branch="false"/>
329
329
  </lines>
330
330
  </class>
331
331
  <class name="index.js" filename="src/lib/ActionList/index.js" line-rate="0" branch-rate="0">
@@ -336,38 +336,72 @@
336
336
  </class>
337
337
  </classes>
338
338
  </package>
339
- <package name="ButtonTypedown" line-rate="0.3333" branch-rate="1">
339
+ <package name="ButtonTypedown" line-rate="0.1" branch-rate="0">
340
340
  <classes>
341
- <class name="ButtonTypedown.js" filename="src/lib/ButtonTypedown/ButtonTypedown.js" line-rate="0.3333" branch-rate="1">
341
+ <class name="ButtonTypedown.js" filename="src/lib/ButtonTypedown/ButtonTypedown.js" line-rate="0.1" branch-rate="0">
342
342
  <methods>
343
343
  <method name="(anonymous_0)" hits="0" signature="()V">
344
344
  <lines>
345
- <line number="8" hits="0"/>
345
+ <line number="9" hits="0"/>
346
346
  </lines>
347
347
  </method>
348
348
  <method name="(anonymous_1)" hits="0" signature="()V">
349
349
  <lines>
350
- <line number="15" hits="0"/>
350
+ <line number="19" hits="0"/>
351
351
  </lines>
352
352
  </method>
353
353
  <method name="(anonymous_2)" hits="0" signature="()V">
354
354
  <lines>
355
- <line number="16" hits="0"/>
355
+ <line number="38" hits="0"/>
356
356
  </lines>
357
357
  </method>
358
358
  <method name="(anonymous_3)" hits="0" signature="()V">
359
359
  <lines>
360
- <line number="25" hits="0"/>
360
+ <line number="39" hits="0"/>
361
+ </lines>
362
+ </method>
363
+ <method name="(anonymous_4)" hits="0" signature="()V">
364
+ <lines>
365
+ <line number="48" hits="0"/>
366
+ </lines>
367
+ </method>
368
+ <method name="(anonymous_5)" hits="0" signature="()V">
369
+ <lines>
370
+ <line number="54" hits="0"/>
371
+ </lines>
372
+ </method>
373
+ <method name="(anonymous_6)" hits="0" signature="()V">
374
+ <lines>
375
+ <line number="91" hits="0"/>
376
+ </lines>
377
+ </method>
378
+ <method name="(anonymous_7)" hits="0" signature="()V">
379
+ <lines>
380
+ <line number="93" hits="0"/>
361
381
  </lines>
362
382
  </method>
363
383
  </methods>
364
384
  <lines>
365
- <line number="8" hits="23" branch="false"/>
366
- <line number="13" hits="0" branch="false"/>
367
- <line number="15" hits="0" branch="false"/>
368
- <line number="17" hits="0" branch="false"/>
369
- <line number="31" hits="0" branch="false"/>
370
- <line number="49" hits="23" branch="false"/>
385
+ <line number="9" hits="27" branch="false"/>
386
+ <line number="19" hits="0" branch="false"/>
387
+ <line number="20" hits="0" branch="true" condition-coverage="0% (0/2)"/>
388
+ <line number="21" hits="0" branch="false"/>
389
+ <line number="24" hits="0" branch="false"/>
390
+ <line number="27" hits="0" branch="true" condition-coverage="0% (0/4)"/>
391
+ <line number="36" hits="0" branch="false"/>
392
+ <line number="38" hits="0" branch="false"/>
393
+ <line number="40" hits="0" branch="false"/>
394
+ <line number="54" hits="0" branch="false"/>
395
+ <line number="58" hits="0" branch="false"/>
396
+ <line number="72" hits="0" branch="true" condition-coverage="0% (0/2)"/>
397
+ <line number="73" hits="0" branch="false"/>
398
+ <line number="78" hits="0" branch="true" condition-coverage="0% (0/2)"/>
399
+ <line number="85" hits="0" branch="false"/>
400
+ <line number="92" hits="0" branch="false"/>
401
+ <line number="95" hits="0" branch="false"/>
402
+ <line number="96" hits="0" branch="true" condition-coverage="0% (0/4)"/>
403
+ <line number="97" hits="0" branch="false"/>
404
+ <line number="113" hits="27" branch="false"/>
371
405
  </lines>
372
406
  </class>
373
407
  <class name="index.js" filename="src/lib/ButtonTypedown/index.js" line-rate="0" branch-rate="0">
@@ -429,7 +463,7 @@
429
463
  </method>
430
464
  </methods>
431
465
  <lines>
432
- <line number="23" hits="23" branch="false"/>
466
+ <line number="23" hits="27" branch="false"/>
433
467
  <line number="33" hits="0" branch="false"/>
434
468
  <line number="34" hits="0" branch="false"/>
435
469
  <line number="37" hits="0" branch="false"/>
@@ -448,7 +482,7 @@
448
482
  <line number="115" hits="0" branch="true" condition-coverage="0% (0/2)"/>
449
483
  <line number="116" hits="0" branch="false"/>
450
484
  <line number="137" hits="0" branch="false"/>
451
- <line number="147" hits="23" branch="false"/>
485
+ <line number="147" hits="27" branch="false"/>
452
486
  </lines>
453
487
  </class>
454
488
  <class name="index.js" filename="src/lib/ComboButton/index.js" line-rate="0" branch-rate="0">
@@ -520,7 +554,7 @@
520
554
  </method>
521
555
  </methods>
522
556
  <lines>
523
- <line number="12" hits="22" branch="false"/>
557
+ <line number="12" hits="26" branch="false"/>
524
558
  <line number="22" hits="2" branch="false"/>
525
559
  <line number="25" hits="2" branch="false"/>
526
560
  <line number="27" hits="2" branch="false"/>
@@ -538,7 +572,7 @@
538
572
  <line number="151" hits="6" branch="false"/>
539
573
  <line number="160" hits="72" branch="false"/>
540
574
  <line number="165" hits="72" branch="false"/>
541
- <line number="176" hits="22" branch="false"/>
575
+ <line number="176" hits="26" branch="false"/>
542
576
  </lines>
543
577
  </class>
544
578
  <class name="CustomPropertiesSettings.js" filename="src/lib/CustomProperties/Config/CustomPropertiesSettings.js" line-rate="0.3389" branch-rate="0.3617">
@@ -630,10 +664,10 @@
630
664
  </method>
631
665
  </methods>
632
666
  <lines>
633
- <line number="18" hits="23" branch="false"/>
634
- <line number="19" hits="23" branch="false"/>
635
- <line number="20" hits="23" branch="false"/>
636
- <line number="23" hits="23" branch="false"/>
667
+ <line number="18" hits="27" branch="false"/>
668
+ <line number="19" hits="27" branch="false"/>
669
+ <line number="20" hits="27" branch="false"/>
670
+ <line number="23" hits="27" branch="false"/>
637
671
  <line number="43" hits="5" branch="false"/>
638
672
  <line number="45" hits="5" branch="false"/>
639
673
  <line number="46" hits="5" branch="false"/>
@@ -688,7 +722,7 @@
688
722
  <line number="354" hits="0" branch="false"/>
689
723
  <line number="355" hits="0" branch="false"/>
690
724
  <line number="356" hits="0" branch="false"/>
691
- <line number="364" hits="23" branch="false"/>
725
+ <line number="364" hits="27" branch="false"/>
692
726
  </lines>
693
727
  </class>
694
728
  <class name="CustomPropertyForm.js" filename="src/lib/CustomProperties/Config/CustomPropertyForm.js" line-rate="0.6666" branch-rate="0.5476">
@@ -740,7 +774,7 @@
740
774
  </method>
741
775
  </methods>
742
776
  <lines>
743
- <line number="27" hits="23" branch="false"/>
777
+ <line number="27" hits="27" branch="false"/>
744
778
  <line number="35" hits="40" branch="false"/>
745
779
  <line number="36" hits="40" branch="false"/>
746
780
  <line number="37" hits="40" branch="false"/>
@@ -766,7 +800,7 @@
766
800
  <line number="290" hits="0" branch="true" condition-coverage="0% (0/2)"/>
767
801
  <line number="291" hits="0" branch="false"/>
768
802
  <line number="293" hits="0" branch="false"/>
769
- <line number="454" hits="23" branch="false"/>
803
+ <line number="454" hits="27" branch="false"/>
770
804
  </lines>
771
805
  </class>
772
806
  <class name="CustomPropertyView.js" filename="src/lib/CustomProperties/Config/CustomPropertyView.js" line-rate="1" branch-rate="0.5357">
@@ -778,10 +812,10 @@
778
812
  </method>
779
813
  </methods>
780
814
  <lines>
781
- <line number="8" hits="23" branch="false"/>
815
+ <line number="8" hits="27" branch="false"/>
782
816
  <line number="15" hits="9" branch="false"/>
783
817
  <line number="17" hits="9" branch="false"/>
784
- <line number="193" hits="23" branch="false"/>
818
+ <line number="193" hits="27" branch="false"/>
785
819
  </lines>
786
820
  </class>
787
821
  <class name="index.js" filename="src/lib/CustomProperties/Config/index.js" line-rate="0" branch-rate="0">
@@ -808,10 +842,10 @@
808
842
  </method>
809
843
  </methods>
810
844
  <lines>
811
- <line number="4" hits="23" branch="false"/>
845
+ <line number="4" hits="27" branch="false"/>
812
846
  <line number="13" hits="1" branch="false"/>
813
847
  <line number="15" hits="2" branch="false"/>
814
- <line number="31" hits="23" branch="false"/>
848
+ <line number="31" hits="27" branch="false"/>
815
849
  </lines>
816
850
  </class>
817
851
  <class name="CustomPropertiesEditCtx.js" filename="src/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js" line-rate="0.8181" branch-rate="0.7777">
@@ -828,7 +862,7 @@
828
862
  </method>
829
863
  </methods>
830
864
  <lines>
831
- <line number="7" hits="22" branch="false"/>
865
+ <line number="7" hits="26" branch="false"/>
832
866
  <line number="16" hits="1" branch="false"/>
833
867
  <line number="19" hits="1" branch="false"/>
834
868
  <line number="21" hits="1" branch="true" condition-coverage="50% (1/2)"/>
@@ -838,7 +872,7 @@
838
872
  <line number="57" hits="1" branch="true" condition-coverage="50% (1/2)"/>
839
873
  <line number="58" hits="0" branch="false"/>
840
874
  <line number="61" hits="1" branch="false"/>
841
- <line number="79" hits="22" branch="false"/>
875
+ <line number="79" hits="26" branch="false"/>
842
876
  </lines>
843
877
  </class>
844
878
  <class name="CustomPropertiesListField.js" filename="src/lib/CustomProperties/Edit/CustomPropertiesListField.js" line-rate="0.8431000000000001" branch-rate="0.6875">
@@ -935,7 +969,7 @@
935
969
  </method>
936
970
  </methods>
937
971
  <lines>
938
- <line number="10" hits="22" branch="false"/>
972
+ <line number="10" hits="26" branch="false"/>
939
973
  <line number="24" hits="15" branch="false"/>
940
974
  <line number="26" hits="15" branch="false"/>
941
975
  <line number="27" hits="15" branch="false"/>
@@ -964,7 +998,7 @@
964
998
  <line number="128" hits="180" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
965
999
  <line number="132" hits="0" branch="false"/>
966
1000
  <line number="133" hits="0" branch="false"/>
967
- <line number="146" hits="22" branch="false"/>
1001
+ <line number="146" hits="26" branch="false"/>
968
1002
  <line number="154" hits="10" branch="false"/>
969
1003
  <line number="155" hits="10" branch="false"/>
970
1004
  <line number="158" hits="10" branch="false"/>
@@ -984,8 +1018,8 @@
984
1018
  <line number="203" hits="5" branch="false"/>
985
1019
  <line number="206" hits="10" branch="false"/>
986
1020
  <line number="211" hits="10" branch="false"/>
987
- <line number="227" hits="22" branch="false"/>
988
- <line number="235" hits="22" branch="false"/>
1021
+ <line number="227" hits="26" branch="false"/>
1022
+ <line number="235" hits="26" branch="false"/>
989
1023
  </lines>
990
1024
  </class>
991
1025
  <class name="CustomPropertyField.js" filename="src/lib/CustomProperties/Edit/CustomPropertyField.js" line-rate="0.6419" branch-rate="0.6229">
@@ -1097,7 +1131,7 @@
1097
1131
  </method>
1098
1132
  </methods>
1099
1133
  <lines>
1100
- <line number="22" hits="22" branch="false"/>
1134
+ <line number="22" hits="26" branch="false"/>
1101
1135
  <line number="36" hits="14" branch="false"/>
1102
1136
  <line number="38" hits="14" branch="false"/>
1103
1137
  <line number="39" hits="14" branch="true" condition-coverage="100% (2/2)"/>
@@ -1177,7 +1211,7 @@
1177
1211
  <line number="331" hits="0" branch="false"/>
1178
1212
  <line number="340" hits="14" branch="false"/>
1179
1213
  <line number="356" hits="14" branch="false"/>
1180
- <line number="390" hits="22" branch="false"/>
1214
+ <line number="390" hits="26" branch="false"/>
1181
1215
  </lines>
1182
1216
  </class>
1183
1217
  <class name="CustomPropertyFormCard.js" filename="src/lib/CustomProperties/Edit/CustomPropertyFormCard.js" line-rate="0.6666" branch-rate="0.5714">
@@ -1209,7 +1243,7 @@
1209
1243
  </method>
1210
1244
  </methods>
1211
1245
  <lines>
1212
- <line number="13" hits="22" branch="false"/>
1246
+ <line number="13" hits="26" branch="false"/>
1213
1247
  <line number="29" hits="3" branch="false"/>
1214
1248
  <line number="31" hits="3" branch="false"/>
1215
1249
  <line number="32" hits="3" branch="true" condition-coverage="50% (1/2)"/>
@@ -1220,7 +1254,7 @@
1220
1254
  <line number="53" hits="3" branch="false"/>
1221
1255
  <line number="63" hits="0" branch="false"/>
1222
1256
  <line number="68" hits="0" branch="false"/>
1223
- <line number="106" hits="22" branch="false"/>
1257
+ <line number="106" hits="26" branch="false"/>
1224
1258
  </lines>
1225
1259
  </class>
1226
1260
  <class name="index.js" filename="src/lib/CustomProperties/Edit/index.js" line-rate="0" branch-rate="0">
@@ -1356,7 +1390,7 @@
1356
1390
  </method>
1357
1391
  </methods>
1358
1392
  <lines>
1359
- <line number="15" hits="23" branch="false"/>
1393
+ <line number="15" hits="27" branch="false"/>
1360
1394
  <line number="26" hits="4" branch="false"/>
1361
1395
  <line number="27" hits="4" branch="false"/>
1362
1396
  <line number="28" hits="4" branch="false"/>
@@ -1378,7 +1412,7 @@
1378
1412
  <line number="88" hits="0" branch="false"/>
1379
1413
  <line number="91" hits="4" branch="false"/>
1380
1414
  <line number="103" hits="0" branch="false"/>
1381
- <line number="129" hits="23" branch="false"/>
1415
+ <line number="129" hits="27" branch="false"/>
1382
1416
  </lines>
1383
1417
  </class>
1384
1418
  <class name="CustomPropertiesFilterField.js" filename="src/lib/CustomProperties/Filter/CustomPropertiesFilterField.js" line-rate="0.7272" branch-rate="0.4285">
@@ -1445,7 +1479,7 @@
1445
1479
  </method>
1446
1480
  </methods>
1447
1481
  <lines>
1448
- <line number="20" hits="22" branch="false"/>
1482
+ <line number="20" hits="26" branch="false"/>
1449
1483
  <line number="29" hits="4" branch="false"/>
1450
1484
  <line number="30" hits="4" branch="false"/>
1451
1485
  <line number="31" hits="4" branch="false"/>
@@ -1466,7 +1500,7 @@
1466
1500
  <line number="129" hits="10" branch="false"/>
1467
1501
  <line number="133" hits="0" branch="false"/>
1468
1502
  <line number="141" hits="0" branch="false"/>
1469
- <line number="152" hits="22" branch="false"/>
1503
+ <line number="152" hits="26" branch="false"/>
1470
1504
  </lines>
1471
1505
  </class>
1472
1506
  <class name="CustomPropertiesFilterFieldArray.js" filename="src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js" line-rate="0.6" branch-rate="0.3333">
@@ -1503,7 +1537,7 @@
1503
1537
  </method>
1504
1538
  </methods>
1505
1539
  <lines>
1506
- <line number="17" hits="22" branch="false"/>
1540
+ <line number="17" hits="26" branch="false"/>
1507
1541
  <line number="23" hits="3" branch="false"/>
1508
1542
  <line number="24" hits="3" branch="false"/>
1509
1543
  <line number="26" hits="3" branch="false"/>
@@ -1512,7 +1546,7 @@
1512
1546
  <line number="45" hits="0" branch="false"/>
1513
1547
  <line number="50" hits="0" branch="false"/>
1514
1548
  <line number="92" hits="0" branch="false"/>
1515
- <line number="103" hits="22" branch="false"/>
1549
+ <line number="103" hits="26" branch="false"/>
1516
1550
  </lines>
1517
1551
  </class>
1518
1552
  <class name="CustomPropertiesFilterForm.js" filename="src/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js" line-rate="1" branch-rate="0.6666">
@@ -1524,10 +1558,10 @@
1524
1558
  </method>
1525
1559
  </methods>
1526
1560
  <lines>
1527
- <line number="13" hits="22" branch="false"/>
1561
+ <line number="13" hits="26" branch="false"/>
1528
1562
  <line number="26" hits="3" branch="false"/>
1529
1563
  <line number="28" hits="3" branch="false"/>
1530
- <line number="71" hits="22" branch="false"/>
1564
+ <line number="71" hits="26" branch="false"/>
1531
1565
  </lines>
1532
1566
  </class>
1533
1567
  <class name="CustomPropertiesRule.js" filename="src/lib/CustomProperties/Filter/CustomPropertiesRule.js" line-rate="0.9285" branch-rate="0.6666">
@@ -1564,8 +1598,8 @@
1564
1598
  </method>
1565
1599
  </methods>
1566
1600
  <lines>
1567
- <line number="21" hits="22" branch="false"/>
1568
- <line number="42" hits="22" branch="false"/>
1601
+ <line number="21" hits="26" branch="false"/>
1602
+ <line number="42" hits="26" branch="false"/>
1569
1603
  <line number="54" hits="12" branch="false"/>
1570
1604
  <line number="55" hits="12" branch="false"/>
1571
1605
  <line number="56" hits="12" branch="false"/>
@@ -1577,7 +1611,7 @@
1577
1611
  <line number="91" hits="8" branch="true" condition-coverage="100% (2/2)"/>
1578
1612
  <line number="92" hits="2" branch="false"/>
1579
1613
  <line number="125" hits="0" branch="false"/>
1580
- <line number="139" hits="22" branch="false"/>
1614
+ <line number="139" hits="26" branch="false"/>
1581
1615
  </lines>
1582
1616
  </class>
1583
1617
  <class name="index.js" filename="src/lib/CustomProperties/Filter/index.js" line-rate="0" branch-rate="0">
@@ -1663,8 +1697,8 @@
1663
1697
  </method>
1664
1698
  </methods>
1665
1699
  <lines>
1666
- <line number="11" hits="23" branch="false"/>
1667
- <line number="13" hits="23" branch="true" condition-coverage="75% (3/4)"/>
1700
+ <line number="11" hits="27" branch="false"/>
1701
+ <line number="13" hits="27" branch="true" condition-coverage="75% (3/4)"/>
1668
1702
  <line number="14" hits="16" branch="false"/>
1669
1703
  <line number="16" hits="16" branch="false"/>
1670
1704
  <line number="21" hits="16" branch="true" condition-coverage="100% (5/5)"/>
@@ -1709,7 +1743,7 @@
1709
1743
  </method>
1710
1744
  </methods>
1711
1745
  <lines>
1712
- <line number="3" hits="23" branch="true" condition-coverage="0% (0/1)"/>
1746
+ <line number="3" hits="27" branch="true" condition-coverage="0% (0/1)"/>
1713
1747
  <line number="4" hits="40" branch="false"/>
1714
1748
  <line number="6" hits="4" branch="false"/>
1715
1749
  <line number="7" hits="4" branch="false"/>
@@ -1749,8 +1783,8 @@
1749
1783
  </method>
1750
1784
  </methods>
1751
1785
  <lines>
1752
- <line number="12" hits="22" branch="false"/>
1753
- <line number="14" hits="22" branch="false"/>
1786
+ <line number="12" hits="26" branch="false"/>
1787
+ <line number="14" hits="26" branch="false"/>
1754
1788
  <line number="20" hits="12" branch="false"/>
1755
1789
  <line number="24" hits="12" branch="true" condition-coverage="42.857142857142854% (3/7)"/>
1756
1790
  <line number="27" hits="0" branch="false"/>
@@ -1793,10 +1827,10 @@
1793
1827
  </method>
1794
1828
  </methods>
1795
1829
  <lines>
1796
- <line number="4" hits="23" branch="false"/>
1830
+ <line number="4" hits="27" branch="false"/>
1797
1831
  <line number="13" hits="1" branch="false"/>
1798
1832
  <line number="15" hits="2" branch="false"/>
1799
- <line number="31" hits="23" branch="false"/>
1833
+ <line number="31" hits="27" branch="false"/>
1800
1834
  </lines>
1801
1835
  </class>
1802
1836
  <class name="CustomPropertiesViewCtx.js" filename="src/lib/CustomProperties/View/CustomPropertiesViewCtx.js" line-rate="0.8887999999999999" branch-rate="0.5625">
@@ -1833,7 +1867,7 @@
1833
1867
  </method>
1834
1868
  </methods>
1835
1869
  <lines>
1836
- <line number="8" hits="22" branch="false"/>
1870
+ <line number="8" hits="26" branch="false"/>
1837
1871
  <line number="17" hits="1" branch="false"/>
1838
1872
  <line number="20" hits="1" branch="false"/>
1839
1873
  <line number="22" hits="1" branch="true" condition-coverage="50% (1/2)"/>
@@ -1850,7 +1884,7 @@
1850
1884
  <line number="85" hits="1" branch="false"/>
1851
1885
  <line number="87" hits="1" branch="false"/>
1852
1886
  <line number="97" hits="12" branch="false"/>
1853
- <line number="110" hits="22" branch="false"/>
1887
+ <line number="110" hits="26" branch="false"/>
1854
1888
  </lines>
1855
1889
  </class>
1856
1890
  <class name="CustomPropertyCard.js" filename="src/lib/CustomProperties/View/CustomPropertyCard.js" line-rate="0.11109999999999999" branch-rate="0">
@@ -1872,7 +1906,7 @@
1872
1906
  </method>
1873
1907
  </methods>
1874
1908
  <lines>
1875
- <line number="18" hits="22" branch="false"/>
1909
+ <line number="18" hits="26" branch="false"/>
1876
1910
  <line number="27" hits="0" branch="false"/>
1877
1911
  <line number="30" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1878
1912
  <line number="32" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -1889,7 +1923,7 @@
1889
1923
  <line number="63" hits="0" branch="false"/>
1890
1924
  <line number="66" hits="0" branch="false"/>
1891
1925
  <line number="70" hits="0" branch="false"/>
1892
- <line number="168" hits="22" branch="false"/>
1926
+ <line number="168" hits="26" branch="false"/>
1893
1927
  </lines>
1894
1928
  </class>
1895
1929
  <class name="index.js" filename="src/lib/CustomProperties/View/index.js" line-rate="0" branch-rate="0">
@@ -1926,14 +1960,14 @@
1926
1960
  </method>
1927
1961
  </methods>
1928
1962
  <lines>
1929
- <line number="9" hits="23" branch="false"/>
1963
+ <line number="9" hits="27" branch="false"/>
1930
1964
  <line number="13" hits="0" branch="false"/>
1931
1965
  <line number="15" hits="0" branch="false"/>
1932
1966
  <line number="17" hits="0" branch="false"/>
1933
1967
  <line number="25" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1934
1968
  <line number="26" hits="0" branch="false"/>
1935
1969
  <line number="29" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1936
- <line number="35" hits="23" branch="false"/>
1970
+ <line number="35" hits="27" branch="false"/>
1937
1971
  </lines>
1938
1972
  </class>
1939
1973
  <class name="index.js" filename="src/lib/CycleButton/index.js" line-rate="0" branch-rate="0">
@@ -1960,7 +1994,7 @@
1960
1994
  </method>
1961
1995
  </methods>
1962
1996
  <lines>
1963
- <line number="3" hits="23" branch="false"/>
1997
+ <line number="3" hits="27" branch="false"/>
1964
1998
  <line number="8" hits="0" branch="false"/>
1965
1999
  <line number="13" hits="0" branch="false"/>
1966
2000
  </lines>
@@ -2019,7 +2053,7 @@
2019
2053
  </method>
2020
2054
  </methods>
2021
2055
  <lines>
2022
- <line number="7" hits="22" branch="false"/>
2056
+ <line number="7" hits="26" branch="false"/>
2023
2057
  <line number="18" hits="3" branch="false"/>
2024
2058
  <line number="20" hits="3" branch="false"/>
2025
2059
  <line number="26" hits="3" branch="false"/>
@@ -2054,7 +2088,7 @@
2054
2088
  <line number="91" hits="3" branch="false"/>
2055
2089
  <line number="92" hits="3" branch="false"/>
2056
2090
  <line number="119" hits="3" branch="false"/>
2057
- <line number="134" hits="22" branch="false"/>
2091
+ <line number="134" hits="26" branch="false"/>
2058
2092
  </lines>
2059
2093
  </class>
2060
2094
  <class name="index.js" filename="src/lib/FormModal/index.js" line-rate="0" branch-rate="0">
@@ -2076,7 +2110,7 @@
2076
2110
  </method>
2077
2111
  </methods>
2078
2112
  <lines>
2079
- <line number="6" hits="23" branch="false"/>
2113
+ <line number="6" hits="27" branch="false"/>
2080
2114
  <line number="14" hits="0" branch="false"/>
2081
2115
  <line number="15" hits="0" branch="false"/>
2082
2116
  <line number="17" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -2090,7 +2124,7 @@
2090
2124
  <line number="37" hits="0" branch="false"/>
2091
2125
  <line number="40" hits="0" branch="false"/>
2092
2126
  <line number="43" hits="0" branch="false"/>
2093
- <line number="46" hits="23" branch="false"/>
2127
+ <line number="46" hits="27" branch="false"/>
2094
2128
  </lines>
2095
2129
  </class>
2096
2130
  <class name="index.js" filename="src/lib/FormattedKintMessage/index.js" line-rate="0" branch-rate="0">
@@ -2127,7 +2161,7 @@
2127
2161
  </method>
2128
2162
  </methods>
2129
2163
  <lines>
2130
- <line number="17" hits="23" branch="false"/>
2164
+ <line number="17" hits="27" branch="false"/>
2131
2165
  <line number="32" hits="0" branch="false"/>
2132
2166
  <line number="43" hits="0" branch="false"/>
2133
2167
  <line number="48" hits="0" branch="false"/>
@@ -2138,7 +2172,7 @@
2138
2172
  <line number="67" hits="0" branch="false"/>
2139
2173
  <line number="77" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2140
2174
  <line number="80" hits="0" branch="false"/>
2141
- <line number="107" hits="23" branch="false"/>
2175
+ <line number="107" hits="27" branch="false"/>
2142
2176
  </lines>
2143
2177
  </class>
2144
2178
  <class name="index.js" filename="src/lib/IconSelect/index.js" line-rate="0" branch-rate="0">
@@ -2160,7 +2194,7 @@
2160
2194
  </method>
2161
2195
  </methods>
2162
2196
  <lines>
2163
- <line number="8" hits="23" branch="false"/>
2197
+ <line number="8" hits="27" branch="false"/>
2164
2198
  <line number="21" hits="0" branch="false"/>
2165
2199
  <line number="23" hits="0" branch="false"/>
2166
2200
  <line number="24" hits="0" branch="false"/>
@@ -2177,7 +2211,7 @@
2177
2211
  <line number="40" hits="0" branch="false"/>
2178
2212
  <line number="41" hits="0" branch="false"/>
2179
2213
  <line number="44" hits="0" branch="false"/>
2180
- <line number="74" hits="23" branch="false"/>
2214
+ <line number="74" hits="27" branch="false"/>
2181
2215
  </lines>
2182
2216
  </class>
2183
2217
  <class name="index.js" filename="src/lib/NoResultsMessage/index.js" line-rate="0" branch-rate="0">
@@ -2224,7 +2258,7 @@
2224
2258
  </method>
2225
2259
  </methods>
2226
2260
  <lines>
2227
- <line number="16" hits="23" branch="false"/>
2261
+ <line number="16" hits="27" branch="false"/>
2228
2262
  <line number="23" hits="606" branch="false"/>
2229
2263
  <line number="27" hits="606" branch="true" condition-coverage="100% (2/2)"/>
2230
2264
  <line number="29" hits="606" branch="false"/>
@@ -2257,7 +2291,7 @@
2257
2291
  <line number="91" hits="28" branch="true" condition-coverage="50% (1/2)"/>
2258
2292
  <line number="92" hits="28" branch="false"/>
2259
2293
  <line number="94" hits="28" branch="false"/>
2260
- <line number="113" hits="23" branch="false"/>
2294
+ <line number="113" hits="27" branch="false"/>
2261
2295
  </lines>
2262
2296
  </class>
2263
2297
  <class name="index.js" filename="src/lib/NumberField/index.js" line-rate="0" branch-rate="0">
@@ -2294,7 +2328,7 @@
2294
2328
  </method>
2295
2329
  </methods>
2296
2330
  <lines>
2297
- <line number="7" hits="23" branch="false"/>
2331
+ <line number="7" hits="27" branch="false"/>
2298
2332
  <line number="8" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2299
2333
  <line number="13" hits="0" branch="false"/>
2300
2334
  <line number="14" hits="0" branch="false"/>
@@ -2304,7 +2338,7 @@
2304
2338
  <line number="21" hits="0" branch="false"/>
2305
2339
  <line number="22" hits="0" branch="false"/>
2306
2340
  <line number="25" hits="0" branch="false"/>
2307
- <line number="34" hits="23" branch="false"/>
2341
+ <line number="34" hits="27" branch="false"/>
2308
2342
  </lines>
2309
2343
  </class>
2310
2344
  <class name="index.js" filename="src/lib/QueryTypedown/index.js" line-rate="0" branch-rate="0">
@@ -2356,7 +2390,7 @@
2356
2390
  </method>
2357
2391
  </methods>
2358
2392
  <lines>
2359
- <line number="6" hits="23" branch="false"/>
2393
+ <line number="6" hits="27" branch="false"/>
2360
2394
  <line number="8" hits="4" branch="true" condition-coverage="100% (1/1)"/>
2361
2395
  <line number="9" hits="4" branch="false"/>
2362
2396
  <line number="12" hits="4" branch="true" condition-coverage="50% (1/2)"/>
@@ -2384,7 +2418,7 @@
2384
2418
  <line number="65" hits="0" branch="false"/>
2385
2419
  <line number="67" hits="0" branch="false"/>
2386
2420
  <line number="78" hits="4" branch="false"/>
2387
- <line number="86" hits="23" branch="false"/>
2421
+ <line number="86" hits="27" branch="false"/>
2388
2422
  </lines>
2389
2423
  </class>
2390
2424
  <class name="index.js" filename="src/lib/RefdataButtons/index.js" line-rate="0" branch-rate="0">
@@ -2466,16 +2500,16 @@
2466
2500
  </method>
2467
2501
  </methods>
2468
2502
  <lines>
2469
- <line number="17" hits="23" branch="false"/>
2470
- <line number="28" hits="23" branch="false"/>
2471
- <line number="29" hits="23" branch="true" condition-coverage="0% (0/2)"/>
2503
+ <line number="17" hits="27" branch="false"/>
2504
+ <line number="28" hits="27" branch="false"/>
2505
+ <line number="29" hits="27" branch="true" condition-coverage="0% (0/2)"/>
2472
2506
  <line number="31" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2473
2507
  <line number="32" hits="0" branch="false"/>
2474
2508
  <line number="36" hits="0" branch="false"/>
2475
2509
  <line number="37" hits="0" branch="true" condition-coverage="0% (0/4)"/>
2476
2510
  <line number="38" hits="0" branch="false"/>
2477
2511
  <line number="41" hits="0" branch="false"/>
2478
- <line number="45" hits="23" branch="false"/>
2512
+ <line number="45" hits="27" branch="false"/>
2479
2513
  <line number="56" hits="0" branch="false"/>
2480
2514
  <line number="58" hits="0" branch="false"/>
2481
2515
  <line number="59" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -2501,7 +2535,7 @@
2501
2535
  <line number="155" hits="0" branch="true" condition-coverage="0% (0/4)"/>
2502
2536
  <line number="156" hits="0" branch="false"/>
2503
2537
  <line number="159" hits="0" branch="false"/>
2504
- <line number="168" hits="23" branch="false"/>
2538
+ <line number="168" hits="27" branch="false"/>
2505
2539
  </lines>
2506
2540
  </class>
2507
2541
  <class name="index.js" filename="src/lib/ResponsiveButtonGroup/index.js" line-rate="0" branch-rate="0">
@@ -2549,7 +2583,7 @@
2549
2583
  </method>
2550
2584
  </methods>
2551
2585
  <lines>
2552
- <line number="7" hits="23" branch="false"/>
2586
+ <line number="7" hits="27" branch="false"/>
2553
2587
  <line number="11" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2554
2588
  <line number="12" hits="0" branch="false"/>
2555
2589
  <line number="14" hits="0" branch="false"/>
@@ -2656,7 +2690,7 @@
2656
2690
  </method>
2657
2691
  </methods>
2658
2692
  <lines>
2659
- <line number="16" hits="23" branch="false"/>
2693
+ <line number="16" hits="27" branch="false"/>
2660
2694
  <line number="35" hits="0" branch="false"/>
2661
2695
  <line number="37" hits="0" branch="true" condition-coverage="0% (0/3)"/>
2662
2696
  <line number="39" hits="0" branch="false"/>
@@ -2692,7 +2726,7 @@
2692
2726
  <line number="158" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2693
2727
  <line number="159" hits="0" branch="false"/>
2694
2728
  <line number="161" hits="0" branch="false"/>
2695
- <line number="178" hits="23" branch="false"/>
2729
+ <line number="178" hits="27" branch="false"/>
2696
2730
  </lines>
2697
2731
  </class>
2698
2732
  <class name="index.js" filename="src/lib/RichSelect/index.js" line-rate="0" branch-rate="0">
@@ -2715,7 +2749,7 @@
2715
2749
  </method>
2716
2750
  </methods>
2717
2751
  <lines>
2718
- <line number="3" hits="23" branch="false"/>
2752
+ <line number="3" hits="27" branch="false"/>
2719
2753
  <line number="4" hits="0" branch="false"/>
2720
2754
  <line number="5" hits="0" branch="false"/>
2721
2755
  <line number="6" hits="0" branch="true" condition-coverage="0% (0/4)"/>
@@ -2725,160 +2759,160 @@
2725
2759
  </class>
2726
2760
  </classes>
2727
2761
  </package>
2728
- <package name="SASQLookupComponent" line-rate="0.0344" branch-rate="0">
2762
+ <package name="SASQLookupComponent" line-rate="0.9826999999999999" branch-rate="0.8823000000000001">
2729
2763
  <classes>
2730
- <class name="SASQLookupComponent.js" filename="src/lib/SASQLookupComponent/SASQLookupComponent.js" line-rate="0.0344" branch-rate="0">
2764
+ <class name="SASQLookupComponent.js" filename="src/lib/SASQLookupComponent/SASQLookupComponent.js" line-rate="0.9826999999999999" branch-rate="0.8823000000000001">
2731
2765
  <methods>
2732
- <method name="(anonymous_0)" hits="0" signature="()V">
2766
+ <method name="(anonymous_0)" hits="892" signature="()V">
2733
2767
  <lines>
2734
- <line number="41" hits="0"/>
2768
+ <line number="41" hits="892"/>
2735
2769
  </lines>
2736
2770
  </method>
2737
- <method name="(anonymous_1)" hits="0" signature="()V">
2771
+ <method name="(anonymous_1)" hits="976" signature="()V">
2738
2772
  <lines>
2739
- <line number="45" hits="0"/>
2773
+ <line number="45" hits="976"/>
2740
2774
  </lines>
2741
2775
  </method>
2742
- <method name="(anonymous_2)" hits="0" signature="()V">
2776
+ <method name="(anonymous_2)" hits="976" signature="()V">
2743
2777
  <lines>
2744
- <line number="46" hits="0"/>
2778
+ <line number="46" hits="976"/>
2745
2779
  </lines>
2746
2780
  </method>
2747
- <method name="(anonymous_3)" hits="0" signature="()V">
2781
+ <method name="(anonymous_3)" hits="813" signature="()V">
2748
2782
  <lines>
2749
- <line number="53" hits="0"/>
2783
+ <line number="53" hits="813"/>
2750
2784
  </lines>
2751
2785
  </method>
2752
- <method name="(anonymous_4)" hits="0" signature="()V">
2786
+ <method name="(anonymous_4)" hits="204" signature="()V">
2753
2787
  <lines>
2754
- <line number="69" hits="0"/>
2788
+ <line number="69" hits="204"/>
2755
2789
  </lines>
2756
2790
  </method>
2757
- <method name="(anonymous_5)" hits="0" signature="()V">
2791
+ <method name="(anonymous_5)" hits="811" signature="()V">
2758
2792
  <lines>
2759
- <line number="71" hits="0"/>
2793
+ <line number="70" hits="811"/>
2760
2794
  </lines>
2761
2795
  </method>
2762
- <method name="(anonymous_6)" hits="0" signature="()V">
2796
+ <method name="(anonymous_6)" hits="395" signature="()V">
2763
2797
  <lines>
2764
- <line number="112" hits="0"/>
2798
+ <line number="112" hits="395"/>
2765
2799
  </lines>
2766
2800
  </method>
2767
- <method name="(anonymous_7)" hits="0" signature="()V">
2801
+ <method name="(anonymous_7)" hits="892" signature="()V">
2768
2802
  <lines>
2769
- <line number="116" hits="0"/>
2803
+ <line number="116" hits="892"/>
2770
2804
  </lines>
2771
2805
  </method>
2772
- <method name="(anonymous_8)" hits="0" signature="()V">
2806
+ <method name="(anonymous_8)" hits="892" signature="()V">
2773
2807
  <lines>
2774
- <line number="120" hits="0"/>
2808
+ <line number="120" hits="892"/>
2775
2809
  </lines>
2776
2810
  </method>
2777
- <method name="(anonymous_9)" hits="0" signature="()V">
2811
+ <method name="(anonymous_9)" hits="571" signature="()V">
2778
2812
  <lines>
2779
- <line number="130" hits="0"/>
2813
+ <line number="130" hits="571"/>
2780
2814
  </lines>
2781
2815
  </method>
2782
- <method name="(anonymous_10)" hits="0" signature="()V">
2816
+ <method name="(anonymous_10)" hits="22" signature="()V">
2783
2817
  <lines>
2784
- <line number="154" hits="0"/>
2818
+ <line number="153" hits="22"/>
2785
2819
  </lines>
2786
2820
  </method>
2787
- <method name="(anonymous_11)" hits="0" signature="()V">
2821
+ <method name="(anonymous_11)" hits="204" signature="()V">
2788
2822
  <lines>
2789
- <line number="165" hits="0"/>
2823
+ <line number="164" hits="204"/>
2790
2824
  </lines>
2791
2825
  </method>
2792
- <method name="(anonymous_12)" hits="0" signature="()V">
2826
+ <method name="(anonymous_12)" hits="892" signature="()V">
2793
2827
  <lines>
2794
- <line number="178" hits="0"/>
2828
+ <line number="177" hits="892"/>
2795
2829
  </lines>
2796
2830
  </method>
2797
- <method name="(anonymous_13)" hits="0" signature="()V">
2831
+ <method name="(anonymous_13)" hits="352" signature="()V">
2798
2832
  <lines>
2799
- <line number="184" hits="0"/>
2833
+ <line number="183" hits="352"/>
2800
2834
  </lines>
2801
2835
  </method>
2802
- <method name="(anonymous_14)" hits="0" signature="()V">
2836
+ <method name="(anonymous_14)" hits="618" signature="()V">
2803
2837
  <lines>
2804
- <line number="190" hits="0"/>
2838
+ <line number="189" hits="618"/>
2805
2839
  </lines>
2806
2840
  </method>
2807
- <method name="(anonymous_15)" hits="0" signature="()V">
2841
+ <method name="(anonymous_15)" hits="1130" signature="()V">
2808
2842
  <lines>
2809
- <line number="207" hits="0"/>
2843
+ <line number="206" hits="1130"/>
2810
2844
  </lines>
2811
2845
  </method>
2812
- <method name="(anonymous_16)" hits="0" signature="()V">
2846
+ <method name="(anonymous_16)" hits="1130" signature="()V">
2813
2847
  <lines>
2814
- <line number="246" hits="0"/>
2848
+ <line number="245" hits="1130"/>
2815
2849
  </lines>
2816
2850
  </method>
2817
- <method name="(anonymous_17)" hits="0" signature="()V">
2851
+ <method name="(anonymous_17)" hits="304" signature="()V">
2818
2852
  <lines>
2819
- <line number="302" hits="0"/>
2853
+ <line number="301" hits="304"/>
2820
2854
  </lines>
2821
2855
  </method>
2822
2856
  </methods>
2823
2857
  <lines>
2824
- <line number="41" hits="23" branch="false"/>
2825
- <line number="45" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2826
- <line number="46" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2827
- <line number="59" hits="0" branch="false"/>
2828
- <line number="60" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2829
- <line number="61" hits="0" branch="false"/>
2830
- <line number="63" hits="0" branch="false"/>
2831
- <line number="64" hits="0" branch="false"/>
2832
- <line number="65" hits="0" branch="false"/>
2833
- <line number="67" hits="0" branch="false"/>
2834
- <line number="70" hits="0" branch="false"/>
2835
- <line number="71" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2836
- <line number="84" hits="0" branch="false"/>
2837
- <line number="85" hits="0" branch="false"/>
2838
- <line number="86" hits="0" branch="false"/>
2839
- <line number="94" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2840
- <line number="99" hits="0" branch="false"/>
2841
- <line number="109" hits="0" branch="false"/>
2842
- <line number="111" hits="0" branch="false"/>
2843
- <line number="112" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2844
- <line number="115" hits="0" branch="false"/>
2845
- <line number="116" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2846
- <line number="119" hits="0" branch="false"/>
2847
- <line number="120" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2848
- <line number="124" hits="0" branch="false"/>
2849
- <line number="125" hits="0" branch="false"/>
2850
- <line number="127" hits="0" branch="false"/>
2851
- <line number="129" hits="0" branch="false"/>
2852
- <line number="131" hits="0" branch="false"/>
2853
- <line number="150" hits="0" branch="false"/>
2854
- <line number="154" hits="0" branch="false"/>
2855
- <line number="156" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2856
- <line number="166" hits="0" branch="false"/>
2857
- <line number="179" hits="0" branch="false"/>
2858
- <line number="184" hits="0" branch="false"/>
2859
- <line number="185" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2860
- <line number="186" hits="0" branch="false"/>
2861
- <line number="190" hits="0" branch="false"/>
2862
- <line number="198" hits="0" branch="false"/>
2863
- <line number="217" hits="0" branch="false"/>
2864
- <line number="219" hits="0" branch="false"/>
2865
- <line number="220" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2866
- <line number="222" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2867
- <line number="226" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2868
- <line number="232" hits="0" branch="false"/>
2869
- <line number="234" hits="0" branch="false"/>
2870
- <line number="236" hits="0" branch="false"/>
2871
- <line number="246" hits="0" branch="false"/>
2872
- <line number="247" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2873
- <line number="248" hits="0" branch="false"/>
2874
- <line number="251" hits="0" branch="true" condition-coverage="0% (0/4)"/>
2875
- <line number="252" hits="0" branch="false"/>
2876
- <line number="261" hits="0" branch="false"/>
2877
- <line number="264" hits="0" branch="false"/>
2878
- <line number="303" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2879
- <line number="304" hits="0" branch="false"/>
2880
- <line number="306" hits="0" branch="false"/>
2881
- <line number="403" hits="23" branch="false"/>
2858
+ <line number="41" hits="26" branch="false"/>
2859
+ <line number="45" hits="976" branch="true" condition-coverage="100% (1/1)"/>
2860
+ <line number="46" hits="976" branch="true" condition-coverage="100% (1/1)"/>
2861
+ <line number="59" hits="813" branch="false"/>
2862
+ <line number="60" hits="813" branch="true" condition-coverage="50% (1/2)"/>
2863
+ <line number="61" hits="813" branch="false"/>
2864
+ <line number="63" hits="813" branch="false"/>
2865
+ <line number="64" hits="813" branch="false"/>
2866
+ <line number="65" hits="813" branch="false"/>
2867
+ <line number="67" hits="813" branch="false"/>
2868
+ <line number="69" hits="204" branch="true" condition-coverage="100% (1/1)"/>
2869
+ <line number="70" hits="811" branch="true" condition-coverage="100% (1/1)"/>
2870
+ <line number="83" hits="892" branch="false"/>
2871
+ <line number="85" hits="892" branch="false"/>
2872
+ <line number="86" hits="892" branch="false"/>
2873
+ <line number="94" hits="892" branch="true" condition-coverage="100% (2/2)"/>
2874
+ <line number="99" hits="892" branch="false"/>
2875
+ <line number="109" hits="892" branch="false"/>
2876
+ <line number="111" hits="892" branch="false"/>
2877
+ <line number="112" hits="395" branch="true" condition-coverage="100% (2/2)"/>
2878
+ <line number="115" hits="892" branch="false"/>
2879
+ <line number="116" hits="892" branch="true" condition-coverage="100% (2/2)"/>
2880
+ <line number="119" hits="892" branch="false"/>
2881
+ <line number="120" hits="892" branch="true" condition-coverage="100% (2/2)"/>
2882
+ <line number="124" hits="892" branch="false"/>
2883
+ <line number="125" hits="892" branch="false"/>
2884
+ <line number="127" hits="892" branch="false"/>
2885
+ <line number="129" hits="892" branch="false"/>
2886
+ <line number="130" hits="571" branch="false"/>
2887
+ <line number="149" hits="892" branch="false"/>
2888
+ <line number="153" hits="892" branch="false"/>
2889
+ <line number="155" hits="892" branch="true" condition-coverage="0% (0/1)"/>
2890
+ <line number="165" hits="204" branch="false"/>
2891
+ <line number="178" hits="892" branch="false"/>
2892
+ <line number="183" hits="892" branch="false"/>
2893
+ <line number="184" hits="352" branch="true" condition-coverage="100% (2/2)"/>
2894
+ <line number="185" hits="176" branch="false"/>
2895
+ <line number="189" hits="892" branch="false"/>
2896
+ <line number="197" hits="892" branch="false"/>
2897
+ <line number="216" hits="1130" branch="false"/>
2898
+ <line number="218" hits="1130" branch="false"/>
2899
+ <line number="219" hits="1130" branch="true" condition-coverage="100% (2/2)"/>
2900
+ <line number="221" hits="1130" branch="true" condition-coverage="100% (2/2)"/>
2901
+ <line number="225" hits="1130" branch="true" condition-coverage="100% (2/2)"/>
2902
+ <line number="231" hits="1130" branch="false"/>
2903
+ <line number="233" hits="1130" branch="false"/>
2904
+ <line number="235" hits="1130" branch="false"/>
2905
+ <line number="245" hits="1130" branch="false"/>
2906
+ <line number="246" hits="1130" branch="true" condition-coverage="50% (1/2)"/>
2907
+ <line number="247" hits="0" branch="false"/>
2908
+ <line number="250" hits="1130" branch="true" condition-coverage="100% (4/4)"/>
2909
+ <line number="251" hits="22" branch="false"/>
2910
+ <line number="260" hits="1108" branch="false"/>
2911
+ <line number="263" hits="1130" branch="false"/>
2912
+ <line number="302" hits="304" branch="true" condition-coverage="100% (2/2)"/>
2913
+ <line number="303" hits="300" branch="false"/>
2914
+ <line number="305" hits="4" branch="false"/>
2915
+ <line number="402" hits="26" branch="false"/>
2882
2916
  </lines>
2883
2917
  </class>
2884
2918
  <class name="index.js" filename="src/lib/SASQLookupComponent/index.js" line-rate="0" branch-rate="0">
@@ -2889,18 +2923,18 @@
2889
2923
  </class>
2890
2924
  </classes>
2891
2925
  </package>
2892
- <package name="SASQLookupComponent.TableBody" line-rate="0.07139999999999999" branch-rate="0">
2926
+ <package name="SASQLookupComponent.TableBody" line-rate="0.9" branch-rate="0.6666">
2893
2927
  <classes>
2894
- <class name="TableBody.js" filename="src/lib/SASQLookupComponent/TableBody/TableBody.js" line-rate="0.07139999999999999" branch-rate="0">
2928
+ <class name="TableBody.js" filename="src/lib/SASQLookupComponent/TableBody/TableBody.js" line-rate="0.9" branch-rate="0.6666">
2895
2929
  <methods>
2896
- <method name="(anonymous_0)" hits="0" signature="()V">
2930
+ <method name="(anonymous_0)" hits="72" signature="()V">
2897
2931
  <lines>
2898
- <line number="11" hits="0"/>
2932
+ <line number="11" hits="72"/>
2899
2933
  </lines>
2900
2934
  </method>
2901
- <method name="(anonymous_1)" hits="0" signature="()V">
2935
+ <method name="(anonymous_1)" hits="3245" signature="()V">
2902
2936
  <lines>
2903
- <line number="31" hits="0"/>
2937
+ <line number="31" hits="3245"/>
2904
2938
  </lines>
2905
2939
  </method>
2906
2940
  <method name="(anonymous_2)" hits="0" signature="()V">
@@ -2908,81 +2942,83 @@
2908
2942
  <line number="39" hits="0"/>
2909
2943
  </lines>
2910
2944
  </method>
2911
- <method name="(anonymous_3)" hits="0" signature="()V">
2945
+ <method name="(anonymous_3)" hits="216" signature="()V">
2912
2946
  <lines>
2913
- <line number="45" hits="0"/>
2947
+ <line number="45" hits="216"/>
2914
2948
  </lines>
2915
2949
  </method>
2916
- <method name="(anonymous_4)" hits="0" signature="()V">
2950
+ <method name="(anonymous_4)" hits="216" signature="()V">
2917
2951
  <lines>
2918
- <line number="49" hits="0"/>
2952
+ <line number="49" hits="216"/>
2919
2953
  </lines>
2920
2954
  </method>
2921
- <method name="(anonymous_5)" hits="0" signature="()V">
2955
+ <method name="(anonymous_5)" hits="1949" signature="()V">
2922
2956
  <lines>
2923
- <line number="51" hits="0"/>
2957
+ <line number="51" hits="1949"/>
2924
2958
  </lines>
2925
2959
  </method>
2926
- <method name="(anonymous_6)" hits="0" signature="()V">
2960
+ <method name="(anonymous_6)" hits="72" signature="()V">
2927
2961
  <lines>
2928
- <line number="61" hits="0"/>
2962
+ <line number="61" hits="72"/>
2929
2963
  </lines>
2930
2964
  </method>
2931
- <method name="(anonymous_7)" hits="0" signature="()V">
2965
+ <method name="(anonymous_7)" hits="1944" signature="()V">
2932
2966
  <lines>
2933
- <line number="64" hits="0"/>
2967
+ <line number="65" hits="1944"/>
2934
2968
  </lines>
2935
2969
  </method>
2936
- <method name="(anonymous_8)" hits="0" signature="()V">
2970
+ <method name="(anonymous_8)" hits="72" signature="()V">
2937
2971
  <lines>
2938
- <line number="70" hits="0"/>
2972
+ <line number="73" hits="72"/>
2939
2973
  </lines>
2940
2974
  </method>
2941
- <method name="(anonymous_9)" hits="0" signature="()V">
2975
+ <method name="(anonymous_9)" hits="5" signature="()V">
2942
2976
  <lines>
2943
- <line number="72" hits="0"/>
2977
+ <line number="75" hits="5"/>
2944
2978
  </lines>
2945
2979
  </method>
2946
- <method name="(anonymous_10)" hits="0" signature="()V">
2980
+ <method name="(anonymous_10)" hits="1296" signature="()V">
2947
2981
  <lines>
2948
- <line number="81" hits="0"/>
2982
+ <line number="84" hits="1296"/>
2949
2983
  </lines>
2950
2984
  </method>
2951
- <method name="(anonymous_11)" hits="0" signature="()V">
2985
+ <method name="(anonymous_11)" hits="72" signature="()V">
2952
2986
  <lines>
2953
- <line number="84" hits="0"/>
2987
+ <line number="87" hits="72"/>
2954
2988
  </lines>
2955
2989
  </method>
2956
2990
  </methods>
2957
2991
  <lines>
2958
- <line number="11" hits="23" branch="false"/>
2959
- <line number="31" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2960
- <line number="35" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2961
- <line number="36" hits="0" branch="false"/>
2962
- <line number="37" hits="0" branch="false"/>
2963
- <line number="39" hits="0" branch="false"/>
2992
+ <line number="11" hits="25" branch="false"/>
2993
+ <line number="31" hits="3245" branch="true" condition-coverage="100% (1/1)"/>
2994
+ <line number="35" hits="72" branch="true" condition-coverage="100% (2/2)"/>
2995
+ <line number="36" hits="72" branch="false"/>
2996
+ <line number="37" hits="72" branch="false"/>
2997
+ <line number="39" hits="72" branch="false"/>
2964
2998
  <line number="40" hits="0" branch="false"/>
2965
- <line number="44" hits="0" branch="false"/>
2966
- <line number="45" hits="0" branch="false"/>
2967
- <line number="49" hits="0" branch="false"/>
2968
- <line number="51" hits="0" branch="false"/>
2969
- <line number="52" hits="0" branch="false"/>
2970
- <line number="53" hits="0" branch="false"/>
2971
- <line number="61" hits="0" branch="false"/>
2972
- <line number="62" hits="0" branch="false"/>
2973
- <line number="63" hits="0" branch="false"/>
2974
- <line number="64" hits="0" branch="false"/>
2999
+ <line number="44" hits="72" branch="false"/>
3000
+ <line number="45" hits="216" branch="false"/>
3001
+ <line number="49" hits="216" branch="false"/>
3002
+ <line number="51" hits="72" branch="false"/>
3003
+ <line number="52" hits="1949" branch="false"/>
3004
+ <line number="53" hits="1949" branch="false"/>
3005
+ <line number="61" hits="72" branch="false"/>
3006
+ <line number="62" hits="72" branch="false"/>
3007
+ <line number="63" hits="72" branch="false"/>
3008
+ <line number="64" hits="216" branch="true" condition-coverage="50% (1/2)"/>
3009
+ <line number="65" hits="1944" branch="false"/>
2975
3010
  <line number="67" hits="0" branch="false"/>
2976
- <line number="70" hits="0" branch="false"/>
2977
- <line number="71" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2978
- <line number="72" hits="0" branch="false"/>
2979
- <line number="73" hits="0" branch="false"/>
2980
- <line number="77" hits="0" branch="false"/>
3011
+ <line number="70" hits="72" branch="false"/>
3012
+ <line number="73" hits="72" branch="false"/>
3013
+ <line number="74" hits="72" branch="true" condition-coverage="50% (1/2)"/>
3014
+ <line number="75" hits="72" branch="false"/>
3015
+ <line number="76" hits="5" branch="false"/>
2981
3016
  <line number="80" hits="0" branch="false"/>
2982
- <line number="81" hits="0" branch="false"/>
2983
- <line number="84" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2984
- <line number="86" hits="0" branch="false"/>
2985
- <line number="124" hits="23" branch="false"/>
3017
+ <line number="83" hits="72" branch="false"/>
3018
+ <line number="84" hits="1296" branch="false"/>
3019
+ <line number="87" hits="72" branch="true" condition-coverage="100% (2/2)"/>
3020
+ <line number="89" hits="72" branch="false"/>
3021
+ <line number="127" hits="25" branch="false"/>
2986
3022
  </lines>
2987
3023
  </class>
2988
3024
  <class name="index.js" filename="src/lib/SASQLookupComponent/TableBody/index.js" line-rate="0" branch-rate="0">
@@ -2993,57 +3029,57 @@
2993
3029
  </class>
2994
3030
  </classes>
2995
3031
  </package>
2996
- <package name="SASQRoute" line-rate="0.1333" branch-rate="0">
3032
+ <package name="SASQRoute" line-rate="1" branch-rate="0.8571">
2997
3033
  <classes>
2998
- <class name="SASQRoute.js" filename="src/lib/SASQRoute/SASQRoute.js" line-rate="0.1333" branch-rate="0">
3034
+ <class name="SASQRoute.js" filename="src/lib/SASQRoute/SASQRoute.js" line-rate="1" branch-rate="0.8571">
2999
3035
  <methods>
3000
- <method name="(anonymous_0)" hits="0" signature="()V">
3036
+ <method name="(anonymous_0)" hits="45" signature="()V">
3001
3037
  <lines>
3002
- <line number="12" hits="0"/>
3038
+ <line number="12" hits="45"/>
3003
3039
  </lines>
3004
3040
  </method>
3005
- <method name="(anonymous_1)" hits="0" signature="()V">
3041
+ <method name="(anonymous_1)" hits="36" signature="()V">
3006
3042
  <lines>
3007
- <line number="15" hits="0"/>
3043
+ <line number="15" hits="36"/>
3008
3044
  </lines>
3009
3045
  </method>
3010
- <method name="(anonymous_2)" hits="0" signature="()V">
3046
+ <method name="(anonymous_2)" hits="36" signature="()V">
3011
3047
  <lines>
3012
- <line number="16" hits="0"/>
3048
+ <line number="16" hits="36"/>
3013
3049
  </lines>
3014
3050
  </method>
3015
- <method name="(anonymous_3)" hits="0" signature="()V">
3051
+ <method name="(anonymous_3)" hits="45" signature="()V">
3016
3052
  <lines>
3017
- <line number="28" hits="0"/>
3053
+ <line number="28" hits="45"/>
3018
3054
  </lines>
3019
3055
  </method>
3020
- <method name="(anonymous_4)" hits="0" signature="()V">
3056
+ <method name="(anonymous_4)" hits="45" signature="()V">
3021
3057
  <lines>
3022
- <line number="45" hits="0"/>
3058
+ <line number="45" hits="45"/>
3023
3059
  </lines>
3024
3060
  </method>
3025
- <method name="(anonymous_5)" hits="0" signature="()V">
3061
+ <method name="(anonymous_5)" hits="10" signature="()V">
3026
3062
  <lines>
3027
- <line number="58" hits="0"/>
3063
+ <line number="58" hits="10"/>
3028
3064
  </lines>
3029
3065
  </method>
3030
3066
  </methods>
3031
3067
  <lines>
3032
- <line number="12" hits="23" branch="false"/>
3033
- <line number="15" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3034
- <line number="16" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3035
- <line number="23" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3036
- <line number="25" hits="0" branch="false"/>
3037
- <line number="26" hits="0" branch="false"/>
3038
- <line number="28" hits="0" branch="false"/>
3039
- <line number="33" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3040
- <line number="34" hits="0" branch="false"/>
3041
- <line number="37" hits="0" branch="false"/>
3042
- <line number="40" hits="0" branch="false"/>
3043
- <line number="42" hits="0" branch="false"/>
3044
- <line number="46" hits="0" branch="false"/>
3045
- <line number="59" hits="0" branch="false"/>
3046
- <line number="77" hits="23" branch="false"/>
3068
+ <line number="12" hits="27" branch="false"/>
3069
+ <line number="15" hits="36" branch="true" condition-coverage="100% (1/1)"/>
3070
+ <line number="16" hits="36" branch="true" condition-coverage="100% (1/1)"/>
3071
+ <line number="23" hits="45" branch="true" condition-coverage="0% (0/1)"/>
3072
+ <line number="25" hits="45" branch="false"/>
3073
+ <line number="26" hits="45" branch="false"/>
3074
+ <line number="28" hits="45" branch="false"/>
3075
+ <line number="33" hits="45" branch="true" condition-coverage="100% (2/2)"/>
3076
+ <line number="34" hits="4" branch="false"/>
3077
+ <line number="37" hits="45" branch="false"/>
3078
+ <line number="40" hits="45" branch="false"/>
3079
+ <line number="42" hits="45" branch="false"/>
3080
+ <line number="46" hits="45" branch="false"/>
3081
+ <line number="59" hits="10" branch="false"/>
3082
+ <line number="77" hits="27" branch="false"/>
3047
3083
  </lines>
3048
3084
  </class>
3049
3085
  <class name="index.js" filename="src/lib/SASQRoute/index.js" line-rate="0" branch-rate="0">
@@ -3054,13 +3090,13 @@
3054
3090
  </class>
3055
3091
  </classes>
3056
3092
  </package>
3057
- <package name="SASQViewComponent" line-rate="0.1052" branch-rate="0">
3093
+ <package name="SASQViewComponent" line-rate="0.7894" branch-rate="0.625">
3058
3094
  <classes>
3059
- <class name="SASQViewComponent.js" filename="src/lib/SASQViewComponent/SASQViewComponent.js" line-rate="0.1052" branch-rate="0">
3095
+ <class name="SASQViewComponent.js" filename="src/lib/SASQViewComponent/SASQViewComponent.js" line-rate="0.7894" branch-rate="0.625">
3060
3096
  <methods>
3061
- <method name="(anonymous_0)" hits="0" signature="()V">
3097
+ <method name="(anonymous_0)" hits="10" signature="()V">
3062
3098
  <lines>
3063
- <line number="9" hits="0"/>
3099
+ <line number="9" hits="10"/>
3064
3100
  </lines>
3065
3101
  </method>
3066
3102
  <method name="(anonymous_1)" hits="0" signature="()V">
@@ -3073,9 +3109,9 @@
3073
3109
  <line number="18" hits="0"/>
3074
3110
  </lines>
3075
3111
  </method>
3076
- <method name="(anonymous_3)" hits="0" signature="()V">
3112
+ <method name="(anonymous_3)" hits="10" signature="()V">
3077
3113
  <lines>
3078
- <line number="20" hits="0"/>
3114
+ <line number="20" hits="10"/>
3079
3115
  </lines>
3080
3116
  </method>
3081
3117
  <method name="(anonymous_4)" hits="0" signature="()V">
@@ -3088,37 +3124,37 @@
3088
3124
  <line number="64" hits="0"/>
3089
3125
  </lines>
3090
3126
  </method>
3091
- <method name="(anonymous_6)" hits="0" signature="()V">
3127
+ <method name="(anonymous_6)" hits="10" signature="()V">
3092
3128
  <lines>
3093
- <line number="70" hits="0"/>
3129
+ <line number="70" hits="10"/>
3094
3130
  </lines>
3095
3131
  </method>
3096
- <method name="(anonymous_7)" hits="0" signature="()V">
3132
+ <method name="(anonymous_7)" hits="2" signature="()V">
3097
3133
  <lines>
3098
- <line number="79" hits="0"/>
3134
+ <line number="79" hits="2"/>
3099
3135
  </lines>
3100
3136
  </method>
3101
3137
  </methods>
3102
3138
  <lines>
3103
- <line number="8" hits="23" branch="false"/>
3104
- <line number="17" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3105
- <line number="18" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3106
- <line number="25" hits="0" branch="false"/>
3107
- <line number="26" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3108
- <line number="27" hits="0" branch="false"/>
3109
- <line number="29" hits="0" branch="false"/>
3110
- <line number="30" hits="0" branch="false"/>
3111
- <line number="32" hits="0" branch="false"/>
3112
- <line number="38" hits="0" branch="false"/>
3113
- <line number="41" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3114
- <line number="43" hits="0" branch="false"/>
3115
- <line number="44" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3139
+ <line number="8" hits="26" branch="false"/>
3140
+ <line number="17" hits="0" branch="true" condition-coverage="100% (1/1)"/>
3141
+ <line number="18" hits="0" branch="true" condition-coverage="100% (1/1)"/>
3142
+ <line number="25" hits="10" branch="false"/>
3143
+ <line number="26" hits="10" branch="true" condition-coverage="50% (1/2)"/>
3144
+ <line number="27" hits="10" branch="false"/>
3145
+ <line number="29" hits="10" branch="false"/>
3146
+ <line number="30" hits="10" branch="false"/>
3147
+ <line number="32" hits="10" branch="false"/>
3148
+ <line number="38" hits="10" branch="false"/>
3149
+ <line number="41" hits="10" branch="true" condition-coverage="50% (1/2)"/>
3150
+ <line number="43" hits="10" branch="false"/>
3151
+ <line number="44" hits="10" branch="true" condition-coverage="0% (0/1)"/>
3116
3152
  <line number="53" hits="0" branch="false"/>
3117
3153
  <line number="65" hits="0" branch="false"/>
3118
- <line number="70" hits="0" branch="false"/>
3119
- <line number="77" hits="0" branch="false"/>
3120
- <line number="79" hits="0" branch="false"/>
3121
- <line number="88" hits="23" branch="false"/>
3154
+ <line number="70" hits="10" branch="false"/>
3155
+ <line number="77" hits="10" branch="false"/>
3156
+ <line number="79" hits="2" branch="false"/>
3157
+ <line number="88" hits="26" branch="false"/>
3122
3158
  </lines>
3123
3159
  </class>
3124
3160
  <class name="index.js" filename="src/lib/SASQViewComponent/index.js" line-rate="0" branch-rate="0">
@@ -3140,12 +3176,12 @@
3140
3176
  </method>
3141
3177
  </methods>
3142
3178
  <lines>
3143
- <line number="8" hits="22" branch="false"/>
3144
- <line number="15" hits="22" branch="false"/>
3179
+ <line number="8" hits="26" branch="false"/>
3180
+ <line number="15" hits="26" branch="false"/>
3145
3181
  <line number="19" hits="0" branch="false"/>
3146
3182
  <line number="22" hits="0" branch="false"/>
3147
3183
  <line number="29" hits="0" branch="false"/>
3148
- <line number="42" hits="22" branch="false"/>
3184
+ <line number="42" hits="26" branch="false"/>
3149
3185
  </lines>
3150
3186
  </class>
3151
3187
  <class name="index.js" filename="src/lib/SearchField/index.js" line-rate="0" branch-rate="0">
@@ -3222,7 +3258,7 @@
3222
3258
  </method>
3223
3259
  </methods>
3224
3260
  <lines>
3225
- <line number="16" hits="23" branch="false"/>
3261
+ <line number="16" hits="26" branch="false"/>
3226
3262
  <line number="20" hits="21" branch="false"/>
3227
3263
  <line number="21" hits="21" branch="true" condition-coverage="100% (2/2)"/>
3228
3264
  <line number="24" hits="21" branch="false"/>
@@ -3252,7 +3288,7 @@
3252
3288
  <line number="76" hits="21" branch="false"/>
3253
3289
  <line number="88" hits="63" branch="false"/>
3254
3290
  <line number="94" hits="7" branch="false"/>
3255
- <line number="104" hits="23" branch="false"/>
3291
+ <line number="104" hits="26" branch="false"/>
3256
3292
  </lines>
3257
3293
  </class>
3258
3294
  <class name="index.js" filename="src/lib/SearchKeyControl/index.js" line-rate="0" branch-rate="0">
@@ -3384,8 +3420,8 @@
3384
3420
  </method>
3385
3421
  </methods>
3386
3422
  <lines>
3387
- <line number="15" hits="23" branch="false"/>
3388
- <line number="37" hits="23" branch="false"/>
3423
+ <line number="15" hits="27" branch="false"/>
3424
+ <line number="37" hits="27" branch="false"/>
3389
3425
  <line number="60" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3390
3426
  <line number="64" hits="0" branch="false"/>
3391
3427
  <line number="65" hits="0" branch="false"/>
@@ -3432,7 +3468,7 @@
3432
3468
  <line number="264" hits="0" branch="false"/>
3433
3469
  <line number="265" hits="0" branch="false"/>
3434
3470
  <line number="266" hits="0" branch="false"/>
3435
- <line number="274" hits="23" branch="false"/>
3471
+ <line number="274" hits="27" branch="false"/>
3436
3472
  </lines>
3437
3473
  </class>
3438
3474
  <class name="index.js" filename="src/lib/Settings/EditableRefdataCategoryList/index.js" line-rate="0" branch-rate="0">
@@ -3529,8 +3565,8 @@
3529
3565
  </method>
3530
3566
  </methods>
3531
3567
  <lines>
3532
- <line number="13" hits="23" branch="false"/>
3533
- <line number="33" hits="23" branch="false"/>
3568
+ <line number="13" hits="27" branch="false"/>
3569
+ <line number="33" hits="27" branch="false"/>
3534
3570
  <line number="60" hits="0" branch="false"/>
3535
3571
  <line number="63" hits="0" branch="false"/>
3536
3572
  <line number="64" hits="0" branch="false"/>
@@ -3572,7 +3608,7 @@
3572
3608
  <line number="245" hits="0" branch="false"/>
3573
3609
  <line number="247" hits="0" branch="false"/>
3574
3610
  <line number="248" hits="0" branch="false"/>
3575
- <line number="256" hits="23" branch="false"/>
3611
+ <line number="256" hits="27" branch="false"/>
3576
3612
  </lines>
3577
3613
  </class>
3578
3614
  <class name="index.js" filename="src/lib/Settings/EditableRefdataList/index.js" line-rate="0" branch-rate="0">
@@ -3614,7 +3650,7 @@
3614
3650
  </method>
3615
3651
  </methods>
3616
3652
  <lines>
3617
- <line number="8" hits="23" branch="false"/>
3653
+ <line number="8" hits="27" branch="false"/>
3618
3654
  <line number="24" hits="0" branch="false"/>
3619
3655
  <line number="25" hits="0" branch="false"/>
3620
3656
  <line number="26" hits="0" branch="false"/>
@@ -3624,7 +3660,7 @@
3624
3660
  <line number="45" hits="0" branch="false"/>
3625
3661
  <line number="46" hits="0" branch="false"/>
3626
3662
  <line number="49" hits="0" branch="false"/>
3627
- <line number="71" hits="23" branch="false"/>
3663
+ <line number="71" hits="27" branch="false"/>
3628
3664
  </lines>
3629
3665
  </class>
3630
3666
  <class name="index.js" filename="src/lib/Settings/EditableSettingsList/index.js" line-rate="0" branch-rate="0">
@@ -3671,7 +3707,7 @@
3671
3707
  </method>
3672
3708
  </methods>
3673
3709
  <lines>
3674
- <line number="8" hits="23" branch="false"/>
3710
+ <line number="8" hits="27" branch="false"/>
3675
3711
  <line number="21" hits="4" branch="false"/>
3676
3712
  <line number="25" hits="4" branch="false"/>
3677
3713
  <line number="28" hits="4" branch="false"/>
@@ -3681,10 +3717,10 @@
3681
3717
  <line number="54" hits="4" branch="true" condition-coverage="50% (2/4)"/>
3682
3718
  <line number="55" hits="4" branch="false"/>
3683
3719
  <line number="58" hits="0" branch="false"/>
3684
- <line number="76" hits="23" branch="false"/>
3720
+ <line number="76" hits="27" branch="false"/>
3685
3721
  <line number="86" hits="3" branch="false"/>
3686
3722
  <line number="88" hits="4" branch="false"/>
3687
- <line number="107" hits="23" branch="false"/>
3723
+ <line number="107" hits="27" branch="false"/>
3688
3724
  </lines>
3689
3725
  </class>
3690
3726
  <class name="index.js" filename="src/lib/Settings/EditableSettingsList/EditableSettingsListFieldArray/index.js" line-rate="0" branch-rate="0">
@@ -3796,7 +3832,7 @@
3796
3832
  </method>
3797
3833
  </methods>
3798
3834
  <lines>
3799
- <line number="20" hits="22" branch="false"/>
3835
+ <line number="20" hits="26" branch="false"/>
3800
3836
  <line number="35" hits="6" branch="false"/>
3801
3837
  <line number="37" hits="6" branch="false"/>
3802
3838
  <line number="38" hits="6" branch="false"/>
@@ -3837,7 +3873,7 @@
3837
3873
  <line number="144" hits="6" branch="true" condition-coverage="50% (1/2)"/>
3838
3874
  <line number="152" hits="6" branch="false"/>
3839
3875
  <line number="161" hits="6" branch="false"/>
3840
- <line number="183" hits="22" branch="false"/>
3876
+ <line number="183" hits="26" branch="false"/>
3841
3877
  </lines>
3842
3878
  </class>
3843
3879
  <class name="index.js" filename="src/lib/Settings/EditableSettingsList/SettingField/index.js" line-rate="0" branch-rate="0">
@@ -3864,11 +3900,11 @@
3864
3900
  </method>
3865
3901
  </methods>
3866
3902
  <lines>
3867
- <line number="8" hits="21" branch="false"/>
3903
+ <line number="8" hits="25" branch="false"/>
3868
3904
  <line number="16" hits="16" branch="false"/>
3869
3905
  <line number="18" hits="16" branch="false"/>
3870
3906
  <line number="23" hits="16" branch="false"/>
3871
- <line number="35" hits="21" branch="false"/>
3907
+ <line number="35" hits="25" branch="false"/>
3872
3908
  </lines>
3873
3909
  </class>
3874
3910
  <class name="index.js" filename="src/lib/Settings/EditableSettingsList/SettingField/EditSettingValue/index.js" line-rate="0" branch-rate="0">
@@ -3905,7 +3941,7 @@
3905
3941
  </method>
3906
3942
  </methods>
3907
3943
  <lines>
3908
- <line number="5" hits="21" branch="false"/>
3944
+ <line number="5" hits="25" branch="false"/>
3909
3945
  <line number="13" hits="12" branch="false"/>
3910
3946
  <line number="15" hits="12" branch="false"/>
3911
3947
  <line number="17" hits="12" branch="false"/>
@@ -3931,7 +3967,7 @@
3931
3967
  <line number="59" hits="2" branch="true" condition-coverage="100% (2/2)"/>
3932
3968
  <line number="60" hits="1" branch="false"/>
3933
3969
  <line number="62" hits="1" branch="false"/>
3934
- <line number="67" hits="21" branch="false"/>
3970
+ <line number="67" hits="25" branch="false"/>
3935
3971
  </lines>
3936
3972
  </class>
3937
3973
  <class name="index.js" filename="src/lib/Settings/EditableSettingsList/SettingField/RenderSettingValue/index.js" line-rate="0" branch-rate="0">
@@ -3998,8 +4034,8 @@
3998
4034
  </method>
3999
4035
  </methods>
4000
4036
  <lines>
4001
- <line number="13" hits="23" branch="false"/>
4002
- <line number="32" hits="23" branch="false"/>
4037
+ <line number="13" hits="27" branch="false"/>
4038
+ <line number="32" hits="27" branch="false"/>
4003
4039
  <line number="52" hits="0" branch="false"/>
4004
4040
  <line number="53" hits="0" branch="false"/>
4005
4041
  <line number="55" hits="0" branch="false"/>
@@ -4018,7 +4054,7 @@
4018
4054
  <line number="126" hits="0" branch="false"/>
4019
4055
  <line number="160" hits="0" branch="false"/>
4020
4056
  <line number="161" hits="0" branch="false"/>
4021
- <line number="174" hits="23" branch="false"/>
4057
+ <line number="174" hits="27" branch="false"/>
4022
4058
  </lines>
4023
4059
  </class>
4024
4060
  <class name="index.js" filename="src/lib/Settings/RefdataCategoriesSettings/index.js" line-rate="0" branch-rate="0">
@@ -4040,11 +4076,11 @@
4040
4076
  </method>
4041
4077
  </methods>
4042
4078
  <lines>
4043
- <line number="9" hits="23" branch="false"/>
4079
+ <line number="9" hits="27" branch="false"/>
4044
4080
  <line number="17" hits="0" branch="false"/>
4045
4081
  <line number="19" hits="0" branch="false"/>
4046
4082
  <line number="24" hits="0" branch="false"/>
4047
- <line number="40" hits="23" branch="false"/>
4083
+ <line number="40" hits="27" branch="false"/>
4048
4084
  </lines>
4049
4085
  </class>
4050
4086
  <class name="index.js" filename="src/lib/Settings/SettingPage/index.js" line-rate="0" branch-rate="0">
@@ -4066,10 +4102,10 @@
4066
4102
  </method>
4067
4103
  </methods>
4068
4104
  <lines>
4069
- <line number="7" hits="23" branch="false"/>
4105
+ <line number="7" hits="27" branch="false"/>
4070
4106
  <line number="13" hits="0" branch="false"/>
4071
4107
  <line number="15" hits="0" branch="false"/>
4072
- <line number="31" hits="23" branch="false"/>
4108
+ <line number="31" hits="27" branch="false"/>
4073
4109
  </lines>
4074
4110
  </class>
4075
4111
  <class name="index.js" filename="src/lib/Settings/SettingPage/SettingPagePane/index.js" line-rate="0" branch-rate="0">
@@ -4080,75 +4116,200 @@
4080
4116
  </class>
4081
4117
  </classes>
4082
4118
  </package>
4083
- <package name="Settings.SettingsFormContainer" line-rate="0.1176" branch-rate="0">
4119
+ <package name="Settings.Settings" line-rate="0.0512" branch-rate="0">
4084
4120
  <classes>
4085
- <class name="SettingsFormContainer.js" filename="src/lib/Settings/SettingsFormContainer/SettingsFormContainer.js" line-rate="0.1176" branch-rate="0">
4121
+ <class name="Settings.js" filename="src/lib/Settings/Settings/Settings.js" line-rate="0.0512" branch-rate="0">
4086
4122
  <methods>
4087
4123
  <method name="(anonymous_0)" hits="0" signature="()V">
4088
4124
  <lines>
4089
- <line number="12" hits="0"/>
4125
+ <line number="18" hits="0"/>
4090
4126
  </lines>
4091
4127
  </method>
4092
4128
  <method name="(anonymous_1)" hits="0" signature="()V">
4093
4129
  <lines>
4094
- <line number="53" hits="0"/>
4130
+ <line number="34" hits="0"/>
4095
4131
  </lines>
4096
4132
  </method>
4097
4133
  <method name="(anonymous_2)" hits="0" signature="()V">
4098
4134
  <lines>
4099
- <line number="62" hits="0"/>
4135
+ <line number="42" hits="0"/>
4100
4136
  </lines>
4101
4137
  </method>
4102
4138
  <method name="(anonymous_3)" hits="0" signature="()V">
4103
4139
  <lines>
4104
- <line number="79" hits="0"/>
4140
+ <line number="43" hits="0"/>
4105
4141
  </lines>
4106
4142
  </method>
4107
- </methods>
4108
- <lines>
4109
- <line number="12" hits="23" branch="false"/>
4110
- <line number="24" hits="0" branch="false"/>
4111
- <line number="26" hits="0" branch="false"/>
4112
- <line number="27" hits="0" branch="false"/>
4113
- <line number="41" hits="0" branch="false"/>
4114
- <line number="47" hits="0" branch="false"/>
4115
- <line number="53" hits="0" branch="false"/>
4116
- <line number="54" hits="0" branch="false"/>
4117
- <line number="62" hits="0" branch="false"/>
4118
- <line number="63" hits="0" branch="false"/>
4119
- <line number="79" hits="0" branch="false"/>
4120
- <line number="80" hits="0" branch="false"/>
4121
- <line number="81" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4122
- <line number="82" hits="0" branch="false"/>
4123
- <line number="85" hits="0" branch="false"/>
4124
- <line number="88" hits="0" branch="false"/>
4125
- <line number="99" hits="23" branch="false"/>
4126
- </lines>
4127
- </class>
4128
- <class name="index.js" filename="src/lib/Settings/SettingsFormContainer/index.js" line-rate="0" branch-rate="0">
4129
- <methods>
4130
- </methods>
4131
- <lines>
4132
- </lines>
4133
- </class>
4134
- </classes>
4135
- </package>
4136
- <package name="Settings.StaticSettingsField" line-rate="0.6666" branch-rate="1">
4137
- <classes>
4138
- <class name="StaticSettingsField.js" filename="src/lib/Settings/StaticSettingsField/StaticSettingsField.js" line-rate="0.6666" branch-rate="1">
4139
- <methods>
4140
- <method name="(anonymous_0)" hits="0" signature="()V">
4143
+ <method name="(anonymous_4)" hits="0" signature="()V">
4141
4144
  <lines>
4142
- <line number="9" hits="0"/>
4145
+ <line number="45" hits="0"/>
4143
4146
  </lines>
4144
4147
  </method>
4145
- </methods>
4146
- <lines>
4147
- <line number="9" hits="23" branch="false"/>
4148
- <line number="10" hits="0" branch="false"/>
4149
- <line number="18" hits="23" branch="false"/>
4150
- </lines>
4151
- </class>
4148
+ <method name="(anonymous_5)" hits="0" signature="()V">
4149
+ <lines>
4150
+ <line number="46" hits="0"/>
4151
+ </lines>
4152
+ </method>
4153
+ <method name="(anonymous_6)" hits="0" signature="()V">
4154
+ <lines>
4155
+ <line number="53" hits="0"/>
4156
+ </lines>
4157
+ </method>
4158
+ <method name="(anonymous_7)" hits="0" signature="()V">
4159
+ <lines>
4160
+ <line number="58" hits="0"/>
4161
+ </lines>
4162
+ </method>
4163
+ <method name="(anonymous_8)" hits="0" signature="()V">
4164
+ <lines>
4165
+ <line number="61" hits="0"/>
4166
+ </lines>
4167
+ </method>
4168
+ <method name="(anonymous_9)" hits="0" signature="()V">
4169
+ <lines>
4170
+ <line number="89" hits="0"/>
4171
+ </lines>
4172
+ </method>
4173
+ <method name="(anonymous_10)" hits="0" signature="()V">
4174
+ <lines>
4175
+ <line number="101" hits="0"/>
4176
+ </lines>
4177
+ </method>
4178
+ <method name="(anonymous_11)" hits="0" signature="()V">
4179
+ <lines>
4180
+ <line number="101" hits="0"/>
4181
+ </lines>
4182
+ </method>
4183
+ <method name="(anonymous_12)" hits="0" signature="()V">
4184
+ <lines>
4185
+ <line number="106" hits="0"/>
4186
+ </lines>
4187
+ </method>
4188
+ <method name="(anonymous_13)" hits="0" signature="()V">
4189
+ <lines>
4190
+ <line number="120" hits="0"/>
4191
+ </lines>
4192
+ </method>
4193
+ </methods>
4194
+ <lines>
4195
+ <line number="18" hits="27" branch="false"/>
4196
+ <line number="30" hits="0" branch="false"/>
4197
+ <line number="31" hits="0" branch="false"/>
4198
+ <line number="32" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4199
+ <line number="34" hits="0" branch="false"/>
4200
+ <line number="35" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4201
+ <line number="36" hits="0" branch="false"/>
4202
+ <line number="39" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4203
+ <line number="42" hits="0" branch="false"/>
4204
+ <line number="43" hits="0" branch="false"/>
4205
+ <line number="44" hits="0" branch="false"/>
4206
+ <line number="45" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4207
+ <line number="46" hits="0" branch="false"/>
4208
+ <line number="53" hits="0" branch="false"/>
4209
+ <line number="54" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4210
+ <line number="58" hits="0" branch="false"/>
4211
+ <line number="59" hits="0" branch="false"/>
4212
+ <line number="61" hits="0" branch="false"/>
4213
+ <line number="62" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4214
+ <line number="63" hits="0" branch="false"/>
4215
+ <line number="64" hits="0" branch="false"/>
4216
+ <line number="65" hits="0" branch="false"/>
4217
+ <line number="72" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4218
+ <line number="74" hits="0" branch="false"/>
4219
+ <line number="75" hits="0" branch="false"/>
4220
+ <line number="76" hits="0" branch="false"/>
4221
+ <line number="78" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4222
+ <line number="80" hits="0" branch="false"/>
4223
+ <line number="89" hits="0" branch="false"/>
4224
+ <line number="91" hits="0" branch="false"/>
4225
+ <line number="101" hits="0" branch="false"/>
4226
+ <line number="102" hits="0" branch="false"/>
4227
+ <line number="103" hits="0" branch="false"/>
4228
+ <line number="106" hits="0" branch="false"/>
4229
+ <line number="110" hits="0" branch="false"/>
4230
+ <line number="125" hits="0" branch="false"/>
4231
+ <line number="126" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4232
+ <line number="128" hits="0" branch="false"/>
4233
+ <line number="147" hits="27" branch="false"/>
4234
+ </lines>
4235
+ </class>
4236
+ <class name="index.js" filename="src/lib/Settings/Settings/index.js" line-rate="0" branch-rate="0">
4237
+ <methods>
4238
+ </methods>
4239
+ <lines>
4240
+ </lines>
4241
+ </class>
4242
+ </classes>
4243
+ </package>
4244
+ <package name="Settings.SettingsFormContainer" line-rate="0.1176" branch-rate="0">
4245
+ <classes>
4246
+ <class name="SettingsFormContainer.js" filename="src/lib/Settings/SettingsFormContainer/SettingsFormContainer.js" line-rate="0.1176" branch-rate="0">
4247
+ <methods>
4248
+ <method name="(anonymous_0)" hits="0" signature="()V">
4249
+ <lines>
4250
+ <line number="12" hits="0"/>
4251
+ </lines>
4252
+ </method>
4253
+ <method name="(anonymous_1)" hits="0" signature="()V">
4254
+ <lines>
4255
+ <line number="53" hits="0"/>
4256
+ </lines>
4257
+ </method>
4258
+ <method name="(anonymous_2)" hits="0" signature="()V">
4259
+ <lines>
4260
+ <line number="62" hits="0"/>
4261
+ </lines>
4262
+ </method>
4263
+ <method name="(anonymous_3)" hits="0" signature="()V">
4264
+ <lines>
4265
+ <line number="79" hits="0"/>
4266
+ </lines>
4267
+ </method>
4268
+ </methods>
4269
+ <lines>
4270
+ <line number="12" hits="27" branch="false"/>
4271
+ <line number="24" hits="0" branch="false"/>
4272
+ <line number="26" hits="0" branch="false"/>
4273
+ <line number="27" hits="0" branch="false"/>
4274
+ <line number="41" hits="0" branch="false"/>
4275
+ <line number="47" hits="0" branch="false"/>
4276
+ <line number="53" hits="0" branch="false"/>
4277
+ <line number="54" hits="0" branch="false"/>
4278
+ <line number="62" hits="0" branch="false"/>
4279
+ <line number="63" hits="0" branch="false"/>
4280
+ <line number="79" hits="0" branch="false"/>
4281
+ <line number="80" hits="0" branch="false"/>
4282
+ <line number="81" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4283
+ <line number="82" hits="0" branch="false"/>
4284
+ <line number="85" hits="0" branch="false"/>
4285
+ <line number="88" hits="0" branch="false"/>
4286
+ <line number="99" hits="27" branch="false"/>
4287
+ </lines>
4288
+ </class>
4289
+ <class name="index.js" filename="src/lib/Settings/SettingsFormContainer/index.js" line-rate="0" branch-rate="0">
4290
+ <methods>
4291
+ </methods>
4292
+ <lines>
4293
+ </lines>
4294
+ </class>
4295
+ </classes>
4296
+ </package>
4297
+ <package name="Settings.StaticSettingsField" line-rate="0.6666" branch-rate="1">
4298
+ <classes>
4299
+ <class name="StaticSettingsField.js" filename="src/lib/Settings/StaticSettingsField/StaticSettingsField.js" line-rate="0.6666" branch-rate="1">
4300
+ <methods>
4301
+ <method name="(anonymous_0)" hits="0" signature="()V">
4302
+ <lines>
4303
+ <line number="9" hits="0"/>
4304
+ </lines>
4305
+ </method>
4306
+ </methods>
4307
+ <lines>
4308
+ <line number="9" hits="27" branch="false"/>
4309
+ <line number="10" hits="0" branch="false"/>
4310
+ <line number="18" hits="27" branch="false"/>
4311
+ </lines>
4312
+ </class>
4152
4313
  <class name="index.js" filename="src/lib/Settings/StaticSettingsField/index.js" line-rate="0" branch-rate="0">
4153
4314
  <methods>
4154
4315
  </methods>
@@ -4183,7 +4344,7 @@
4183
4344
  </method>
4184
4345
  </methods>
4185
4346
  <lines>
4186
- <line number="6" hits="23" branch="false"/>
4347
+ <line number="6" hits="27" branch="false"/>
4187
4348
  <line number="13" hits="34" branch="false"/>
4188
4349
  <line number="14" hits="16" branch="false"/>
4189
4350
  <line number="16" hits="16" branch="true" condition-coverage="75% (3/4)"/>
@@ -4228,16 +4389,16 @@
4228
4389
  </method>
4229
4390
  </methods>
4230
4391
  <lines>
4231
- <line number="1" hits="23" branch="false"/>
4232
- <line number="2" hits="23" branch="false"/>
4392
+ <line number="1" hits="27" branch="false"/>
4393
+ <line number="2" hits="27" branch="false"/>
4233
4394
  <line number="3" hits="0" branch="false"/>
4234
4395
  <line number="4" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4235
4396
  <line number="5" hits="0" branch="false"/>
4236
4397
  <line number="8" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4237
4398
  <line number="9" hits="0" branch="false"/>
4238
4399
  <line number="12" hits="0" branch="false"/>
4239
- <line number="15" hits="23" branch="false"/>
4240
- <line number="16" hits="23" branch="false"/>
4400
+ <line number="15" hits="27" branch="false"/>
4401
+ <line number="16" hits="27" branch="false"/>
4241
4402
  </lines>
4242
4403
  </class>
4243
4404
  </classes>
@@ -4248,7 +4409,7 @@
4248
4409
  <methods>
4249
4410
  </methods>
4250
4411
  <lines>
4251
- <line number="3" hits="23" branch="false"/>
4412
+ <line number="3" hits="27" branch="false"/>
4252
4413
  </lines>
4253
4414
  </class>
4254
4415
  <class name="index.js" filename="src/lib/Settings/contexts/index.js" line-rate="0" branch-rate="0">
@@ -4331,7 +4492,7 @@
4331
4492
  </method>
4332
4493
  </methods>
4333
4494
  <lines>
4334
- <line number="11" hits="23" branch="false"/>
4495
+ <line number="11" hits="27" branch="false"/>
4335
4496
  <line number="14" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4336
4497
  <line number="15" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4337
4498
  <line number="16" hits="0" branch="true" condition-coverage="0% (0/1)"/>
@@ -4394,7 +4555,7 @@
4394
4555
  </method>
4395
4556
  </methods>
4396
4557
  <lines>
4397
- <line number="8" hits="23" branch="true" condition-coverage="0% (0/1)"/>
4558
+ <line number="8" hits="27" branch="true" condition-coverage="0% (0/1)"/>
4398
4559
  <line number="13" hits="0" branch="false"/>
4399
4560
  <line number="14" hits="0" branch="false"/>
4400
4561
  <line number="16" hits="0" branch="false"/>
@@ -4433,7 +4594,7 @@
4433
4594
  </method>
4434
4595
  </methods>
4435
4596
  <lines>
4436
- <line number="3" hits="23" branch="false"/>
4597
+ <line number="3" hits="27" branch="false"/>
4437
4598
  <line number="6" hits="0" branch="false"/>
4438
4599
  <line number="7" hits="0" branch="false"/>
4439
4600
  <line number="8" hits="0" branch="false"/>
@@ -4472,7 +4633,7 @@
4472
4633
  </method>
4473
4634
  </methods>
4474
4635
  <lines>
4475
- <line number="5" hits="23" branch="false"/>
4636
+ <line number="5" hits="27" branch="false"/>
4476
4637
  <line number="13" hits="0" branch="false"/>
4477
4638
  <line number="15" hits="0" branch="false"/>
4478
4639
  <line number="20" hits="0" branch="false"/>
@@ -4538,7 +4699,7 @@
4538
4699
  </method>
4539
4700
  </methods>
4540
4701
  <lines>
4541
- <line number="7" hits="23" branch="false"/>
4702
+ <line number="7" hits="27" branch="false"/>
4542
4703
  <line number="10" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4543
4704
  <line number="11" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4544
4705
  <line number="13" hits="0" branch="false"/>
@@ -4555,7 +4716,7 @@
4555
4716
  </class>
4556
4717
  </classes>
4557
4718
  </package>
4558
- <package name="Settings.hooks.useSettings" line-rate="0.0144" branch-rate="0">
4719
+ <package name="Settings.hooks.useSettings" line-rate="0.014199999999999999" branch-rate="0">
4559
4720
  <classes>
4560
4721
  <class name="index.js" filename="src/lib/Settings/hooks/useSettings/index.js" line-rate="0" branch-rate="0">
4561
4722
  <methods>
@@ -4563,194 +4724,200 @@
4563
4724
  <lines>
4564
4725
  </lines>
4565
4726
  </class>
4566
- <class name="useSettings.js" filename="src/lib/Settings/hooks/useSettings/useSettings.js" line-rate="0.0144" branch-rate="0">
4727
+ <class name="useSettings.js" filename="src/lib/Settings/hooks/useSettings/useSettings.js" line-rate="0.014199999999999999" branch-rate="0">
4567
4728
  <methods>
4568
4729
  <method name="(anonymous_0)" hits="0" signature="()V">
4569
4730
  <lines>
4570
- <line number="16" hits="0"/>
4731
+ <line number="19" hits="0"/>
4571
4732
  </lines>
4572
4733
  </method>
4573
4734
  <method name="(anonymous_1)" hits="0" signature="()V">
4574
4735
  <lines>
4575
- <line number="43" hits="0"/>
4736
+ <line number="46" hits="0"/>
4576
4737
  </lines>
4577
4738
  </method>
4578
4739
  <method name="(anonymous_2)" hits="0" signature="()V">
4579
4740
  <lines>
4580
- <line number="45" hits="0"/>
4741
+ <line number="48" hits="0"/>
4581
4742
  </lines>
4582
4743
  </method>
4583
4744
  <method name="(anonymous_3)" hits="0" signature="()V">
4584
4745
  <lines>
4585
- <line number="48" hits="0"/>
4746
+ <line number="51" hits="0"/>
4586
4747
  </lines>
4587
4748
  </method>
4588
4749
  <method name="(anonymous_4)" hits="0" signature="()V">
4589
4750
  <lines>
4590
- <line number="58" hits="0"/>
4751
+ <line number="61" hits="0"/>
4591
4752
  </lines>
4592
4753
  </method>
4593
4754
  <method name="(anonymous_5)" hits="0" signature="()V">
4594
4755
  <lines>
4595
- <line number="64" hits="0"/>
4756
+ <line number="67" hits="0"/>
4596
4757
  </lines>
4597
4758
  </method>
4598
4759
  <method name="(anonymous_6)" hits="0" signature="()V">
4599
4760
  <lines>
4600
- <line number="84" hits="0"/>
4761
+ <line number="87" hits="0"/>
4601
4762
  </lines>
4602
4763
  </method>
4603
4764
  <method name="(anonymous_7)" hits="0" signature="()V">
4604
4765
  <lines>
4605
- <line number="84" hits="0"/>
4766
+ <line number="87" hits="0"/>
4606
4767
  </lines>
4607
4768
  </method>
4608
4769
  <method name="(anonymous_8)" hits="0" signature="()V">
4609
4770
  <lines>
4610
- <line number="101" hits="0"/>
4771
+ <line number="104" hits="0"/>
4611
4772
  </lines>
4612
4773
  </method>
4613
4774
  <method name="(anonymous_9)" hits="0" signature="()V">
4614
4775
  <lines>
4615
- <line number="102" hits="0"/>
4776
+ <line number="105" hits="0"/>
4616
4777
  </lines>
4617
4778
  </method>
4618
4779
  <method name="(anonymous_10)" hits="0" signature="()V">
4619
4780
  <lines>
4620
- <line number="103" hits="0"/>
4781
+ <line number="106" hits="0"/>
4621
4782
  </lines>
4622
4783
  </method>
4623
4784
  <method name="(anonymous_11)" hits="0" signature="()V">
4624
4785
  <lines>
4625
- <line number="114" hits="0"/>
4786
+ <line number="117" hits="0"/>
4626
4787
  </lines>
4627
4788
  </method>
4628
4789
  <method name="(anonymous_12)" hits="0" signature="()V">
4629
4790
  <lines>
4630
- <line number="141" hits="0"/>
4791
+ <line number="144" hits="0"/>
4631
4792
  </lines>
4632
4793
  </method>
4633
4794
  <method name="(anonymous_13)" hits="0" signature="()V">
4634
4795
  <lines>
4635
- <line number="145" hits="0"/>
4796
+ <line number="148" hits="0"/>
4636
4797
  </lines>
4637
4798
  </method>
4638
4799
  <method name="(anonymous_14)" hits="0" signature="()V">
4639
4800
  <lines>
4640
- <line number="152" hits="0"/>
4801
+ <line number="155" hits="0"/>
4641
4802
  </lines>
4642
4803
  </method>
4643
4804
  <method name="(anonymous_15)" hits="0" signature="()V">
4644
4805
  <lines>
4645
- <line number="153" hits="0"/>
4806
+ <line number="156" hits="0"/>
4646
4807
  </lines>
4647
4808
  </method>
4648
4809
  <method name="(anonymous_16)" hits="0" signature="()V">
4649
4810
  <lines>
4650
- <line number="154" hits="0"/>
4811
+ <line number="157" hits="0"/>
4651
4812
  </lines>
4652
4813
  </method>
4653
4814
  <method name="(anonymous_17)" hits="0" signature="()V">
4654
4815
  <lines>
4655
- <line number="181" hits="0"/>
4816
+ <line number="160" hits="0"/>
4656
4817
  </lines>
4657
4818
  </method>
4658
4819
  <method name="(anonymous_18)" hits="0" signature="()V">
4659
4820
  <lines>
4660
- <line number="184" hits="0"/>
4821
+ <line number="187" hits="0"/>
4661
4822
  </lines>
4662
4823
  </method>
4663
4824
  <method name="(anonymous_19)" hits="0" signature="()V">
4664
4825
  <lines>
4665
- <line number="204" hits="0"/>
4826
+ <line number="190" hits="0"/>
4666
4827
  </lines>
4667
4828
  </method>
4668
4829
  <method name="(anonymous_20)" hits="0" signature="()V">
4669
4830
  <lines>
4670
- <line number="213" hits="0"/>
4831
+ <line number="210" hits="0"/>
4671
4832
  </lines>
4672
4833
  </method>
4673
4834
  <method name="(anonymous_21)" hits="0" signature="()V">
4674
4835
  <lines>
4675
- <line number="220" hits="0"/>
4836
+ <line number="219" hits="0"/>
4676
4837
  </lines>
4677
4838
  </method>
4678
4839
  <method name="(anonymous_22)" hits="0" signature="()V">
4679
4840
  <lines>
4680
- <line number="240" hits="0"/>
4841
+ <line number="226" hits="0"/>
4842
+ </lines>
4843
+ </method>
4844
+ <method name="(anonymous_23)" hits="0" signature="()V">
4845
+ <lines>
4846
+ <line number="246" hits="0"/>
4681
4847
  </lines>
4682
4848
  </method>
4683
4849
  </methods>
4684
4850
  <lines>
4685
- <line number="16" hits="23" branch="true" condition-coverage="0% (0/1)"/>
4686
- <line number="35" hits="0" branch="false"/>
4687
- <line number="37" hits="0" branch="false"/>
4851
+ <line number="19" hits="27" branch="true" condition-coverage="0% (0/1)"/>
4688
4852
  <line number="38" hits="0" branch="false"/>
4689
- <line number="39" hits="0" branch="false"/>
4690
- <line number="43" hits="0" branch="false"/>
4691
- <line number="44" hits="0" branch="false"/>
4692
- <line number="45" hits="0" branch="false"/>
4693
- <line number="46" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4853
+ <line number="40" hits="0" branch="false"/>
4854
+ <line number="41" hits="0" branch="false"/>
4855
+ <line number="42" hits="0" branch="false"/>
4856
+ <line number="46" hits="0" branch="false"/>
4694
4857
  <line number="47" hits="0" branch="false"/>
4695
4858
  <line number="48" hits="0" branch="false"/>
4696
- <line number="56" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4697
- <line number="57" hits="0" branch="false"/>
4698
- <line number="58" hits="0" branch="false"/>
4859
+ <line number="49" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4860
+ <line number="50" hits="0" branch="false"/>
4861
+ <line number="51" hits="0" branch="false"/>
4862
+ <line number="59" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4699
4863
  <line number="60" hits="0" branch="false"/>
4700
- <line number="63" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4701
- <line number="64" hits="0" branch="false"/>
4702
- <line number="65" hits="0" branch="false"/>
4864
+ <line number="61" hits="0" branch="false"/>
4865
+ <line number="63" hits="0" branch="false"/>
4866
+ <line number="66" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4703
4867
  <line number="67" hits="0" branch="false"/>
4704
- <line number="74" hits="0" branch="false"/>
4705
- <line number="75" hits="0" branch="false"/>
4706
- <line number="81" hits="0" branch="false"/>
4707
- <line number="84" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4708
- <line number="85" hits="0" branch="false"/>
4709
- <line number="86" hits="0" branch="true" condition-coverage="0% (0/6)"/>
4710
- <line number="87" hits="0" branch="false"/>
4868
+ <line number="68" hits="0" branch="false"/>
4869
+ <line number="70" hits="0" branch="false"/>
4870
+ <line number="77" hits="0" branch="false"/>
4871
+ <line number="78" hits="0" branch="false"/>
4872
+ <line number="84" hits="0" branch="false"/>
4873
+ <line number="87" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4874
+ <line number="88" hits="0" branch="false"/>
4875
+ <line number="89" hits="0" branch="true" condition-coverage="0% (0/6)"/>
4711
4876
  <line number="90" hits="0" branch="false"/>
4712
- <line number="97" hits="0" branch="false"/>
4713
- <line number="99" hits="0" branch="false"/>
4714
- <line number="101" hits="0" branch="false"/>
4877
+ <line number="93" hits="0" branch="false"/>
4878
+ <line number="100" hits="0" branch="false"/>
4715
4879
  <line number="102" hits="0" branch="false"/>
4716
- <line number="103" hits="0" branch="false"/>
4717
- <line number="104" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4718
- <line number="105" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4719
- <line number="106" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4720
- <line number="107" hits="0" branch="false"/>
4721
- <line number="115" hits="0" branch="false"/>
4722
- <line number="135" hits="0" branch="false"/>
4723
- <line number="141" hits="0" branch="false"/>
4724
- <line number="143" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4725
- <line number="145" hits="0" branch="false"/>
4880
+ <line number="104" hits="0" branch="false"/>
4881
+ <line number="105" hits="0" branch="false"/>
4882
+ <line number="106" hits="0" branch="false"/>
4883
+ <line number="107" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4884
+ <line number="108" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4885
+ <line number="109" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4886
+ <line number="110" hits="0" branch="false"/>
4887
+ <line number="118" hits="0" branch="false"/>
4888
+ <line number="138" hits="0" branch="false"/>
4889
+ <line number="144" hits="0" branch="false"/>
4890
+ <line number="146" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4726
4891
  <line number="148" hits="0" branch="false"/>
4727
- <line number="152" hits="0" branch="false"/>
4728
- <line number="153" hits="0" branch="false"/>
4729
- <line number="154" hits="0" branch="false"/>
4892
+ <line number="151" hits="0" branch="false"/>
4730
4893
  <line number="155" hits="0" branch="false"/>
4731
4894
  <line number="156" hits="0" branch="false"/>
4732
- <line number="170" hits="0" branch="false"/>
4733
- <line number="177" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4734
- <line number="178" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4735
- <line number="179" hits="0" branch="false"/>
4736
- <line number="181" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4737
- <line number="182" hits="0" branch="false"/>
4895
+ <line number="157" hits="0" branch="false"/>
4896
+ <line number="158" hits="0" branch="false"/>
4897
+ <line number="160" hits="0" branch="false"/>
4898
+ <line number="167" hits="0" branch="false"/>
4899
+ <line number="176" hits="0" branch="false"/>
4900
+ <line number="183" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4901
+ <line number="184" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4738
4902
  <line number="185" hits="0" branch="false"/>
4739
- <line number="192" hits="0" branch="false"/>
4740
- <line number="200" hits="0" branch="false"/>
4741
- <line number="204" hits="0" branch="false"/>
4742
- <line number="205" hits="0" branch="false"/>
4743
- <line number="206" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4744
- <line number="207" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4903
+ <line number="187" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4904
+ <line number="188" hits="0" branch="false"/>
4905
+ <line number="191" hits="0" branch="false"/>
4906
+ <line number="198" hits="0" branch="false"/>
4907
+ <line number="206" hits="0" branch="false"/>
4745
4908
  <line number="210" hits="0" branch="false"/>
4746
- <line number="213" hits="0" branch="false"/>
4747
- <line number="214" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4748
- <line number="215" hits="0" branch="false"/>
4749
- <line number="217" hits="0" branch="false"/>
4750
- <line number="220" hits="0" branch="false"/>
4909
+ <line number="211" hits="0" branch="false"/>
4910
+ <line number="212" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4911
+ <line number="213" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4912
+ <line number="216" hits="0" branch="false"/>
4913
+ <line number="219" hits="0" branch="false"/>
4914
+ <line number="220" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4751
4915
  <line number="221" hits="0" branch="false"/>
4752
- <line number="234" hits="0" branch="false"/>
4753
- <line number="240" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4916
+ <line number="223" hits="0" branch="false"/>
4917
+ <line number="226" hits="0" branch="false"/>
4918
+ <line number="227" hits="0" branch="false"/>
4919
+ <line number="240" hits="0" branch="false"/>
4920
+ <line number="246" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4754
4921
  </lines>
4755
4922
  </class>
4756
4923
  </classes>
@@ -4791,7 +4958,7 @@
4791
4958
  </method>
4792
4959
  </methods>
4793
4960
  <lines>
4794
- <line number="16" hits="23" branch="false"/>
4961
+ <line number="16" hits="27" branch="false"/>
4795
4962
  <line number="24" hits="9" branch="false"/>
4796
4963
  <line number="26" hits="9" branch="false"/>
4797
4964
  <line number="27" hits="9" branch="false"/>
@@ -4807,7 +4974,7 @@
4807
4974
  <line number="100" hits="0" branch="false"/>
4808
4975
  <line number="105" hits="9" branch="true" condition-coverage="100% (2/2)"/>
4809
4976
  <line number="106" hits="9" branch="false"/>
4810
- <line number="136" hits="23" branch="false"/>
4977
+ <line number="136" hits="27" branch="false"/>
4811
4978
  </lines>
4812
4979
  </class>
4813
4980
  <class name="index.js" filename="src/lib/Tags/index.js" line-rate="0" branch-rate="0">
@@ -4820,10 +4987,10 @@
4820
4987
  <methods>
4821
4988
  </methods>
4822
4989
  <lines>
4823
- <line number="1" hits="23" branch="false"/>
4824
- <line number="3" hits="23" branch="false"/>
4825
- <line number="4" hits="23" branch="false"/>
4826
- <line number="9" hits="23" branch="false"/>
4990
+ <line number="1" hits="27" branch="false"/>
4991
+ <line number="3" hits="27" branch="false"/>
4992
+ <line number="4" hits="27" branch="false"/>
4993
+ <line number="9" hits="27" branch="false"/>
4827
4994
  </lines>
4828
4995
  </class>
4829
4996
  </classes>
@@ -4850,7 +5017,7 @@
4850
5017
  </method>
4851
5018
  </methods>
4852
5019
  <lines>
4853
- <line number="5" hits="23" branch="false"/>
5020
+ <line number="5" hits="27" branch="false"/>
4854
5021
  <line number="6" hits="9" branch="false"/>
4855
5022
  <line number="7" hits="9" branch="true" condition-coverage="50% (1/2)"/>
4856
5023
  <line number="9" hits="9" branch="false"/>
@@ -4871,13 +5038,13 @@
4871
5038
  </method>
4872
5039
  </methods>
4873
5040
  <lines>
4874
- <line number="8" hits="23" branch="false"/>
4875
- <line number="11" hits="23" branch="false"/>
4876
- <line number="14" hits="23" branch="false"/>
4877
- <line number="16" hits="23" branch="false"/>
4878
- <line number="22" hits="23" branch="false"/>
4879
- <line number="29" hits="23" branch="false"/>
4880
- <line number="42" hits="23" branch="true" condition-coverage="0% (0/2)"/>
5041
+ <line number="8" hits="27" branch="false"/>
5042
+ <line number="11" hits="27" branch="false"/>
5043
+ <line number="14" hits="27" branch="false"/>
5044
+ <line number="16" hits="27" branch="false"/>
5045
+ <line number="22" hits="27" branch="false"/>
5046
+ <line number="29" hits="27" branch="false"/>
5047
+ <line number="42" hits="27" branch="true" condition-coverage="0% (0/2)"/>
4881
5048
  <line number="43" hits="0" branch="false"/>
4882
5049
  <line number="45" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4883
5050
  <line number="46" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -4904,132 +5071,132 @@
4904
5071
  </method>
4905
5072
  <method name="(anonymous_1)" hits="0" signature="()V">
4906
5073
  <lines>
4907
- <line number="49" hits="0"/>
5074
+ <line number="50" hits="0"/>
4908
5075
  </lines>
4909
5076
  </method>
4910
5077
  <method name="(anonymous_2)" hits="0" signature="()V">
4911
5078
  <lines>
4912
- <line number="54" hits="0"/>
5079
+ <line number="55" hits="0"/>
4913
5080
  </lines>
4914
5081
  </method>
4915
5082
  <method name="(anonymous_3)" hits="0" signature="()V">
4916
5083
  <lines>
4917
- <line number="59" hits="0"/>
5084
+ <line number="60" hits="0"/>
4918
5085
  </lines>
4919
5086
  </method>
4920
5087
  <method name="(anonymous_4)" hits="0" signature="()V">
4921
5088
  <lines>
4922
- <line number="61" hits="0"/>
5089
+ <line number="62" hits="0"/>
4923
5090
  </lines>
4924
5091
  </method>
4925
5092
  <method name="(anonymous_5)" hits="0" signature="()V">
4926
5093
  <lines>
4927
- <line number="102" hits="0"/>
5094
+ <line number="103" hits="0"/>
4928
5095
  </lines>
4929
5096
  </method>
4930
5097
  <method name="(anonymous_6)" hits="0" signature="()V">
4931
5098
  <lines>
4932
- <line number="113" hits="0"/>
5099
+ <line number="114" hits="0"/>
4933
5100
  </lines>
4934
5101
  </method>
4935
5102
  <method name="(anonymous_7)" hits="0" signature="()V">
4936
5103
  <lines>
4937
- <line number="122" hits="0"/>
5104
+ <line number="123" hits="0"/>
4938
5105
  </lines>
4939
5106
  </method>
4940
5107
  <method name="(anonymous_8)" hits="0" signature="()V">
4941
5108
  <lines>
4942
- <line number="154" hits="0"/>
5109
+ <line number="156" hits="0"/>
4943
5110
  </lines>
4944
5111
  </method>
4945
5112
  <method name="(anonymous_9)" hits="0" signature="()V">
4946
5113
  <lines>
4947
- <line number="186" hits="0"/>
5114
+ <line number="188" hits="0"/>
4948
5115
  </lines>
4949
5116
  </method>
4950
5117
  <method name="(anonymous_10)" hits="0" signature="()V">
4951
5118
  <lines>
4952
- <line number="188" hits="0"/>
5119
+ <line number="190" hits="0"/>
4953
5120
  </lines>
4954
5121
  </method>
4955
5122
  <method name="(anonymous_11)" hits="0" signature="()V">
4956
5123
  <lines>
4957
- <line number="204" hits="0"/>
5124
+ <line number="206" hits="0"/>
4958
5125
  </lines>
4959
5126
  </method>
4960
5127
  <method name="(anonymous_12)" hits="0" signature="()V">
4961
5128
  <lines>
4962
- <line number="250" hits="0"/>
5129
+ <line number="252" hits="0"/>
4963
5130
  </lines>
4964
5131
  </method>
4965
5132
  <method name="(anonymous_13)" hits="0" signature="()V">
4966
5133
  <lines>
4967
- <line number="265" hits="0"/>
5134
+ <line number="267" hits="0"/>
4968
5135
  </lines>
4969
5136
  </method>
4970
5137
  <method name="(anonymous_14)" hits="0" signature="()V">
4971
5138
  <lines>
4972
- <line number="271" hits="0"/>
5139
+ <line number="273" hits="0"/>
4973
5140
  </lines>
4974
5141
  </method>
4975
5142
  <method name="(anonymous_15)" hits="0" signature="()V">
4976
5143
  <lines>
4977
- <line number="308" hits="0"/>
5144
+ <line number="310" hits="0"/>
4978
5145
  </lines>
4979
5146
  </method>
4980
5147
  </methods>
4981
5148
  <lines>
4982
- <line number="15" hits="23" branch="false"/>
4983
- <line number="39" hits="0" branch="false"/>
5149
+ <line number="15" hits="27" branch="false"/>
4984
5150
  <line number="40" hits="0" branch="false"/>
4985
- <line number="43" hits="0" branch="false"/>
4986
- <line number="46" hits="0" branch="false"/>
5151
+ <line number="41" hits="0" branch="false"/>
5152
+ <line number="44" hits="0" branch="false"/>
4987
5153
  <line number="47" hits="0" branch="false"/>
4988
- <line number="49" hits="0" branch="false"/>
5154
+ <line number="48" hits="0" branch="false"/>
4989
5155
  <line number="50" hits="0" branch="false"/>
4990
- <line number="54" hits="0" branch="false"/>
5156
+ <line number="51" hits="0" branch="false"/>
4991
5157
  <line number="55" hits="0" branch="false"/>
4992
- <line number="56" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4993
- <line number="57" hits="0" branch="false"/>
4994
- <line number="58" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4995
- <line number="59" hits="0" branch="false"/>
4996
- <line number="60" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4997
- <line number="61" hits="0" branch="false"/>
4998
- <line number="63" hits="0" branch="false"/>
4999
- <line number="66" hits="0" branch="false"/>
5000
- <line number="68" hits="0" branch="true" condition-coverage="0% (0/4)"/>
5001
- <line number="69" hits="0" branch="false"/>
5002
- <line number="71" hits="0" branch="false"/>
5003
- <line number="94" hits="0" branch="false"/>
5004
- <line number="102" hits="0" branch="true" condition-coverage="0% (0/1)"/>
5005
- <line number="103" hits="0" branch="false"/>
5006
- <line number="113" hits="0" branch="false"/>
5158
+ <line number="56" hits="0" branch="false"/>
5159
+ <line number="57" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5160
+ <line number="58" hits="0" branch="false"/>
5161
+ <line number="59" hits="0" branch="true" condition-coverage="0% (0/4)"/>
5162
+ <line number="60" hits="0" branch="false"/>
5163
+ <line number="61" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5164
+ <line number="62" hits="0" branch="false"/>
5165
+ <line number="64" hits="0" branch="false"/>
5166
+ <line number="67" hits="0" branch="false"/>
5167
+ <line number="69" hits="0" branch="true" condition-coverage="0% (0/4)"/>
5168
+ <line number="70" hits="0" branch="false"/>
5169
+ <line number="72" hits="0" branch="false"/>
5170
+ <line number="95" hits="0" branch="false"/>
5171
+ <line number="103" hits="0" branch="true" condition-coverage="0% (0/1)"/>
5172
+ <line number="104" hits="0" branch="false"/>
5007
5173
  <line number="114" hits="0" branch="false"/>
5008
5174
  <line number="115" hits="0" branch="false"/>
5009
- <line number="117" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5010
- <line number="118" hits="0" branch="false"/>
5011
- <line number="122" hits="0" branch="false"/>
5175
+ <line number="116" hits="0" branch="false"/>
5176
+ <line number="118" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5177
+ <line number="119" hits="0" branch="false"/>
5012
5178
  <line number="123" hits="0" branch="false"/>
5013
5179
  <line number="124" hits="0" branch="false"/>
5014
- <line number="154" hits="0" branch="false"/>
5015
- <line number="155" hits="0" branch="false"/>
5016
- <line number="186" hits="0" branch="false"/>
5017
- <line number="189" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5180
+ <line number="125" hits="0" branch="false"/>
5181
+ <line number="156" hits="0" branch="false"/>
5182
+ <line number="157" hits="0" branch="false"/>
5183
+ <line number="188" hits="0" branch="false"/>
5018
5184
  <line number="191" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5019
- <line number="193" hits="0" branch="false"/>
5020
- <line number="194" hits="0" branch="false"/>
5021
- <line number="205" hits="0" branch="false"/>
5022
- <line number="206" hits="0" branch="false"/>
5023
- <line number="250" hits="0" branch="false"/>
5024
- <line number="251" hits="0" branch="false"/>
5025
- <line number="265" hits="0" branch="false"/>
5026
- <line number="271" hits="0" branch="false"/>
5027
- <line number="273" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5028
- <line number="274" hits="0" branch="false"/>
5029
- <line number="280" hits="0" branch="true" condition-coverage="0% (0/3)"/>
5030
- <line number="283" hits="0" branch="false"/>
5031
- <line number="308" hits="0" branch="false"/>
5032
- <line number="320" hits="23" branch="false"/>
5185
+ <line number="193" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5186
+ <line number="195" hits="0" branch="false"/>
5187
+ <line number="196" hits="0" branch="false"/>
5188
+ <line number="207" hits="0" branch="false"/>
5189
+ <line number="208" hits="0" branch="false"/>
5190
+ <line number="252" hits="0" branch="false"/>
5191
+ <line number="253" hits="0" branch="false"/>
5192
+ <line number="267" hits="0" branch="false"/>
5193
+ <line number="273" hits="0" branch="false"/>
5194
+ <line number="275" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5195
+ <line number="276" hits="0" branch="false"/>
5196
+ <line number="282" hits="0" branch="true" condition-coverage="0% (0/3)"/>
5197
+ <line number="285" hits="0" branch="false"/>
5198
+ <line number="310" hits="0" branch="false"/>
5199
+ <line number="323" hits="27" branch="false"/>
5033
5200
  </lines>
5034
5201
  </class>
5035
5202
  <class name="index.js" filename="src/lib/Typedown/index.js" line-rate="0" branch-rate="0">
@@ -5052,51 +5219,51 @@
5052
5219
  <methods>
5053
5220
  </methods>
5054
5221
  <lines>
5055
- <line number="1" hits="23" branch="false"/>
5056
- <line number="2" hits="23" branch="false"/>
5057
- <line number="3" hits="23" branch="false"/>
5058
- <line number="4" hits="23" branch="false"/>
5059
- <line number="5" hits="23" branch="false"/>
5060
- <line number="6" hits="23" branch="false"/>
5061
- <line number="7" hits="23" branch="false"/>
5062
- <line number="8" hits="23" branch="false"/>
5063
- <line number="9" hits="23" branch="false"/>
5064
- <line number="10" hits="23" branch="false"/>
5065
- <line number="11" hits="23" branch="false"/>
5222
+ <line number="1" hits="27" branch="false"/>
5223
+ <line number="2" hits="27" branch="false"/>
5224
+ <line number="3" hits="27" branch="false"/>
5225
+ <line number="4" hits="27" branch="false"/>
5226
+ <line number="5" hits="27" branch="false"/>
5227
+ <line number="6" hits="27" branch="false"/>
5228
+ <line number="7" hits="27" branch="false"/>
5229
+ <line number="8" hits="27" branch="false"/>
5230
+ <line number="9" hits="27" branch="false"/>
5231
+ <line number="10" hits="27" branch="false"/>
5232
+ <line number="11" hits="27" branch="false"/>
5066
5233
  </lines>
5067
5234
  </class>
5068
5235
  <class name="endpoints.js" filename="src/lib/constants/endpoints.js" line-rate="1" branch-rate="1">
5069
5236
  <methods>
5070
5237
  </methods>
5071
5238
  <lines>
5072
- <line number="2" hits="23" branch="false"/>
5073
- <line number="3" hits="23" branch="false"/>
5074
- <line number="7" hits="23" branch="false"/>
5239
+ <line number="2" hits="27" branch="false"/>
5240
+ <line number="3" hits="27" branch="false"/>
5241
+ <line number="7" hits="27" branch="false"/>
5075
5242
  </lines>
5076
5243
  </class>
5077
5244
  <class name="eventCodes.js" filename="src/lib/constants/eventCodes.js" line-rate="1" branch-rate="1">
5078
5245
  <methods>
5079
5246
  </methods>
5080
5247
  <lines>
5081
- <line number="1" hits="23" branch="false"/>
5082
- <line number="2" hits="23" branch="false"/>
5083
- <line number="3" hits="23" branch="false"/>
5248
+ <line number="1" hits="27" branch="false"/>
5249
+ <line number="2" hits="27" branch="false"/>
5250
+ <line number="3" hits="27" branch="false"/>
5084
5251
  </lines>
5085
5252
  </class>
5086
5253
  <class name="pagination.js" filename="src/lib/constants/pagination.js" line-rate="1" branch-rate="1">
5087
5254
  <methods>
5088
5255
  </methods>
5089
5256
  <lines>
5090
- <line number="1" hits="23" branch="false"/>
5091
- <line number="2" hits="23" branch="false"/>
5092
- <line number="5" hits="23" branch="false"/>
5093
- <line number="8" hits="23" branch="false"/>
5094
- <line number="10" hits="23" branch="false"/>
5257
+ <line number="1" hits="27" branch="false"/>
5258
+ <line number="2" hits="27" branch="false"/>
5259
+ <line number="5" hits="27" branch="false"/>
5260
+ <line number="8" hits="27" branch="false"/>
5261
+ <line number="10" hits="27" branch="false"/>
5095
5262
  </lines>
5096
5263
  </class>
5097
5264
  </classes>
5098
5265
  </package>
5099
- <package name="hooks" line-rate="0.1623" branch-rate="0.12869999999999998">
5266
+ <package name="hooks" line-rate="0.321" branch-rate="0.25">
5100
5267
  <classes>
5101
5268
  <class name="index.js" filename="src/lib/hooks/index.js" line-rate="0" branch-rate="0">
5102
5269
  <methods>
@@ -5123,7 +5290,7 @@
5123
5290
  </method>
5124
5291
  </methods>
5125
5292
  <lines>
5126
- <line number="10" hits="23" branch="false"/>
5293
+ <line number="10" hits="27" branch="false"/>
5127
5294
  <line number="11" hits="0" branch="false"/>
5128
5295
  <line number="12" hits="0" branch="false"/>
5129
5296
  <line number="14" hits="0" branch="false"/>
@@ -5164,7 +5331,7 @@
5164
5331
  </method>
5165
5332
  </methods>
5166
5333
  <lines>
5167
- <line number="4" hits="23" branch="false"/>
5334
+ <line number="4" hits="27" branch="false"/>
5168
5335
  <line number="5" hits="0" branch="false"/>
5169
5336
  <line number="7" hits="0" branch="false"/>
5170
5337
  <line number="8" hits="0" branch="false"/>
@@ -5196,7 +5363,7 @@
5196
5363
  </method>
5197
5364
  </methods>
5198
5365
  <lines>
5199
- <line number="8" hits="23" branch="false"/>
5366
+ <line number="8" hits="27" branch="false"/>
5200
5367
  <line number="18" hits="0" branch="false"/>
5201
5368
  <line number="20" hits="0" branch="false"/>
5202
5369
  <line number="35" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -5214,7 +5381,7 @@
5214
5381
  <line number="63" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5215
5382
  <line number="66" hits="0" branch="false"/>
5216
5383
  <line number="67" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5217
- <line number="70" hits="23" branch="false"/>
5384
+ <line number="70" hits="27" branch="false"/>
5218
5385
  </lines>
5219
5386
  </class>
5220
5387
  <class name="useHelperApp.js" filename="src/lib/hooks/useHelperApp.js" line-rate="0.0322" branch-rate="0">
@@ -5261,7 +5428,7 @@
5261
5428
  </method>
5262
5429
  </methods>
5263
5430
  <lines>
5264
- <line number="7" hits="23" branch="false"/>
5431
+ <line number="7" hits="27" branch="false"/>
5265
5432
  <line number="8" hits="0" branch="false"/>
5266
5433
  <line number="9" hits="0" branch="false"/>
5267
5434
  <line number="11" hits="0" branch="false"/>
@@ -5343,7 +5510,7 @@
5343
5510
  </method>
5344
5511
  </methods>
5345
5512
  <lines>
5346
- <line number="4" hits="23" branch="true" condition-coverage="0% (0/1)"/>
5513
+ <line number="4" hits="27" branch="true" condition-coverage="0% (0/1)"/>
5347
5514
  <line number="5" hits="0" branch="false"/>
5348
5515
  <line number="6" hits="0" branch="true" condition-coverage="0% (0/1)"/>
5349
5516
  <line number="7" hits="0" branch="false"/>
@@ -5371,16 +5538,16 @@
5371
5538
  <line number="52" hits="0" branch="false"/>
5372
5539
  </lines>
5373
5540
  </class>
5374
- <class name="useKiwtSASQuery.js" filename="src/lib/hooks/useKiwtSASQuery.js" line-rate="0.1052" branch-rate="0">
5541
+ <class name="useKiwtSASQuery.js" filename="src/lib/hooks/useKiwtSASQuery.js" line-rate="1" branch-rate="1">
5375
5542
  <methods>
5376
- <method name="(anonymous_0)" hits="0" signature="()V">
5543
+ <method name="(anonymous_0)" hits="196" signature="()V">
5377
5544
  <lines>
5378
- <line number="7" hits="0"/>
5545
+ <line number="7" hits="196"/>
5379
5546
  </lines>
5380
5547
  </method>
5381
- <method name="(anonymous_1)" hits="0" signature="()V">
5548
+ <method name="(anonymous_1)" hits="892" signature="()V">
5382
5549
  <lines>
5383
- <line number="26" hits="0"/>
5550
+ <line number="26" hits="892"/>
5384
5551
  </lines>
5385
5552
  </method>
5386
5553
  <method name="(anonymous_2)" hits="0" signature="()V">
@@ -5388,39 +5555,39 @@
5388
5555
  <line number="30" hits="0"/>
5389
5556
  </lines>
5390
5557
  </method>
5391
- <method name="(anonymous_3)" hits="0" signature="()V">
5558
+ <method name="(anonymous_3)" hits="196" signature="()V">
5392
5559
  <lines>
5393
- <line number="38" hits="0"/>
5560
+ <line number="38" hits="196"/>
5394
5561
  </lines>
5395
5562
  </method>
5396
5563
  </methods>
5397
5564
  <lines>
5398
- <line number="7" hits="23" branch="false"/>
5399
- <line number="8" hits="0" branch="false"/>
5400
- <line number="9" hits="0" branch="false"/>
5401
- <line number="13" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5402
- <line number="18" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5403
- <line number="19" hits="0" branch="false"/>
5404
- <line number="21" hits="0" branch="false"/>
5405
- <line number="26" hits="23" branch="false"/>
5406
- <line number="27" hits="0" branch="false"/>
5407
- <line number="28" hits="0" branch="false"/>
5408
- <line number="29" hits="0" branch="false"/>
5409
- <line number="30" hits="0" branch="false"/>
5410
- <line number="32" hits="0" branch="false"/>
5411
- <line number="34" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5412
- <line number="35" hits="0" branch="false"/>
5413
- <line number="38" hits="0" branch="false"/>
5414
- <line number="39" hits="0" branch="false"/>
5415
- <line number="40" hits="0" branch="false"/>
5416
- <line number="42" hits="0" branch="false"/>
5565
+ <line number="7" hits="27" branch="false"/>
5566
+ <line number="8" hits="196" branch="false"/>
5567
+ <line number="9" hits="196" branch="false"/>
5568
+ <line number="13" hits="196" branch="true" condition-coverage="100% (2/2)"/>
5569
+ <line number="18" hits="46" branch="true" condition-coverage="100% (2/2)"/>
5570
+ <line number="19" hits="32" branch="false"/>
5571
+ <line number="21" hits="14" branch="false"/>
5572
+ <line number="26" hits="27" branch="false"/>
5573
+ <line number="27" hits="892" branch="false"/>
5574
+ <line number="28" hits="892" branch="false"/>
5575
+ <line number="29" hits="892" branch="false"/>
5576
+ <line number="30" hits="892" branch="false"/>
5577
+ <line number="32" hits="892" branch="false"/>
5578
+ <line number="34" hits="892" branch="true" condition-coverage="100% (2/2)"/>
5579
+ <line number="35" hits="31" branch="false"/>
5580
+ <line number="38" hits="892" branch="false"/>
5581
+ <line number="39" hits="196" branch="false"/>
5582
+ <line number="40" hits="196" branch="false"/>
5583
+ <line number="42" hits="892" branch="false"/>
5417
5584
  </lines>
5418
5585
  </class>
5419
5586
  <class name="useLocalPageStore.js" filename="src/lib/hooks/useLocalPageStore.js" line-rate="0.4" branch-rate="0">
5420
5587
  <methods>
5421
- <method name="(anonymous_0)" hits="23" signature="()V">
5588
+ <method name="(anonymous_0)" hits="27" signature="()V">
5422
5589
  <lines>
5423
- <line number="7" hits="23"/>
5590
+ <line number="7" hits="27"/>
5424
5591
  </lines>
5425
5592
  </method>
5426
5593
  <method name="(anonymous_1)" hits="0" signature="()V">
@@ -5435,34 +5602,34 @@
5435
5602
  </method>
5436
5603
  </methods>
5437
5604
  <lines>
5438
- <line number="6" hits="23" branch="false"/>
5439
- <line number="7" hits="23" branch="false"/>
5605
+ <line number="6" hits="27" branch="false"/>
5606
+ <line number="7" hits="27" branch="false"/>
5440
5607
  <line number="9" hits="0" branch="false"/>
5441
5608
  <line number="11" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5442
5609
  <line number="13" hits="0" branch="false"/>
5443
5610
  </lines>
5444
5611
  </class>
5445
- <class name="useLocalStorageState.js" filename="src/lib/hooks/useLocalStorageState.js" line-rate="0.14279999999999998" branch-rate="1">
5612
+ <class name="useLocalStorageState.js" filename="src/lib/hooks/useLocalStorageState.js" line-rate="1" branch-rate="1">
5446
5613
  <methods>
5447
- <method name="(anonymous_0)" hits="0" signature="()V">
5614
+ <method name="(anonymous_0)" hits="892" signature="()V">
5448
5615
  <lines>
5449
- <line number="5" hits="0"/>
5616
+ <line number="5" hits="892"/>
5450
5617
  </lines>
5451
5618
  </method>
5452
- <method name="(anonymous_1)" hits="0" signature="()V">
5619
+ <method name="(anonymous_1)" hits="22" signature="()V">
5453
5620
  <lines>
5454
- <line number="9" hits="0"/>
5621
+ <line number="9" hits="22"/>
5455
5622
  </lines>
5456
5623
  </method>
5457
5624
  </methods>
5458
5625
  <lines>
5459
- <line number="5" hits="23" branch="false"/>
5460
- <line number="6" hits="0" branch="false"/>
5461
- <line number="7" hits="0" branch="false"/>
5462
- <line number="9" hits="0" branch="false"/>
5463
- <line number="10" hits="0" branch="false"/>
5464
- <line number="11" hits="0" branch="false"/>
5465
- <line number="14" hits="0" branch="false"/>
5626
+ <line number="5" hits="27" branch="false"/>
5627
+ <line number="6" hits="892" branch="false"/>
5628
+ <line number="7" hits="892" branch="false"/>
5629
+ <line number="9" hits="892" branch="false"/>
5630
+ <line number="10" hits="22" branch="false"/>
5631
+ <line number="11" hits="22" branch="false"/>
5632
+ <line number="14" hits="892" branch="false"/>
5466
5633
  </lines>
5467
5634
  </class>
5468
5635
  <class name="useModConfigEntries.js" filename="src/lib/hooks/useModConfigEntries.js" line-rate="0.1666" branch-rate="0">
@@ -5479,7 +5646,7 @@
5479
5646
  </method>
5480
5647
  </methods>
5481
5648
  <lines>
5482
- <line number="10" hits="23" branch="false"/>
5649
+ <line number="10" hits="27" branch="false"/>
5483
5650
  <line number="17" hits="0" branch="false"/>
5484
5651
  <line number="19" hits="0" branch="false"/>
5485
5652
  <line number="21" hits="0" branch="false"/>
@@ -5490,7 +5657,7 @@
5490
5657
  <line number="36" hits="0" branch="true" condition-coverage="0% (0/3)"/>
5491
5658
  <line number="37" hits="0" branch="false"/>
5492
5659
  <line number="39" hits="0" branch="false"/>
5493
- <line number="46" hits="23" branch="false"/>
5660
+ <line number="46" hits="27" branch="false"/>
5494
5661
  </lines>
5495
5662
  </class>
5496
5663
  <class name="useMutateModConfigEntry.js" filename="src/lib/hooks/useMutateModConfigEntry.js" line-rate="0.07139999999999999" branch-rate="0">
@@ -5522,7 +5689,7 @@
5522
5689
  </method>
5523
5690
  </methods>
5524
5691
  <lines>
5525
- <line number="11" hits="23" branch="false"/>
5692
+ <line number="11" hits="27" branch="false"/>
5526
5693
  <line number="17" hits="0" branch="false"/>
5527
5694
  <line number="19" hits="0" branch="false"/>
5528
5695
  <line number="20" hits="0" branch="false"/>
@@ -5538,26 +5705,26 @@
5538
5705
  <line number="53" hits="0" branch="false"/>
5539
5706
  </lines>
5540
5707
  </class>
5541
- <class name="usePrevNextPagination.js" filename="src/lib/hooks/usePrevNextPagination.js" line-rate="0.42369999999999997" branch-rate="0.36950000000000005">
5708
+ <class name="usePrevNextPagination.js" filename="src/lib/hooks/usePrevNextPagination.js" line-rate="0.6271" branch-rate="0.5652">
5542
5709
  <methods>
5543
- <method name="(anonymous_0)" hits="21" signature="()V">
5710
+ <method name="(anonymous_0)" hits="913" signature="()V">
5544
5711
  <lines>
5545
- <line number="18" hits="21"/>
5712
+ <line number="18" hits="913"/>
5546
5713
  </lines>
5547
5714
  </method>
5548
- <method name="(anonymous_1)" hits="63" signature="()V">
5715
+ <method name="(anonymous_1)" hits="2465" signature="()V">
5549
5716
  <lines>
5550
- <line number="28" hits="63"/>
5717
+ <line number="28" hits="2465"/>
5551
5718
  </lines>
5552
5719
  </method>
5553
- <method name="(anonymous_2)" hits="63" signature="()V">
5720
+ <method name="(anonymous_2)" hits="2465" signature="()V">
5554
5721
  <lines>
5555
- <line number="29" hits="63"/>
5722
+ <line number="29" hits="2465"/>
5556
5723
  </lines>
5557
5724
  </method>
5558
- <method name="(anonymous_3)" hits="21" signature="()V">
5725
+ <method name="(anonymous_3)" hits="913" signature="()V">
5559
5726
  <lines>
5560
- <line number="33" hits="21"/>
5727
+ <line number="33" hits="913"/>
5561
5728
  </lines>
5562
5729
  </method>
5563
5730
  <method name="(anonymous_4)" hits="0" signature="()V">
@@ -5565,14 +5732,14 @@
5565
5732
  <line number="56" hits="0"/>
5566
5733
  </lines>
5567
5734
  </method>
5568
- <method name="(anonymous_5)" hits="0" signature="()V">
5735
+ <method name="(anonymous_5)" hits="34" signature="()V">
5569
5736
  <lines>
5570
- <line number="95" hits="0"/>
5737
+ <line number="95" hits="34"/>
5571
5738
  </lines>
5572
5739
  </method>
5573
- <method name="(anonymous_6)" hits="21" signature="()V">
5740
+ <method name="(anonymous_6)" hits="639" signature="()V">
5574
5741
  <lines>
5575
- <line number="104" hits="21"/>
5742
+ <line number="104" hits="639"/>
5576
5743
  </lines>
5577
5744
  </method>
5578
5745
  <method name="(anonymous_7)" hits="0" signature="()V">
@@ -5580,32 +5747,32 @@
5580
5747
  <line number="157" hits="0"/>
5581
5748
  </lines>
5582
5749
  </method>
5583
- <method name="(anonymous_8)" hits="0" signature="()V">
5750
+ <method name="(anonymous_8)" hits="1048" signature="()V">
5584
5751
  <lines>
5585
- <line number="166" hits="0"/>
5752
+ <line number="166" hits="1048"/>
5586
5753
  </lines>
5587
5754
  </method>
5588
- <method name="(anonymous_9)" hits="9" signature="()V">
5755
+ <method name="(anonymous_9)" hits="185" signature="()V">
5589
5756
  <lines>
5590
- <line number="184" hits="9"/>
5757
+ <line number="184" hits="185"/>
5591
5758
  </lines>
5592
5759
  </method>
5593
5760
  </methods>
5594
5761
  <lines>
5595
- <line number="18" hits="23" branch="true" condition-coverage="0% (0/1)"/>
5596
- <line number="28" hits="63" branch="false"/>
5597
- <line number="29" hits="63" branch="false"/>
5598
- <line number="33" hits="21" branch="false"/>
5599
- <line number="35" hits="21" branch="true" condition-coverage="50% (1/2)"/>
5762
+ <line number="18" hits="27" branch="true" condition-coverage="0% (0/1)"/>
5763
+ <line number="28" hits="2465" branch="false"/>
5764
+ <line number="29" hits="2465" branch="false"/>
5765
+ <line number="33" hits="913" branch="false"/>
5766
+ <line number="35" hits="913" branch="true" condition-coverage="50% (1/2)"/>
5600
5767
  <line number="36" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5601
5768
  <line number="37" hits="0" branch="false"/>
5602
5769
  <line number="40" hits="0" branch="false"/>
5603
5770
  <line number="41" hits="0" branch="false"/>
5604
- <line number="45" hits="21" branch="false"/>
5605
- <line number="48" hits="21" branch="false"/>
5606
- <line number="50" hits="21" branch="false"/>
5607
- <line number="51" hits="21" branch="false"/>
5608
- <line number="56" hits="21" branch="false"/>
5771
+ <line number="45" hits="913" branch="false"/>
5772
+ <line number="48" hits="913" branch="false"/>
5773
+ <line number="50" hits="913" branch="false"/>
5774
+ <line number="51" hits="913" branch="false"/>
5775
+ <line number="56" hits="913" branch="false"/>
5609
5776
  <line number="57" hits="0" branch="false"/>
5610
5777
  <line number="60" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5611
5778
  <line number="61" hits="0" branch="false"/>
@@ -5617,47 +5784,47 @@
5617
5784
  <line number="72" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5618
5785
  <line number="73" hits="0" branch="false"/>
5619
5786
  <line number="77" hits="0" branch="false"/>
5620
- <line number="94" hits="21" branch="false"/>
5621
- <line number="95" hits="21" branch="false"/>
5622
- <line number="96" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5623
- <line number="97" hits="0" branch="false"/>
5787
+ <line number="94" hits="913" branch="false"/>
5788
+ <line number="95" hits="913" branch="false"/>
5789
+ <line number="96" hits="34" branch="true" condition-coverage="50% (1/2)"/>
5790
+ <line number="97" hits="34" branch="false"/>
5624
5791
  <line number="99" hits="0" branch="false"/>
5625
5792
  <line number="100" hits="0" branch="false"/>
5626
- <line number="104" hits="21" branch="false"/>
5627
- <line number="105" hits="21" branch="true" condition-coverage="50% (1/2)"/>
5628
- <line number="106" hits="21" branch="false"/>
5629
- <line number="108" hits="21" branch="true" condition-coverage="50% (2/4)"/>
5793
+ <line number="104" hits="913" branch="false"/>
5794
+ <line number="105" hits="639" branch="true" condition-coverage="50% (1/2)"/>
5795
+ <line number="106" hits="639" branch="false"/>
5796
+ <line number="108" hits="639" branch="true" condition-coverage="50% (2/4)"/>
5630
5797
  <line number="109" hits="0" branch="false"/>
5631
- <line number="110" hits="21" branch="true" condition-coverage="75% (3/4)"/>
5632
- <line number="112" hits="0" branch="false"/>
5633
- <line number="113" hits="0" branch="false"/>
5634
- <line number="119" hits="0" branch="false"/>
5635
- <line number="125" hits="21" branch="true" condition-coverage="50% (1/2)"/>
5636
- <line number="126" hits="0" branch="false"/>
5637
- <line number="131" hits="0" branch="false"/>
5638
- <line number="135" hits="0" branch="false"/>
5798
+ <line number="110" hits="639" branch="true" condition-coverage="100% (4/4)"/>
5799
+ <line number="112" hits="618" branch="false"/>
5800
+ <line number="113" hits="618" branch="false"/>
5801
+ <line number="119" hits="618" branch="false"/>
5802
+ <line number="125" hits="639" branch="true" condition-coverage="100% (2/2)"/>
5803
+ <line number="126" hits="32" branch="false"/>
5804
+ <line number="131" hits="32" branch="false"/>
5805
+ <line number="135" hits="32" branch="false"/>
5639
5806
  <line number="137" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5640
5807
  <line number="140" hits="0" branch="false"/>
5641
- <line number="154" hits="21" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
5642
- <line number="155" hits="21" branch="true" condition-coverage="50% (1/2)"/>
5643
- <line number="156" hits="21" branch="true" condition-coverage="50% (1/2)"/>
5644
- <line number="157" hits="21" branch="false"/>
5808
+ <line number="154" hits="913" branch="true" condition-coverage="100% (3/3)"/>
5809
+ <line number="155" hits="913" branch="true" condition-coverage="100% (2/2)"/>
5810
+ <line number="156" hits="913" branch="true" condition-coverage="100% (2/2)"/>
5811
+ <line number="157" hits="913" branch="false"/>
5645
5812
  <line number="158" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5646
5813
  <line number="159" hits="0" branch="false"/>
5647
- <line number="166" hits="21" branch="false"/>
5648
- <line number="167" hits="0" branch="false"/>
5649
- <line number="177" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5650
- <line number="178" hits="0" branch="false"/>
5651
- <line number="181" hits="0" branch="false"/>
5652
- <line number="184" hits="21" branch="false"/>
5653
- <line number="188" hits="21" branch="false"/>
5814
+ <line number="166" hits="913" branch="false"/>
5815
+ <line number="167" hits="1048" branch="false"/>
5816
+ <line number="177" hits="1048" branch="true" condition-coverage="100% (2/2)"/>
5817
+ <line number="178" hits="34" branch="false"/>
5818
+ <line number="181" hits="1048" branch="false"/>
5819
+ <line number="184" hits="913" branch="false"/>
5820
+ <line number="188" hits="913" branch="false"/>
5654
5821
  </lines>
5655
5822
  </class>
5656
- <class name="useQIndex.js" filename="src/lib/hooks/useQIndex.js" line-rate="0.0625" branch-rate="0">
5823
+ <class name="useQIndex.js" filename="src/lib/hooks/useQIndex.js" line-rate="0.5625" branch-rate="0.1666">
5657
5824
  <methods>
5658
- <method name="(anonymous_0)" hits="0" signature="()V">
5825
+ <method name="(anonymous_0)" hits="892" signature="()V">
5659
5826
  <lines>
5660
- <line number="5" hits="0"/>
5827
+ <line number="5" hits="892"/>
5661
5828
  </lines>
5662
5829
  </method>
5663
5830
  <method name="(anonymous_1)" hits="0" signature="()V">
@@ -5665,29 +5832,29 @@
5665
5832
  <line number="12" hits="0"/>
5666
5833
  </lines>
5667
5834
  </method>
5668
- <method name="(anonymous_2)" hits="0" signature="()V">
5835
+ <method name="(anonymous_2)" hits="618" signature="()V">
5669
5836
  <lines>
5670
- <line number="35" hits="0"/>
5837
+ <line number="35" hits="618"/>
5671
5838
  </lines>
5672
5839
  </method>
5673
5840
  </methods>
5674
5841
  <lines>
5675
- <line number="5" hits="23" branch="false"/>
5676
- <line number="6" hits="0" branch="false"/>
5677
- <line number="7" hits="0" branch="false"/>
5678
- <line number="9" hits="0" branch="false"/>
5679
- <line number="10" hits="0" branch="false"/>
5680
- <line number="12" hits="0" branch="false"/>
5842
+ <line number="5" hits="27" branch="false"/>
5843
+ <line number="6" hits="892" branch="false"/>
5844
+ <line number="7" hits="892" branch="false"/>
5845
+ <line number="9" hits="892" branch="false"/>
5846
+ <line number="10" hits="892" branch="false"/>
5847
+ <line number="12" hits="892" branch="false"/>
5681
5848
  <line number="13" hits="0" branch="false"/>
5682
5849
  <line number="14" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5683
5850
  <line number="16" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5684
5851
  <line number="17" hits="0" branch="false"/>
5685
5852
  <line number="22" hits="0" branch="false"/>
5686
5853
  <line number="28" hits="0" branch="false"/>
5687
- <line number="35" hits="0" branch="false"/>
5688
- <line number="36" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5854
+ <line number="35" hits="892" branch="false"/>
5855
+ <line number="36" hits="618" branch="true" condition-coverage="50% (1/2)"/>
5689
5856
  <line number="37" hits="0" branch="false"/>
5690
- <line number="46" hits="0" branch="false"/>
5857
+ <line number="46" hits="892" branch="false"/>
5691
5858
  </lines>
5692
5859
  </class>
5693
5860
  <class name="useRefdata.js" filename="src/lib/hooks/useRefdata.js" line-rate="0.125" branch-rate="0">
@@ -5709,7 +5876,7 @@
5709
5876
  </method>
5710
5877
  </methods>
5711
5878
  <lines>
5712
- <line number="8" hits="23" branch="false"/>
5879
+ <line number="8" hits="27" branch="false"/>
5713
5880
  <line number="15" hits="0" branch="false"/>
5714
5881
  <line number="17" hits="0" branch="false"/>
5715
5882
  <line number="25" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -5724,7 +5891,7 @@
5724
5891
  <line number="43" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5725
5892
  <line number="46" hits="0" branch="false"/>
5726
5893
  <line number="47" hits="0" branch="true" condition-coverage="0% (0/2)"/>
5727
- <line number="50" hits="23" branch="false"/>
5894
+ <line number="50" hits="27" branch="false"/>
5728
5895
  </lines>
5729
5896
  </class>
5730
5897
  <class name="useSASQQueryMeta.js" filename="src/lib/hooks/useSASQQueryMeta.js" line-rate="0.07139999999999999" branch-rate="0">
@@ -5746,7 +5913,7 @@
5746
5913
  </method>
5747
5914
  </methods>
5748
5915
  <lines>
5749
- <line number="7" hits="23" branch="false"/>
5916
+ <line number="7" hits="27" branch="false"/>
5750
5917
  <line number="8" hits="0" branch="false"/>
5751
5918
  <line number="9" hits="0" branch="false"/>
5752
5919
  <line number="11" hits="0" branch="false"/>
@@ -5776,7 +5943,7 @@
5776
5943
  </method>
5777
5944
  </methods>
5778
5945
  <lines>
5779
- <line number="5" hits="23" branch="false"/>
5946
+ <line number="5" hits="27" branch="false"/>
5780
5947
  <line number="6" hits="0" branch="false"/>
5781
5948
  <line number="8" hits="0" branch="false"/>
5782
5949
  <line number="9" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -5812,28 +5979,28 @@
5812
5979
  </class>
5813
5980
  <class name="useIntlKey.js" filename="src/lib/hooks/intlHooks/useIntlKey/useIntlKey.js" line-rate="0.7" branch-rate="0.5">
5814
5981
  <methods>
5815
- <method name="(anonymous_0)" hits="188" signature="()V">
5982
+ <method name="(anonymous_0)" hits="1080" signature="()V">
5816
5983
  <lines>
5817
- <line number="3" hits="188"/>
5984
+ <line number="3" hits="1080"/>
5818
5985
  </lines>
5819
5986
  </method>
5820
- <method name="(anonymous_1)" hits="27" signature="()V">
5987
+ <method name="(anonymous_1)" hits="2429" signature="()V">
5821
5988
  <lines>
5822
- <line number="4" hits="27"/>
5989
+ <line number="4" hits="2429"/>
5823
5990
  </lines>
5824
5991
  </method>
5825
5992
  </methods>
5826
5993
  <lines>
5827
- <line number="3" hits="23" branch="false"/>
5828
- <line number="4" hits="188" branch="false"/>
5829
- <line number="7" hits="188" branch="true" condition-coverage="50% (1/2)"/>
5994
+ <line number="3" hits="27" branch="false"/>
5995
+ <line number="4" hits="2429" branch="false"/>
5996
+ <line number="7" hits="1080" branch="true" condition-coverage="50% (1/2)"/>
5830
5997
  <line number="8" hits="0" branch="false"/>
5831
- <line number="9" hits="188" branch="true" condition-coverage="50% (1/2)"/>
5998
+ <line number="9" hits="1080" branch="true" condition-coverage="50% (1/2)"/>
5832
5999
  <line number="10" hits="0" branch="false"/>
5833
- <line number="12" hits="188" branch="false"/>
5834
- <line number="15" hits="188" branch="true" condition-coverage="50% (1/2)"/>
6000
+ <line number="12" hits="1080" branch="false"/>
6001
+ <line number="15" hits="1080" branch="true" condition-coverage="50% (1/2)"/>
5835
6002
  <line number="16" hits="0" branch="false"/>
5836
- <line number="19" hits="188" branch="false"/>
6003
+ <line number="19" hits="1080" branch="false"/>
5837
6004
  </lines>
5838
6005
  </class>
5839
6006
  </classes>
@@ -5848,19 +6015,19 @@
5848
6015
  </class>
5849
6016
  <class name="useIntlKeyStore.js" filename="src/lib/hooks/intlHooks/useIntlKeyStore/useIntlKeyStore.js" line-rate="0.5789" branch-rate="0.3333">
5850
6017
  <methods>
5851
- <method name="(anonymous_0)" hits="5" signature="()V">
6018
+ <method name="(anonymous_0)" hits="9" signature="()V">
5852
6019
  <lines>
5853
- <line number="6" hits="5"/>
6020
+ <line number="6" hits="9"/>
5854
6021
  </lines>
5855
6022
  </method>
5856
- <method name="(anonymous_1)" hits="76" signature="()V">
6023
+ <method name="(anonymous_1)" hits="384" signature="()V">
5857
6024
  <lines>
5858
- <line number="8" hits="76"/>
6025
+ <line number="8" hits="384"/>
5859
6026
  </lines>
5860
6027
  </method>
5861
- <method name="(anonymous_2)" hits="76" signature="()V">
6028
+ <method name="(anonymous_2)" hits="384" signature="()V">
5862
6029
  <lines>
5863
- <line number="8" hits="76"/>
6030
+ <line number="8" hits="384"/>
5864
6031
  </lines>
5865
6032
  </method>
5866
6033
  <method name="(anonymous_3)" hits="0" signature="()V">
@@ -5873,20 +6040,20 @@
5873
6040
  <line number="17" hits="0"/>
5874
6041
  </lines>
5875
6042
  </method>
5876
- <method name="(anonymous_5)" hits="9" signature="()V">
6043
+ <method name="(anonymous_5)" hits="901" signature="()V">
5877
6044
  <lines>
5878
- <line number="27" hits="9"/>
6045
+ <line number="27" hits="901"/>
5879
6046
  </lines>
5880
6047
  </method>
5881
6048
  </methods>
5882
6049
  <lines>
5883
- <line number="6" hits="5" branch="false"/>
5884
- <line number="8" hits="76" branch="false"/>
5885
- <line number="9" hits="76" branch="false"/>
5886
- <line number="10" hits="76" branch="false"/>
5887
- <line number="11" hits="76" branch="true" condition-coverage="50% (1/2)"/>
6050
+ <line number="6" hits="9" branch="false"/>
6051
+ <line number="8" hits="384" branch="false"/>
6052
+ <line number="9" hits="384" branch="false"/>
6053
+ <line number="10" hits="384" branch="false"/>
6054
+ <line number="11" hits="384" branch="true" condition-coverage="50% (1/2)"/>
5888
6055
  <line number="12" hits="0" branch="false"/>
5889
- <line number="15" hits="76" branch="false"/>
6056
+ <line number="15" hits="384" branch="false"/>
5890
6057
  <line number="17" hits="0" branch="false"/>
5891
6058
  <line number="18" hits="0" branch="false"/>
5892
6059
  <line number="19" hits="0" branch="false"/>
@@ -5894,11 +6061,11 @@
5894
6061
  <line number="21" hits="0" branch="false"/>
5895
6062
  <line number="24" hits="0" branch="false"/>
5896
6063
  <line number="25" hits="0" branch="false"/>
5897
- <line number="28" hits="9" branch="false"/>
5898
- <line number="29" hits="9" branch="false"/>
5899
- <line number="30" hits="9" branch="true" condition-coverage="50% (1/2)"/>
5900
- <line number="31" hits="9" branch="false"/>
5901
- <line number="34" hits="9" branch="false"/>
6064
+ <line number="28" hits="901" branch="false"/>
6065
+ <line number="29" hits="901" branch="false"/>
6066
+ <line number="30" hits="901" branch="true" condition-coverage="50% (1/2)"/>
6067
+ <line number="31" hits="901" branch="false"/>
6068
+ <line number="34" hits="901" branch="false"/>
5902
6069
  </lines>
5903
6070
  </class>
5904
6071
  </classes>
@@ -5913,14 +6080,14 @@
5913
6080
  </class>
5914
6081
  <class name="useKintIntl.js" filename="src/lib/hooks/intlHooks/useKintIntl/useKintIntl.js" line-rate="0.8234999999999999" branch-rate="0.75">
5915
6082
  <methods>
5916
- <method name="(anonymous_0)" hits="188" signature="()V">
6083
+ <method name="(anonymous_0)" hits="1080" signature="()V">
5917
6084
  <lines>
5918
- <line number="5" hits="188"/>
6085
+ <line number="5" hits="1080"/>
5919
6086
  </lines>
5920
6087
  </method>
5921
- <method name="(anonymous_1)" hits="1612" signature="()V">
6088
+ <method name="(anonymous_1)" hits="2742" signature="()V">
5922
6089
  <lines>
5923
- <line number="11" hits="1612"/>
6090
+ <line number="11" hits="2742"/>
5924
6091
  </lines>
5925
6092
  </method>
5926
6093
  <method name="(anonymous_2)" hits="6" signature="()V">
@@ -5930,23 +6097,23 @@
5930
6097
  </method>
5931
6098
  </methods>
5932
6099
  <lines>
5933
- <line number="5" hits="23" branch="false"/>
5934
- <line number="6" hits="188" branch="false"/>
5935
- <line number="7" hits="188" branch="false"/>
5936
- <line number="11" hits="188" branch="false"/>
5937
- <line number="12" hits="1612" branch="true" condition-coverage="100% (2/2)"/>
6100
+ <line number="5" hits="27" branch="false"/>
6101
+ <line number="6" hits="1080" branch="false"/>
6102
+ <line number="7" hits="1080" branch="false"/>
6103
+ <line number="11" hits="1080" branch="false"/>
6104
+ <line number="12" hits="2742" branch="true" condition-coverage="100% (2/2)"/>
5938
6105
  <line number="14" hits="4" branch="true" condition-coverage="50% (1/2)"/>
5939
6106
  <line number="15" hits="0" branch="false"/>
5940
6107
  <line number="18" hits="4" branch="true" condition-coverage="50% (1/2)"/>
5941
6108
  <line number="20" hits="0" branch="false"/>
5942
6109
  <line number="23" hits="4" branch="false"/>
5943
- <line number="29" hits="1608" branch="true" condition-coverage="100% (4/4)"/>
6110
+ <line number="29" hits="2738" branch="true" condition-coverage="100% (4/4)"/>
5944
6111
  <line number="31" hits="6" branch="true" condition-coverage="50% (1/2)"/>
5945
6112
  <line number="32" hits="0" branch="false"/>
5946
6113
  <line number="35" hits="6" branch="false"/>
5947
- <line number="39" hits="1602" branch="false"/>
5948
- <line number="42" hits="188" branch="false"/>
5949
- <line number="44" hits="188" branch="false"/>
6114
+ <line number="39" hits="2732" branch="false"/>
6115
+ <line number="42" hits="1080" branch="false"/>
6116
+ <line number="44" hits="1080" branch="false"/>
5950
6117
  </lines>
5951
6118
  </class>
5952
6119
  </classes>
@@ -6073,7 +6240,7 @@
6073
6240
  </method>
6074
6241
  </methods>
6075
6242
  <lines>
6076
- <line number="19" hits="23" branch="false"/>
6243
+ <line number="19" hits="27" branch="false"/>
6077
6244
  <line number="27" hits="0" branch="false"/>
6078
6245
  <line number="28" hits="0" branch="false"/>
6079
6246
  <line number="29" hits="0" branch="false"/>
@@ -6171,7 +6338,7 @@
6171
6338
  </method>
6172
6339
  </methods>
6173
6340
  <lines>
6174
- <line number="7" hits="23" branch="false"/>
6341
+ <line number="7" hits="27" branch="false"/>
6175
6342
  <line number="8" hits="0" branch="false"/>
6176
6343
  <line number="10" hits="0" branch="false"/>
6177
6344
  <line number="11" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -6204,7 +6371,7 @@
6204
6371
  </method>
6205
6372
  </methods>
6206
6373
  <lines>
6207
- <line number="5" hits="23" branch="false"/>
6374
+ <line number="5" hits="27" branch="false"/>
6208
6375
  <line number="6" hits="0" branch="false"/>
6209
6376
  <line number="7" hits="0" branch="false"/>
6210
6377
  <line number="8" hits="0" branch="false"/>
@@ -6241,7 +6408,7 @@
6241
6408
  </method>
6242
6409
  </methods>
6243
6410
  <lines>
6244
- <line number="5" hits="23" branch="false"/>
6411
+ <line number="5" hits="27" branch="false"/>
6245
6412
  <line number="6" hits="0" branch="false"/>
6246
6413
  <line number="8" hits="0" branch="false"/>
6247
6414
  </lines>
@@ -6275,7 +6442,7 @@
6275
6442
  </method>
6276
6443
  </methods>
6277
6444
  <lines>
6278
- <line number="3" hits="23" branch="false"/>
6445
+ <line number="3" hits="27" branch="false"/>
6279
6446
  <line number="8" hits="0" branch="false"/>
6280
6447
  <line number="11" hits="0" branch="false"/>
6281
6448
  <line number="12" hits="0" branch="false"/>
@@ -6375,7 +6542,7 @@
6375
6542
  </method>
6376
6543
  </methods>
6377
6544
  <lines>
6378
- <line number="9" hits="23" branch="true" condition-coverage="0% (0/1)"/>
6545
+ <line number="9" hits="27" branch="true" condition-coverage="0% (0/1)"/>
6379
6546
  <line number="22" hits="0" branch="true" condition-coverage="0% (0/1)"/>
6380
6547
  <line number="23" hits="0" branch="true" condition-coverage="0% (0/1)"/>
6381
6548
  <line number="24" hits="0" branch="true" condition-coverage="0% (0/1)"/>
@@ -6462,7 +6629,7 @@
6462
6629
  </method>
6463
6630
  </methods>
6464
6631
  <lines>
6465
- <line number="6" hits="23" branch="false"/>
6632
+ <line number="6" hits="27" branch="false"/>
6466
6633
  <line number="15" hits="0" branch="false"/>
6467
6634
  <line number="17" hits="0" branch="false"/>
6468
6635
  <line number="20" hits="0" branch="false"/>
@@ -6538,7 +6705,7 @@
6538
6705
  </method>
6539
6706
  </methods>
6540
6707
  <lines>
6541
- <line number="6" hits="23" branch="false"/>
6708
+ <line number="6" hits="27" branch="false"/>
6542
6709
  <line number="16" hits="0" branch="false"/>
6543
6710
  <line number="18" hits="0" branch="false"/>
6544
6711
  <line number="21" hits="0" branch="false"/>
@@ -6581,7 +6748,7 @@
6581
6748
  </method>
6582
6749
  </methods>
6583
6750
  <lines>
6584
- <line number="23" hits="23" branch="false"/>
6751
+ <line number="23" hits="27" branch="false"/>
6585
6752
  <line number="28" hits="0" branch="false"/>
6586
6753
  <line number="29" hits="0" branch="false"/>
6587
6754
  <line number="32" hits="0" branch="false"/>
@@ -6598,52 +6765,52 @@
6598
6765
  </class>
6599
6766
  </classes>
6600
6767
  </package>
6601
- <package name="utils" line-rate="0.22579999999999997" branch-rate="0.10289999999999999">
6768
+ <package name="utils" line-rate="0.344" branch-rate="0.25">
6602
6769
  <classes>
6603
- <class name="buildUrl.js" filename="src/lib/utils/buildUrl.js" line-rate="0" branch-rate="0">
6770
+ <class name="buildUrl.js" filename="src/lib/utils/buildUrl.js" line-rate="1" branch-rate="1">
6604
6771
  <methods>
6605
- <method name="removeEmpty" hits="0" signature="()V">
6772
+ <method name="removeEmpty" hits="196" signature="()V">
6606
6773
  <lines>
6607
- <line number="10" hits="0"/>
6774
+ <line number="10" hits="196"/>
6608
6775
  </lines>
6609
6776
  </method>
6610
- <method name="(anonymous_1)" hits="0" signature="()V">
6777
+ <method name="(anonymous_1)" hits="437" signature="()V">
6611
6778
  <lines>
6612
- <line number="13" hits="0"/>
6779
+ <line number="13" hits="437"/>
6613
6780
  </lines>
6614
6781
  </method>
6615
- <method name="buildUrl" hits="0" signature="()V">
6782
+ <method name="buildUrl" hits="196" signature="()V">
6616
6783
  <lines>
6617
- <line number="20" hits="0"/>
6784
+ <line number="20" hits="196"/>
6618
6785
  </lines>
6619
6786
  </method>
6620
6787
  </methods>
6621
6788
  <lines>
6622
- <line number="11" hits="0" branch="false"/>
6623
- <line number="13" hits="0" branch="false"/>
6624
- <line number="14" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6625
- <line number="17" hits="0" branch="false"/>
6626
- <line number="21" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6627
- <line number="22" hits="0" branch="true" condition-coverage="0% (0/3)"/>
6628
- <line number="23" hits="0" branch="false"/>
6629
- <line number="25" hits="0" branch="false"/>
6630
- <line number="27" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6631
- <line number="28" hits="0" branch="false"/>
6632
- <line number="31" hits="0" branch="false"/>
6789
+ <line number="11" hits="196" branch="false"/>
6790
+ <line number="13" hits="196" branch="false"/>
6791
+ <line number="14" hits="437" branch="true" condition-coverage="100% (2/2)"/>
6792
+ <line number="17" hits="196" branch="false"/>
6793
+ <line number="21" hits="196" branch="true" condition-coverage="100% (2/2)"/>
6794
+ <line number="22" hits="196" branch="true" condition-coverage="100% (3/3)"/>
6795
+ <line number="23" hits="196" branch="false"/>
6796
+ <line number="25" hits="196" branch="false"/>
6797
+ <line number="27" hits="196" branch="true" condition-coverage="100% (2/2)"/>
6798
+ <line number="28" hits="92" branch="false"/>
6799
+ <line number="31" hits="196" branch="false"/>
6633
6800
  </lines>
6634
6801
  </class>
6635
- <class name="generateKiwtQuery.js" filename="src/lib/utils/generateKiwtQuery.js" line-rate="1" branch-rate="0.3333">
6802
+ <class name="generateKiwtQuery.js" filename="src/lib/utils/generateKiwtQuery.js" line-rate="1" branch-rate="0.6666">
6636
6803
  <methods>
6637
- <method name="(anonymous_0)" hits="1" signature="()V">
6804
+ <method name="(anonymous_0)" hits="572" signature="()V">
6638
6805
  <lines>
6639
- <line number="3" hits="1"/>
6806
+ <line number="3" hits="572"/>
6640
6807
  </lines>
6641
6808
  </method>
6642
6809
  </methods>
6643
6810
  <lines>
6644
- <line number="3" hits="24" branch="true" condition-coverage="0% (0/1)"/>
6645
- <line number="4" hits="1" branch="false"/>
6646
- <line number="5" hits="1" branch="true" condition-coverage="50% (1/2)"/>
6811
+ <line number="3" hits="28" branch="true" condition-coverage="100% (1/1)"/>
6812
+ <line number="4" hits="572" branch="false"/>
6813
+ <line number="5" hits="572" branch="true" condition-coverage="50% (1/2)"/>
6647
6814
  </lines>
6648
6815
  </class>
6649
6816
  <class name="groupCustomPropertiesByCtx.js" filename="src/lib/utils/groupCustomPropertiesByCtx.js" line-rate="1" branch-rate="0.8">
@@ -6660,7 +6827,7 @@
6660
6827
  </method>
6661
6828
  </methods>
6662
6829
  <lines>
6663
- <line number="1" hits="23" branch="true" condition-coverage="0% (0/1)"/>
6830
+ <line number="1" hits="27" branch="true" condition-coverage="0% (0/1)"/>
6664
6831
  <line number="2" hits="4" branch="false"/>
6665
6832
  <line number="3" hits="48" branch="true" condition-coverage="100% (2/2)"/>
6666
6833
  <line number="4" hits="48" branch="false"/>
@@ -6692,14 +6859,14 @@
6692
6859
  </method>
6693
6860
  </methods>
6694
6861
  <lines>
6695
- <line number="3" hits="23" branch="true" condition-coverage="0% (0/2)"/>
6862
+ <line number="3" hits="27" branch="true" condition-coverage="0% (0/2)"/>
6696
6863
  <line number="4" hits="0" branch="false"/>
6697
6864
  <line number="6" hits="0" branch="false"/>
6698
6865
  <line number="9" hits="0" branch="false"/>
6699
6866
  <line number="10" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6700
6867
  <line number="11" hits="0" branch="false"/>
6701
6868
  <line number="20" hits="0" branch="false"/>
6702
- <line number="29" hits="23" branch="true" condition-coverage="0% (0/2)"/>
6869
+ <line number="29" hits="27" branch="true" condition-coverage="0% (0/2)"/>
6703
6870
  <line number="30" hits="0" branch="false"/>
6704
6871
  <line number="32" hits="0" branch="false"/>
6705
6872
  <line number="35" hits="0" branch="false"/>
@@ -6758,7 +6925,7 @@
6758
6925
  </method>
6759
6926
  </methods>
6760
6927
  <lines>
6761
- <line number="3" hits="23" branch="true" condition-coverage="0% (0/2)"/>
6928
+ <line number="3" hits="27" branch="true" condition-coverage="0% (0/2)"/>
6762
6929
  <line number="5" hits="0" branch="false"/>
6763
6930
  <line number="8" hits="0" branch="false"/>
6764
6931
  <line number="10" hits="0" branch="false"/>
@@ -6788,7 +6955,7 @@
6788
6955
  </method>
6789
6956
  </methods>
6790
6957
  <lines>
6791
- <line number="1" hits="23" branch="true" condition-coverage="0% (0/1)"/>
6958
+ <line number="1" hits="27" branch="true" condition-coverage="0% (0/1)"/>
6792
6959
  <line number="6" hits="0" branch="false"/>
6793
6960
  <line number="8" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6794
6961
  <line number="9" hits="0" branch="false"/>
@@ -6812,7 +6979,7 @@
6812
6979
  </method>
6813
6980
  </methods>
6814
6981
  <lines>
6815
- <line number="1" hits="23" branch="false"/>
6982
+ <line number="1" hits="27" branch="false"/>
6816
6983
  <line number="2" hits="0" branch="false"/>
6817
6984
  <line number="3" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6818
6985
  <line number="4" hits="0" branch="false"/>
@@ -6835,7 +7002,7 @@
6835
7002
  </method>
6836
7003
  </methods>
6837
7004
  <lines>
6838
- <line number="1" hits="23" branch="false"/>
7005
+ <line number="1" hits="27" branch="false"/>
6839
7006
  <line number="2" hits="0" branch="false"/>
6840
7007
  <line number="3" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6841
7008
  <line number="4" hits="0" branch="false"/>
@@ -6859,7 +7026,7 @@
6859
7026
  </method>
6860
7027
  </methods>
6861
7028
  <lines>
6862
- <line number="1" hits="23" branch="false"/>
7029
+ <line number="1" hits="27" branch="false"/>
6863
7030
  <line number="4" hits="0" branch="false"/>
6864
7031
  </lines>
6865
7032
  </class>
@@ -6872,7 +7039,7 @@
6872
7039
  </method>
6873
7040
  </methods>
6874
7041
  <lines>
6875
- <line number="1" hits="23" branch="false"/>
7042
+ <line number="1" hits="27" branch="false"/>
6876
7043
  <line number="2" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6877
7044
  <line number="3" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6878
7045
  <line number="4" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -6896,7 +7063,7 @@
6896
7063
  </method>
6897
7064
  </methods>
6898
7065
  <lines>
6899
- <line number="1" hits="23" branch="false"/>
7066
+ <line number="1" hits="27" branch="false"/>
6900
7067
  <line number="3" hits="24" branch="false"/>
6901
7068
  <line number="8" hits="60" branch="true" condition-coverage="100% (2/2)"/>
6902
7069
  </lines>
@@ -6910,7 +7077,7 @@
6910
7077
  </method>
6911
7078
  </methods>
6912
7079
  <lines>
6913
- <line number="1" hits="23" branch="false"/>
7080
+ <line number="1" hits="27" branch="false"/>
6914
7081
  <line number="2" hits="0" branch="false"/>
6915
7082
  <line number="3" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6916
7083
  <line number="4" hits="0" branch="false"/>
@@ -6940,12 +7107,12 @@
6940
7107
  </method>
6941
7108
  </methods>
6942
7109
  <lines>
6943
- <line number="2" hits="23" branch="false"/>
7110
+ <line number="2" hits="27" branch="false"/>
6944
7111
  <line number="3" hits="0" branch="false"/>
6945
7112
  <line number="4" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6946
7113
  <line number="5" hits="0" branch="false"/>
6947
7114
  <line number="8" hits="0" branch="false"/>
6948
- <line number="12" hits="23" branch="false"/>
7115
+ <line number="12" hits="27" branch="false"/>
6949
7116
  <line number="13" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6950
7117
  <line number="14" hits="0" branch="false"/>
6951
7118
  <line number="15" hits="0" branch="false"/>
@@ -6983,7 +7150,7 @@
6983
7150
  </method>
6984
7151
  </methods>
6985
7152
  <lines>
6986
- <line number="8" hits="23" branch="false"/>
7153
+ <line number="8" hits="27" branch="false"/>
6987
7154
  <line number="9" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6988
7155
  <line number="10" hits="0" branch="false"/>
6989
7156
  <line number="11" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -6991,7 +7158,7 @@
6991
7158
  <line number="13" hits="0" branch="false"/>
6992
7159
  <line number="15" hits="0" branch="false"/>
6993
7160
  <line number="18" hits="0" branch="false"/>
6994
- <line number="23" hits="23" branch="false"/>
7161
+ <line number="23" hits="27" branch="false"/>
6995
7162
  <line number="24" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6996
7163
  <line number="26" hits="0" branch="false"/>
6997
7164
  <line number="28" hits="0" branch="false"/>
@@ -7027,7 +7194,7 @@
7027
7194
  </method>
7028
7195
  </methods>
7029
7196
  <lines>
7030
- <line number="22" hits="24" branch="false"/>
7197
+ <line number="22" hits="28" branch="false"/>
7031
7198
  <line number="30" hits="9" branch="false"/>
7032
7199
  <line number="31" hits="69" branch="false"/>
7033
7200
  <line number="35" hits="9" branch="false"/>
@@ -7071,10 +7238,10 @@
7071
7238
  </method>
7072
7239
  </methods>
7073
7240
  <lines>
7074
- <line number="10" hits="23" branch="false"/>
7075
- <line number="11" hits="23" branch="false"/>
7076
- <line number="12" hits="23" branch="false"/>
7077
- <line number="14" hits="23" branch="false"/>
7241
+ <line number="10" hits="27" branch="false"/>
7242
+ <line number="11" hits="27" branch="false"/>
7243
+ <line number="12" hits="27" branch="false"/>
7244
+ <line number="14" hits="27" branch="false"/>
7078
7245
  <line number="15" hits="0" branch="false"/>
7079
7246
  <line number="17" hits="0" branch="false"/>
7080
7247
  <line number="25" hits="0" branch="false"/>
@@ -7082,13 +7249,13 @@
7082
7249
  </class>
7083
7250
  </classes>
7084
7251
  </package>
7085
- <package name="utils.generateKiwtQueryParams" line-rate="0.4022" branch-rate="0.3619">
7252
+ <package name="utils.generateKiwtQueryParams" line-rate="0.6091" branch-rate="0.4857">
7086
7253
  <classes>
7087
- <class name="generateKiwtQueryParams.js" filename="src/lib/utils/generateKiwtQueryParams/generateKiwtQueryParams.js" line-rate="0.4022" branch-rate="0.3619">
7254
+ <class name="generateKiwtQueryParams.js" filename="src/lib/utils/generateKiwtQueryParams/generateKiwtQueryParams.js" line-rate="0.6091" branch-rate="0.4857">
7088
7255
  <methods>
7089
- <method name="(anonymous_0)" hits="5" signature="()V">
7256
+ <method name="(anonymous_0)" hits="835" signature="()V">
7090
7257
  <lines>
7091
- <line number="1" hits="5"/>
7258
+ <line number="1" hits="835"/>
7092
7259
  </lines>
7093
7260
  </method>
7094
7261
  <method name="(anonymous_1)" hits="8" signature="()V">
@@ -7116,14 +7283,14 @@
7116
7283
  <line number="33" hits="0"/>
7117
7284
  </lines>
7118
7285
  </method>
7119
- <method name="(anonymous_6)" hits="1" signature="()V">
7286
+ <method name="(anonymous_6)" hits="572" signature="()V">
7120
7287
  <lines>
7121
- <line number="66" hits="1"/>
7288
+ <line number="66" hits="572"/>
7122
7289
  </lines>
7123
7290
  </method>
7124
- <method name="(anonymous_7)" hits="0" signature="()V">
7291
+ <method name="(anonymous_7)" hits="117" signature="()V">
7125
7292
  <lines>
7126
- <line number="136" hits="0"/>
7293
+ <line number="136" hits="117"/>
7127
7294
  </lines>
7128
7295
  </method>
7129
7296
  <method name="(anonymous_8)" hits="1" signature="()V">
@@ -7131,14 +7298,14 @@
7131
7298
  <line number="142" hits="1"/>
7132
7299
  </lines>
7133
7300
  </method>
7134
- <method name="(anonymous_9)" hits="0" signature="()V">
7301
+ <method name="(anonymous_9)" hits="66" signature="()V">
7135
7302
  <lines>
7136
- <line number="152" hits="0"/>
7303
+ <line number="152" hits="66"/>
7137
7304
  </lines>
7138
7305
  </method>
7139
- <method name="(anonymous_10)" hits="0" signature="()V">
7306
+ <method name="(anonymous_10)" hits="66" signature="()V">
7140
7307
  <lines>
7141
- <line number="161" hits="0"/>
7308
+ <line number="161" hits="66"/>
7142
7309
  </lines>
7143
7310
  </method>
7144
7311
  <method name="(anonymous_11)" hits="0" signature="()V">
@@ -7161,9 +7328,9 @@
7161
7328
  <line number="184" hits="0"/>
7162
7329
  </lines>
7163
7330
  </method>
7164
- <method name="(anonymous_15)" hits="0" signature="()V">
7331
+ <method name="(anonymous_15)" hits="66" signature="()V">
7165
7332
  <lines>
7166
- <line number="186" hits="0"/>
7333
+ <line number="186" hits="66"/>
7167
7334
  </lines>
7168
7335
  </method>
7169
7336
  <method name="(anonymous_16)" hits="0" signature="()V">
@@ -7183,11 +7350,11 @@
7183
7350
  </method>
7184
7351
  </methods>
7185
7352
  <lines>
7186
- <line number="1" hits="24" branch="true" condition-coverage="0% (0/1)"/>
7187
- <line number="2" hits="5" branch="true" condition-coverage="50% (1/2)"/>
7188
- <line number="3" hits="0" branch="false"/>
7353
+ <line number="1" hits="28" branch="true" condition-coverage="0% (0/1)"/>
7354
+ <line number="2" hits="835" branch="true" condition-coverage="100% (2/2)"/>
7355
+ <line number="3" hits="830" branch="false"/>
7189
7356
  <line number="6" hits="5" branch="false"/>
7190
- <line number="11" hits="24" branch="true" condition-coverage="0% (0/2)"/>
7357
+ <line number="11" hits="28" branch="true" condition-coverage="0% (0/2)"/>
7191
7358
  <line number="12" hits="8" branch="true" condition-coverage="100% (2/2)"/>
7192
7359
  <line number="13" hits="3" branch="false"/>
7193
7360
  <line number="16" hits="3" branch="true" condition-coverage="90% (9/10)"/>
@@ -7208,30 +7375,30 @@
7208
7375
  <line number="45" hits="3" branch="false"/>
7209
7376
  <line number="48" hits="2" branch="false"/>
7210
7377
  <line number="51" hits="0" branch="false"/>
7211
- <line number="64" hits="24" branch="false"/>
7212
- <line number="66" hits="24" branch="true" condition-coverage="0% (0/1)"/>
7213
- <line number="67" hits="1" branch="false"/>
7214
- <line number="131" hits="1" branch="false"/>
7215
- <line number="133" hits="1" branch="false"/>
7216
- <line number="135" hits="1" branch="true" condition-coverage="50% (1/2)"/>
7217
- <line number="136" hits="0" branch="true" condition-coverage="0% (0/4)"/>
7218
- <line number="137" hits="0" branch="false"/>
7219
- <line number="141" hits="1" branch="true" condition-coverage="50% (1/2)"/>
7378
+ <line number="64" hits="28" branch="false"/>
7379
+ <line number="66" hits="28" branch="true" condition-coverage="0% (0/1)"/>
7380
+ <line number="67" hits="572" branch="false"/>
7381
+ <line number="131" hits="572" branch="false"/>
7382
+ <line number="133" hits="572" branch="false"/>
7383
+ <line number="135" hits="572" branch="true" condition-coverage="100% (2/2)"/>
7384
+ <line number="136" hits="117" branch="true" condition-coverage="75% (3/4)"/>
7385
+ <line number="137" hits="76" branch="false"/>
7386
+ <line number="141" hits="572" branch="true" condition-coverage="100% (2/2)"/>
7220
7387
  <line number="142" hits="1" branch="false"/>
7221
7388
  <line number="143" hits="1" branch="false"/>
7222
7389
  <line number="144" hits="1" branch="true" condition-coverage="50% (1/2)"/>
7223
7390
  <line number="145" hits="1" branch="false"/>
7224
- <line number="150" hits="1" branch="true" condition-coverage="50% (1/2)"/>
7225
- <line number="151" hits="0" branch="false"/>
7226
- <line number="152" hits="0" branch="false"/>
7227
- <line number="153" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7228
- <line number="154" hits="0" branch="false"/>
7229
- <line number="156" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7230
- <line number="157" hits="0" branch="false"/>
7231
- <line number="161" hits="0" branch="false"/>
7232
- <line number="162" hits="0" branch="false"/>
7233
- <line number="163" hits="0" branch="false"/>
7234
- <line number="164" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7391
+ <line number="150" hits="572" branch="true" condition-coverage="100% (2/2)"/>
7392
+ <line number="151" hits="66" branch="false"/>
7393
+ <line number="152" hits="66" branch="false"/>
7394
+ <line number="153" hits="66" branch="true" condition-coverage="50% (1/2)"/>
7395
+ <line number="154" hits="66" branch="false"/>
7396
+ <line number="156" hits="66" branch="true" condition-coverage="50% (1/2)"/>
7397
+ <line number="157" hits="66" branch="false"/>
7398
+ <line number="161" hits="66" branch="false"/>
7399
+ <line number="162" hits="66" branch="false"/>
7400
+ <line number="163" hits="66" branch="false"/>
7401
+ <line number="164" hits="66" branch="true" condition-coverage="50% (1/2)"/>
7235
7402
  <line number="168" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7236
7403
  <line number="171" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7237
7404
  <line number="172" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -7239,18 +7406,18 @@
7239
7406
  <line number="175" hits="0" branch="true" condition-coverage="0% (0/4)"/>
7240
7407
  <line number="179" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7241
7408
  <line number="181" hits="0" branch="false"/>
7242
- <line number="182" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7409
+ <line number="182" hits="66" branch="true" condition-coverage="50% (1/2)"/>
7243
7410
  <line number="184" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7244
- <line number="186" hits="0" branch="false"/>
7245
- <line number="187" hits="0" branch="false"/>
7246
- <line number="192" hits="1" branch="true" condition-coverage="50% (2/4)"/>
7411
+ <line number="186" hits="66" branch="false"/>
7412
+ <line number="187" hits="66" branch="false"/>
7413
+ <line number="192" hits="572" branch="true" condition-coverage="50% (2/4)"/>
7247
7414
  <line number="193" hits="0" branch="false"/>
7248
7415
  <line number="194" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7249
7416
  <line number="195" hits="0" branch="false"/>
7250
7417
  <line number="196" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7251
7418
  <line number="197" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7252
7419
  <line number="198" hits="0" branch="false"/>
7253
- <line number="203" hits="1" branch="true" condition-coverage="50% (1/2)"/>
7420
+ <line number="203" hits="572" branch="true" condition-coverage="50% (1/2)"/>
7254
7421
  <line number="204" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7255
7422
  <line number="205" hits="0" branch="false"/>
7256
7423
  <line number="206" hits="0" branch="false"/>
@@ -7264,12 +7431,12 @@
7264
7431
  <line number="218" hits="0" branch="false"/>
7265
7432
  <line number="219" hits="0" branch="false"/>
7266
7433
  <line number="222" hits="0" branch="false"/>
7267
- <line number="227" hits="1" branch="true" condition-coverage="50% (1/2)"/>
7268
- <line number="228" hits="1" branch="false"/>
7269
- <line number="231" hits="1" branch="false"/>
7270
- <line number="232" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7271
- <line number="233" hits="0" branch="false"/>
7272
- <line number="237" hits="1" branch="false"/>
7434
+ <line number="227" hits="572" branch="true" condition-coverage="50% (1/2)"/>
7435
+ <line number="228" hits="572" branch="false"/>
7436
+ <line number="231" hits="572" branch="false"/>
7437
+ <line number="232" hits="1142" branch="true" condition-coverage="100% (2/2)"/>
7438
+ <line number="233" hits="571" branch="false"/>
7439
+ <line number="237" hits="572" branch="false"/>
7273
7440
  </lines>
7274
7441
  </class>
7275
7442
  <class name="index.js" filename="src/lib/utils/generateKiwtQueryParams/index.js" line-rate="0" branch-rate="0">
@@ -7297,7 +7464,7 @@
7297
7464
  </method>
7298
7465
  </methods>
7299
7466
  <lines>
7300
- <line number="1" hits="23" branch="false"/>
7467
+ <line number="1" hits="27" branch="false"/>
7301
7468
  <line number="2" hits="0" branch="false"/>
7302
7469
  <line number="3" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7303
7470
  <line number="4" hits="0" branch="false"/>
@@ -7373,33 +7540,33 @@
7373
7540
  </method>
7374
7541
  </methods>
7375
7542
  <lines>
7376
- <line number="4" hits="23" branch="false"/>
7543
+ <line number="4" hits="27" branch="false"/>
7377
7544
  <line number="5" hits="178" branch="false"/>
7378
7545
  <line number="6" hits="178" branch="true" condition-coverage="100% (6/6)"/>
7379
7546
  <line number="7" hits="154" branch="false"/>
7380
7547
  <line number="9" hits="24" branch="false"/>
7381
- <line number="12" hits="23" branch="true" condition-coverage="0% (0/1)"/>
7548
+ <line number="12" hits="27" branch="true" condition-coverage="0% (0/1)"/>
7382
7549
  <line number="15" hits="0" branch="false"/>
7383
7550
  <line number="16" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7384
7551
  <line number="17" hits="0" branch="false"/>
7385
7552
  <line number="19" hits="0" branch="false"/>
7386
- <line number="22" hits="23" branch="false"/>
7553
+ <line number="22" hits="27" branch="false"/>
7387
7554
  <line number="23" hits="80" branch="false"/>
7388
7555
  <line number="24" hits="40" branch="false"/>
7389
7556
  <line number="25" hits="80" branch="true" condition-coverage="100% (2/2)"/>
7390
- <line number="31" hits="23" branch="false"/>
7557
+ <line number="31" hits="27" branch="false"/>
7391
7558
  <line number="32" hits="0" branch="false"/>
7392
7559
  <line number="33" hits="0" branch="false"/>
7393
7560
  <line number="34" hits="0" branch="true" condition-coverage="0% (0/2)"/>
7394
- <line number="40" hits="23" branch="true" condition-coverage="0% (0/1)"/>
7561
+ <line number="40" hits="27" branch="true" condition-coverage="0% (0/1)"/>
7395
7562
  <line number="41" hits="0" branch="true" condition-coverage="0% (0/4)"/>
7396
7563
  <line number="42" hits="0" branch="false"/>
7397
7564
  <line number="52" hits="0" branch="false"/>
7398
- <line number="55" hits="23" branch="true" condition-coverage="0% (0/1)"/>
7565
+ <line number="55" hits="27" branch="true" condition-coverage="0% (0/1)"/>
7399
7566
  <line number="56" hits="0" branch="true" condition-coverage="0% (0/5)"/>
7400
7567
  <line number="57" hits="0" branch="false"/>
7401
7568
  <line number="68" hits="0" branch="false"/>
7402
- <line number="71" hits="23" branch="true" condition-coverage="0% (0/1)"/>
7569
+ <line number="71" hits="27" branch="true" condition-coverage="0% (0/1)"/>
7403
7570
  <line number="72" hits="0" branch="true" condition-coverage="0% (0/5)"/>
7404
7571
  <line number="73" hits="0" branch="false"/>
7405
7572
  <line number="84" hits="0" branch="false"/>