@webitel/ui-datalist 1.0.61 → 1.0.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-datalist",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "description": "Toolkit for building data lists in webitel ui system",
5
5
  "scripts": {
6
6
  "make-all": "npm version patch --git-tag-version false && ( npm run lint:fix || true) && (npm run build:types || true) && npm run utils:publish",
@@ -182,7 +182,7 @@ Clear filters button should be active only if filters are defined in the table-f
182
182
  const listSelectedFilters = computed(()=>
183
183
  new Map([...props.filtersManager.filters].filter(([key]) => props.filterOptions.includes(key))));
184
184
 
185
- const presetStore = props.usePresetsStore();
185
+ const presetStore = props.usePresetsStore ? props.usePresetsStore() : null
186
186
 
187
187
  const handleResetFilters = () => {
188
188
  emit('filter:reset-all')