@enso-ui/filters 3.1.0 → 3.1.2

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": "@enso-ui/filters",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "description": "Renderless Vue Filter Components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,7 +12,7 @@
12
12
  <div v-tooltip="compact ? i18n(name) : null"
13
13
  class="tabs-wrapper"
14
14
  :class="{ 'has-background-light': compact }">
15
- <div class="tabs is-toggle is-fullwidth filter-tabs">
15
+ <div class="tabs is-toggle is-fullwidth filter-tabs no-scrollbars">
16
16
  <ul>
17
17
  <li v-for="(option, index) in options"
18
18
  :key="index"
@@ -117,7 +117,7 @@ const props = defineProps({
117
117
  const cssClass = option => ({
118
118
  'is-active': props.multiple
119
119
  ? model.value.includes(option.value)
120
- : option.value === model,
120
+ : option.value === model.value,
121
121
  });
122
122
 
123
123
  const emptyModel = computed(() => (props.multiple