@enso-ui/filters 3.0.27 → 3.0.28

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.0.27",
3
+ "version": "3.0.28",
4
4
  "description": "Renderless Vue Filter Components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -7,27 +7,23 @@
7
7
  </div>
8
8
  <div v-tooltip="compact ? i18n(name) : null"
9
9
  :class="['input-wrapper', {'has-background-light': compact}]">
10
- <div class="columns is-mobile">
11
- <div class="column">
12
- <core-input-filter v-bind="$attrs">
13
- <template #default="{
14
- modelValue, bindings, events, clearEvents,
15
- }">
16
- <div class="control has-icons-right">
17
- <input class="input control"
18
- v-bind="bindings"
19
- :placeholder="i18n(label)"
20
- v-on="events">
21
- <span v-if="modelValue"
22
- class="icon is-small is-right clear-button"
23
- v-on="clearEvents">
24
- <a class="delete is-small"/>
25
- </span>
26
- </div>
27
- </template>
28
- </core-input-filter>
29
- </div>
30
- </div>
10
+ <core-input-filter v-bind="$attrs">
11
+ <template #default="{
12
+ modelValue, bindings, events, clearEvents,
13
+ }">
14
+ <div class="control has-icons-right">
15
+ <input class="input control"
16
+ v-bind="bindings"
17
+ :placeholder="i18n(label)"
18
+ v-on="events">
19
+ <span v-if="modelValue"
20
+ class="icon is-small is-right clear-button"
21
+ v-on="clearEvents">
22
+ <a class="delete is-small"/>
23
+ </span>
24
+ </div>
25
+ </template>
26
+ </core-input-filter>
31
27
  </div>
32
28
  </div>
33
29
  </template>