barbican-reset 2.37.0 → 2.38.0

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.
@@ -1,9 +1,9 @@
1
1
  <template>
2
2
  <div :class="$style.see_inside">
3
3
  <div :class="$style.see_inside_content">
4
- <div :class="$style.venue_sections" v-if="multipleSeeInside">
4
+ <div :class="$style.venue_sections">
5
5
  <div :class="$style.sections_title">
6
- <span>Section:</span>
6
+ <span v-if="multipleSeeInside">Section:</span>
7
7
  <b-button
8
8
  variant="exit"
9
9
  @click="$emit('closeSeeInside')"
@@ -12,7 +12,7 @@
12
12
  <close-icon />
13
13
  </b-button>
14
14
  </div>
15
- <br-button variant="link" :class="{[$style.venue_section]: true, [$style.venue_section_active]: visibleMapIndex == index}" v-for="(item, index) in data" :key="'section-' + index" @click="visibleMapIndex = index">{{item.title}}</br-button>
15
+ <br-button variant="link" :class="{[$style.venue_section]: true, [$style.venue_section_active]: visibleMapIndex == index}" v-if="multipleSeeInside" v-for="(item, index) in data" :key="'section-' + index" @click="visibleMapIndex = index">{{item.title}}</br-button>
16
16
  <b-button
17
17
  @click="$emit('closeSeeInside')"
18
18
  variant="exit"
package/package.json CHANGED
@@ -104,5 +104,5 @@
104
104
  "build:patterns": "cd patterns && rm -rf html && pug views --out html"
105
105
  },
106
106
  "style": "dist/css/barbican-reset.css",
107
- "version": "2.37.0"
107
+ "version": "2.38.0"
108
108
  }