@k-int/stripes-kint-components 3.0.4 → 3.1.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 (317) hide show
  1. package/CHANGELOG.md +10 -10
  2. package/LICENSE +201 -0
  3. package/es/artifacts/coverage-jest/lcov-report/block-navigation.js +6 -19
  4. package/es/artifacts/coverage-jest/lcov-report/prettify.js +2 -182
  5. package/es/artifacts/coverage-jest/lcov-report/sorter.js +64 -94
  6. package/es/index.js +13 -27
  7. package/es/lib/ActionList/ActionList.js +20 -40
  8. package/es/lib/ActionList/ActionListFieldArray.js +67 -129
  9. package/es/lib/ActionList/index.js +0 -2
  10. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.js +34 -61
  11. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.test.js +2 -9
  12. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +92 -138
  13. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.test.js +3 -18
  14. package/es/lib/CustomProperties/Config/CustomPropertyForm.js +18 -51
  15. package/es/lib/CustomProperties/Config/CustomPropertyForm.test.js +13 -35
  16. package/es/lib/CustomProperties/Config/CustomPropertyView.js +5 -14
  17. package/es/lib/CustomProperties/Config/CustomPropertyView.test.js +1 -23
  18. package/es/lib/CustomProperties/Config/index.js +0 -5
  19. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +8 -14
  20. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.test.js +1 -9
  21. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +25 -35
  22. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.test.js +1 -9
  23. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +32 -75
  24. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.test.js +3 -20
  25. package/es/lib/CustomProperties/Edit/CustomPropertyField.js +34 -91
  26. package/es/lib/CustomProperties/Edit/CustomPropertyField.test.js +6 -33
  27. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +15 -27
  28. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +3 -13
  29. package/es/lib/CustomProperties/Edit/index.js +0 -6
  30. package/es/lib/CustomProperties/Edit/testResources.js +0 -3
  31. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +35 -67
  32. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.test.js +2 -19
  33. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +13 -42
  34. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +1 -12
  35. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +6 -18
  36. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +2 -19
  37. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +10 -23
  38. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +2 -19
  39. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +13 -31
  40. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +1 -32
  41. package/es/lib/CustomProperties/Filter/index.js +0 -7
  42. package/es/lib/CustomProperties/Filter/testResources.js +0 -3
  43. package/es/lib/CustomProperties/Filter/useOperators.js +5 -19
  44. package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +3 -15
  45. package/es/lib/CustomProperties/Filter/useValueProps.js +5 -22
  46. package/es/lib/CustomProperties/View/CustomPropertiesView.js +8 -14
  47. package/es/lib/CustomProperties/View/CustomPropertiesView.test.js +1 -10
  48. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +45 -62
  49. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +1 -13
  50. package/es/lib/CustomProperties/View/CustomPropertyCard.js +11 -33
  51. package/es/lib/CustomProperties/View/index.js +0 -4
  52. package/es/lib/CustomProperties/index.js +0 -4
  53. package/es/lib/CycleButton/CycleButton.js +8 -33
  54. package/es/lib/CycleButton/index.js +0 -2
  55. package/es/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +87 -132
  56. package/es/lib/EditableRefdataCategoryList/index.js +0 -2
  57. package/es/lib/EditableRefdataList/EditableRefdataList.js +92 -140
  58. package/es/lib/EditableRefdataList/index.js +0 -2
  59. package/es/lib/EditableSettingsList/EditableSettingsList.js +7 -17
  60. package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.js +6 -19
  61. package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.test.js +4 -19
  62. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.js +7 -29
  63. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +19 -26
  64. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.js +6 -23
  65. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +14 -35
  66. package/es/lib/EditableSettingsList/SettingField/SettingField.js +18 -55
  67. package/es/lib/EditableSettingsList/SettingField/SettingField.test.js +1 -34
  68. package/es/lib/EditableSettingsList/SettingField/index.js +0 -4
  69. package/es/lib/EditableSettingsList/index.js +0 -4
  70. package/es/lib/FormModal/FormModal.js +16 -35
  71. package/es/lib/FormModal/index.js +0 -2
  72. package/es/lib/FormattedKintMessage/FormattedKintMessage.js +10 -31
  73. package/es/lib/FormattedKintMessage/index.js +0 -2
  74. package/es/lib/IconSelect/IconSelect.js +26 -63
  75. package/es/lib/IconSelect/index.js +0 -2
  76. package/es/lib/NoResultsMessage/NoResultsMessage.js +18 -28
  77. package/es/lib/NoResultsMessage/index.js +0 -2
  78. package/es/lib/QueryTypedown/QueryTypedown.js +9 -36
  79. package/es/lib/QueryTypedown/index.js +0 -2
  80. package/es/lib/RefdataButtons/RefdataButtons.js +5 -24
  81. package/es/lib/RefdataButtons/index.js +0 -2
  82. package/es/lib/ResponsiveButtonGroup/ResponsiveButtonGroup.js +148 -0
  83. package/es/lib/ResponsiveButtonGroup/index.js +13 -0
  84. package/es/lib/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js +74 -0
  85. package/es/lib/RichSelect/RichSelect.js +37 -65
  86. package/es/lib/RichSelect/index.js +0 -3
  87. package/es/lib/RichSelect/useSelectedOption.js +3 -14
  88. package/es/lib/SASQLookupComponent/SASQLookupComponent.js +75 -93
  89. package/es/lib/SASQLookupComponent/TableBody/TableBody.js +20 -33
  90. package/es/lib/SASQLookupComponent/TableBody/index.js +0 -2
  91. package/es/lib/SASQLookupComponent/index.js +0 -3
  92. package/es/lib/SASQRoute/SASQRoute.js +21 -29
  93. package/es/lib/SASQRoute/index.js +0 -2
  94. package/es/lib/SASQViewComponent/SASQViewComponent.js +37 -41
  95. package/es/lib/SASQViewComponent/index.js +0 -2
  96. package/es/lib/SearchField/SearchField.js +1 -17
  97. package/es/lib/SearchField/index.js +0 -2
  98. package/es/lib/SettingPage/SettingPage.js +10 -25
  99. package/es/lib/SettingPage/SettingPagePane.js +3 -11
  100. package/es/lib/SettingPage/index.js +0 -3
  101. package/es/lib/Typedown/Typedown.js +51 -82
  102. package/es/lib/Typedown/index.js +0 -2
  103. package/es/lib/contexts/SettingsContext.js +0 -2
  104. package/es/lib/contexts/index.js +0 -2
  105. package/es/lib/hooks/__mocks__/index.js +0 -5
  106. package/es/lib/hooks/index.js +7 -18
  107. package/es/lib/hooks/settingsHooks/index.js +0 -4
  108. package/es/lib/hooks/settingsHooks/useAppSettings.js +6 -27
  109. package/es/lib/hooks/settingsHooks/useSettingSection.js +10 -20
  110. package/es/lib/hooks/settingsHooks/useSettings.js +13 -44
  111. package/es/lib/hooks/typedownHooks/index.js +0 -4
  112. package/es/lib/hooks/typedownHooks/useTypedown.js +17 -37
  113. package/es/lib/hooks/typedownHooks/useTypedownData.js +12 -26
  114. package/es/lib/hooks/typedownHooks/useTypedownToggle.js +5 -19
  115. package/es/lib/hooks/useActiveElement.js +3 -15
  116. package/es/lib/hooks/useCustomProperties.js +11 -25
  117. package/es/lib/hooks/useHelperApp.js +7 -30
  118. package/es/lib/hooks/useIntlKey.js +0 -7
  119. package/es/lib/hooks/useIntlKeyStore.js +2 -24
  120. package/es/lib/hooks/useInvalidateRefdata.js +0 -4
  121. package/es/lib/hooks/useKintIntl.js +13 -32
  122. package/es/lib/hooks/useKiwtFieldArray.js +5 -29
  123. package/es/lib/hooks/useKiwtSASQuery.js +12 -37
  124. package/es/lib/hooks/useLocalStorageState.js +5 -21
  125. package/es/lib/hooks/useMutateCustomProperties.js +11 -28
  126. package/es/lib/hooks/useMutateRefdataCategory.js +9 -29
  127. package/es/lib/hooks/useMutateRefdataValue.js +10 -27
  128. package/es/lib/hooks/useQIndex.js +3 -27
  129. package/es/lib/hooks/useRefdata.js +7 -16
  130. package/es/lib/hooks/useSASQQueryMeta.js +41 -0
  131. package/es/lib/hooks/useTemplates.js +6 -17
  132. package/es/lib/utils/buildUrl.js +1 -10
  133. package/es/lib/utils/generateKiwtQuery.js +0 -4
  134. package/es/lib/utils/generateKiwtQueryParams.js +24 -62
  135. package/es/lib/utils/groupCustomPropertiesByCtx.js +0 -14
  136. package/es/lib/utils/highlightString.js +6 -23
  137. package/es/lib/utils/index.js +0 -15
  138. package/es/lib/utils/matchString.js +0 -6
  139. package/es/lib/utils/parseErrorResponse.js +1 -23
  140. package/es/lib/utils/refdataQueryKey.js +0 -4
  141. package/es/lib/utils/selectorSafe.js +0 -2
  142. package/es/lib/utils/sortByLabel.js +0 -6
  143. package/es/lib/utils/toCamelCase.js +6 -5
  144. package/es/lib/utils/typedownQueryKey.js +0 -4
  145. package/es/lib/utils/validators.js +5 -38
  146. package/junit.xml +150 -150
  147. package/package.json +2 -2
  148. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionList.js.html +1 -1
  149. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionListFieldArray.js.html +1 -1
  150. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.html +1 -1
  151. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.js.html +1 -1
  152. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesLookup.js.html +1 -1
  153. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesSettings.js.html +4 -4
  154. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyForm.js.html +1 -1
  155. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyView.js.html +1 -1
  156. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.html +5 -5
  157. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.js.html +1 -1
  158. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEdit.js.html +1 -1
  159. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEditCtx.js.html +1 -1
  160. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesListField.js.html +1 -1
  161. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyField.js.html +29 -92
  162. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyFormCard.js.html +1 -1
  163. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.html +19 -19
  164. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.js.html +1 -1
  165. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/testResources.js.html +1 -1
  166. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilter.js.html +1 -1
  167. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterField.js.html +1 -1
  168. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js.html +1 -1
  169. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterForm.js.html +1 -1
  170. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesRule.js.html +1 -1
  171. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.html +1 -1
  172. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.js.html +1 -1
  173. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/testResources.js.html +1 -1
  174. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useOperators.js.html +1 -1
  175. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useParseActiveFilterStrings.js.html +1 -1
  176. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useValueProps.js.html +1 -1
  177. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesView.js.html +1 -1
  178. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesViewCtx.js.html +17 -17
  179. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertyCard.js.html +1 -1
  180. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.html +15 -15
  181. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.js.html +1 -1
  182. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/testResources.js.html +1 -1
  183. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.html +1 -1
  184. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.js.html +1 -1
  185. package/src/artifacts/coverage-jest/lcov-report/CycleButton/CycleButton.js.html +1 -1
  186. package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.html +1 -1
  187. package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.js.html +1 -1
  188. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/EditableRefdataCategoryList.js.html +1 -1
  189. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.html +1 -1
  190. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.js.html +1 -1
  191. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/EditableRefdataList.js.html +1 -1
  192. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.html +1 -1
  193. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.js.html +1 -1
  194. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsList.js.html +1 -1
  195. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsListFieldArray.js.html +1 -1
  196. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/EditSettingValue.js.html +1 -1
  197. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/RenderSettingValue.js.html +1 -1
  198. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/SettingField.js.html +1 -1
  199. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.html +1 -1
  200. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.js.html +1 -1
  201. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.html +1 -1
  202. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.js.html +1 -1
  203. package/src/artifacts/coverage-jest/lcov-report/FormModal/FormModal.js.html +1 -1
  204. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.html +1 -1
  205. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.js.html +1 -1
  206. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/FormattedKintMessage.js.html +3 -3
  207. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.html +1 -1
  208. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.js.html +1 -1
  209. package/src/artifacts/coverage-jest/lcov-report/IconSelect/IconSelect.js.html +1 -1
  210. package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.html +1 -1
  211. package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.js.html +1 -1
  212. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/NoResultsMessage.js.html +2 -2
  213. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.html +1 -1
  214. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.js.html +1 -1
  215. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/QueryTypedown.js.html +1 -1
  216. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.html +1 -1
  217. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.js.html +1 -1
  218. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/RefdataButtons.js.html +1 -1
  219. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.html +1 -1
  220. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.js.html +1 -1
  221. package/src/artifacts/coverage-jest/lcov-report/ResponsiveButtonGroup/ResponsiveButtonGroup.js.html +535 -0
  222. package/src/artifacts/coverage-jest/lcov-report/ResponsiveButtonGroup/index.html +146 -0
  223. package/src/artifacts/coverage-jest/lcov-report/ResponsiveButtonGroup/index.js.html +88 -0
  224. package/src/artifacts/coverage-jest/lcov-report/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js.html +253 -0
  225. package/src/artifacts/coverage-jest/lcov-report/RichSelect/RichSelect.js.html +1 -1
  226. package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.html +1 -1
  227. package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.js.html +1 -1
  228. package/src/artifacts/coverage-jest/lcov-report/RichSelect/useSelectedOption.js.html +1 -1
  229. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/SASQLookupComponent.js.html +99 -12
  230. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/TableBody.js.html +1 -1
  231. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.html +1 -1
  232. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.js.html +1 -1
  233. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.html +9 -9
  234. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.js.html +1 -1
  235. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/SASQRoute.js.html +53 -8
  236. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.html +7 -7
  237. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.js.html +1 -1
  238. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/SASQViewComponent.js.html +65 -11
  239. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.html +9 -9
  240. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.js.html +1 -1
  241. package/src/artifacts/coverage-jest/lcov-report/SearchField/SearchField.js.html +1 -1
  242. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.html +1 -1
  243. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.js.html +1 -1
  244. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPage.js.html +1 -1
  245. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPagePane.js.html +1 -1
  246. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.html +1 -1
  247. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.js.html +1 -1
  248. package/src/artifacts/coverage-jest/lcov-report/Typedown/Typedown.js.html +1 -1
  249. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.html +1 -1
  250. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.js.html +1 -1
  251. package/src/artifacts/coverage-jest/lcov-report/constants/customProperties.js.html +1 -1
  252. package/src/artifacts/coverage-jest/lcov-report/constants/eventCodes.js.html +1 -1
  253. package/src/artifacts/coverage-jest/lcov-report/constants/index.html +1 -1
  254. package/src/artifacts/coverage-jest/lcov-report/contexts/SettingsContext.js.html +1 -1
  255. package/src/artifacts/coverage-jest/lcov-report/contexts/index.html +1 -1
  256. package/src/artifacts/coverage-jest/lcov-report/contexts/index.js.html +1 -1
  257. package/src/artifacts/coverage-jest/lcov-report/hooks/index.html +24 -9
  258. package/src/artifacts/coverage-jest/lcov-report/hooks/index.js.html +5 -2
  259. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.html +1 -1
  260. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.js.html +1 -1
  261. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useAppSettings.js.html +1 -1
  262. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettingSection.js.html +1 -1
  263. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettings.js.html +1 -1
  264. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.html +1 -1
  265. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.js.html +1 -1
  266. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedown.js.html +1 -1
  267. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownData.js.html +1 -1
  268. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownToggle.js.html +1 -1
  269. package/src/artifacts/coverage-jest/lcov-report/hooks/useActiveElement.js.html +1 -1
  270. package/src/artifacts/coverage-jest/lcov-report/hooks/useCustomProperties.js.html +1 -1
  271. package/src/artifacts/coverage-jest/lcov-report/hooks/useHelperApp.js.html +1 -1
  272. package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKey.js.html +1 -1
  273. package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKeyStore.js.html +3 -3
  274. package/src/artifacts/coverage-jest/lcov-report/hooks/useInvalidateRefdata.js.html +1 -1
  275. package/src/artifacts/coverage-jest/lcov-report/hooks/useKintIntl.js.html +1 -1
  276. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtFieldArray.js.html +1 -1
  277. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtSASQuery.js.html +1 -1
  278. package/src/artifacts/coverage-jest/lcov-report/hooks/useLocalStorageState.js.html +1 -1
  279. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateCustomProperties.js.html +1 -1
  280. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataCategory.js.html +1 -1
  281. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataValue.js.html +1 -1
  282. package/src/artifacts/coverage-jest/lcov-report/hooks/useQIndex.js.html +1 -1
  283. package/src/artifacts/coverage-jest/lcov-report/hooks/useRefdata.js.html +1 -1
  284. package/src/artifacts/coverage-jest/lcov-report/hooks/useSASQQueryMeta.js.html +187 -0
  285. package/src/artifacts/coverage-jest/lcov-report/hooks/useTemplates.js.html +1 -1
  286. package/src/artifacts/coverage-jest/lcov-report/index.html +74 -59
  287. package/src/artifacts/coverage-jest/lcov-report/utils/buildUrl.js.html +1 -1
  288. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQuery.js.html +2 -2
  289. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQueryParams.js.html +2 -2
  290. package/src/artifacts/coverage-jest/lcov-report/utils/groupCustomPropertiesByCtx.js.html +2 -2
  291. package/src/artifacts/coverage-jest/lcov-report/utils/highlightString.js.html +3 -3
  292. package/src/artifacts/coverage-jest/lcov-report/utils/index.html +20 -20
  293. package/src/artifacts/coverage-jest/lcov-report/utils/index.js.html +1 -1
  294. package/src/artifacts/coverage-jest/lcov-report/utils/matchString.js.html +2 -2
  295. package/src/artifacts/coverage-jest/lcov-report/utils/parseErrorResponse.js.html +2 -2
  296. package/src/artifacts/coverage-jest/lcov-report/utils/refdataOptions.js.html +1 -1
  297. package/src/artifacts/coverage-jest/lcov-report/utils/refdataQueryKey.js.html +2 -2
  298. package/src/artifacts/coverage-jest/lcov-report/utils/selectorSafe.js.html +2 -2
  299. package/src/artifacts/coverage-jest/lcov-report/utils/sortByLabel.js.html +2 -2
  300. package/src/artifacts/coverage-jest/lcov-report/utils/toCamelCase.js.html +2 -2
  301. package/src/artifacts/coverage-jest/lcov-report/utils/typedownQueryKey.js.html +2 -2
  302. package/src/artifacts/coverage-jest/lcov-report/utils/validators.js.html +39 -39
  303. package/src/artifacts/coverage-jest/lcov.info +567 -359
  304. package/src/index.js +4 -1
  305. package/src/lib/CustomProperties/Edit/CustomPropertyField.js +0 -7
  306. package/src/lib/NoResultsMessage/NoResultsMessage.js +1 -1
  307. package/src/lib/ResponsiveButtonGroup/README.md +31 -0
  308. package/src/lib/ResponsiveButtonGroup/ResponsiveButtonGroup.js +150 -0
  309. package/src/lib/ResponsiveButtonGroup/index.js +1 -0
  310. package/src/lib/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js +56 -0
  311. package/src/lib/SASQLookupComponent/SASQLookupComponent.js +34 -5
  312. package/src/lib/SASQRoute/SASQRoute.js +18 -3
  313. package/src/lib/SASQViewComponent/SASQViewComponent.js +23 -5
  314. package/src/lib/hooks/index.js +1 -0
  315. package/src/lib/hooks/useSASQQueryMeta.js +34 -0
  316. package/styles/ResponsiveButtonGroup.css +79 -0
  317. package/yarn-error.log +147 -0
