@cqa-lib/cqa-ui 1.0.82 → 1.0.84
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/filters/dynamic-filter/dynamic-filter.component.mjs +6 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +5 -0
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +5 -0
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/filters/dynamic-filter/dynamic-filter.component.d.ts +9 -0
- package/package.json +1 -1
|
@@ -2108,6 +2108,11 @@ class DynamicFilterComponent {
|
|
|
2108
2108
|
showSelectAll: item.showSelectAll,
|
|
2109
2109
|
selectAllLabel: item.selectAllLabel,
|
|
2110
2110
|
selectedValue: item.selectedValue,
|
|
2111
|
+
serverSearch: item.serverSearch,
|
|
2112
|
+
hasMore: item.hasMore,
|
|
2113
|
+
isLoading: item.isLoading,
|
|
2114
|
+
onSearch: item.onSearch,
|
|
2115
|
+
onLoadMore: item.onLoadMore,
|
|
2111
2116
|
options: item.options || []
|
|
2112
2117
|
};
|
|
2113
2118
|
}
|