@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phoenix-cg/v-filters",
3
- "version": "0.2.0-beta.13",
3
+ "version": "0.2.0-beta.15",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -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
  }