@@ -142,7 +142,7 @@ export default useActiveElement;
142
142
  <div class='footer quiet pad2 space-top1 center small'>
143
143
  Code coverage generated by
144
144
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
145
- at 2022-09-16T13:23:25.290Z
145
+ at 2022-11-03T13:44:33.087Z
146
146
  </div>
147
147
  <script src="../prettify.js"></script>
148
148
  <script>
@@ -310,7 +310,7 @@ export default useCustomProperties;
310
310
  <div class='footer quiet pad2 space-top1 center small'>
311
311
  Code coverage generated by
312
312
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
313
- at 2022-09-16T13:23:25.290Z
313
+ at 2022-11-03T13:44:33.087Z
314
314
  </div>
315
315
  <script src="../prettify.js"></script>
316
316
  <script>
@@ -268,7 +268,7 @@ export default useHelperApp;
268
268
  <div class='footer quiet pad2 space-top1 center small'>
269
269
  Code coverage generated by
270
270
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
271
- at 2022-09-16T13:23:25.290Z
271
+ at 2022-11-03T13:44:33.087Z
272
272
  </div>
273
273
  <script src="../prettify.js"></script>
274
274
  <script>
@@ -136,7 +136,7 @@ export default useIntlKey;
136
136
  <div class='footer quiet pad2 space-top1 center small'>
