@hostlink/nuxt-light 0.0.92 → 0.0.94

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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "0.0.92"
4
+ "version": "0.0.94"
5
5
  }
package/dist/module.mjs CHANGED
@@ -59,7 +59,8 @@ const module = defineNuxtModule({
59
59
  { name: "getModelColumns", from },
60
60
  { name: "getModelFields", from },
61
61
  { name: "getModelField", from },
62
- { name: "getGQLFields", from }
62
+ { name: "getGQLFields", from },
63
+ { name: "sv", from }
63
64
  ]);
64
65
  addPlugin({
65
66
  src: resolver.resolve("./runtime/plugin"),
@@ -416,7 +416,6 @@ const toColumns = props.columns?.filter((col: any) => {
416
416
 
417
417
  })
418
418
 
419
- console.log(ss);
420
419
  </script>
421
420
 
422
421
  <template>
@@ -17,8 +17,9 @@ import GQLFieldBuilder from "./GQLFieldBuilder";
17
17
  import getModelField from './getModelField';
18
18
  import getModelFields from './getModelFields';
19
19
  import getModelColumns from './getModelColumns';
20
+ import sv from './sv';
20
21
  declare const notify: (message: string, color?: string) => void;
21
22
  import getID from "./getID";
22
23
  declare const getApiBase: () => {};
23
24
  import { getGQLFields } from '@hostlink/light';
24
- export { addObject, f, getApiUrl, getCurrentUser, getObject, list, m, q, removeObject, t, updateObject, notify, getID, deleteObject, listObject, isGranted, getApiBase, loadObject, GQLFieldBuilder, getModelField, getModelFields, getModelColumns, getGQLFields };
25
+ export { addObject, f, getApiUrl, getCurrentUser, getObject, list, m, q, removeObject, t, updateObject, notify, getID, deleteObject, listObject, isGranted, getApiBase, loadObject, GQLFieldBuilder, getModelField, getModelFields, getModelColumns, getGQLFields, sv };
@@ -19,6 +19,7 @@ import GQLFieldBuilder from "./GQLFieldBuilder.mjs";
19
19
  import getModelField from "./getModelField.mjs";
20
20
  import getModelFields from "./getModelFields.mjs";
21
21
  import getModelColumns from "./getModelColumns.mjs";
22
+ import sv from "./sv.mjs";
22
23
  const notify = function(message, color = "green") {
23
24
  Notify.create({
24
25
  message,
@@ -55,5 +56,6 @@ export {
55
56
  getModelField,
56
57
  getModelFields,
57
58
  getModelColumns,
58
- getGQLFields
59
+ getGQLFields,
60
+ sv
59
61
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": "@hostlink/nuxt-light",
6
6
  "license": "MIT",