@enso-ui/filters 3.0.25 → 3.0.27
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
package/src/bulma/DateFilter.vue
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
filters, filter, custom, minBindings, minEvents, maxBindings, maxEvents,
|
|
7
7
|
direction, directionBindings, directionEvents, backEvents, filterEvents,
|
|
8
8
|
}">
|
|
9
|
-
<div class="header has-text-centered has-background-light"
|
|
9
|
+
<div class="header has-text-centered has-background-light px-2"
|
|
10
10
|
v-if="!compact">
|
|
11
11
|
<strong>
|
|
12
12
|
{{ label(custom) }}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="input-filter is-paddingless"
|
|
3
3
|
:class="$attrs.class">
|
|
4
4
|
<div v-if="!compact"
|
|
5
|
-
class="header has-text-centered has-background-light">
|
|
5
|
+
class="header has-text-centered has-background-light px-2">
|
|
6
6
|
<b>{{ i18n(name) }}</b>
|
|
7
7
|
</div>
|
|
8
8
|
<div v-tooltip="compact ? i18n(name) : null"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="interval-filter is-paddingless"
|
|
3
3
|
:class="$attrs.class">
|
|
4
4
|
<div v-if="!compact"
|
|
5
|
-
class="header has-text-centered has-background-light">
|
|
5
|
+
class="header has-text-centered has-background-light px-2">
|
|
6
6
|
<b>{{ i18n(name) }}</b>
|
|
7
7
|
</div>
|
|
8
8
|
<div v-tooltip="compact ? i18n(name) : null"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="vue-filter is-paddingless">
|
|
3
3
|
<div v-if="!compact"
|
|
4
|
-
class="header has-text-centered has-background-light">
|
|
4
|
+
class="header has-text-centered has-background-light px-2">
|
|
5
5
|
<strong>{{ i18n(name) }}</strong>
|
|
6
6
|
<span v-if="readonly"
|
|
7
7
|
class="icon lock has-text-muted">
|
package/src/bulma/VueFilter.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="vue-filter is-paddingless">
|
|
3
|
-
<div v-if="!compact"
|
|
4
|
-
class="header has-text-centered has-background-light">
|
|
3
|
+
<div v-if="!compact && name"
|
|
4
|
+
class="header has-text-centered has-background-light px-2">
|
|
5
5
|
<strong>{{ i18n(name) }}</strong>
|
|
6
6
|
<span v-if="readonly"
|
|
7
7
|
class="icon lock has-text-muted">
|