137
137
  Code coverage generated by
138
138
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
139
- at 2022-09-16T13:23:25.290Z
139
+ at 2022-11-03T13:44:33.087Z
140
140
  </div>
141
141
  <script src="../prettify.js"></script>
142
142
  <script>
@@ -153,7 +153,7 @@ const useIntlKeyStore = <span class="cstat-no" title="statement not covered" >cr
153
153
  <span class="cstat-no" title="statement not covered" > ns = folioNS;</span>
154
154
  }
155
155
  &nbsp;
156
- <span class="cstat-no" title="statement not covered" > return { intlKeys: { [ns]: key, ...state } };</span>
156
+ <span class="cstat-no" title="statement not covered" > return { ...state, intlKeys: { [ns]: key, ...state.intlKeys } };</span>
157
157
  }),
158
158
  removeKey: <span class="fstat-no" title="function not covered" >(n</span>amespace) =&gt; <span class="cstat-no" title="statement not covered" >set(<span class="fstat-no" title="function not covered" >(s</span>tate) =&gt; {</span>
159
159
  let ns = <span class="cstat-no" title="statement not covered" >namespace;</span>
@@ -163,7 +163,7 @@ const useIntlKeyStore = <span class="cstat-no" title="statement not covered" >cr
163
163
  }
164
164
  &nbsp;
165
165
  const { [ns]: _valueToRemove, ...newKeys } = <span class="cstat-no" title="statement not covered" >state.intlKeys;</span>
166
- <span class="cstat-no" title="statement not covered" > return { intlKeys: newKeys };</span>
166
+ <span class="cstat-no" title="statement not covered" > return { ...state, intlKeys: newKeys };</span>
167
167
  }),
