itube-specs 0.0.428 → 0.0.431

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.
@@ -17,15 +17,6 @@
17
17
  size="16"
18
18
  :class="{'--open': modelValue}"
19
19
  />
20
- <SIcon
21
- v-if="count > 0"
22
- class="s-filter-button__reset _from-sm"
23
- name="close"
24
- size="16"
25
- aria-label="reset-filter"
26
- role="button"
27
- @click.stop="resetFilter"
28
- />
29
20
  <span
30
21
  v-if="count > 0"
31
22
  class="s-filter-button__mobile-count _to-sm"
@@ -53,15 +44,7 @@ const buttonName = computed(() => {
53
44
  return props.count > 0 ? t('plural.filter', props.count) : t('filter');
54
45
  })
55
46
 
56
- function resetFilter() {
57
- router.push({
58
- query: {}
59
- })
60
- }
61
-
62
47
  const mobileCount = computed(() => props.count > 9 ? '9+' : props.count);
63
-
64
- const router = useRouter()
65
48
  </script>
66
49
 
67
50
  <style scoped lang="scss">
@@ -18,10 +18,6 @@
18
18
  :class="{'_loading': status === 'pending'}"
19
19
  />
20
20
  <template #footer>
21
- <p class="s-model-filters__footer-results _from-sm">
22
- <SIcon name="filter" size="24"/>
23
- <span>{{ `${data.total} ${t('results_found')}` }}</span>
24
- </p>
25
21
  <div class="s-model-filters__footer-buttons">
26
22
  <SButton
27
23
  wide
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.428",
4
+ "version": "0.0.431",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {