@ramathibodi/nuxt-commons 0.1.8 → 0.1.9

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/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.8"
7
+ "version": "0.1.9"
8
8
  }
@@ -3,7 +3,7 @@ import {VRadioGroup} from 'vuetify/components/VRadioGroup'
3
3
  import {computed, ref, watch} from 'vue'
4
4
  import {useAlert} from "../../composables/alert";
5
5
  import {useGraphQl} from "../../composables/graphql";
6
- import {useConcat} from "../../../../playground/.nuxt/imports";
6
+ import {concat} from "lodash-es";
7
7
 
8
8
  interface Props extends /* @vue-ignore */ InstanceType<typeof VRadioGroup['$props']> {
9
9
  returnObject?: boolean
@@ -27,7 +27,7 @@ const query = () => {
27
27
  value : props.groupKey
28
28
  } }
29
29
  let fields :any[]= ["itemCode", "itemValue", 'itemValueAlternative']
30
- if(props.fields) fields = useConcat(fields,props.fields);
30
+ if(props.fields) fields = concat(fields,props.fields);
31
31
 
32
32
  useGraphQl().queryPromise('masterItemByGroupKey',fields, variables).then((result : any)=>{
33
33
  items.value = result
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramathibodi/nuxt-commons",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Ramathibodi Nuxt modules for common components",
5
5
  "repository": {
6
6
  "type": "git",