@phoenix-cg/v-filters 0.2.0-beta.13 → 0.2.0-beta.15
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/dist/v-filters.common.js +12 -3
- package/dist/v-filters.common.js.map +1 -1
- package/dist/v-filters.umd.js +12 -3
- package/dist/v-filters.umd.js.map +1 -1
- package/dist/v-filters.umd.min.js +1 -1
- package/dist/v-filters.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/VFilters.vue +4 -0
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
<component
|
|
6
6
|
:is="fieldComponentName"
|
|
7
7
|
v-for="field in fields"
|
|
8
|
+
:class="[`__${field._name}`]"
|
|
8
9
|
:key="field._name"
|
|
9
10
|
:title="field.title"
|
|
10
11
|
>
|
|
@@ -204,6 +205,9 @@ export default {
|
|
|
204
205
|
}
|
|
205
206
|
return acc
|
|
206
207
|
}, [])
|
|
208
|
+
if (valueNotArray) {
|
|
209
|
+
[value] = value
|
|
210
|
+
}
|
|
207
211
|
} else {
|
|
208
212
|
value = paramsValue
|
|
209
213
|
}
|