168
168
  getKey: <span class="fstat-no" title="function not covered" >(n</span>amespace) =&gt; {
169
169
  let ns = <span class="cstat-no" title="statement not covered" >namespace;</span>
@@ -184,7 +184,7 @@ export default useIntlKeyStore;
184
184
  <div class='footer quiet pad2 space-top1 center small'>
185
185
  Code coverage generated by
186
186
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
187
- at 2022-09-16T13:23:25.290Z
187
+ at 2022-11-03T13:44:33.087Z
188
188
  </div>
189
189
  <script src="../prettify.js"></script>
190
190
  <script>
@@ -103,7 +103,7 @@ export default useInvalidateRefdata;
103
103
  <div class='footer quiet pad2 space-top1 center small'>
104
104
  Code coverage generated by
105
105
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
106
- at 2022-09-16T13:23:25.290Z
106
+ at 2022-11-03T13:44:33.087Z
107
107
  </div>
108
108
  <script src="../prettify.js"></script>
109
109
  <script>
@@ -223,7 +223,7 @@ export default useKintIntl;
223
223
  <div class='footer quiet pad2 space-top1 center small'>
224
224
  Code coverage generated by
225
225
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
226
- at 2022-09-16T13:23:25.290Z
226
+ at 2022-11-03T13:44:33.087Z
227
227
  </div>
228
228
  <script src="../prettify.js"></script>
229
229
  <script>
@@ -259,7 +259,7 @@ export default useKiwtFieldArray;
259
259
  <div class='footer quiet pad2 space-top1 center small'>
260
260
  Code coverage generated by
261
261
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
262
- at 2022-09-16T13:23:25.290Z
262
+ at 2022-11-03T13:44:33.087Z
263
263
  </div>
264
264
  <script src="../prettify.js"></script>
265
265
  <script>
@@ -181,7 +181,7 @@ export default useKiwtSASQuery;
181
181
  <div class='footer quiet pad2 space-top1 center small'>
182
182
  Code coverage generated by
183
183
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
184
- at 2022-09-16T13:23:25.290Z
184
+ at 2022-11-03T13:44:33.087Z
185
185
  </div>
186
186
  <script src="../prettify.js"></script>
187
187
  <script>
@@ -121,7 +121,7 @@ export default useLocalStorageState;
121
121
  <div class='footer quiet pad2 space-top1 center small'>
122
122
  Code coverage generated by
123
123
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
124
- at 2022-09-16T13:23:25.290Z
124
+ at 2022-11-03T13:44:33.087Z
125
125
  </div>
126
126
  <script src="../prettify.js"></script>
127
127
  <script>
@@ -268,7 +268,7 @@ export default useMutateCustomProperties;
268
268
  <div class='footer quiet pad2 space-top1 center small'>
269
269
  Code coverage generated by
270
270
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
271
- at 2022-09-16T13:23:25.290Z
271
+ at 2022-11-03T13:44:33.087Z
272
272
  </div>
273
273
  <script src="../prettify.js"></script>
274
274
  <script>
@@ -259,7 +259,7 @@ export default useMutateRefdataCategory;
259
259
  <div class='footer quiet pad2 space-top1 center small'>
260
260
  Code coverage generated by
261
261
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
262
- at 2022-09-16T13:23:25.290Z
262
+ at 2022-11-03T13:44:33.087Z
263
263
  </div>
264
264
  <script src="../prettify.js"></script>
265
265
  <script>
@@ -307,7 +307,7 @@ export default useMutateRefdataValue;
307
307
  <div class='footer quiet pad2 space-top1 center small'>
308
308
  Code coverage generated by
309
309
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
310
- at 2022-09-16T13:23:25.290Z
310
+ at 2022-11-03T13:44:33.087Z
311
311
  </div>
312
312
  <script src="../prettify.js"></script>
313
313
  <script>
@@ -193,7 +193,7 @@ export default useQIndex;
193
193
  <div class='footer quiet pad2 space-top1 center small'>
194
194
  Code coverage generated by
195
195
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
196
- at 2022-09-16T13:23:25.290Z
196
+ at 2022-11-03T13:44:33.087Z
197
197
  </div>
198
198
  <script src="../prettify.js"></script>
199
199
  <script>
@@ -250,7 +250,7 @@ export default useRefdata;
250
250
  <div class='footer quiet pad2 space-top1 center small'>
251
251
  Code coverage generated by
252
252
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
253
- at 2022-09-16T13:23:25.290Z
253
+ at 2022-11-03T13:44:33.087Z
254
254
  </div>
255
255
  <script src="../prettify.js"></script>
256
256
  <script>
@@ -0,0 +1,187 @@
1
+
2
+ <!doctype html>
3
+ <html lang="en">
4
+
5
+ <head>
6
+ <title>Code coverage report for hooks/useSASQQueryMeta.js</title>
7
+ <meta charset="utf-8" />
8
+ <link rel="stylesheet" href="../prettify.css" />
9
+ <link rel="stylesheet" href="../base.css" />
10
+ <link rel="shortcut icon" type="image/x-icon" href="../favicon.png" />
11
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
12
+ <style type='text/css'>
13
+ .coverage-summary .sorter {
14
+ background-image: url(../sort-arrow-sprite.png);
15
+ }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <div class='wrapper'>
21
+ <div class='pad1'>
22
+ <h1><a href="../index.html">All files</a> / <a href="index.html">hooks</a> useSASQQueryMeta.js</h1>
23
+ <div class='clearfix'>
24
+
25
+ <div class='fl pad1y space-right2'>
26
+ <span class="strong">0% </span>
27
+ <span class="quiet">Statements</span>
28
+ <span class='fraction'>0/14</span>
29
+ </div>
30
+
31
+
32
+ <div class='fl pad1y space-right2'>
33
+ <span class="strong">0% </span>
34
+ <span class="quiet">Branches</span>
35
+ <span class='fraction'>0/4</span>
36
+ </div>
37
+
38
+
39
+ <div class='fl pad1y space-right2'>
40
+ <span class="strong">0% </span>
41
+ <span class="quiet">Functions</span>
42
+ <span class='fraction'>0/3</span>
43
+ </div>
44
+
45
+
46
+ <div class='fl pad1y space-right2'>
47
+ <span class="strong">0% </span>
48
+ <span class="quiet">Lines</span>
49
+ <span class='fraction'>0/14</span>
50
+ </div>
51
+
52
+
53
+ </div>
54
+ <p class="quiet">
55
+ Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
56
+ </p>
57
+ <template id="filterTemplate">
58
+ <div class="quiet">
59
+ Filter:
60
+ <input oninput="onInput()" type="search" id="fileSearch">
61
+ </div>
62
+ </template>
63
+ </div>
64
+ <div class='status-line low'></div>
65
+ <pre><table class="coverage">
66
+ <tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
67
+ <a name='L2'></a><a href='#L2'>2</a>
68
+ <a name='L3'></a><a href='#L3'>3</a>
69
+ <a name='L4'></a><a href='#L4'>4</a>
70
+ <a name='L5'></a><a href='#L5'>5</a>
71
+ <a name='L6'></a><a href='#L6'>6</a>
72
+ <a name='L7'></a><a href='#L7'>7</a>
73
+ <a name='L8'></a><a href='#L8'>8</a>
74
+ <a name='L9'></a><a href='#L9'>9</a>
75
+ <a name='L10'></a><a href='#L10'>10</a>
76
+ <a name='L11'></a><a href='#L11'>11</a>
77
+ <a name='L12'></a><a href='#L12'>12</a>
78
+ <a name='L13'></a><a href='#L13'>13</a>
79
+ <a name='L14'></a><a href='#L14'>14</a>
80
+ <a name='L15'></a><a href='#L15'>15</a>
81
+ <a name='L16'></a><a href='#L16'>16</a>
82
+ <a name='L17'></a><a href='#L17'>17</a>
83
+ <a name='L18'></a><a href='#L18'>18</a>
84
+ <a name='L19'></a><a href='#L19'>19</a>
85
+ <a name='L20'></a><a href='#L20'>20</a>
86
+ <a name='L21'></a><a href='#L21'>21</a>
87
+ <a name='L22'></a><a href='#L22'>22</a>
88
+ <a name='L23'></a><a href='#L23'>23</a>
89
+ <a name='L24'></a><a href='#L24'>24</a>
90
+ <a name='L25'></a><a href='#L25'>25</a>
91
+ <a name='L26'></a><a href='#L26'>26</a>
92
+ <a name='L27'></a><a href='#L27'>27</a>
93
+ <a name='L28'></a><a href='#L28'>28</a>
94
+ <a name='L29'></a><a href='#L29'>29</a>
95
+ <a name='L30'></a><a href='#L30'>30</a>
96
+ <a name='L31'></a><a href='#L31'>31</a>
97
+ <a name='L32'></a><a href='#L32'>32</a>
98
+ <a name='L33'></a><a href='#L33'>33</a>
99
+ <a name='L34'></a><a href='#L34'>34</a>
100
+ <a name='L35'></a><a href='#L35'>35</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral">&nbsp;</span>
101
+ <span class="cline-any cline-neutral">&nbsp;</span>
102
+ <span class="cline-any cline-neutral">&nbsp;</span>
103
+ <span class="cline-any cline-neutral">&nbsp;</span>
104
+ <span class="cline-any cline-neutral">&nbsp;</span>
105
+ <span class="cline-any cline-neutral">&nbsp;</span>
106
+ <span class="cline-any cline-no">&nbsp;</span>
107
+ <span class="cline-any cline-no">&nbsp;</span>
108
+ <span class="cline-any cline-no">&nbsp;</span>
109
+ <span class="cline-any cline-neutral">&nbsp;</span>
110
+ <span class="cline-any cline-no">&nbsp;</span>
111
+ <span class="cline-any cline-no">&nbsp;</span>
112
+ <span class="cline-any cline-no">&nbsp;</span>
113
+ <span class="cline-any cline-neutral">&nbsp;</span>
114
+ <span class="cline-any cline-neutral">&nbsp;</span>
115
+ <span class="cline-any cline-no">&nbsp;</span>
116
+ <span class="cline-any cline-no">&nbsp;</span>
117
+ <span class="cline-any cline-neutral">&nbsp;</span>
118
+ <span class="cline-any cline-no">&nbsp;</span>
119
+ <span class="cline-any cline-neutral">&nbsp;</span>
120
+ <span class="cline-any cline-neutral">&nbsp;</span>
121
+ <span class="cline-any cline-no">&nbsp;</span>
122
+ <span class="cline-any cline-neutral">&nbsp;</span>
123
+ <span class="cline-any cline-no">&nbsp;</span>
124
+ <span class="cline-any cline-no">&nbsp;</span>
125
+ <span class="cline-any cline-no">&nbsp;</span>
126
+ <span class="cline-any cline-neutral">&nbsp;</span>
127
+ <span class="cline-any cline-neutral">&nbsp;</span>
128
+ <span class="cline-any cline-no">&nbsp;</span>
129
+ <span class="cline-any cline-neutral">&nbsp;</span>
130
+ <span class="cline-any cline-neutral">&nbsp;</span>
131
+ <span class="cline-any cline-neutral">&nbsp;</span>
132
+ <span class="cline-any cline-neutral">&nbsp;</span>
133
+ <span class="cline-any cline-neutral">&nbsp;</span>
134
+ <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">import { useQueryClient } from 'react-query';
135
+ &nbsp;
136
+ import {
137
+ useNamespace
138
+ } from '@folio/stripes/core';
139
+ &nbsp;
140
+ const useSASQQueryMeta = <span class="cstat-no" title="statement not covered" ><span class="fstat-no" title="function not covered" >(i</span>d) =&gt; {</span>
141
+ const { 0: namespace } = <span class="cstat-no" title="statement not covered" >useNamespace();</span>
142
+ const queryClient = <span class="cstat-no" title="statement not covered" >useQueryClient();</span>
143
+ &nbsp;
144
+ const queryNSBase = <span class="cstat-no" title="statement not covered" >[namespace, 'SASQ'];</span>
145
+ <span class="cstat-no" title="statement not covered" > if (id) {</span>
146
+ <span class="cstat-no" title="statement not covered" > queryNSBase.push(id);</span>
147
+ }
148
+ &nbsp;
149
+ const lookupQueryNS = <span class="cstat-no" title="statement not covered" >[...queryNSBase, 'viewAll'];</span>
150
+ const viewQueryNS = <span class="cstat-no" title="statement not covered" >[...queryNSBase, 'view'];</span>
151
+ &nbsp;
152
+ <span class="cstat-no" title="statement not covered" > return ({</span>
153
+ lookupQueryNS,
154
+ viewQueryNS,
155
+ invalidateLookupQuery: <span class="fstat-no" title="function not covered" >()</span> =&gt; <span class="cstat-no" title="statement not covered" >queryClient.invalidateQueries(lookupQueryNS),</span>
156
+ invalidateViewQuery: <span class="fstat-no" title="function not covered" >(v</span>iewId) =&gt; {
157
+ const invalidateNS = <span class="cstat-no" title="statement not covered" >[...viewQueryNS];</span>
158
+ <span class="cstat-no" title="statement not covered" > if (viewId) {</span>
159
+ <span class="cstat-no" title="statement not covered" > invalidateNS.push(viewId);</span>
160
+ }
161
+ &nbsp;
162
+ <span class="cstat-no" title="statement not covered" > queryClient.invalidateQueries(invalidateNS);</span>
163
+ }
164
+ });
165
+ };
166
+ &nbsp;
167
+ export default useSASQQueryMeta;
168
+ &nbsp;</pre></td></tr></table></pre>
169
+
170
+ <div class='push'></div><!-- for sticky footer -->
171
+ </div><!-- /wrapper -->
172
+ <div class='footer quiet pad2 space-top1 center small'>
173
+ Code coverage generated by
174
+ <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
175
+ at 2022-11-03T13:44:33.087Z
176
+ </div>
177
+ <script src="../prettify.js"></script>
178
+ <script>
179
+ window.onload = function () {
180
+ prettyPrint();
181
+ };
182
+ </script>
183
+ <script src="../sorter.js"></script>
184
+ <script src="../block-navigation.js"></script>
185
+ </body>
186
+ </html>
187
+
@@ -151,7 +151,7 @@ export default useTemplates;
151
151
  <div class='footer quiet pad2 space-top1 center small'>
152
152
  Code coverage generated by
153
153
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
154
- at 2022-09-16T13:23:25.290Z
154
+ at 2022-11-03T13:44:33.087Z
155
155
  </div>
156
156
  <script src="../prettify.js"></script>
157
157
  <script>
@@ -23,30 +23,30 @@
23
23
  <div class='clearfix'>
24
24
 
25
25
  <div class='fl pad1y space-right2'>
26
- <span class="strong">30.1% </span>
26
+ <span class="strong">28.4% </span>
27
27
  <span class="quiet">Statements</span>
28
- <span class='fraction'>491/1631</span>
28
+ <span class='fraction'>486/1711</span>
29
29
  </div>
30
30
 
31
31
 
32
32
  <div class='fl pad1y space-right2'>
33
- <span class="strong">25.38% </span>
33
+ <span class="strong">24.08% </span>
34
34
  <span class="quiet">Branches</span>
35
- <span class='fraction'>264/1040</span>
35
+ <span class='fraction'>263/1092</span>
36
36
  </div>
37
37
 
38
38
 
39
39
  <div class='fl pad1y space-right2'>
40
- <span class="strong">27.94% </span>
40
+ <span class="strong">25.35% </span>
41
41
  <span class="quiet">Functions</span>
42
- <span class='fraction'>133/476</span>
42
+ <span class='fraction'>126/497</span>
43
43
  </div>
44
44
 
45
45
 
46
46
  <div class='fl pad1y space-right2'>
47
- <span class="strong">30.42% </span>
47
+ <span class="strong">28.66% </span>
48
48
  <span class="quiet">Lines</span>
49
- <span class='fraction'>474/1558</span>
49
+ <span class='fraction'>469/1636</span>
50
50
  </div>
51
51
 
52
52
 
@@ -115,8 +115,8 @@
115
115
  </td>
116
116
  <td data-value="54.71" class="pct medium">54.71%</td>
117
117
  <td data-value="106" class="abs medium">58/106</td>
118
- <td data-value="51.85" class="pct medium">51.85%</td>
119
- <td data-value="108" class="abs medium">56/108</td>
118
+ <td data-value="50.9" class="pct medium">50.9%</td>
119
+ <td data-value="110" class="abs medium">56/110</td>
120
120
  <td data-value="38.88" class="pct low">38.88%</td>
121
121
  <td data-value="36" class="abs low">14/36</td>
122
122
  <td data-value="54.36" class="pct medium">54.36%</td>
@@ -125,17 +125,17 @@
125
125
 
126
126
  <tr>
127
127
  <td class="file medium" data-value="CustomProperties/Edit"><a href="CustomProperties/Edit/index.html">CustomProperties/Edit</a></td>
128
- <td data-value="70.32" class="pic medium">
129
- <div class="chart"><div class="cover-fill" style="width: 70%"></div><div class="cover-empty" style="width: 30%"></div></div>
128
+ <td data-value="72.92" class="pic medium">
129
+ <div class="chart"><div class="cover-fill" style="width: 72%"></div><div class="cover-empty" style="width: 28%"></div></div>
130
130
  </td>
131
- <td data-value="70.32" class="pct medium">70.32%</td>
132
- <td data-value="182" class="abs medium">128/182</td>
133
- <td data-value="57.27" class="pct medium">57.27%</td>
134
- <td data-value="110" class="abs medium">63/110</td>
135
- <td data-value="73.33" class="pct medium">73.33%</td>
136
- <td data-value="60" class="abs medium">44/60</td>
137
- <td data-value="71.67" class="pct medium">71.67%</td>
138
- <td data-value="173" class="abs medium">124/173</td>
131
+ <td data-value="72.92" class="pct medium">72.92%</td>
132
+ <td data-value="181" class="abs medium">132/181</td>
133
+ <td data-value="64.86" class="pct medium">64.86%</td>
134
+ <td data-value="111" class="abs medium">72/111</td>
135
+ <td data-value="72.88" class="pct medium">72.88%</td>
136
+ <td data-value="59" class="abs medium">43/59</td>
137
+ <td data-value="74.41" class="pct medium">74.41%</td>
138
+ <td data-value="172" class="abs medium">128/172</td>
139
139
  </tr>
140
140
 
141
141
  <tr>
@@ -155,17 +155,17 @@
155
155
 
156
156
  <tr>
157
157
  <td class="file medium" data-value="CustomProperties/View"><a href="CustomProperties/View/index.html">CustomProperties/View</a></td>
158
- <td data-value="53.19" class="pic medium">
159
- <div class="chart"><div class="cover-fill" style="width: 53%"></div><div class="cover-empty" style="width: 47%"></div></div>
158
+ <td data-value="55.55" class="pic medium">
159
+ <div class="chart"><div class="cover-fill" style="width: 55%"></div><div class="cover-empty" style="width: 45%"></div></div>
160
160
  </td>
161
- <td data-value="53.19" class="pct medium">53.19%</td>
162
- <td data-value="47" class="abs medium">25/47</td>
163
- <td data-value="17.3" class="pct low">17.3%</td>
164
- <td data-value="52" class="abs low">9/52</td>
161
+ <td data-value="55.55" class="pct medium">55.55%</td>
162
+ <td data-value="45" class="abs medium">25/45</td>
163
+ <td data-value="18" class="pct low">18%</td>
164
+ <td data-value="50" class="abs low">9/50</td>
165
165
  <td data-value="72.72" class="pct medium">72.72%</td>
166
166
  <td data-value="11" class="abs medium">8/11</td>
167
- <td data-value="52.17" class="pct medium">52.17%</td>
168
- <td data-value="46" class="abs medium">24/46</td>
167
+ <td data-value="54.54" class="pct medium">54.54%</td>
168
+ <td data-value="44" class="abs medium">24/44</td>
169
169
  </tr>
170
170
 
171
171
  <tr>
@@ -333,6 +333,21 @@
333
333
  <td data-value="29" class="abs medium">21/29</td>
334
334
  </tr>
335
335
 
336
+ <tr>
337
+ <td class="file low" data-value="ResponsiveButtonGroup"><a href="ResponsiveButtonGroup/index.html">ResponsiveButtonGroup</a></td>
338
+ <td data-value="0" class="pic low">
339
+ <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
340
+ </td>
341
+ <td data-value="0" class="pct low">0%</td>
342
+ <td data-value="51" class="abs low">0/51</td>
343
+ <td data-value="0" class="pct low">0%</td>
344
+ <td data-value="41" class="abs low">0/41</td>
345
+ <td data-value="0" class="pct low">0%</td>
346
+ <td data-value="16" class="abs low">0/16</td>
347
+ <td data-value="0" class="pct low">0%</td>
348
+ <td data-value="50" class="abs low">0/50</td>
349
+ </tr>
350
+
336
351
  <tr>
337
352
  <td class="file low" data-value="RichSelect"><a href="RichSelect/index.html">RichSelect</a></td>
338
353
  <td data-value="0" class="pic low">
@@ -354,13 +369,13 @@
354
369
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
355
370
  </td>
356
371
  <td data-value="0" class="pct low">0%</td>
357
- <td data-value="39" class="abs low">0/39</td>
372
+ <td data-value="46" class="abs low">0/46</td>
358
373
  <td data-value="0" class="pct low">0%</td>
359
- <td data-value="31" class="abs low">0/31</td>
374
+ <td data-value="35" class="abs low">0/35</td>
360
375
  <td data-value="0" class="pct low">0%</td>
361
- <td data-value="10" class="abs low">0/10</td>
376
+ <td data-value="11" class="abs low">0/11</td>
362
377
  <td data-value="0" class="pct low">0%</td>
363
- <td data-value="38" class="abs low">0/38</td>
378
+ <td data-value="45" class="abs low">0/45</td>
364
379
  </tr>
365
380
 
366
381
  <tr>
@@ -384,13 +399,13 @@
384
399
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
385
400
  </td>
386
401
  <td data-value="0" class="pct low">0%</td>
387
- <td data-value="10" class="abs low">0/10</td>
402
+ <td data-value="14" class="abs low">0/14</td>
388
403
  <td data-value="0" class="pct low">0%</td>
389
404
  <td data-value="3" class="abs low">0/3</td>
390
405
  <td data-value="0" class="pct low">0%</td>
391
- <td data-value="3" class="abs low">0/3</td>
406
+ <td data-value="4" class="abs low">0/4</td>
392
407
  <td data-value="0" class="pct low">0%</td>
393
- <td data-value="10" class="abs low">0/10</td>
408
+ <td data-value="13" class="abs low">0/13</td>
394
409
  </tr>
395
410
 
396
411
  <tr>
@@ -399,13 +414,13 @@
399
414
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
400
415
  </td>
401
416
  <td data-value="0" class="pct low">0%</td>
402
- <td data-value="9" class="abs low">0/9</td>
417
+ <td data-value="16" class="abs low">0/16</td>
403
418
  <td data-value="0" class="pct low">0%</td>
404
- <td data-value="3" class="abs low">0/3</td>
419
+ <td data-value="5" class="abs low">0/5</td>
405
420
  <td data-value="0" class="pct low">0%</td>
406
- <td data-value="3" class="abs low">0/3</td>
421
+ <td data-value="4" class="abs low">0/4</td>
407
422
  <td data-value="0" class="pct low">0%</td>
408
- <td data-value="9" class="abs low">0/9</td>
423
+ <td data-value="16" class="abs low">0/16</td>
409
424
  </tr>
410
425
 
411
426
  <tr>
@@ -485,17 +500,17 @@
485
500
 
486
501
  <tr>
487
502
  <td class="file low" data-value="hooks"><a href="hooks/index.html">hooks</a></td>
488
- <td data-value="8.49" class="pic low">
503
+ <td data-value="8.05" class="pic low">
489
504
  <div class="chart"><div class="cover-fill" style="width: 8%"></div><div class="cover-empty" style="width: 92%"></div></div>
490
505
  </td>
491
- <td data-value="8.49" class="pct low">8.49%</td>
492
- <td data-value="259" class="abs low">22/259</td>
493
- <td data-value="11.32" class="pct low">11.32%</td>
494
- <td data-value="106" class="abs low">12/106</td>
495
- <td data-value="5.97" class="pct low">5.97%</td>
496
- <td data-value="67" class="abs low">4/67</td>
497
- <td data-value="8.46" class="pct low">8.46%</td>
498
- <td data-value="248" class="abs low">21/248</td>
506
+ <td data-value="8.05" class="pct low">8.05%</td>
507
+ <td data-value="273" class="abs low">22/273</td>
508
+ <td data-value="10.9" class="pct low">10.9%</td>
509
+ <td data-value="110" class="abs low">12/110</td>
510
+ <td data-value="5.71" class="pct low">5.71%</td>
511
+ <td data-value="70" class="abs low">4/70</td>
512
+ <td data-value="8.01" class="pct low">8.01%</td>
513
+ <td data-value="262" class="abs low">21/262</td>
499
514
  </tr>
500
515
 
501
516
  <tr>
@@ -530,17 +545,17 @@
530
545
 
531
546
  <tr>
532
547
  <td class="file low" data-value="utils"><a href="utils/index.html">utils</a></td>
533
- <td data-value="25.3" class="pic low">
534
- <div class="chart"><div class="cover-fill" style="width: 25%"></div><div class="cover-empty" style="width: 75%"></div></div>
548
+ <td data-value="19.87" class="pic low">
549
+ <div class="chart"><div class="cover-fill" style="width: 19%"></div><div class="cover-empty" style="width: 81%"></div></div>
535
550
  </td>
536
- <td data-value="25.3" class="pct low">25.3%</td>
537
- <td data-value="166" class="abs low">42/166</td>
538
- <td data-value="19.35" class="pct low">19.35%</td>
539
- <td data-value="124" class="abs low">24/124</td>
540
- <td data-value="28.57" class="pct low">28.57%</td>
541
- <td data-value="49" class="abs low">14/49</td>
542
- <td data-value="27.09" class="pct low">27.09%</td>
543
- <td data-value="155" class="abs low">42/155</td>
551
+ <td data-value="19.87" class="pct low">19.87%</td>
552
+ <td data-value="166" class="abs low">33/166</td>
553
+ <td data-value="11.29" class="pct low">11.29%</td>
554
+ <td data-value="124" class="abs low">14/124</td>
555
+ <td data-value="16.32" class="pct low">16.32%</td>
556
+ <td data-value="49" class="abs low">8/49</td>
557
+ <td data-value="21.29" class="pct low">21.29%</td>
558
+ <td data-value="155" class="abs low">33/155</td>
544
559
  </tr>
545
560
 
546
561
  </tbody>
@@ -551,7 +566,7 @@
551
566
  <div class='footer quiet pad2 space-top1 center small'>
552
567
  Code coverage generated by
553
568
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
554
- at 2022-09-16T13:23:25.290Z
569
+ at 2022-11-03T13:44:33.087Z
555
570
  </div>
556
571
  <script src="prettify.js"></script>
557
572
  <script>