@k-int/stripes-kint-components 5.0.0 → 5.1.1
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 +14 -0
- package/es/__mocks__/@folio/stripes/components.js +10 -21
- package/es/__mocks__/@folio/stripes/core.js +4 -7
- package/es/__mocks__/@folio/stripes/smart-components.js +4 -7
- package/es/__mocks__/react-query.js +4 -7
- package/es/__mocks__/react-router-dom.js +6 -7
- package/es/artifacts/coverage-jest/lcov-report/prettify.js +2 -2
- package/es/artifacts/coverage-jest/lcov-report/sorter.js +6 -6
- package/es/index.js +56 -49
- package/es/lib/ActionList/ActionList.js +39 -53
- package/es/lib/ActionList/ActionListFieldArray.js +144 -169
- package/es/lib/ActionList/index.js +1 -1
- package/es/lib/ComboButton/ComboButton.js +73 -91
- package/es/lib/ComboButton/index.js +1 -1
- package/es/lib/CustomProperties/Config/CustomPropertiesLookup.js +58 -79
- package/es/lib/CustomProperties/Config/CustomPropertiesLookup.test.js +15 -19
- package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +112 -162
- package/es/lib/CustomProperties/Config/CustomPropertiesSettings.test.js +30 -67
- package/es/lib/CustomProperties/Config/CustomPropertyForm.js +37 -50
- package/es/lib/CustomProperties/Config/CustomPropertyForm.test.js +83 -121
- package/es/lib/CustomProperties/Config/CustomPropertyView.js +10 -10
- package/es/lib/CustomProperties/Config/CustomPropertyView.test.js +48 -135
- package/es/lib/CustomProperties/Config/index.js +4 -4
- package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +20 -23
- package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.test.js +11 -16
- package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +30 -29
- package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.test.js +11 -16
- package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +87 -105
- package/es/lib/CustomProperties/Edit/CustomPropertiesListField.test.js +26 -63
- package/es/lib/CustomProperties/Edit/CustomPropertyField.js +124 -117
- package/es/lib/CustomProperties/Edit/CustomPropertyField.test.js +101 -179
- package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +44 -46
- package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +23 -27
- package/es/lib/CustomProperties/Edit/index.js +5 -5
- package/es/lib/CustomProperties/Edit/testResources.js +14 -38
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +61 -83
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.test.js +23 -57
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +40 -56
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +17 -16
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +28 -25
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +19 -47
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +19 -22
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +23 -52
- package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +38 -43
- package/es/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +94 -226
- package/es/lib/CustomProperties/Filter/index.js +6 -6
- package/es/lib/CustomProperties/Filter/testResources.js +13 -36
- package/es/lib/CustomProperties/Filter/useOperators.js +18 -18
- package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +18 -32
- package/es/lib/CustomProperties/Filter/useValueProps.js +23 -29
- package/es/lib/CustomProperties/View/CustomPropertiesView.js +20 -23
- package/es/lib/CustomProperties/View/CustomPropertiesView.test.js +11 -16
- package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +50 -59
- package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +14 -23
- package/es/lib/CustomProperties/View/CustomPropertyCard.js +18 -20
- package/es/lib/CustomProperties/View/index.js +3 -3
- package/es/lib/CustomProperties/View/testResources.js +5 -9
- package/es/lib/CustomProperties/index.js +18 -18
- package/es/lib/CycleButton/CycleButton.js +18 -34
- package/es/lib/CycleButton/index.js +1 -1
- package/es/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +109 -152
- package/es/lib/EditableRefdataCategoryList/index.js +1 -1
- package/es/lib/EditableRefdataList/EditableRefdataList.js +128 -172
- package/es/lib/EditableRefdataList/index.js +1 -1
- package/es/lib/EditableSettingsList/EditableSettingsList.js +17 -15
- package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.js +19 -27
- package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.test.js +61 -90
- package/es/lib/EditableSettingsList/SettingField/EditSettingValue.js +22 -36
- package/es/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +99 -83
- package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.js +18 -21
- package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +187 -275
- package/es/lib/EditableSettingsList/SettingField/SettingField.js +75 -111
- package/es/lib/EditableSettingsList/SettingField/SettingField.test.js +55 -168
- package/es/lib/EditableSettingsList/SettingField/index.js +3 -3
- package/es/lib/EditableSettingsList/index.js +3 -3
- package/es/lib/FormModal/FormModal.js +44 -48
- package/es/lib/FormModal/index.js +1 -1
- package/es/lib/FormattedKintMessage/FormattedKintMessage.js +25 -29
- package/es/lib/FormattedKintMessage/index.js +1 -1
- package/es/lib/IconSelect/IconSelect.js +50 -70
- package/es/lib/IconSelect/index.js +1 -1
- package/es/lib/NoResultsMessage/NoResultsMessage.js +19 -19
- package/es/lib/NoResultsMessage/index.js +1 -1
- package/es/lib/QueryTypedown/QueryTypedown.js +18 -40
- package/es/lib/QueryTypedown/index.js +1 -1
- package/es/lib/RefdataButtons/RefdataButtons.js +27 -31
- package/es/lib/RefdataButtons/index.js +1 -1
- package/es/lib/ResponsiveButtonGroup/ResponsiveButtonGroup.js +84 -90
- package/es/lib/ResponsiveButtonGroup/index.js +1 -1
- package/es/lib/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js +28 -42
- package/es/lib/RichSelect/RichSelect.js +71 -88
- package/es/lib/RichSelect/index.js +2 -2
- package/es/lib/RichSelect/useSelectedOption.js +4 -14
- package/es/lib/SASQLookupComponent/SASQLookupComponent.js +116 -139
- package/es/lib/SASQLookupComponent/TableBody/TableBody.js +40 -47
- package/es/lib/SASQLookupComponent/TableBody/index.js +1 -1
- package/es/lib/SASQLookupComponent/index.js +2 -2
- package/es/lib/SASQRoute/SASQRoute.js +32 -39
- package/es/lib/SASQRoute/index.js +1 -1
- package/es/lib/SASQViewComponent/SASQViewComponent.js +39 -47
- package/es/lib/SASQViewComponent/index.js +1 -1
- package/es/lib/SearchField/SearchField.js +12 -18
- package/es/lib/SearchField/index.js +1 -1
- package/es/lib/SettingPage/SettingPage.js +22 -22
- package/es/lib/SettingPage/SettingPagePane.js +9 -8
- package/es/lib/SettingPage/index.js +2 -2
- package/es/lib/SettingsFormContainer/SettingsFormContainer.js +51 -55
- package/es/lib/SettingsFormContainer/index.js +1 -1
- package/es/lib/Typedown/Typedown.js +62 -81
- package/es/lib/Typedown/index.js +1 -1
- package/es/lib/constants/comparators.js +7 -0
- package/es/lib/constants/customProperties.js +11 -22
- package/es/lib/constants/endpoints.js +1 -2
- package/es/lib/constants/eventCodes.js +3 -6
- package/es/lib/contexts/SettingsContext.js +2 -3
- package/es/lib/contexts/index.js +1 -1
- package/es/lib/hooks/__mocks__/index.js +9 -29
- package/es/lib/hooks/index.js +19 -19
- package/es/lib/hooks/typedownHooks/index.js +3 -3
- package/es/lib/hooks/typedownHooks/useTypedown.js +49 -50
- package/es/lib/hooks/typedownHooks/useTypedownData.js +12 -23
- package/es/lib/hooks/typedownHooks/useTypedownToggle.js +13 -22
- package/es/lib/hooks/useActiveElement.js +9 -19
- package/es/lib/hooks/useCustomProperties.js +23 -32
- package/es/lib/hooks/useHelperApp.js +31 -51
- package/es/lib/hooks/useIntlKey.js +4 -7
- package/es/lib/hooks/useIntlKeyStore.js +44 -51
- package/es/lib/hooks/useInvalidateRefdata.js +4 -7
- package/es/lib/hooks/useKintIntl.js +29 -33
- package/es/lib/hooks/useKiwtFieldArray.js +35 -47
- package/es/lib/hooks/useKiwtSASQuery.js +38 -51
- package/es/lib/hooks/useLocalStorageState.js +7 -20
- package/es/lib/hooks/useModConfigEntries.js +27 -27
- package/es/lib/hooks/useMutateCustomProperties.js +20 -64
- package/es/lib/hooks/useMutateModConfigEntry.js +22 -61
- package/es/lib/hooks/useMutateRefdataCategory.js +20 -62
- package/es/lib/hooks/useMutateRefdataValue.js +29 -67
- package/es/lib/hooks/useQIndex.js +13 -28
- package/es/lib/hooks/useRefdata.js +18 -21
- package/es/lib/hooks/useSASQQueryMeta.js +14 -22
- package/es/lib/hooks/useTemplates.js +14 -14
- package/es/lib/settingsHooks/index.js +3 -3
- package/es/lib/settingsHooks/useAppSettings.js +19 -27
- package/es/lib/settingsHooks/useSettingSection.js +17 -19
- package/es/lib/settingsHooks/useSettings.js +59 -74
- package/es/lib/utils/buildUrl.js +6 -8
- package/es/lib/utils/filterParsers/deparseKiwtQueryFilters.js +36 -0
- package/es/lib/utils/filterParsers/index.js +48 -0
- package/es/lib/utils/filterParsers/parseKiwtQueryFilters.js +47 -0
- package/es/lib/utils/{parseKiwtQueryGroups.js → filterParsers/parseKiwtQueryGroups.js} +12 -13
- package/es/lib/utils/{parseKiwtQueryGroups.test.js → filterParsers/parseKiwtQueryGroups.test.js} +15 -15
- package/es/lib/utils/filterParsers/parseKiwtQueryString.js +34 -0
- package/es/lib/utils/generateKiwtQuery.js +4 -5
- package/es/lib/utils/generateKiwtQueryParams.js +93 -99
- package/es/lib/utils/groupCustomPropertiesByCtx.js +9 -20
- package/es/lib/utils/highlightString.js +17 -37
- package/es/lib/utils/index.js +49 -19
- package/es/lib/utils/matchString.js +5 -10
- package/es/lib/utils/modConfigEntriesQueryKey.js +9 -9
- package/es/lib/utils/parseErrorResponse.js +23 -65
- package/es/lib/utils/parseModConfigEntry.js +3 -4
- package/es/lib/utils/refdataOptions.js +2 -3
- package/es/lib/utils/refdataQueryKey.js +3 -4
- package/es/lib/utils/selectorSafe.js +5 -6
- package/es/lib/utils/sortByLabel.js +4 -5
- package/es/lib/utils/toCamelCase.js +8 -14
- package/es/lib/utils/typedownQueryKey.js +3 -4
- package/es/lib/validators/index.js +1 -1
- package/es/lib/validators/validators.js +22 -29
- package/junit.xml +161 -161
- package/package.json +5 -5
- package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionList.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionListFieldArray.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionTrigger.js.html +418 -0
- package/src/artifacts/coverage-jest/lcov-report/ActionList/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ActionList/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ComboButton/ComboButton.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ComboButton/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ComboButton/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesLookup.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesSettings.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyForm.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyView.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.html +1 -1
- 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 +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEditCtx.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesListField.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyField.js.html +10 -10
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyFormCard.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.html +15 -15
- 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 +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilter.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterField.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterForm.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesRule.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.html +1 -1
- 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 +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useOperators.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useParseActiveFilterStrings.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useValueProps.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesView.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesViewCtx.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertyCard.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.html +1 -1
- 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/CycleButton/CycleButton.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/EditableRefdataCategoryList.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/EditableRefdataList.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsList.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsListFieldArray.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/EditSettingValue.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/RenderSettingValue.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/SettingField.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormModal/FormModal.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormModal/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormModal/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/FormattedKintMessage.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/IconSelect/IconSelect.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/NoResultsMessage.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.html +1 -1
- 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 +1 -1
- 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/ResponsiveButtonGroup/ResponsiveButtonGroup.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ResponsiveButtonGroup/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ResponsiveButtonGroup/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/ResponsiveButtonGroup/useResponsiveButtonGroupSizing.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/RichSelect/RichSelect.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/RichSelect/useSelectedOption.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/SASQLookupComponent.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/TableBody.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.html +1 -1
- 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 +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPagePane.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/EditSettingValue.js.html +514 -0
- package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/RenderSettingValue.js.html +358 -0
- package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/SettingsActionList.js.html +736 -0
- package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/index.html +161 -0
- package/src/artifacts/coverage-jest/lcov-report/SettingsActionList/index.js.html +88 -0
- package/src/artifacts/coverage-jest/lcov-report/SettingsFormContainer/SettingsFormContainer.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SettingsFormContainer/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/SettingsFormContainer/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/comparators.js.html +121 -0
- package/src/artifacts/coverage-jest/lcov-report/constants/customProperties.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/constants/endpoints.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 +16 -1
- package/src/artifacts/coverage-jest/lcov-report/contexts/SettingsContext.js.html +1 -1
- 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/hooks/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.html +161 -0
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.js.html +94 -0
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useAppSettings.js.html +292 -0
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettingSection.js.html +214 -0
- package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettings.js.html +463 -0
- 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 +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useCustomProperties.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useHelperApp.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKey.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKeyStore.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useInvalidateRefdata.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useKintIntl.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtFieldArray.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtSASQuery.js.html +2 -2
- package/src/artifacts/coverage-jest/lcov-report/hooks/useLocalStorageState.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useModConfigEntries.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateCustomProperties.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateModConfigEntry.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataCategory.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataValue.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useQIndex.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useRefdata.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useSASQQueryMeta.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/hooks/useTemplates.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/index.html +41 -26
- package/src/artifacts/coverage-jest/lcov-report/settingsHooks/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/settingsHooks/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/settingsHooks/useAppSettings.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/settingsHooks/useSettingSection.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/settingsHooks/useSettings.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/buildUrl.js.html +6 -18
- package/src/artifacts/coverage-jest/lcov-report/utils/filterParsers/deparseKiwtQueryFilters.js.html +181 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/filterParsers/index.html +176 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/filterParsers/index.js.html +124 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/filterParsers/parseKiwtQueryFilters.js.html +211 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/filterParsers/parseKiwtQueryGroups.js.html +367 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/filterParsers/parseKiwtQueryString.js.html +184 -0
- package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQuery.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQueryParams.js.html +13 -7
- package/src/artifacts/coverage-jest/lcov-report/utils/groupCustomPropertiesByCtx.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/highlightString.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/index.html +13 -28
- package/src/artifacts/coverage-jest/lcov-report/utils/index.js.html +24 -3
- package/src/artifacts/coverage-jest/lcov-report/utils/matchString.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/modConfigEntriesQueryKey.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/parseErrorResponse.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/parseKiwtQueryGroups.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/parseModConfigEntry.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/refdataOptions.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/refdataQueryKey.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/selectorSafe.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/sortByLabel.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/toCamelCase.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/typedownQueryKey.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/utils/validators.js.html +370 -0
- package/src/artifacts/coverage-jest/lcov-report/validators/index.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/validators/index.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov-report/validators/validators.js.html +1 -1
- package/src/artifacts/coverage-jest/lcov.info +352 -228
- package/src/index.js +1 -0
- package/src/lib/CustomProperties/Edit/CustomPropertyField.test.js +9 -5
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +1 -4
- package/src/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +26 -10
- package/src/lib/constants/comparators.js +13 -0
- package/src/lib/hooks/useKiwtSASQuery.js +1 -1
- package/src/lib/utils/buildUrl.js +1 -5
- package/src/lib/utils/filterParsers/deparseKiwtQueryFilters.js +32 -0
- package/src/lib/utils/filterParsers/index.js +13 -0
- package/src/lib/utils/filterParsers/parseKiwtQueryFilters.js +42 -0
- package/src/lib/utils/{parseKiwtQueryGroups.js → filterParsers/parseKiwtQueryGroups.js} +3 -1
- package/src/lib/utils/filterParsers/parseKiwtQueryString.js +33 -0
- package/src/lib/utils/generateKiwtQueryParams.js +6 -4
- package/src/lib/utils/index.js +8 -1
- /package/src/lib/utils/{parseKiwtQueryGroups.test.js → filterParsers/parseKiwtQueryGroups.test.js} +0 -0
|
@@ -945,7 +945,7 @@ FN:300,(anonymous_18)
|
|
|
945
945
|
FN:326,(anonymous_19)
|
|
946
946
|
FN:329,(anonymous_20)
|
|
947
947
|
FNF:21
|
|
948
|
-
FNH:
|
|
948
|
+
FNH:11
|
|
949
949
|
FNDA:14,(anonymous_0)
|
|
950
950
|
FNDA:14,(anonymous_1)
|
|
951
951
|
FNDA:0,(anonymous_2)
|
|
@@ -962,7 +962,7 @@ FNDA:0,(anonymous_12)
|
|
|
962
962
|
FNDA:0,(anonymous_13)
|
|
963
963
|
FNDA:14,(anonymous_14)
|
|
964
964
|
FNDA:14,(anonymous_15)
|
|
965
|
-
FNDA:
|
|
965
|
+
FNDA:1,(anonymous_16)
|
|
966
966
|
FNDA:14,(anonymous_17)
|
|
967
967
|
FNDA:0,(anonymous_18)
|
|
968
968
|
FNDA:14,(anonymous_19)
|
|
@@ -1034,7 +1034,7 @@ DA:246,14
|
|
|
1034
1034
|
DA:252,14
|
|
1035
1035
|
DA:253,14
|
|
1036
1036
|
DA:255,14
|
|
1037
|
-
DA:256,
|
|
1037
|
+
DA:256,1
|
|
1038
1038
|
DA:265,14
|
|
1039
1039
|
DA:297,14
|
|
1040
1040
|
DA:298,14
|
|
@@ -1049,7 +1049,7 @@ DA:339,14
|
|
|
1049
1049
|
DA:355,14
|
|
1050
1050
|
DA:389,19
|
|
1051
1051
|
LF:81
|
|
1052
|
-
LH:
|
|
1052
|
+
LH:52
|
|
1053
1053
|
BRDA:27,0,0,14
|
|
1054
1054
|
BRDA:37,1,0,14
|
|
1055
1055
|
BRDA:37,1,1,5
|
|
@@ -3475,6 +3475,15 @@ BRF:0
|
|
|
3475
3475
|
BRH:0
|
|
3476
3476
|
end_of_record
|
|
3477
3477
|
TN:
|
|
3478
|
+
SF:src/lib/constants/comparators.js
|
|
3479
|
+
FNF:0
|
|
3480
|
+
FNH:0
|
|
3481
|
+
LF:0
|
|
3482
|
+
LH:0
|
|
3483
|
+
BRF:0
|
|
3484
|
+
BRH:0
|
|
3485
|
+
end_of_record
|
|
3486
|
+
TN:
|
|
3478
3487
|
SF:src/lib/constants/customProperties.js
|
|
3479
3488
|
FNF:0
|
|
3480
3489
|
FNH:0
|
|
@@ -4606,39 +4615,36 @@ BRH:0
|
|
|
4606
4615
|
end_of_record
|
|
4607
4616
|
TN:
|
|
4608
4617
|
SF:src/lib/utils/buildUrl.js
|
|
4609
|
-
FN:10,
|
|
4610
|
-
FN:
|
|
4611
|
-
FN:
|
|
4612
|
-
|
|
4613
|
-
FNF:4
|
|
4618
|
+
FN:10,removeEmpty
|
|
4619
|
+
FN:13,(anonymous_1)
|
|
4620
|
+
FN:20,buildUrl
|
|
4621
|
+
FNF:3
|
|
4614
4622
|
FNH:0
|
|
4615
|
-
FNDA:0,getLocationQuery
|
|
4616
4623
|
FNDA:0,removeEmpty
|
|
4617
|
-
FNDA:0,(
|
|
4624
|
+
FNDA:0,(anonymous_1)
|
|
4618
4625
|
FNDA:0,buildUrl
|
|
4619
4626
|
DA:11,0
|
|
4620
|
-
DA:
|
|
4627
|
+
DA:13,0
|
|
4628
|
+
DA:14,0
|
|
4621
4629
|
DA:17,0
|
|
4622
|
-
DA:18,0
|
|
4623
4630
|
DA:21,0
|
|
4631
|
+
DA:22,0
|
|
4632
|
+
DA:23,0
|
|
4624
4633
|
DA:25,0
|
|
4625
|
-
DA:26,0
|
|
4626
4634
|
DA:27,0
|
|
4627
|
-
DA:
|
|
4635
|
+
DA:28,0
|
|
4628
4636
|
DA:31,0
|
|
4629
|
-
|
|
4630
|
-
DA:35,0
|
|
4631
|
-
LF:12
|
|
4637
|
+
LF:11
|
|
4632
4638
|
LH:0
|
|
4633
|
-
BRDA:
|
|
4634
|
-
BRDA:
|
|
4635
|
-
BRDA:
|
|
4636
|
-
BRDA:
|
|
4637
|
-
BRDA:
|
|
4638
|
-
BRDA:
|
|
4639
|
-
BRDA:
|
|
4640
|
-
BRDA:
|
|
4641
|
-
BRDA:
|
|
4639
|
+
BRDA:14,0,0,0
|
|
4640
|
+
BRDA:14,0,1,0
|
|
4641
|
+
BRDA:21,1,0,0
|
|
4642
|
+
BRDA:21,1,1,0
|
|
4643
|
+
BRDA:22,2,0,0
|
|
4644
|
+
BRDA:22,2,1,0
|
|
4645
|
+
BRDA:22,2,2,0
|
|
4646
|
+
BRDA:27,3,0,0
|
|
4647
|
+
BRDA:27,3,1,0
|
|
4642
4648
|
BRF:9
|
|
4643
4649
|
BRH:0
|
|
4644
4650
|
end_of_record
|
|
@@ -4662,23 +4668,23 @@ end_of_record
|
|
|
4662
4668
|
TN:
|
|
4663
4669
|
SF:src/lib/utils/generateKiwtQueryParams.js
|
|
4664
4670
|
FN:1,(anonymous_0)
|
|
4665
|
-
FN:
|
|
4666
|
-
FN:
|
|
4667
|
-
FN:
|
|
4668
|
-
FN:
|
|
4669
|
-
FN:
|
|
4670
|
-
FN:
|
|
4671
|
-
FN:
|
|
4672
|
-
FN:
|
|
4673
|
-
FN:
|
|
4674
|
-
FN:
|
|
4675
|
-
FN:
|
|
4676
|
-
FN:
|
|
4677
|
-
FN:
|
|
4678
|
-
FN:
|
|
4679
|
-
FN:
|
|
4680
|
-
FN:
|
|
4681
|
-
FN:
|
|
4671
|
+
FN:11,(anonymous_1)
|
|
4672
|
+
FN:16,(anonymous_2)
|
|
4673
|
+
FN:25,(anonymous_3)
|
|
4674
|
+
FN:27,(anonymous_4)
|
|
4675
|
+
FN:33,(anonymous_5)
|
|
4676
|
+
FN:54,(anonymous_6)
|
|
4677
|
+
FN:101,(anonymous_7)
|
|
4678
|
+
FN:107,(anonymous_8)
|
|
4679
|
+
FN:117,(anonymous_9)
|
|
4680
|
+
FN:126,(anonymous_10)
|
|
4681
|
+
FN:127,(anonymous_11)
|
|
4682
|
+
FN:131,(anonymous_12)
|
|
4683
|
+
FN:132,(anonymous_13)
|
|
4684
|
+
FN:139,(anonymous_14)
|
|
4685
|
+
FN:141,(anonymous_15)
|
|
4686
|
+
FN:148,(anonymous_16)
|
|
4687
|
+
FN:159,(anonymous_17)
|
|
4682
4688
|
FNF:18
|
|
4683
4689
|
FNH:0
|
|
4684
4690
|
FNDA:0,(anonymous_0)
|
|
@@ -4703,160 +4709,168 @@ DA:1,20
|
|
|
4703
4709
|
DA:2,0
|
|
4704
4710
|
DA:3,0
|
|
4705
4711
|
DA:6,0
|
|
4706
|
-
DA:
|
|
4707
|
-
DA:
|
|
4708
|
-
DA:
|
|
4709
|
-
DA:
|
|
4710
|
-
DA:
|
|
4711
|
-
DA:
|
|
4712
|
-
DA:23,0
|
|
4712
|
+
DA:11,20
|
|
4713
|
+
DA:12,0
|
|
4714
|
+
DA:13,0
|
|
4715
|
+
DA:16,0
|
|
4716
|
+
DA:19,0
|
|
4717
|
+
DA:24,0
|
|
4713
4718
|
DA:25,0
|
|
4714
|
-
DA:
|
|
4719
|
+
DA:27,0
|
|
4715
4720
|
DA:30,0
|
|
4716
|
-
DA:31,0
|
|
4717
4721
|
DA:32,0
|
|
4718
4722
|
DA:33,0
|
|
4723
|
+
DA:34,0
|
|
4719
4724
|
DA:35,0
|
|
4720
|
-
DA:
|
|
4721
|
-
DA:40,0
|
|
4725
|
+
DA:37,0
|
|
4722
4726
|
DA:41,0
|
|
4723
4727
|
DA:42,0
|
|
4724
4728
|
DA:43,0
|
|
4725
|
-
DA:
|
|
4726
|
-
DA:
|
|
4727
|
-
DA:
|
|
4728
|
-
DA:
|
|
4729
|
-
DA:
|
|
4729
|
+
DA:44,0
|
|
4730
|
+
DA:45,0
|
|
4731
|
+
DA:48,0
|
|
4732
|
+
DA:51,0
|
|
4733
|
+
DA:54,20
|
|
4734
|
+
DA:55,0
|
|
4730
4735
|
DA:96,0
|
|
4731
4736
|
DA:98,0
|
|
4732
|
-
DA:99,0
|
|
4733
4737
|
DA:100,0
|
|
4734
|
-
DA:
|
|
4735
|
-
DA:
|
|
4738
|
+
DA:101,0
|
|
4739
|
+
DA:102,0
|
|
4736
4740
|
DA:106,0
|
|
4737
4741
|
DA:107,0
|
|
4738
4742
|
DA:108,0
|
|
4739
|
-
DA:
|
|
4740
|
-
DA:
|
|
4743
|
+
DA:109,0
|
|
4744
|
+
DA:110,0
|
|
4741
4745
|
DA:115,0
|
|
4742
4746
|
DA:116,0
|
|
4743
4747
|
DA:117,0
|
|
4748
|
+
DA:118,0
|
|
4744
4749
|
DA:119,0
|
|
4745
|
-
DA:
|
|
4746
|
-
DA:
|
|
4747
|
-
DA:125,0
|
|
4750
|
+
DA:121,0
|
|
4751
|
+
DA:122,0
|
|
4748
4752
|
DA:126,0
|
|
4749
4753
|
DA:127,0
|
|
4754
|
+
DA:128,0
|
|
4750
4755
|
DA:129,0
|
|
4751
|
-
DA:130,0
|
|
4752
4756
|
DA:131,0
|
|
4753
|
-
DA:
|
|
4754
|
-
DA:
|
|
4757
|
+
DA:132,0
|
|
4758
|
+
DA:133,0
|
|
4759
|
+
DA:136,0
|
|
4755
4760
|
DA:137,0
|
|
4756
4761
|
DA:139,0
|
|
4757
|
-
DA:
|
|
4758
|
-
DA:
|
|
4759
|
-
DA:146,0
|
|
4762
|
+
DA:141,0
|
|
4763
|
+
DA:142,0
|
|
4760
4764
|
DA:147,0
|
|
4761
4765
|
DA:148,0
|
|
4762
4766
|
DA:149,0
|
|
4763
4767
|
DA:150,0
|
|
4764
4768
|
DA:151,0
|
|
4765
|
-
DA:
|
|
4766
|
-
DA:
|
|
4769
|
+
DA:152,0
|
|
4770
|
+
DA:153,0
|
|
4767
4771
|
DA:158,0
|
|
4768
4772
|
DA:159,0
|
|
4773
|
+
DA:160,0
|
|
4769
4774
|
DA:161,0
|
|
4770
|
-
DA:
|
|
4771
|
-
DA:
|
|
4775
|
+
DA:163,0
|
|
4776
|
+
DA:164,0
|
|
4772
4777
|
DA:167,0
|
|
4773
|
-
DA:
|
|
4774
|
-
DA:
|
|
4775
|
-
DA:
|
|
4776
|
-
DA:
|
|
4777
|
-
DA:
|
|
4778
|
+
DA:169,0
|
|
4779
|
+
DA:173,0
|
|
4780
|
+
DA:174,0
|
|
4781
|
+
DA:177,0
|
|
4782
|
+
DA:178,0
|
|
4783
|
+
DA:181,0
|
|
4778
4784
|
LF:76
|
|
4779
4785
|
LH:3
|
|
4780
4786
|
BRDA:1,0,0,0
|
|
4781
4787
|
BRDA:2,1,0,0
|
|
4782
4788
|
BRDA:2,1,1,0
|
|
4783
|
-
BRDA:
|
|
4784
|
-
BRDA:
|
|
4785
|
-
BRDA:
|
|
4786
|
-
BRDA:
|
|
4787
|
-
BRDA:
|
|
4788
|
-
BRDA:
|
|
4789
|
-
BRDA:
|
|
4790
|
-
BRDA:
|
|
4791
|
-
BRDA:
|
|
4792
|
-
BRDA:
|
|
4793
|
-
BRDA:
|
|
4794
|
-
BRDA:
|
|
4795
|
-
BRDA:
|
|
4796
|
-
BRDA:
|
|
4797
|
-
BRDA:
|
|
4798
|
-
BRDA:
|
|
4799
|
-
BRDA:
|
|
4800
|
-
BRDA:
|
|
4801
|
-
BRDA:
|
|
4802
|
-
BRDA:
|
|
4803
|
-
BRDA:
|
|
4804
|
-
BRDA:
|
|
4805
|
-
BRDA:
|
|
4806
|
-
BRDA:
|
|
4807
|
-
BRDA:
|
|
4808
|
-
BRDA:
|
|
4809
|
-
BRDA:
|
|
4810
|
-
BRDA:
|
|
4811
|
-
BRDA:
|
|
4812
|
-
BRDA:
|
|
4813
|
-
BRDA:
|
|
4814
|
-
BRDA:
|
|
4815
|
-
BRDA:
|
|
4816
|
-
BRDA:
|
|
4817
|
-
BRDA:
|
|
4818
|
-
BRDA:
|
|
4819
|
-
BRDA:
|
|
4820
|
-
BRDA:
|
|
4821
|
-
BRDA:
|
|
4822
|
-
BRDA:
|
|
4823
|
-
BRDA:
|
|
4824
|
-
BRDA:
|
|
4825
|
-
BRDA:
|
|
4826
|
-
BRDA:
|
|
4827
|
-
BRDA:
|
|
4828
|
-
BRDA:
|
|
4829
|
-
BRDA:
|
|
4830
|
-
BRDA:
|
|
4831
|
-
BRDA:
|
|
4832
|
-
BRDA:
|
|
4833
|
-
BRDA:
|
|
4834
|
-
BRDA:
|
|
4835
|
-
BRDA:
|
|
4836
|
-
BRDA:
|
|
4837
|
-
BRDA:
|
|
4838
|
-
BRDA:
|
|
4839
|
-
BRDA:
|
|
4840
|
-
BRDA:
|
|
4841
|
-
BRDA:
|
|
4842
|
-
BRDA:
|
|
4843
|
-
BRDA:
|
|
4844
|
-
BRDA:
|
|
4845
|
-
BRDA:
|
|
4846
|
-
BRDA:
|
|
4847
|
-
BRDA:
|
|
4848
|
-
BRDA:
|
|
4849
|
-
BRDA:
|
|
4850
|
-
BRDA:
|
|
4851
|
-
BRDA:
|
|
4852
|
-
BRDA:
|
|
4853
|
-
BRDA:
|
|
4854
|
-
BRDA:
|
|
4855
|
-
BRDA:
|
|
4856
|
-
BRDA:
|
|
4857
|
-
BRDA:
|
|
4858
|
-
BRDA:
|
|
4859
|
-
|
|
4789
|
+
BRDA:11,2,0,0
|
|
4790
|
+
BRDA:11,3,0,0
|
|
4791
|
+
BRDA:12,4,0,0
|
|
4792
|
+
BRDA:12,4,1,0
|
|
4793
|
+
BRDA:16,5,0,0
|
|
4794
|
+
BRDA:16,5,1,0
|
|
4795
|
+
BRDA:16,6,0,0
|
|
4796
|
+
BRDA:16,6,1,0
|
|
4797
|
+
BRDA:16,7,0,0
|
|
4798
|
+
BRDA:16,7,1,0
|
|
4799
|
+
BRDA:16,8,0,0
|
|
4800
|
+
BRDA:16,8,1,0
|
|
4801
|
+
BRDA:16,9,0,0
|
|
4802
|
+
BRDA:16,9,1,0
|
|
4803
|
+
BRDA:19,10,0,0
|
|
4804
|
+
BRDA:19,10,1,0
|
|
4805
|
+
BRDA:20,11,0,0
|
|
4806
|
+
BRDA:20,11,1,0
|
|
4807
|
+
BRDA:20,11,2,0
|
|
4808
|
+
BRDA:20,11,3,0
|
|
4809
|
+
BRDA:24,12,0,0
|
|
4810
|
+
BRDA:24,12,1,0
|
|
4811
|
+
BRDA:30,13,0,0
|
|
4812
|
+
BRDA:30,13,1,0
|
|
4813
|
+
BRDA:34,14,0,0
|
|
4814
|
+
BRDA:34,14,1,0
|
|
4815
|
+
BRDA:35,15,0,0
|
|
4816
|
+
BRDA:35,15,1,0
|
|
4817
|
+
BRDA:42,16,0,0
|
|
4818
|
+
BRDA:42,16,1,0
|
|
4819
|
+
BRDA:43,17,0,0
|
|
4820
|
+
BRDA:43,17,1,0
|
|
4821
|
+
BRDA:44,18,0,0
|
|
4822
|
+
BRDA:44,18,1,0
|
|
4823
|
+
BRDA:54,19,0,0
|
|
4824
|
+
BRDA:57,20,0,0
|
|
4825
|
+
BRDA:58,21,0,0
|
|
4826
|
+
BRDA:60,22,0,0
|
|
4827
|
+
BRDA:61,23,0,0
|
|
4828
|
+
BRDA:62,24,0,0
|
|
4829
|
+
BRDA:100,25,0,0
|
|
4830
|
+
BRDA:100,25,1,0
|
|
4831
|
+
BRDA:101,26,0,0
|
|
4832
|
+
BRDA:101,26,1,0
|
|
4833
|
+
BRDA:101,27,0,0
|
|
4834
|
+
BRDA:101,27,1,0
|
|
4835
|
+
BRDA:106,28,0,0
|
|
4836
|
+
BRDA:106,28,1,0
|
|
4837
|
+
BRDA:109,29,0,0
|
|
4838
|
+
BRDA:109,29,1,0
|
|
4839
|
+
BRDA:115,30,0,0
|
|
4840
|
+
BRDA:115,30,1,0
|
|
4841
|
+
BRDA:118,31,0,0
|
|
4842
|
+
BRDA:118,31,1,0
|
|
4843
|
+
BRDA:121,32,0,0
|
|
4844
|
+
BRDA:121,32,1,0
|
|
4845
|
+
BRDA:129,33,0,0
|
|
4846
|
+
BRDA:129,33,1,0
|
|
4847
|
+
BRDA:133,34,0,0
|
|
4848
|
+
BRDA:133,34,1,0
|
|
4849
|
+
BRDA:137,35,0,0
|
|
4850
|
+
BRDA:137,35,1,0
|
|
4851
|
+
BRDA:139,36,0,0
|
|
4852
|
+
BRDA:139,36,1,0
|
|
4853
|
+
BRDA:147,37,0,0
|
|
4854
|
+
BRDA:147,37,1,0
|
|
4855
|
+
BRDA:147,38,0,0
|
|
4856
|
+
BRDA:147,38,1,0
|
|
4857
|
+
BRDA:149,39,0,0
|
|
4858
|
+
BRDA:149,39,1,0
|
|
4859
|
+
BRDA:151,40,0,0
|
|
4860
|
+
BRDA:151,40,1,0
|
|
4861
|
+
BRDA:152,41,0,0
|
|
4862
|
+
BRDA:152,41,1,0
|
|
4863
|
+
BRDA:158,42,0,0
|
|
4864
|
+
BRDA:158,42,1,0
|
|
4865
|
+
BRDA:159,43,0,0
|
|
4866
|
+
BRDA:159,43,1,0
|
|
4867
|
+
BRDA:163,44,0,0
|
|
4868
|
+
BRDA:163,44,1,0
|
|
4869
|
+
BRDA:167,45,0,0
|
|
4870
|
+
BRDA:167,45,1,0
|
|
4871
|
+
BRDA:173,46,0,0
|
|
4872
|
+
BRDA:173,46,1,0
|
|
4873
|
+
BRF:87
|
|
4860
4874
|
BRH:0
|
|
4861
4875
|
end_of_record
|
|
4862
4876
|
TN:
|
|
@@ -5006,74 +5020,6 @@ BRF:2
|
|
|
5006
5020
|
BRH:0
|
|
5007
5021
|
end_of_record
|
|
5008
5022
|
TN:
|
|
5009
|
-
SF:src/lib/utils/parseKiwtQueryGroups.js
|
|
5010
|
-
FN:22,(anonymous_0)
|
|
5011
|
-
FN:37,(anonymous_1)
|
|
5012
|
-
FN:40,(anonymous_2)
|
|
5013
|
-
FN:52,(anonymous_3)
|
|
5014
|
-
FNF:4
|
|
5015
|
-
FNH:4
|
|
5016
|
-
FNDA:9,(anonymous_0)
|
|
5017
|
-
FNDA:18,(anonymous_1)
|
|
5018
|
-
FNDA:81,(anonymous_2)
|
|
5019
|
-
FNDA:79,(anonymous_3)
|
|
5020
|
-
DA:22,21
|
|
5021
|
-
DA:30,9
|
|
5022
|
-
DA:33,9
|
|
5023
|
-
DA:36,9
|
|
5024
|
-
DA:37,9
|
|
5025
|
-
DA:38,18
|
|
5026
|
-
DA:40,18
|
|
5027
|
-
DA:41,81
|
|
5028
|
-
DA:42,38
|
|
5029
|
-
DA:43,38
|
|
5030
|
-
DA:47,43
|
|
5031
|
-
DA:48,2
|
|
5032
|
-
DA:52,41
|
|
5033
|
-
DA:53,79
|
|
5034
|
-
DA:54,38
|
|
5035
|
-
DA:56,41
|
|
5036
|
-
DA:59,41
|
|
5037
|
-
DA:60,25
|
|
5038
|
-
DA:61,16
|
|
5039
|
-
DA:63,7
|
|
5040
|
-
DA:64,7
|
|
5041
|
-
DA:66,7
|
|
5042
|
-
DA:67,9
|
|
5043
|
-
DA:69,9
|
|
5044
|
-
DA:70,9
|
|
5045
|
-
DA:72,9
|
|
5046
|
-
DA:76,34
|
|
5047
|
-
DA:79,16
|
|
5048
|
-
DA:82,9
|
|
5049
|
-
DA:85,7
|
|
5050
|
-
DA:86,2
|
|
5051
|
-
DA:89,5
|
|
5052
|
-
LF:32
|
|
5053
|
-
LH:32
|
|
5054
|
-
BRDA:37,0,0,9
|
|
5055
|
-
BRDA:41,1,0,38
|
|
5056
|
-
BRDA:41,1,1,43
|
|
5057
|
-
BRDA:47,2,0,2
|
|
5058
|
-
BRDA:47,2,1,41
|
|
5059
|
-
BRDA:47,3,0,43
|
|
5060
|
-
BRDA:47,3,1,13
|
|
5061
|
-
BRDA:53,4,0,38
|
|
5062
|
-
BRDA:53,4,1,41
|
|
5063
|
-
BRDA:59,5,0,25
|
|
5064
|
-
BRDA:59,5,1,16
|
|
5065
|
-
BRDA:59,6,0,41
|
|
5066
|
-
BRDA:59,6,1,32
|
|
5067
|
-
BRDA:61,7,0,7
|
|
5068
|
-
BRDA:61,7,1,9
|
|
5069
|
-
BRDA:67,8,0,9
|
|
5070
|
-
BRDA:67,8,1,0
|
|
5071
|
-
BRDA:85,9,0,2
|
|
5072
|
-
BRDA:85,9,1,5
|
|
5073
|
-
BRF:19
|
|
5074
|
-
BRH:18
|
|
5075
|
-
end_of_record
|
|
5076
|
-
TN:
|
|
5077
5023
|
SF:src/lib/utils/parseModConfigEntry.js
|
|
5078
5024
|
FN:1,(anonymous_0)
|
|
5079
5025
|
FNF:1
|
|
@@ -5197,6 +5143,184 @@ BRF:2
|
|
|
5197
5143
|
BRH:0
|
|
5198
5144
|
end_of_record
|
|
5199
5145
|
TN:
|
|
5146
|
+
SF:src/lib/utils/filterParsers/deparseKiwtQueryFilters.js
|
|
5147
|
+
FN:2,(anonymous_0)
|
|
5148
|
+
FN:12,(anonymous_1)
|
|
5149
|
+
FN:15,(anonymous_2)
|
|
5150
|
+
FNF:3
|
|
5151
|
+
FNH:0
|
|
5152
|
+
FNDA:0,(anonymous_0)
|
|
5153
|
+
FNDA:0,(anonymous_1)
|
|
5154
|
+
FNDA:0,(anonymous_2)
|
|
5155
|
+
DA:2,20
|
|
5156
|
+
DA:3,0
|
|
5157
|
+
DA:4,0
|
|
5158
|
+
DA:5,0
|
|
5159
|
+
DA:8,0
|
|
5160
|
+
DA:12,20
|
|
5161
|
+
DA:13,0
|
|
5162
|
+
DA:14,0
|
|
5163
|
+
DA:15,0
|
|
5164
|
+
DA:16,0
|
|
5165
|
+
DA:17,0
|
|
5166
|
+
DA:18,0
|
|
5167
|
+
DA:19,0
|
|
5168
|
+
DA:22,0
|
|
5169
|
+
DA:26,0
|
|
5170
|
+
DA:28,0
|
|
5171
|
+
LF:16
|
|
5172
|
+
LH:2
|
|
5173
|
+
BRDA:4,0,0,0
|
|
5174
|
+
BRDA:4,0,1,0
|
|
5175
|
+
BRDA:13,1,0,0
|
|
5176
|
+
BRDA:13,1,1,0
|
|
5177
|
+
BRDA:16,2,0,0
|
|
5178
|
+
BRDA:16,2,1,0
|
|
5179
|
+
BRDA:18,3,0,0
|
|
5180
|
+
BRDA:18,3,1,0
|
|
5181
|
+
BRF:8
|
|
5182
|
+
BRH:0
|
|
5183
|
+
end_of_record
|
|
5184
|
+
TN:
|
|
5185
|
+
SF:src/lib/utils/filterParsers/index.js
|
|
5186
|
+
FNF:0
|
|
5187
|
+
FNH:0
|
|
5188
|
+
LF:0
|
|
5189
|
+
LH:0
|
|
5190
|
+
BRF:0
|
|
5191
|
+
BRH:0
|
|
5192
|
+
end_of_record
|
|
5193
|
+
TN:
|
|
5194
|
+
SF:src/lib/utils/filterParsers/parseKiwtQueryFilters.js
|
|
5195
|
+
FN:8,(anonymous_0)
|
|
5196
|
+
FN:10,(anonymous_1)
|
|
5197
|
+
FN:23,(anonymous_2)
|
|
5198
|
+
FNF:3
|
|
5199
|
+
FNH:0
|
|
5200
|
+
FNDA:0,(anonymous_0)
|
|
5201
|
+
FNDA:0,(anonymous_1)
|
|
5202
|
+
FNDA:0,(anonymous_2)
|
|
5203
|
+
DA:8,20
|
|
5204
|
+
DA:9,0
|
|
5205
|
+
DA:10,0
|
|
5206
|
+
DA:11,0
|
|
5207
|
+
DA:12,0
|
|
5208
|
+
DA:13,0
|
|
5209
|
+
DA:15,0
|
|
5210
|
+
DA:18,0
|
|
5211
|
+
DA:23,20
|
|
5212
|
+
DA:24,0
|
|
5213
|
+
DA:26,0
|
|
5214
|
+
DA:28,0
|
|
5215
|
+
DA:30,0
|
|
5216
|
+
LF:13
|
|
5217
|
+
LH:2
|
|
5218
|
+
BRDA:9,0,0,0
|
|
5219
|
+
BRDA:9,0,1,0
|
|
5220
|
+
BRDA:11,1,0,0
|
|
5221
|
+
BRDA:11,1,1,0
|
|
5222
|
+
BRDA:12,2,0,0
|
|
5223
|
+
BRDA:12,2,1,0
|
|
5224
|
+
BRDA:12,3,0,0
|
|
5225
|
+
BRDA:12,3,1,0
|
|
5226
|
+
BRDA:24,4,0,0
|
|
5227
|
+
BRDA:24,4,1,0
|
|
5228
|
+
BRF:10
|
|
5229
|
+
BRH:0
|
|
5230
|
+
end_of_record
|
|
5231
|
+
TN:
|
|
5232
|
+
SF:src/lib/utils/filterParsers/parseKiwtQueryGroups.js
|
|
5233
|
+
FN:22,(anonymous_0)
|
|
5234
|
+
FN:31,(anonymous_1)
|
|
5235
|
+
FN:39,(anonymous_2)
|
|
5236
|
+
FN:42,(anonymous_3)
|
|
5237
|
+
FN:54,(anonymous_4)
|
|
5238
|
+
FNF:5
|
|
5239
|
+
FNH:5
|
|
5240
|
+
FNDA:9,(anonymous_0)
|
|
5241
|
+
FNDA:69,(anonymous_1)
|
|
5242
|
+
FNDA:18,(anonymous_2)
|
|
5243
|
+
FNDA:81,(anonymous_3)
|
|
5244
|
+
FNDA:79,(anonymous_4)
|
|
5245
|
+
DA:22,21
|
|
5246
|
+
DA:30,9
|
|
5247
|
+
DA:31,69
|
|
5248
|
+
DA:35,9
|
|
5249
|
+
DA:38,9
|
|
5250
|
+
DA:39,9
|
|
5251
|
+
DA:40,18
|
|
5252
|
+
DA:42,18
|
|
5253
|
+
DA:43,81
|
|
5254
|
+
DA:44,38
|
|
5255
|
+
DA:45,38
|
|
5256
|
+
DA:49,43
|
|
5257
|
+
DA:50,2
|
|
5258
|
+
DA:54,41
|
|
5259
|
+
DA:55,79
|
|
5260
|
+
DA:56,38
|
|
5261
|
+
DA:58,41
|
|
5262
|
+
DA:61,41
|
|
5263
|
+
DA:62,25
|
|
5264
|
+
DA:63,16
|
|
5265
|
+
DA:65,7
|
|
5266
|
+
DA:66,7
|
|
5267
|
+
DA:68,7
|
|
5268
|
+
DA:69,9
|
|
5269
|
+
DA:71,9
|
|
5270
|
+
DA:72,9
|
|
5271
|
+
DA:74,9
|
|
5272
|
+
DA:78,34
|
|
5273
|
+
DA:81,16
|
|
5274
|
+
DA:84,9
|
|
5275
|
+
DA:87,7
|
|
5276
|
+
DA:88,2
|
|
5277
|
+
DA:91,5
|
|
5278
|
+
LF:33
|
|
5279
|
+
LH:33
|
|
5280
|
+
BRDA:39,0,0,9
|
|
5281
|
+
BRDA:43,1,0,38
|
|
5282
|
+
BRDA:43,1,1,43
|
|
5283
|
+
BRDA:49,2,0,2
|
|
5284
|
+
BRDA:49,2,1,41
|
|
5285
|
+
BRDA:49,3,0,43
|
|
5286
|
+
BRDA:49,3,1,13
|
|
5287
|
+
BRDA:55,4,0,38
|
|
5288
|
+
BRDA:55,4,1,41
|
|
5289
|
+
BRDA:61,5,0,25
|
|
5290
|
+
BRDA:61,5,1,16
|
|
5291
|
+
BRDA:61,6,0,41
|
|
5292
|
+
BRDA:61,6,1,32
|
|
5293
|
+
BRDA:63,7,0,7
|
|
5294
|
+
BRDA:63,7,1,9
|
|
5295
|
+
BRDA:69,8,0,9
|
|
5296
|
+
BRDA:69,8,1,0
|
|
5297
|
+
BRDA:87,9,0,2
|
|
5298
|
+
BRDA:87,9,1,5
|
|
5299
|
+
BRF:19
|
|
5300
|
+
BRH:18
|
|
5301
|
+
end_of_record
|
|
5302
|
+
TN:
|
|
5303
|
+
SF:src/lib/utils/filterParsers/parseKiwtQueryString.js
|
|
5304
|
+
FN:14,(anonymous_0)
|
|
5305
|
+
FN:18,(anonymous_1)
|
|
5306
|
+
FNF:2
|
|
5307
|
+
FNH:0
|
|
5308
|
+
FNDA:0,(anonymous_0)
|
|
5309
|
+
FNDA:0,(anonymous_1)
|
|
5310
|
+
DA:10,20
|
|
5311
|
+
DA:11,20
|
|
5312
|
+
DA:12,20
|
|
5313
|
+
DA:14,20
|
|
5314
|
+
DA:15,0
|
|
5315
|
+
DA:17,0
|
|
5316
|
+
DA:18,0
|
|
5317
|
+
DA:26,0
|
|
5318
|
+
LF:8
|
|
5319
|
+
LH:4
|
|
5320
|
+
BRF:0
|
|
5321
|
+
BRH:0
|
|
5322
|
+
end_of_record
|
|
5323
|
+
TN:
|
|
5200
5324
|
SF:src/lib/validators/index.js
|
|
5201
5325
|
FNF:0
|
|
5202
5326
|
FNH:0
|
package/src/index.js
CHANGED
|
@@ -95,6 +95,7 @@ export {
|
|
|
95
95
|
export * as customPropertyConstants from './lib/constants/customProperties';
|
|
96
96
|
|
|
97
97
|
export * as endpoints from './lib/constants/endpoints';
|
|
98
|
+
export { default as comparators } from './lib/constants/comparators';
|
|
98
99
|
|
|
99
100
|
export { default as CycleButton } from './lib/CycleButton';
|
|
100
101
|
export { default as IconSelect } from './lib/IconSelect';
|