@k-int/stripes-kint-components 2.8.1 → 3.0.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.
- package/CHANGELOG.md +16 -1
- package/es/index.js +54 -12
- package/es/lib/ActionList/ActionList.js +11 -5
- package/es/lib/ActionList/ActionListFieldArray.js +147 -77
- package/es/lib/CustomProperties/Config/CustomPropertiesLookup.js +43 -31
- package/es/lib/CustomProperties/Config/CustomPropertiesLookup.test.js +17 -14
- package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +67 -47
- package/es/lib/CustomProperties/Config/CustomPropertiesSettings.test.js +17 -24
- package/es/lib/CustomProperties/Config/CustomPropertyForm.js +91 -70
- package/es/lib/CustomProperties/Config/CustomPropertyForm.test.js +53 -36
- package/es/lib/CustomProperties/Config/CustomPropertyView.js +50 -31
- package/es/lib/CustomProperties/Config/CustomPropertyView.test.js +13 -14
- package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +6 -0
- package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.test.js +8 -12
- package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +22 -24
- package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.test.js +9 -12
- package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +62 -13
- package/es/lib/CustomProperties/Edit/CustomPropertiesListField.test.js +12 -13
- package/es/lib/CustomProperties/Edit/CustomPropertyField.js +91 -44
- package/es/lib/CustomProperties/Edit/CustomPropertyField.test.js +80 -73
- package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +31 -32
- package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +26 -24
- package/es/lib/CustomProperties/Edit/testResources.js +73 -908
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +21 -29
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.test.js +12 -10
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +38 -39
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +28 -13
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +29 -44
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +6 -6
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +16 -10
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +12 -12
- package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +20 -11
- package/es/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +4 -3
- package/es/lib/CustomProperties/Filter/testResources.js +37 -233
- package/es/lib/CustomProperties/Filter/useOperators.js +69 -27
- package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +3 -2
- package/es/lib/CustomProperties/Filter/useValueProps.js +7 -2
- package/es/lib/CustomProperties/View/CustomPropertiesView.js +6 -0
- package/es/lib/CustomProperties/View/CustomPropertiesView.test.js +4 -3
- package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +13 -19
- package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +4 -10
- package/es/lib/CustomProperties/View/CustomPropertyCard.js +34 -51
- package/es/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +38 -28
- package/es/lib/EditableRefdataList/EditableRefdataList.js +44 -32
- package/es/lib/EditableSettingsList/EditableSettingsList.js +11 -1
- package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.js +10 -0
- package/es/lib/EditableSettingsList/SettingField/EditSettingValue.js +19 -11
- package/es/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +9 -8
- package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.js +21 -9
- package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +1 -0
- package/es/lib/EditableSettingsList/SettingField/SettingField.js +83 -16
- package/es/lib/EditableSettingsList/SettingField/SettingField.test.js +138 -65
- package/es/lib/FormModal/FormModal.js +14 -9
- package/es/lib/FormattedKintMessage/FormattedKintMessage.js +91 -0
- package/es/lib/FormattedKintMessage/index.js +15 -0
- package/es/lib/IconSelect/IconSelect.js +18 -12
- package/es/lib/NoResultsMessage/NoResultsMessage.js +13 -2
- package/es/lib/RichSelect/RichSelect.js +13 -34
- package/es/lib/SASQLookupComponent/SASQLookupComponent.js +16 -5
- package/es/lib/SASQLookupComponent/TableBody/TableBody.js +11 -1
- package/es/lib/SettingPage/SettingPage.js +12 -13
- package/es/lib/SettingPage/SettingPagePane.js +12 -20
- package/es/lib/hooks/__mocks__/index.js +46 -0
- package/es/lib/hooks/index.js +24 -8
- package/es/lib/hooks/settingsHooks/useSettings.js +22 -17
- package/es/lib/hooks/useIntlKey.js +34 -0
- package/es/lib/hooks/useIntlKeyStore.js +84 -0
- package/es/lib/hooks/useKintIntl.js +93 -0
- package/es/lib/utils/index.js +48 -4
- package/es/lib/utils/parseErrorResponse.js +91 -0
- package/es/lib/utils/validators.js +76 -59
- package/jest.config.js +4 -1
- package/junit.xml +157 -656
- package/package.json +54 -33
- package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionList.js.html +56 -8
- package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionListFieldArray.js.html +394 -64
- package/src/artifacts/coverage-jest/lcov-report/ActionList/index.html +10 -10
- package/src/artifacts/coverage-jest/lcov-report/ActionList/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesLookup.js.html +187 -52
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesSettings.js.html +372 -87
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyForm.js.html +293 -74
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyView.js.html +126 -54
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.html +45 -60
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEdit.js.html +23 -5
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEditCtx.js.html +59 -47
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesListField.js.html +259 -97
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyField.js.html +399 -105
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyFormCard.js.html +41 -68
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.html +57 -57
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/testResources.js.html +67 -688
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilter.js.html +92 -53
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterField.js.html +103 -64
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js.html +54 -63
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterForm.js.html +49 -16
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesRule.js.html +69 -18
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.html +89 -89
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/testResources.js.html +33 -786
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useOperators.js.html +46 -46
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useParseActiveFilterStrings.js.html +45 -36
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useValueProps.js.html +43 -28
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesView.js.html +20 -2
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesViewCtx.js.html +50 -41
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertyCard.js.html +54 -75
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.html +24 -24
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/testResources.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/{hooks/useAvailableCustomProperties.js.html → CycleButton/CycleButton.js.html} +62 -50
- package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.html +131 -0
- package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.js.html +88 -0
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/EditableRefdataCategoryList.js.html +664 -0
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.html +131 -0
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.js.html +88 -0
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/EditableRefdataList.js.html +264 -39
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.html +9 -9
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsList.js.html +41 -14
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsListFieldArray.js.html +45 -6
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/EditSettingValue.js.html +47 -11
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/RenderSettingValue.js.html +65 -14
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/SettingField.js.html +154 -31
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.html +26 -26
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.html +18 -18
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormModal/FormModal.js.html +35 -17
- package/src/artifacts/coverage-jest/lcov-report/FormModal/index.html +15 -15
- package/src/artifacts/coverage-jest/lcov-report/FormModal/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/FormattedKintMessage.js.html +247 -0
- package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.html +131 -0
- package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.js.html +88 -0
- package/src/artifacts/coverage-jest/lcov-report/{CustomProperties/Config/CustomPropertiesView.js.html → IconSelect/IconSelect.js.html} +158 -257
- package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.html +131 -0
- package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.js.html +88 -0
- package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/NoResultsMessage.js.html +48 -6
- package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/QueryTypedown.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/RefdataButtons.js.html +3 -3
- package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/{CustomProperties/Config/testResources.js.html → RichSelect/RichSelect.js.html} +256 -334
- package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.html +146 -0
- package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.js.html +91 -0
- package/src/artifacts/coverage-jest/lcov-report/RichSelect/useSelectedOption.js.html +127 -0
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/SASQLookupComponent.js.html +52 -7
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/TableBody.js.html +31 -4
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.html +3 -3
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQRoute/SASQRoute.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/SASQViewComponent.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SearchField/SearchField.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SearchField/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SearchField/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPage.js.html +24 -27
- package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPagePane.js.html +47 -17
- package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.html +22 -22
- package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/Typedown/Typedown.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/Typedown/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/Typedown/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/constants/customProperties.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/constants/eventCodes.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/constants/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/contexts/SettingsContext.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/contexts/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/contexts/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/favicon.png +0 -0
- package/src/artifacts/coverage-jest/lcov-report/hooks/index.html +142 -97
- package/src/artifacts/coverage-jest/lcov-report/hooks/index.js.html +13 -4
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.html +35 -20
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.js.html +5 -2
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useAppSettings.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettingSection.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettings.js.html +61 -22
- package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedown.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownData.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownToggle.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useActiveElement.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/useCustomProperties.js.html +19 -22
- package/src/artifacts/coverage-jest/lcov-report/hooks/useHelperApp.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKey.js.html +151 -0
- package/src/artifacts/coverage-jest/lcov-report/{utils/renderHelpText.js.html → hooks/useIntlKeyStore.js.html} +71 -38
- package/src/artifacts/coverage-jest/lcov-report/hooks/useInvalidateRefdata.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/useKintIntl.js.html +238 -0
- package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtFieldArray.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtSASQuery.js.html +9 -9
- package/src/artifacts/coverage-jest/lcov-report/hooks/useLocalStorageState.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateCustomProperties.js.html +23 -11
- package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataCategory.js.html +274 -0
- package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataValue.js.html +19 -10
- package/src/artifacts/coverage-jest/lcov-report/hooks/useQIndex.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/hooks/useRefdata.js.html +9 -9
- package/src/artifacts/coverage-jest/lcov-report/hooks/useTemplates.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/index.html +205 -130
- package/src/artifacts/coverage-jest/lcov-report/sort-arrow-sprite.png +0 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/buildUrl.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQuery.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQueryParams.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/groupCustomPropertiesByCtx.js.html +7 -7
- package/src/artifacts/coverage-jest/lcov-report/utils/highlightString.js.html +3 -3
- package/src/artifacts/coverage-jest/lcov-report/utils/index.html +34 -34
- package/src/artifacts/coverage-jest/lcov-report/utils/index.js.html +42 -3
- package/src/artifacts/coverage-jest/lcov-report/utils/matchString.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/parseErrorResponse.js.html +139 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/refdataOptions.js.html +5 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/refdataQueryKey.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/selectorSafe.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/sortByLabel.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/toCamelCase.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/typedownQueryKey.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/utils/validators.js.html +128 -80
- package/src/artifacts/coverage-jest/lcov.info +2603 -2086
- package/src/index.js +12 -4
- package/src/lib/ActionList/ActionList.js +9 -3
- package/src/lib/ActionList/ActionListFieldArray.js +115 -37
- package/src/lib/ActionList/README.md +2 -1
- package/src/lib/CustomProperties/Config/CustomPropertiesLookup.js +60 -16
- package/src/lib/CustomProperties/Config/CustomPropertiesLookup.test.js +14 -4
- package/src/lib/CustomProperties/Config/CustomPropertiesSettings.js +109 -34
- package/src/lib/CustomProperties/Config/CustomPropertiesSettings.test.js +16 -9
- package/src/lib/CustomProperties/Config/CustomPropertyForm.js +131 -58
- package/src/lib/CustomProperties/Config/CustomPropertyForm.test.js +52 -33
- package/src/lib/CustomProperties/Config/CustomPropertyView.js +71 -47
- package/src/lib/CustomProperties/Config/CustomPropertyView.test.js +8 -6
- package/src/lib/CustomProperties/Config/README.md +33 -28
- package/src/lib/CustomProperties/Edit/CustomPropertiesEdit.js +6 -0
- package/src/lib/CustomProperties/Edit/CustomPropertiesEdit.test.js +7 -3
- package/src/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +23 -19
- package/src/lib/CustomProperties/Edit/CustomPropertiesEditCtx.test.js +5 -3
- package/src/lib/CustomProperties/Edit/CustomPropertiesListField.js +65 -11
- package/src/lib/CustomProperties/Edit/CustomPropertiesListField.test.js +10 -8
- package/src/lib/CustomProperties/Edit/CustomPropertyField.js +115 -21
- package/src/lib/CustomProperties/Edit/CustomPropertyField.test.js +59 -60
- package/src/lib/CustomProperties/Edit/CustomPropertyFormCard.js +24 -33
- package/src/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +20 -27
- package/src/lib/CustomProperties/Edit/testResources.js +46 -1047
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilter.js +22 -22
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilter.test.js +12 -8
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +44 -31
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +26 -13
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +33 -36
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +3 -3
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +19 -8
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +9 -12
- package/src/lib/CustomProperties/Filter/CustomPropertiesRule.js +22 -5
- package/src/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +3 -1
- package/src/lib/CustomProperties/Filter/testResources.js +14 -265
- package/src/lib/CustomProperties/Filter/useOperators.js +20 -20
- package/src/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +2 -2
- package/src/lib/CustomProperties/Filter/useValueProps.js +8 -3
- package/src/lib/CustomProperties/View/CustomPropertiesView.js +6 -0
- package/src/lib/CustomProperties/View/CustomPropertiesView.test.js +2 -1
- package/src/lib/CustomProperties/View/CustomPropertiesViewCtx.js +15 -13
- package/src/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +2 -5
- package/src/lib/CustomProperties/View/CustomPropertyCard.js +36 -43
- package/src/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +47 -28
- package/src/lib/EditableRefdataList/EditableRefdataList.js +58 -33
- package/src/lib/EditableSettingsList/EditableSettingsList.js +10 -1
- package/src/lib/EditableSettingsList/EditableSettingsListFieldArray.js +14 -1
- package/src/lib/EditableSettingsList/SettingField/EditSettingValue.js +17 -5
- package/src/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +9 -8
- package/src/lib/EditableSettingsList/SettingField/RenderSettingValue.js +24 -7
- package/src/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +1 -0
- package/src/lib/EditableSettingsList/SettingField/SettingField.js +57 -16
- package/src/lib/EditableSettingsList/SettingField/SettingField.test.js +14 -19
- package/src/lib/FormModal/FormModal.js +15 -9
- package/src/lib/FormattedKintMessage/FormattedKintMessage.js +54 -0
- package/src/lib/FormattedKintMessage/index.js +1 -0
- package/src/lib/IconSelect/IconSelect.js +17 -8
- package/src/lib/NoResultsMessage/NoResultsMessage.js +15 -1
- package/src/lib/RichSelect/RichSelect.js +16 -36
- package/src/lib/SASQLookupComponent/SASQLookupComponent.js +17 -2
- package/src/lib/SASQLookupComponent/TableBody/TableBody.js +10 -1
- package/src/lib/SettingPage/SettingPage.js +12 -13
- package/src/lib/SettingPage/SettingPagePane.js +16 -6
- package/src/lib/hooks/__mocks__/index.js +17 -0
- package/src/lib/hooks/index.js +3 -1
- package/src/lib/hooks/settingsHooks/useSettings.js +25 -12
- package/src/lib/hooks/useIntlKey.js +22 -0
- package/src/lib/hooks/useIntlKeyStore.js +38 -0
- package/src/lib/hooks/useKintIntl.js +51 -0
- package/src/lib/utils/index.js +14 -1
- package/src/lib/utils/parseErrorResponse.js +18 -0
- package/src/lib/utils/validators.js +57 -41
- package/styles/RichSelect.css +7 -4
- package/test/helpers/test-implementor-translations.json +80 -0
- package/test/helpers/translationsProperties.js +6 -1
- package/test/jest/customProperties.js +166 -0
- package/test/jest/helpers/KintHarness.js +1 -1
- package/test/jest/helpers/renderWithKintHarness.js +2 -1
- package/test/jest/index.js +8 -0
- package/test/jest/refdata.js +471 -0
- package/test/jest/resolver.js +29 -0
- package/translations/stripes-kint-components/ar.json +1 -122
- package/translations/stripes-kint-components/cs_CZ.json +1 -122
- package/translations/stripes-kint-components/de.json +1 -122
- package/translations/stripes-kint-components/en.json +1 -148
- package/translations/stripes-kint-components/es.json +1 -122
- package/translations/stripes-kint-components/hi_IN.json +1 -122
- package/translations/stripes-kint-components/hu.json +1 -122
- package/translations/stripes-kint-components/it_IT.json +1 -122
- package/translations/stripes-kint-components/ja.json +1 -122
- package/translations/stripes-kint-components/ko.json +1 -122
- package/translations/stripes-kint-components/pt_PT.json +1 -122
- package/translations/stripes-kint-components/ru.json +1 -122
- package/translations/stripes-kint-components/sv.json +1 -122
- package/translations/stripes-kint-components/zh_CN.json +1 -122
- package/es/lib/CustomProperties/Config/testResources.js +0 -198
- package/es/lib/hooks/useAvailableCustomProperties.js +0 -73
- package/es/lib/utils/renderHelpText.js +0 -80
- package/src/lib/CustomProperties/Config/testResources.js +0 -236
- package/src/lib/hooks/useAvailableCustomProperties.js +0 -40
- package/src/lib/utils/renderHelpText.js +0 -27
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
117
117
|
Code coverage generated by
|
|
118
118
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
119
|
-
at
|
|
119
|
+
at 2022-09-16T13:23:25.290Z
|
|
120
120
|
</div>
|
|
121
121
|
<script src="../prettify.js"></script>
|
|
122
122
|
<script>
|
|
@@ -76,7 +76,7 @@ export { default as SettingsContext } from './SettingsContext';
|
|
|
76
76
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
77
77
|
Code coverage generated by
|
|
78
78
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
79
|
-
at
|
|
79
|
+
at 2022-09-16T13:23:25.290Z
|
|
80
80
|
</div>
|
|
81
81
|
<script src="../prettify.js"></script>
|
|
82
82
|
<script>
|
|
Binary file
|
|
@@ -23,30 +23,30 @@
|
|
|
23
23
|
<div class='clearfix'>
|
|
24
24
|
|
|
25
25
|
<div class='fl pad1y space-right2'>
|
|
26
|
-
<span class="strong">8.
|
|
26
|
+
<span class="strong">8.49% </span>
|
|
27
27
|
<span class="quiet">Statements</span>
|
|
28
|
-
<span class='fraction'>
|
|
28
|
+
<span class='fraction'>22/259</span>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<div class='fl pad1y space-right2'>
|
|
33
|
-
<span class="strong">
|
|
33
|
+
<span class="strong">11.32% </span>
|
|
34
34
|
<span class="quiet">Branches</span>
|
|
35
|
-
<span class='fraction'>
|
|
35
|
+
<span class='fraction'>12/106</span>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
<div class='fl pad1y space-right2'>
|
|
40
|
-
<span class="strong">
|
|
40
|
+
<span class="strong">5.97% </span>
|
|
41
41
|
<span class="quiet">Functions</span>
|
|
42
|
-
<span class='fraction'>
|
|
42
|
+
<span class='fraction'>4/67</span>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
<div class='fl pad1y space-right2'>
|
|
47
|
-
<span class="strong">8.
|
|
47
|
+
<span class="strong">8.46% </span>
|
|
48
48
|
<span class="quiet">Lines</span>
|
|
49
|
-
<span class='fraction'>
|
|
49
|
+
<span class='fraction'>21/248</span>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
|
|
@@ -95,197 +95,242 @@
|
|
|
95
95
|
|
|
96
96
|
<tr>
|
|
97
97
|
<td class="file low" data-value="useActiveElement.js"><a href="useActiveElement.js.html">useActiveElement.js</a></td>
|
|
98
|
-
<td data-value="
|
|
99
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
98
|
+
<td data-value="0" class="pic low">
|
|
99
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
100
100
|
</td>
|
|
101
|
-
<td data-value="
|
|
102
|
-
<td data-value="11" class="abs low">
|
|
101
|
+
<td data-value="0" class="pct low">0%</td>
|
|
102
|
+
<td data-value="11" class="abs low">0/11</td>
|
|
103
103
|
<td data-value="100" class="pct high">100%</td>
|
|
104
104
|
<td data-value="0" class="abs high">0/0</td>
|
|
105
105
|
<td data-value="0" class="pct low">0%</td>
|
|
106
106
|
<td data-value="5" class="abs low">0/5</td>
|
|
107
|
-
<td data-value="
|
|
108
|
-
<td data-value="11" class="abs low">
|
|
107
|
+
<td data-value="0" class="pct low">0%</td>
|
|
108
|
+
<td data-value="11" class="abs low">0/11</td>
|
|
109
109
|
</tr>
|
|
110
110
|
|
|
111
111
|
<tr>
|
|
112
|
-
<td class="file low" data-value="
|
|
113
|
-
<td data-value="
|
|
114
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
112
|
+
<td class="file low" data-value="useCustomProperties.js"><a href="useCustomProperties.js.html">useCustomProperties.js</a></td>
|
|
113
|
+
<td data-value="0" class="pic low">
|
|
114
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
115
115
|
</td>
|
|
116
|
-
<td data-value="9.09" class="pct low">9.09%</td>
|
|
117
|
-
<td data-value="11" class="abs low">1/11</td>
|
|
118
116
|
<td data-value="0" class="pct low">0%</td>
|
|
119
|
-
<td data-value="
|
|
117
|
+
<td data-value="19" class="abs low">0/19</td>
|
|
118
|
+
<td data-value="0" class="pct low">0%</td>
|
|
119
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
120
120
|
<td data-value="0" class="pct low">0%</td>
|
|
121
121
|
<td data-value="3" class="abs low">0/3</td>
|
|
122
|
-
<td data-value="
|
|
123
|
-
<td data-value="
|
|
122
|
+
<td data-value="0" class="pct low">0%</td>
|
|
123
|
+
<td data-value="19" class="abs low">0/19</td>
|
|
124
124
|
</tr>
|
|
125
125
|
|
|
126
126
|
<tr>
|
|
127
|
-
<td class="file low" data-value="
|
|
128
|
-
<td data-value="
|
|
129
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
127
|
+
<td class="file low" data-value="useHelperApp.js"><a href="useHelperApp.js.html">useHelperApp.js</a></td>
|
|
128
|
+
<td data-value="0" class="pic low">
|
|
129
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
130
130
|
</td>
|
|
131
|
-
<td data-value="
|
|
132
|
-
<td data-value="
|
|
133
|
-
<td data-value="
|
|
134
|
-
<td data-value="
|
|
135
|
-
<td data-value="
|
|
136
|
-
<td data-value="
|
|
137
|
-
<td data-value="
|
|
138
|
-
<td data-value="
|
|
131
|
+
<td data-value="0" class="pct low">0%</td>
|
|
132
|
+
<td data-value="28" class="abs low">0/28</td>
|
|
133
|
+
<td data-value="0" class="pct low">0%</td>
|
|
134
|
+
<td data-value="8" class="abs low">0/8</td>
|
|
135
|
+
<td data-value="0" class="pct low">0%</td>
|
|
136
|
+
<td data-value="9" class="abs low">0/9</td>
|
|
137
|
+
<td data-value="0" class="pct low">0%</td>
|
|
138
|
+
<td data-value="24" class="abs low">0/24</td>
|
|
139
139
|
</tr>
|
|
140
140
|
|
|
141
141
|
<tr>
|
|
142
|
-
<td class="file
|
|
143
|
-
<td data-value="
|
|
144
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
142
|
+
<td class="file medium" data-value="useIntlKey.js"><a href="useIntlKey.js.html">useIntlKey.js</a></td>
|
|
143
|
+
<td data-value="63.63" class="pic medium">
|
|
144
|
+
<div class="chart"><div class="cover-fill" style="width: 63%"></div><div class="cover-empty" style="width: 37%"></div></div>
|
|
145
|
+
</td>
|
|
146
|
+
<td data-value="63.63" class="pct medium">63.63%</td>
|
|
147
|
+
<td data-value="11" class="abs medium">7/11</td>
|
|
148
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
149
|
+
<td data-value="6" class="abs medium">3/6</td>
|
|
150
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
151
|
+
<td data-value="2" class="abs medium">1/2</td>
|
|
152
|
+
<td data-value="70" class="pct medium">70%</td>
|
|
153
|
+
<td data-value="10" class="abs medium">7/10</td>
|
|
154
|
+
</tr>
|
|
155
|
+
|
|
156
|
+
<tr>
|
|
157
|
+
<td class="file low" data-value="useIntlKeyStore.js"><a href="useIntlKeyStore.js.html">useIntlKeyStore.js</a></td>
|
|
158
|
+
<td data-value="0" class="pic low">
|
|
159
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
145
160
|
</td>
|
|
146
|
-
<td data-value="3.57" class="pct low">3.57%</td>
|
|
147
|
-
<td data-value="28" class="abs low">1/28</td>
|
|
148
161
|
<td data-value="0" class="pct low">0%</td>
|
|
149
|
-
<td data-value="
|
|
162
|
+
<td data-value="20" class="abs low">0/20</td>
|
|
150
163
|
<td data-value="0" class="pct low">0%</td>
|
|
151
|
-
<td data-value="
|
|
152
|
-
<td data-value="
|
|
153
|
-
<td data-value="
|
|
164
|
+
<td data-value="6" class="abs low">0/6</td>
|
|
165
|
+
<td data-value="0" class="pct low">0%</td>
|
|
166
|
+
<td data-value="6" class="abs low">0/6</td>
|
|
167
|
+
<td data-value="0" class="pct low">0%</td>
|
|
168
|
+
<td data-value="19" class="abs low">0/19</td>
|
|
154
169
|
</tr>
|
|
155
170
|
|
|
156
171
|
<tr>
|
|
157
172
|
<td class="file low" data-value="useInvalidateRefdata.js"><a href="useInvalidateRefdata.js.html">useInvalidateRefdata.js</a></td>
|
|
158
|
-
<td data-value="
|
|
159
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
173
|
+
<td data-value="0" class="pic low">
|
|
174
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
160
175
|
</td>
|
|
161
|
-
<td data-value="
|
|
162
|
-
<td data-value="4" class="abs low">
|
|
176
|
+
<td data-value="0" class="pct low">0%</td>
|
|
177
|
+
<td data-value="4" class="abs low">0/4</td>
|
|
163
178
|
<td data-value="100" class="pct high">100%</td>
|
|
164
179
|
<td data-value="0" class="abs high">0/0</td>
|
|
165
180
|
<td data-value="0" class="pct low">0%</td>
|
|
166
181
|
<td data-value="2" class="abs low">0/2</td>
|
|
167
|
-
<td data-value="
|
|
168
|
-
<td data-value="3" class="abs low">
|
|
182
|
+
<td data-value="0" class="pct low">0%</td>
|
|
183
|
+
<td data-value="3" class="abs low">0/3</td>
|
|
184
|
+
</tr>
|
|
185
|
+
|
|
186
|
+
<tr>
|
|
187
|
+
<td class="file high" data-value="useKintIntl.js"><a href="useKintIntl.js.html">useKintIntl.js</a></td>
|
|
188
|
+
<td data-value="83.33" class="pic high">
|
|
189
|
+
<div class="chart"><div class="cover-fill" style="width: 83%"></div><div class="cover-empty" style="width: 17%"></div></div>
|
|
190
|
+
</td>
|
|
191
|
+
<td data-value="83.33" class="pct high">83.33%</td>
|
|
192
|
+
<td data-value="18" class="abs high">15/18</td>
|
|
193
|
+
<td data-value="75" class="pct medium">75%</td>
|
|
194
|
+
<td data-value="12" class="abs medium">9/12</td>
|
|
195
|
+
<td data-value="100" class="pct high">100%</td>
|
|
196
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
197
|
+
<td data-value="82.35" class="pct high">82.35%</td>
|
|
198
|
+
<td data-value="17" class="abs high">14/17</td>
|
|
169
199
|
</tr>
|
|
170
200
|
|
|
171
201
|
<tr>
|
|
172
202
|
<td class="file low" data-value="useKiwtFieldArray.js"><a href="useKiwtFieldArray.js.html">useKiwtFieldArray.js</a></td>
|
|
173
|
-
<td data-value="
|
|
174
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
203
|
+
<td data-value="0" class="pic low">
|
|
204
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
175
205
|
</td>
|
|
176
|
-
<td data-value="
|
|
177
|
-
<td data-value="27" class="abs low">
|
|
206
|
+
<td data-value="0" class="pct low">0%</td>
|
|
207
|
+
<td data-value="27" class="abs low">0/27</td>
|
|
178
208
|
<td data-value="0" class="pct low">0%</td>
|
|
179
209
|
<td data-value="12" class="abs low">0/12</td>
|
|
180
210
|
<td data-value="0" class="pct low">0%</td>
|
|
181
211
|
<td data-value="9" class="abs low">0/9</td>
|
|
182
|
-
<td data-value="
|
|
183
|
-
<td data-value="26" class="abs low">
|
|
212
|
+
<td data-value="0" class="pct low">0%</td>
|
|
213
|
+
<td data-value="26" class="abs low">0/26</td>
|
|
184
214
|
</tr>
|
|
185
215
|
|
|
186
216
|
<tr>
|
|
187
217
|
<td class="file low" data-value="useKiwtSASQuery.js"><a href="useKiwtSASQuery.js.html">useKiwtSASQuery.js</a></td>
|
|
188
|
-
<td data-value="
|
|
189
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
218
|
+
<td data-value="0" class="pic low">
|
|
219
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
190
220
|
</td>
|
|
191
|
-
<td data-value="
|
|
192
|
-
<td data-value="18" class="abs low">
|
|
221
|
+
<td data-value="0" class="pct low">0%</td>
|
|
222
|
+
<td data-value="18" class="abs low">0/18</td>
|
|
193
223
|
<td data-value="0" class="pct low">0%</td>
|
|
194
224
|
<td data-value="4" class="abs low">0/4</td>
|
|
195
225
|
<td data-value="0" class="pct low">0%</td>
|
|
196
226
|
<td data-value="4" class="abs low">0/4</td>
|
|
197
|
-
<td data-value="
|
|
198
|
-
<td data-value="17" class="abs low">
|
|
227
|
+
<td data-value="0" class="pct low">0%</td>
|
|
228
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
199
229
|
</tr>
|
|
200
230
|
|
|
201
231
|
<tr>
|
|
202
232
|
<td class="file low" data-value="useLocalStorageState.js"><a href="useLocalStorageState.js.html">useLocalStorageState.js</a></td>
|
|
203
|
-
<td data-value="
|
|
204
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
233
|
+
<td data-value="0" class="pic low">
|
|
234
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
205
235
|
</td>
|
|
206
|
-
<td data-value="
|
|
207
|
-
<td data-value="7" class="abs low">
|
|
236
|
+
<td data-value="0" class="pct low">0%</td>
|
|
237
|
+
<td data-value="7" class="abs low">0/7</td>
|
|
208
238
|
<td data-value="100" class="pct high">100%</td>
|
|
209
239
|
<td data-value="0" class="abs high">0/0</td>
|
|
210
240
|
<td data-value="0" class="pct low">0%</td>
|
|
211
241
|
<td data-value="2" class="abs low">0/2</td>
|
|
212
|
-
<td data-value="
|
|
213
|
-
<td data-value="7" class="abs low">
|
|
242
|
+
<td data-value="0" class="pct low">0%</td>
|
|
243
|
+
<td data-value="7" class="abs low">0/7</td>
|
|
214
244
|
</tr>
|
|
215
245
|
|
|
216
246
|
<tr>
|
|
217
247
|
<td class="file low" data-value="useMutateCustomProperties.js"><a href="useMutateCustomProperties.js.html">useMutateCustomProperties.js</a></td>
|
|
218
|
-
<td data-value="
|
|
219
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
248
|
+
<td data-value="0" class="pic low">
|
|
249
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
220
250
|
</td>
|
|
221
|
-
<td data-value="
|
|
222
|
-
<td data-value="19" class="abs low">
|
|
251
|
+
<td data-value="0" class="pct low">0%</td>
|
|
252
|
+
<td data-value="19" class="abs low">0/19</td>
|
|
223
253
|
<td data-value="0" class="pct low">0%</td>
|
|
224
254
|
<td data-value="7" class="abs low">0/7</td>
|
|
225
255
|
<td data-value="0" class="pct low">0%</td>
|
|
226
256
|
<td data-value="4" class="abs low">0/4</td>
|
|
227
|
-
<td data-value="
|
|
228
|
-
<td data-value="19" class="abs low">
|
|
257
|
+
<td data-value="0" class="pct low">0%</td>
|
|
258
|
+
<td data-value="19" class="abs low">0/19</td>
|
|
259
|
+
</tr>
|
|
260
|
+
|
|
261
|
+
<tr>
|
|
262
|
+
<td class="file low" data-value="useMutateRefdataCategory.js"><a href="useMutateRefdataCategory.js.html">useMutateRefdataCategory.js</a></td>
|
|
263
|
+
<td data-value="0" class="pic low">
|
|
264
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
265
|
+
</td>
|
|
266
|
+
<td data-value="0" class="pct low">0%</td>
|
|
267
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
268
|
+
<td data-value="0" class="pct low">0%</td>
|
|
269
|
+
<td data-value="5" class="abs low">0/5</td>
|
|
270
|
+
<td data-value="0" class="pct low">0%</td>
|
|
271
|
+
<td data-value="5" class="abs low">0/5</td>
|
|
272
|
+
<td data-value="0" class="pct low">0%</td>
|
|
273
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
229
274
|
</tr>
|
|
230
275
|
|
|
231
276
|
<tr>
|
|
232
277
|
<td class="file low" data-value="useMutateRefdataValue.js"><a href="useMutateRefdataValue.js.html">useMutateRefdataValue.js</a></td>
|
|
233
|
-
<td data-value="
|
|
234
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
278
|
+
<td data-value="0" class="pic low">
|
|
279
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
235
280
|
</td>
|
|
236
|
-
<td data-value="
|
|
237
|
-
<td data-value="17" class="abs low">
|
|
281
|
+
<td data-value="0" class="pct low">0%</td>
|
|
282
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
238
283
|
<td data-value="0" class="pct low">0%</td>
|
|
239
284
|
<td data-value="5" class="abs low">0/5</td>
|
|
240
285
|
<td data-value="0" class="pct low">0%</td>
|
|
241
286
|
<td data-value="5" class="abs low">0/5</td>
|
|
242
|
-
<td data-value="
|
|
243
|
-
<td data-value="17" class="abs low">
|
|
287
|
+
<td data-value="0" class="pct low">0%</td>
|
|
288
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
244
289
|
</tr>
|
|
245
290
|
|
|
246
291
|
<tr>
|
|
247
292
|
<td class="file low" data-value="useQIndex.js"><a href="useQIndex.js.html">useQIndex.js</a></td>
|
|
248
|
-
<td data-value="
|
|
249
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
293
|
+
<td data-value="0" class="pic low">
|
|
294
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
250
295
|
</td>
|
|
251
|
-
<td data-value="
|
|
252
|
-
<td data-value="14" class="abs low">
|
|
296
|
+
<td data-value="0" class="pct low">0%</td>
|
|
297
|
+
<td data-value="14" class="abs low">0/14</td>
|
|
253
298
|
<td data-value="0" class="pct low">0%</td>
|
|
254
299
|
<td data-value="4" class="abs low">0/4</td>
|
|
255
300
|
<td data-value="0" class="pct low">0%</td>
|
|
256
301
|
<td data-value="3" class="abs low">0/3</td>
|
|
257
|
-
<td data-value="
|
|
258
|
-
<td data-value="14" class="abs low">
|
|
302
|
+
<td data-value="0" class="pct low">0%</td>
|
|
303
|
+
<td data-value="14" class="abs low">0/14</td>
|
|
259
304
|
</tr>
|
|
260
305
|
|
|
261
306
|
<tr>
|
|
262
307
|
<td class="file low" data-value="useRefdata.js"><a href="useRefdata.js.html">useRefdata.js</a></td>
|
|
263
|
-
<td data-value="
|
|
264
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
308
|
+
<td data-value="0" class="pic low">
|
|
309
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
265
310
|
</td>
|
|
266
|
-
<td data-value="
|
|
267
|
-
<td data-value="17" class="abs low">
|
|
311
|
+
<td data-value="0" class="pct low">0%</td>
|
|
312
|
+
<td data-value="17" class="abs low">0/17</td>
|
|
268
313
|
<td data-value="0" class="pct low">0%</td>
|
|
269
314
|
<td data-value="12" class="abs low">0/12</td>
|
|
270
315
|
<td data-value="0" class="pct low">0%</td>
|
|
271
316
|
<td data-value="3" class="abs low">0/3</td>
|
|
272
|
-
<td data-value="
|
|
273
|
-
<td data-value="16" class="abs low">
|
|
317
|
+
<td data-value="0" class="pct low">0%</td>
|
|
318
|
+
<td data-value="16" class="abs low">0/16</td>
|
|
274
319
|
</tr>
|
|
275
320
|
|
|
276
321
|
<tr>
|
|
277
322
|
<td class="file low" data-value="useTemplates.js"><a href="useTemplates.js.html">useTemplates.js</a></td>
|
|
278
|
-
<td data-value="
|
|
279
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
323
|
+
<td data-value="0" class="pic low">
|
|
324
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
280
325
|
</td>
|
|
281
|
-
<td data-value="
|
|
282
|
-
<td data-value="12" class="abs low">
|
|
326
|
+
<td data-value="0" class="pct low">0%</td>
|
|
327
|
+
<td data-value="12" class="abs low">0/12</td>
|
|
283
328
|
<td data-value="0" class="pct low">0%</td>
|
|
284
329
|
<td data-value="8" class="abs low">0/8</td>
|
|
285
330
|
<td data-value="0" class="pct low">0%</td>
|
|
286
331
|
<td data-value="2" class="abs low">0/2</td>
|
|
287
|
-
<td data-value="
|
|
288
|
-
<td data-value="12" class="abs low">
|
|
332
|
+
<td data-value="0" class="pct low">0%</td>
|
|
333
|
+
<td data-value="12" class="abs low">0/12</td>
|
|
289
334
|
</tr>
|
|
290
335
|
|
|
291
336
|
</tbody>
|
|
@@ -296,7 +341,7 @@
|
|
|
296
341
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
297
342
|
Code coverage generated by
|
|
298
343
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
299
|
-
at
|
|
344
|
+
at 2022-09-16T13:23:25.290Z
|
|
300
345
|
</div>
|
|
301
346
|
<script src="../prettify.js"></script>
|
|
302
347
|
<script>
|
|
@@ -77,7 +77,13 @@
|
|
|
77
77
|
<a name='L12'></a><a href='#L12'>12</a>
|
|
78
78
|
<a name='L13'></a><a href='#L13'>13</a>
|
|
79
79
|
<a name='L14'></a><a href='#L14'>14</a>
|
|
80
|
-
<a name='L15'></a><a href='#L15'>15</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></td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
84
|
+
<span class="cline-any cline-neutral"> </span>
|
|
85
|
+
<span class="cline-any cline-neutral"> </span>
|
|
86
|
+
<span class="cline-any cline-neutral"> </span>
|
|
81
87
|
<span class="cline-any cline-neutral"> </span>
|
|
82
88
|
<span class="cline-any cline-neutral"> </span>
|
|
83
89
|
<span class="cline-any cline-neutral"> </span>
|
|
@@ -99,12 +105,15 @@ export { default as useKiwtSASQuery } from './useKiwtSASQuery';
|
|
|
99
105
|
export { default as useHelperApp } from './useHelperApp';
|
|
100
106
|
export { default as useLocalStorageState } from './useLocalStorageState';
|
|
101
107
|
export { default as useQIndex } from './useQIndex';
|
|
102
|
-
export { useSettings, useSettingSection } from './settingsHooks';
|
|
108
|
+
export { useSettings, useSettingSection, useAppSettings } from './settingsHooks';
|
|
103
109
|
export { default as useKiwtFieldArray } from './useKiwtFieldArray';
|
|
104
110
|
export { default as useCustomProperties } from './useCustomProperties';
|
|
105
111
|
export { default as useMutateCustomProperties } from './useMutateCustomProperties';
|
|
106
|
-
export { default as useAvailableCustomProperties } from './useAvailableCustomProperties';
|
|
107
112
|
export { default as useInvalidateRefdata } from './useInvalidateRefdata';
|
|
113
|
+
export { default as useMutateRefdataCategory } from './useMutateRefdataCategory';
|
|
114
|
+
export { default as useKintIntl } from './useKintIntl';
|
|
115
|
+
export { default as useIntlKeyStore } from './useIntlKeyStore';
|
|
116
|
+
export { default as useIntlKey } from './useIntlKey';
|
|
108
117
|
</pre></td></tr></table></pre>
|
|
109
118
|
|
|
110
119
|
<div class='push'></div><!-- for sticky footer -->
|
|
@@ -112,7 +121,7 @@ export { default as useInvalidateRefdata } from './useInvalidateRefdata';
|
|
|
112
121
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
113
122
|
Code coverage generated by
|
|
114
123
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
115
|
-
at
|
|
124
|
+
at 2022-09-16T13:23:25.290Z
|
|
116
125
|
</div>
|
|
117
126
|
<script src="../prettify.js"></script>
|
|
118
127
|
<script>
|
|
@@ -23,30 +23,30 @@
|
|
|
23
23
|
<div class='clearfix'>
|
|
24
24
|
|
|
25
25
|
<div class='fl pad1y space-right2'>
|
|
26
|
-
<span class="strong">
|
|
26
|
+
<span class="strong">0% </span>
|
|
27
27
|
<span class="quiet">Statements</span>
|
|
28
|
-
<span class='fraction'>
|
|
28
|
+
<span class='fraction'>0/50</span>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<div class='fl pad1y space-right2'>
|
|
33
33
|
<span class="strong">0% </span>
|
|
34
34
|
<span class="quiet">Branches</span>
|
|
35
|
-
<span class='fraction'>0/
|
|
35
|
+
<span class='fraction'>0/30</span>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
<div class='fl pad1y space-right2'>
|
|
40
40
|
<span class="strong">0% </span>
|
|
41
41
|
<span class="quiet">Functions</span>
|
|
42
|
-
<span class='fraction'>0/
|
|
42
|
+
<span class='fraction'>0/14</span>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
<div class='fl pad1y space-right2'>
|
|
47
|
-
<span class="strong">
|
|
47
|
+
<span class="strong">0% </span>
|
|
48
48
|
<span class="quiet">Lines</span>
|
|
49
|
-
<span class='fraction'>
|
|
49
|
+
<span class='fraction'>0/49</span>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
|
|
@@ -93,34 +93,49 @@
|
|
|
93
93
|
<td data-value="0" class="abs empty">0/0</td>
|
|
94
94
|
</tr>
|
|
95
95
|
|
|
96
|
+
<tr>
|
|
97
|
+
<td class="file low" data-value="useAppSettings.js"><a href="useAppSettings.js.html">useAppSettings.js</a></td>
|
|
98
|
+
<td data-value="0" class="pic low">
|
|
99
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
100
|
+
</td>
|
|
101
|
+
<td data-value="0" class="pct low">0%</td>
|
|
102
|
+
<td data-value="20" class="abs low">0/20</td>
|
|
103
|
+
<td data-value="0" class="pct low">0%</td>
|
|
104
|
+
<td data-value="25" class="abs low">0/25</td>
|
|
105
|
+
<td data-value="0" class="pct low">0%</td>
|
|
106
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
107
|
+
<td data-value="0" class="pct low">0%</td>
|
|
108
|
+
<td data-value="20" class="abs low">0/20</td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
96
111
|
<tr>
|
|
97
112
|
<td class="file low" data-value="useSettingSection.js"><a href="useSettingSection.js.html">useSettingSection.js</a></td>
|
|
98
|
-
<td data-value="
|
|
99
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
113
|
+
<td data-value="0" class="pic low">
|
|
114
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
100
115
|
</td>
|
|
101
|
-
<td data-value="
|
|
102
|
-
<td data-value="8" class="abs low">
|
|
116
|
+
<td data-value="0" class="pct low">0%</td>
|
|
117
|
+
<td data-value="8" class="abs low">0/8</td>
|
|
103
118
|
<td data-value="0" class="pct low">0%</td>
|
|
104
119
|
<td data-value="3" class="abs low">0/3</td>
|
|
105
120
|
<td data-value="0" class="pct low">0%</td>
|
|
106
121
|
<td data-value="3" class="abs low">0/3</td>
|
|
107
|
-
<td data-value="
|
|
108
|
-
<td data-value="8" class="abs low">
|
|
122
|
+
<td data-value="0" class="pct low">0%</td>
|
|
123
|
+
<td data-value="8" class="abs low">0/8</td>
|
|
109
124
|
</tr>
|
|
110
125
|
|
|
111
126
|
<tr>
|
|
112
127
|
<td class="file low" data-value="useSettings.js"><a href="useSettings.js.html">useSettings.js</a></td>
|
|
113
|
-
<td data-value="
|
|
114
|
-
<div class="chart"><div class="cover-fill" style="width:
|
|
128
|
+
<td data-value="0" class="pic low">
|
|
129
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
115
130
|
</td>
|
|
116
|
-
<td data-value="4.54" class="pct low">4.54%</td>
|
|
117
|
-
<td data-value="22" class="abs low">1/22</td>
|
|
118
131
|
<td data-value="0" class="pct low">0%</td>
|
|
119
|
-
<td data-value="
|
|
132
|
+
<td data-value="22" class="abs low">0/22</td>
|
|
133
|
+
<td data-value="0" class="pct low">0%</td>
|
|
134
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
120
135
|
<td data-value="0" class="pct low">0%</td>
|
|
121
136
|
<td data-value="9" class="abs low">0/9</td>
|
|
122
|
-
<td data-value="
|
|
123
|
-
<td data-value="21" class="abs low">
|
|
137
|
+
<td data-value="0" class="pct low">0%</td>
|
|
138
|
+
<td data-value="21" class="abs low">0/21</td>
|
|
124
139
|
</tr>
|
|
125
140
|
|
|
126
141
|
</tbody>
|
|
@@ -131,7 +146,7 @@
|
|
|
131
146
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
132
147
|
Code coverage generated by
|
|
133
148
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
134
|
-
at
|
|
149
|
+
at 2022-09-16T13:23:25.290Z
|
|
135
150
|
</div>
|
|
136
151
|
<script src="../../prettify.js"></script>
|
|
137
152
|
<script>
|
|
@@ -65,10 +65,13 @@
|
|
|
65
65
|
<pre><table class="coverage">
|
|
66
66
|
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
|
|
67
67
|
<a name='L2'></a><a href='#L2'>2</a>
|
|
68
|
-
<a name='L3'></a><a href='#L3'>3</a
|
|
68
|
+
<a name='L3'></a><a href='#L3'>3</a>
|
|
69
|
+
<a name='L4'></a><a href='#L4'>4</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
70
|
+
<span class="cline-any cline-neutral"> </span>
|
|
69
71
|
<span class="cline-any cline-neutral"> </span>
|
|
70
72
|
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">export { default as useSettings } from './useSettings';
|
|
71
73
|
export { default as useSettingSection } from './useSettingSection';
|
|
74
|
+
export { default as useAppSettings } from './useAppSettings';
|
|
72
75
|
</pre></td></tr></table></pre>
|
|
73
76
|
|
|
74
77
|
<div class='push'></div><!-- for sticky footer -->
|
|
@@ -76,7 +79,7 @@ export { default as useSettingSection } from './useSettingSection';
|
|
|
76
79
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
77
80
|
Code coverage generated by
|
|
78
81
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
79
|
-
at
|
|
82
|
+
at 2022-09-16T13:23:25.290Z
|
|
80
83
|
</div>
|
|
81
84
|
<script src="../../prettify.js"></script>
|
|
82
85
|
<script>
|