@recursyve/nice-data-filter-kit 14.1.3 → 14.1.4
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/esm2020/lib/components/nice-filter-view/nice-base-filter-view.component.mjs +1 -1
- package/esm2020/lib/components/nice-filter-view/store/nice-filter-view.store.mjs +6 -2
- package/fesm2015/recursyve-nice-data-filter-kit.mjs +2 -1
- package/fesm2015/recursyve-nice-data-filter-kit.mjs.map +1 -1
- package/fesm2020/recursyve-nice-data-filter-kit.mjs +5 -1
- package/fesm2020/recursyve-nice-data-filter-kit.mjs.map +1 -1
- package/lib/components/nice-filter-view/nice-base-filter-view.component.d.ts +5 -4
- package/package.json +1 -1
|
@@ -2778,7 +2778,11 @@ class NiceFilterViewStore extends EntityStore {
|
|
|
2778
2778
|
constructor(state, store) {
|
|
2779
2779
|
super({
|
|
2780
2780
|
...initialValue,
|
|
2781
|
-
...state
|
|
2781
|
+
...state,
|
|
2782
|
+
filterParameters: {
|
|
2783
|
+
...initialValue.filterParameters,
|
|
2784
|
+
...(state.filterParameters ?? {})
|
|
2785
|
+
}
|
|
2782
2786
|
}, store);
|
|
2783
2787
|
}
|
|
2784
2788
|
setFilterConfigLoading(loading) {
|