itube-specs 0.0.394 → 0.0.395

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.
@@ -5,23 +5,17 @@
5
5
  v-if="title"
6
6
  class="s-filter-page__title"
7
7
  >{{ title }}</h2>
8
- <details
8
+ <div
9
9
  v-for="(group, index) in groups"
10
10
  :key="`filter-group-${index}`"
11
11
  class="s-filter-page__group"
12
- :open="index === 0 || activeGroup === group?.order || !isMobile(breakpoints).value"
13
12
  >
14
- <summary
13
+ <span
15
14
  v-if="filters.length > 0"
16
15
  class="s-filter-page__group-title"
17
16
  >
18
17
  {{ group?.title }}
19
- <SIcon
20
- class="s-filter-page__group-title-icon _to-sm"
21
- size="32"
22
- name="chevron-down"
23
- />
24
- </summary>
18
+ </span>
25
19
  <div class="s-filter-page__items">
26
20
  <template v-for="(item, subIndex) in filters">
27
21
  <ClientOnly v-if="getRangeInfo(item.options)">
@@ -55,7 +49,7 @@
55
49
  />
56
50
  </template>
57
51
  </div>
58
- </details>
52
+ </div>
59
53
  </div>
60
54
  </div>
61
55
  </template>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.394",
4
+ "version": "0.0.395",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {