@hostlink/nuxt-light 1.13.5 → 1.13.7

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.
Files changed (55) hide show
  1. package/dist/module.d.mts +1 -1
  2. package/dist/module.d.ts +1 -1
  3. package/dist/module.json +5 -1
  4. package/dist/module.mjs +0 -1
  5. package/dist/runtime/components/l-app.vue +1 -4
  6. package/dist/runtime/components/l-banner.vue +4 -3
  7. package/dist/runtime/components/l-btn.vue +1 -1
  8. package/dist/runtime/index.d.ts +3 -3
  9. package/dist/runtime/{index.mjs → index.js} +2 -2
  10. package/dist/runtime/lib/{SystemValue.mjs → SystemValue.js} +2 -2
  11. package/dist/runtime/lib/api.d.ts +2 -0
  12. package/dist/runtime/lib/api.js +2 -0
  13. package/dist/runtime/lib/defineLightModel.d.ts +1 -1
  14. package/dist/runtime/lib/{defineLightModel.mjs → defineLightModel.js} +1 -1
  15. package/dist/runtime/lib/{f.mjs → f.js} +1 -1
  16. package/dist/runtime/lib/{getApiUrl.mjs → getApiUrl.js} +1 -1
  17. package/dist/runtime/lib/{getCurrentUser.mjs → getCurrentUser.js} +1 -1
  18. package/dist/runtime/lib/getGQLFields.d.ts +1 -1
  19. package/dist/runtime/lib/getGQLFields.js +4 -0
  20. package/dist/runtime/lib/{getID.mjs → getID.js} +1 -1
  21. package/dist/runtime/lib/{getModelColumns.mjs → getModelColumns.js} +1 -1
  22. package/dist/runtime/lib/{getModelField.mjs → getModelField.js} +1 -1
  23. package/dist/runtime/lib/{getModelFields.mjs → getModelFields.js} +1 -1
  24. package/dist/runtime/lib/{getObject.mjs → getObject.js} +2 -2
  25. package/dist/runtime/lib/index.d.ts +23 -25
  26. package/dist/runtime/lib/index.js +35 -0
  27. package/dist/runtime/lib/{list.mjs → list.js} +1 -1
  28. package/dist/runtime/lib/listObject.d.ts +1 -1
  29. package/dist/runtime/lib/{listObject.mjs → listObject.js} +1 -1
  30. package/dist/runtime/lib/{loadObject.mjs → loadObject.js} +1 -1
  31. package/dist/runtime/lib/{m.mjs → m.js} +1 -1
  32. package/dist/runtime/lib/model.d.ts +2 -2
  33. package/dist/runtime/lib/{model.mjs → model.js} +1 -1
  34. package/dist/runtime/lib/{q.mjs → q.js} +2 -2
  35. package/dist/runtime/lib/{sv.mjs → sv.js} +1 -1
  36. package/dist/runtime/plugin.d.ts +2 -2
  37. package/dist/runtime/{plugin.mjs → plugin.js} +8 -8
  38. package/dist/types.d.mts +1 -16
  39. package/dist/types.d.ts +1 -16
  40. package/package.json +9 -10
  41. package/dist/runtime/lib/getGQLFields.mjs +0 -12
  42. package/dist/runtime/lib/index.mjs +0 -39
  43. package/dist/runtime/lib/updateObject.d.ts +0 -2
  44. package/dist/runtime/lib/updateObject.mjs +0 -12
  45. /package/dist/runtime/formkit/{index.mjs → index.js} +0 -0
  46. /package/dist/runtime/lib/{GQLFieldBuilder.mjs → GQLFieldBuilder.js} +0 -0
  47. /package/dist/runtime/lib/{isGranted.mjs → isGranted.js} +0 -0
  48. /package/dist/runtime/lib/{t.mjs → t.js} +0 -0
  49. /package/dist/runtime/lib/{tc2sc.mjs → tc2sc.js} +0 -0
  50. /package/dist/runtime/lib/{toJson.mjs → toJson.js} +0 -0
  51. /package/dist/runtime/types/{EventLog.mjs → EventLog.js} +0 -0
  52. /package/dist/runtime/types/{MailLog.mjs → MailLog.js} +0 -0
  53. /package/dist/runtime/types/{SystemValue.mjs → SystemValue.js} +0 -0
  54. /package/dist/runtime/types/{User.mjs → User.js} +0 -0
  55. /package/dist/runtime/types/{UserLog.mjs → UserLog.js} +0 -0
package/dist/module.d.mts CHANGED
@@ -2,6 +2,6 @@ import * as _nuxt_schema from '@nuxt/schema';
2
2
 
3
3
  interface ModuleOptions {
4
4
  }
5
- declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
5
+ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
6
6
 
7
7
  export { type ModuleOptions, _default as default };
package/dist/module.d.ts CHANGED
@@ -2,6 +2,6 @@ import * as _nuxt_schema from '@nuxt/schema';
2
2
 
3
3
  interface ModuleOptions {
4
4
  }
5
- declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
5
+ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
6
6
 
7
7
  export { type ModuleOptions, _default as default };
package/dist/module.json CHANGED
@@ -1,5 +1,9 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "1.13.5"
4
+ "version": "1.13.7",
5
+ "builder": {
6
+ "@nuxt/module-builder": "0.8.3",
7
+ "unbuild": "2.0.0"
8
+ }
5
9
  }
package/dist/module.mjs CHANGED
@@ -282,7 +282,6 @@ const module = defineNuxtModule({
282
282
  { name: "q", from },
283
283
  { name: "removeObject", from },
284
284
  { name: "t", from },
285
- { name: "updateObject", from },
286
285
  { name: "listObject", from },
287
286
  { name: "useLight", from: index },
288
287
  { name: "isGranted", from },
@@ -1,14 +1,11 @@
1
1
  <script setup>
2
2
  import { provide, ref } from 'vue'
3
3
  import { useLight, watch } from "#imports";
4
- import { useRuntimeConfig } from 'nuxt/app'
5
4
 
6
5
  import { useQuasar } from 'quasar'
7
6
  import { q } from '#imports'
8
7
  import { useRoute } from "vue-router";
9
- /* const config = useRuntimeConfig();
10
- setApiUrl(config?.public?.apiBase ?? '/api/');
11
- */
8
+
12
9
  const route = useRoute();
13
10
  const light = useLight()
14
11
  const quasar = useQuasar()
@@ -1,8 +1,8 @@
1
1
  <script setup lang="ts">
2
- import { type QBannerProps } from 'quasar'
2
+ import type { QBannerProps } from 'quasar'
3
3
  import { computed, useSlots } from 'vue'
4
4
 
5
- export interface LBannerProps extends QBannerProps {
5
+ export type LBannerProps = QBannerProps & {
6
6
  icon?: string
7
7
  type?: 'primary' | 'secondary' | 'accent' | 'dark' | 'positive' | 'negative' | 'info' | 'warning'
8
8
  }
@@ -31,7 +31,8 @@ const slots = computed(() => useSlots());
31
31
  </script>
32
32
 
33
33
  <template>
34
- <q-banner v-bind="props" :class="classes">
34
+ <q-banner v-bind="$props" :class="classes">
35
+
35
36
  <template v-slot:avatar v-if="localIcon">
36
37
  <q-icon :name="localIcon" />
37
38
  </template>
@@ -1,6 +1,6 @@
1
1
  <script setup lang="ts">
2
2
  import { type QBtnProps } from "quasar";
3
- import { computed, inject, unref, toRaw } from "vue";
3
+ import { computed } from "vue";
4
4
  import { useLight } from '#imports';
5
5
  import { useI18n } from "vue-i18n";
6
6
 
@@ -33,7 +33,7 @@ declare const app: {
33
33
  getCompany: () => string;
34
34
  setCompanyLogo: (logo: string) => void;
35
35
  getCompanyLogo: () => string;
36
- getVersion: () => any;
36
+ getVersion: () => string;
37
37
  addError: (error: String) => void;
38
38
  getErrors: () => String[];
39
39
  removeError: (error: String) => void;
@@ -82,7 +82,7 @@ export declare const useLight: (options?: {
82
82
  getCompany: () => string;
83
83
  setCompanyLogo: (logo: string) => void;
84
84
  getCompanyLogo: () => string;
85
- getVersion: () => any;
85
+ getVersion: () => string;
86
86
  addError: (error: String) => void;
87
87
  getErrors: () => String[];
88
88
  removeError: (error: String) => void;
@@ -98,4 +98,4 @@ export declare const useLight: (options?: {
98
98
  isGranted: (right?: string) => boolean;
99
99
  setPermissions: (permissions: Array<string>) => void;
100
100
  };
101
- export * from "./lib";
101
+ export * from "./lib.js";
@@ -1,6 +1,6 @@
1
1
  import packageJson from "../../package.json";
2
2
  import { watch, reactive, toRaw } from "vue";
3
- import { m, q } from "./lib/index.mjs";
3
+ import { m, q } from "./lib/index.js";
4
4
  const errors = [];
5
5
  let styles = {};
6
6
  const COLOR_CODE = {
@@ -207,4 +207,4 @@ export const useLight = (options = {}) => {
207
207
  }
208
208
  return app;
209
209
  };
210
- export * from "./lib/index.mjs";
210
+ export * from "./lib/index.js";
@@ -1,5 +1,5 @@
1
- import sv from "./sv.mjs";
2
- import { cache } from "./sv.mjs";
1
+ import sv from "./sv.js";
2
+ import { cache } from "./sv.js";
3
3
  export const loadSV = (name) => {
4
4
  return () => sv(name);
5
5
  };
@@ -0,0 +1,2 @@
1
+ declare const _default: import("@hostlink/light").LightClient;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { createClient } from "@hostlink/light";
2
+ export default createClient("");
@@ -19,5 +19,5 @@ export interface LightModel {
19
19
  name: string;
20
20
  fields: LightModelFields;
21
21
  }
22
- declare const _default: (model: LightModel) => any;
22
+ declare const _default: (model: LightModel) => import("#app").Plugin<Record<string, unknown>> & import("#app").ObjectPlugin<Record<string, unknown>>;
23
23
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { defineNuxtPlugin } from "#app";
2
- import { api } from "./index.mjs";
2
+ import { default as api } from "./api.js";
3
3
  export default (model) => {
4
4
  return defineNuxtPlugin(() => {
5
5
  api.models.create(model.name, model.fields);
@@ -1,5 +1,5 @@
1
1
  import { jsonToGraphQLQuery } from "json-to-graphql-query";
2
- import toJson from "./toJson.mjs";
2
+ import toJson from "./toJson.js";
3
3
  export default function(operation, args, fields = []) {
4
4
  if (arguments.length === 2) {
5
5
  fields = args;
@@ -1,4 +1,4 @@
1
- import { getApiBase } from "./index.mjs";
1
+ import { getApiBase } from "./index.js";
2
2
  export default function getApiUrl(url, params) {
3
3
  const urlParams = new URLSearchParams(params).toString();
4
4
  return getApiBase() + `${url}?${urlParams}`;
@@ -1,4 +1,4 @@
1
- import q from "./q.mjs";
1
+ import q from "./q.js";
2
2
  export default async () => {
3
3
  try {
4
4
  return await q("my", ["username", "first_name", "last_name", "roles"]);
@@ -1,2 +1,2 @@
1
- declare const _default: (name: string, fields: string[]) => any;
1
+ declare const _default: (name: string, fields: string[]) => any[];
2
2
  export default _default;
@@ -0,0 +1,4 @@
1
+ import { api } from "./index.js";
2
+ export default (name, fields) => {
3
+ return api.model(name).gqlFields(fields);
4
+ };
@@ -1,4 +1,4 @@
1
- import { useLight } from "../index.mjs";
1
+ import { useLight } from "../index.js";
2
2
  export default () => {
3
3
  return useLight().getID();
4
4
  };
@@ -1,4 +1,4 @@
1
- import { getModelField } from "./index.mjs";
1
+ import { default as getModelField } from "./getModelField.js";
2
2
  export default (model, names) => {
3
3
  let columns = [];
4
4
  for (let name of names) {
@@ -1,4 +1,4 @@
1
- import { api } from "./index.mjs";
1
+ import { default as api } from "./api.js";
2
2
  export default (name, field) => {
3
3
  return api.model(name).field(field);
4
4
  };
@@ -1,4 +1,4 @@
1
- import { getModelField } from "./index.mjs";
1
+ import { default as getModelField } from "./getModelField.js";
2
2
  export default (model, names) => {
3
3
  let fields = [];
4
4
  for (let name of names) {
@@ -1,6 +1,6 @@
1
1
  import { useRoute } from "vue-router";
2
- import loadObject from "./loadObject.mjs";
3
- import { getModelField } from "./index.mjs";
2
+ import loadObject from "./loadObject.js";
3
+ import { default as getModelField } from "./getModelField.js";
4
4
  export default async function(fields = []) {
5
5
  let route = useRoute();
6
6
  if (!route.name) {
@@ -1,27 +1,25 @@
1
- import type { LightClient } from '@hostlink/light';
2
- export { default as f } from "./f";
3
- export { default as getApiUrl } from "./getApiUrl";
4
- export { default as getCurrentUser } from "./getCurrentUser";
5
- export { default as getObject } from "./getObject";
6
- export { default as list } from "./list";
7
- export { default as m } from "./m";
8
- export { default as q } from "./q";
9
- export { default as t } from "./t";
10
- export { default as updateObject } from "./updateObject";
11
- export { default as listObject } from "./listObject";
12
- export { default as loadObject } from "./loadObject";
13
- export { default as isGranted } from "./isGranted";
14
- export { default as GQLFieldBuilder } from "./GQLFieldBuilder";
15
- export { default as getModelField } from "./getModelField";
16
- export { default as getModelFields } from "./getModelFields";
17
- export { default as getModelColumns } from "./getModelColumns";
18
- export { default as sv } from "./sv";
19
- export { default as model } from "./model";
20
- export { default as defineLightModel } from "./defineLightModel";
21
- export { type LightModelField, type LightModel } from "./defineLightModel";
1
+ export { default as api } from "./api.js";
2
+ export { default as f } from "./f.js";
3
+ export { default as getApiUrl } from "./getApiUrl.js";
4
+ export { default as getCurrentUser } from "./getCurrentUser.js";
5
+ export { default as getObject } from "./getObject.js";
6
+ export { default as list } from "./list.js";
7
+ export { default as m } from "./m.js";
8
+ export { default as q } from "./q.js";
9
+ export { default as t } from "./t.js";
10
+ export { default as listObject } from "./listObject.js";
11
+ export { default as loadObject } from "./loadObject.js";
12
+ export { default as isGranted } from "./isGranted.js";
13
+ export { default as GQLFieldBuilder } from "./GQLFieldBuilder.js";
14
+ export { default as getModelField } from "./getModelField.js";
15
+ export { default as getModelFields } from "./getModelFields.js";
16
+ export { default as getModelColumns } from "./getModelColumns.js";
17
+ export { default as sv } from "./sv.js";
18
+ export { default as model } from "./model.js";
19
+ export { default as defineLightModel } from "./defineLightModel.js";
20
+ export { type LightModelField, type LightModel } from "./defineLightModel.js";
22
21
  export declare const notify: (message: string, color?: string) => void;
23
- export { default as getID } from "./getID";
24
- export { default as id } from "./getID";
22
+ export { default as getID } from "./getID.js";
23
+ export { default as id } from "./getID.js";
25
24
  export declare const getApiBase: () => {};
26
- export declare const api: LightClient;
27
- export declare const getGQLFields: (name: string, fields: string[]) => any[];
25
+ export { default as getGQLFields } from "./getGQLFields.js";
@@ -0,0 +1,35 @@
1
+ import { useRuntimeConfig } from "nuxt/app";
2
+ import { Notify } from "quasar";
3
+ export { default as api } from "./api.js";
4
+ export { default as f } from "./f.js";
5
+ export { default as getApiUrl } from "./getApiUrl.js";
6
+ export { default as getCurrentUser } from "./getCurrentUser.js";
7
+ export { default as getObject } from "./getObject.js";
8
+ export { default as list } from "./list.js";
9
+ export { default as m } from "./m.js";
10
+ export { default as q } from "./q.js";
11
+ export { default as t } from "./t.js";
12
+ export { default as listObject } from "./listObject.js";
13
+ export { default as loadObject } from "./loadObject.js";
14
+ export { default as isGranted } from "./isGranted.js";
15
+ export { default as GQLFieldBuilder } from "./GQLFieldBuilder.js";
16
+ export { default as getModelField } from "./getModelField.js";
17
+ export { default as getModelFields } from "./getModelFields.js";
18
+ export { default as getModelColumns } from "./getModelColumns.js";
19
+ export { default as sv } from "./sv.js";
20
+ export { default as model } from "./model.js";
21
+ export { default as defineLightModel } from "./defineLightModel.js";
22
+ export const notify = function(message, color = "positive") {
23
+ Notify.create({
24
+ message,
25
+ color,
26
+ position: "top"
27
+ });
28
+ };
29
+ export { default as getID } from "./getID.js";
30
+ export { default as id } from "./getID.js";
31
+ export const getApiBase = () => {
32
+ const config = useRuntimeConfig();
33
+ return config?.public?.apiBase ?? "/api/";
34
+ };
35
+ export { default as getGQLFields } from "./getGQLFields.js";
@@ -1,5 +1,5 @@
1
1
  import { toQuery } from "@hostlink/light";
2
- import { api } from "./index.mjs";
2
+ import { default as api } from "./api.js";
3
3
  export default async function list(name, props = null, fields = []) {
4
4
  let q = {};
5
5
  if (props) {
@@ -1,2 +1,2 @@
1
- import { type Fields } from "@hostlink/light";
1
+ import type { Fields } from "@hostlink/light";
2
2
  export default function listObject(name: string, filters: {} | undefined, sort: string, offset: number, limit: number, fields?: Fields): Promise<any>;
@@ -1,4 +1,4 @@
1
- import list from "./list.mjs";
1
+ import list from "./list.js";
2
2
  export default async function listObject(name, filters = {}, sort, offset, limit, fields = []) {
3
3
  const resp = await list(name, {
4
4
  filters,
@@ -1,4 +1,4 @@
1
- import list from "./list.mjs";
1
+ import list from "./list.js";
2
2
  export default async function(module, filters, fields = []) {
3
3
  let { data } = await list(module, {
4
4
  filters
@@ -1,4 +1,4 @@
1
- import { api } from "./index.mjs";
1
+ import { default as api } from "./api.js";
2
2
  export default function(operation, args, fields = []) {
3
3
  return api.mutation(operation, args, fields);
4
4
  }
@@ -1,5 +1,5 @@
1
- import { api } from ".";
2
- import type { LTableColumn } from "../components/l-table.vue";
1
+ import { default as api } from "./api.js";
2
+ import type { LTableColumn } from "../components/l-table.vue.js";
3
3
  interface LModel extends ReturnType<typeof api.model> {
4
4
  columns(fields: string[]): Array<LTableColumn>;
5
5
  }
@@ -1,4 +1,4 @@
1
- import { api } from "./index.mjs";
1
+ import { default as api } from "./api.js";
2
2
  export default (name) => {
3
3
  const m = api.model(name);
4
4
  return Object.assign(m, {
@@ -1,7 +1,7 @@
1
- import f from "./f.mjs";
1
+ import f from "./f.js";
2
2
  import { jsonToGraphQLQuery } from "json-to-graphql-query";
3
3
  import { toQuery } from "@hostlink/light";
4
- import { api } from "./index.mjs";
4
+ import { api } from "./index.js";
5
5
  export default async function(operation, args = null, fields = []) {
6
6
  let query;
7
7
  if (operation instanceof Object) {
@@ -1,4 +1,4 @@
1
- import { api } from "./index.mjs";
1
+ import { default as api } from "./api.js";
2
2
  export const cache = {};
3
3
  export default (name) => {
4
4
  if (cache[name]) {
@@ -1,3 +1,3 @@
1
- import "./assets/main.css";
2
- declare const _default: any;
1
+ import "./assets/main.css.js";
2
+ declare const _default: import("#app").Plugin<Record<string, unknown>> & import("#app").ObjectPlugin<Record<string, unknown>>;
3
3
  export default _default;
@@ -4,17 +4,17 @@ import { defineNuxtPlugin } from "#app";
4
4
  import "./assets/main.css";
5
5
  import message_en from "./locales/en.json";
6
6
  import message_zh from "./locales/zh-hk.json";
7
- import { api } from "./lib/index.mjs";
7
+ import { api } from "./lib/index.js";
8
8
  localStorage.getItem("locale") || localStorage.setItem("locale", "en");
9
9
  import { createQuasarPlugin } from "formkit-quasar";
10
- import { createLightPlugin } from "./formkit/index.mjs";
10
+ import { createLightPlugin } from "./formkit/index.js";
11
11
  import { plugin, defaultConfig } from "@formkit/vue";
12
- import { getApiBase, useLight } from "./index.mjs";
13
- import TypeUser from "./types/User.mjs";
14
- import TypeUserLog from "./types/UserLog.mjs";
15
- import TypeSystemValue from "./types/SystemValue.mjs";
16
- import TypeMailLog from "./types/MailLog.mjs";
17
- import TypeEventLog from "./types/EventLog.mjs";
12
+ import { getApiBase, useLight } from "./index.js";
13
+ import TypeUser from "./types/User.js";
14
+ import TypeUserLog from "./types/UserLog.js";
15
+ import TypeSystemValue from "./types/SystemValue.js";
16
+ import TypeMailLog from "./types/MailLog.js";
17
+ import TypeEventLog from "./types/EventLog.js";
18
18
  import { zhTW } from "@formkit/i18n";
19
19
  export default defineNuxtPlugin((nuxtApp) => {
20
20
  api.axios.defaults.baseURL = getApiBase();
package/dist/types.d.mts CHANGED
@@ -1,16 +1 @@
1
-
2
- import type { ModuleOptions } from './module.js'
3
-
4
-
5
- declare module '@nuxt/schema' {
6
- interface NuxtConfig { ['light']?: Partial<ModuleOptions> }
7
- interface NuxtOptions { ['light']?: ModuleOptions }
8
- }
9
-
10
- declare module 'nuxt/schema' {
11
- interface NuxtConfig { ['light']?: Partial<ModuleOptions> }
12
- interface NuxtOptions { ['light']?: ModuleOptions }
13
- }
14
-
15
-
16
- export type { ModuleOptions, default } from './module.js'
1
+ export { type ModuleOptions, default } from './module.js'
package/dist/types.d.ts CHANGED
@@ -1,16 +1 @@
1
-
2
- import type { ModuleOptions } from './module'
3
-
4
-
5
- declare module '@nuxt/schema' {
6
- interface NuxtConfig { ['light']?: Partial<ModuleOptions> }
7
- interface NuxtOptions { ['light']?: ModuleOptions }
8
- }
9
-
10
- declare module 'nuxt/schema' {
11
- interface NuxtConfig { ['light']?: Partial<ModuleOptions> }
12
- interface NuxtOptions { ['light']?: ModuleOptions }
13
- }
14
-
15
-
16
- export type { ModuleOptions, default } from './module'
1
+ export { type ModuleOptions, default } from './module'
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "1.13.5",
3
+ "version": "1.13.7",
4
4
  "description": "HostLink Nuxt Light Framework",
5
- "repository": "@hostlink/nuxt-light",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "@hostlink/nuxt-light"
8
+ },
6
9
  "license": "MIT",
7
10
  "type": "module",
8
11
  "exports": {
@@ -10,10 +13,6 @@
10
13
  "types": "./dist/types.d.ts",
11
14
  "import": "./dist/module.mjs",
12
15
  "require": "./dist/module.cjs"
13
- },
14
- "./dist": {
15
- "types": "./dist/runtime/index.d.ts",
16
- "import": "./dist/runtime/index.mjs"
17
16
  }
18
17
  },
19
18
  "main": "./dist/module.cjs",
@@ -25,7 +24,7 @@
25
24
  "prepack": "nuxt-module-build build",
26
25
  "dev": "nuxi dev playground --host",
27
26
  "dev:build": "nuxi build playground",
28
- "dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
27
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
29
28
  "release:org": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
30
29
  "release": "npm run prepack && changelogen --release && npm publish --access=public && git push --follow-tags",
31
30
  "lint": "eslint .",
@@ -33,10 +32,10 @@
33
32
  "test:watch": "vitest watch"
34
33
  },
35
34
  "dependencies": {
36
- "@formkit/drag-and-drop": "^0.0.36",
35
+ "@formkit/drag-and-drop": "^0.1.6",
37
36
  "@hostlink/light": "^2.0.1",
38
37
  "@nuxt/kit": "^3.7.4",
39
- "@nuxt/module-builder": "^0.5.2",
38
+ "@nuxt/module-builder": "^0.8.3",
40
39
  "@quasar/extras": "^1.16.11",
41
40
  "@quasar/vite-plugin": "^1.7.0",
42
41
  "axios": "^1.5.0",
@@ -52,7 +51,7 @@
52
51
  "@nuxt/eslint-config": "^0.2.0",
53
52
  "@nuxt/schema": "^3.7.4",
54
53
  "@nuxt/test-utils": "^3.7.0",
55
- "@types/node": "^18.17.3",
54
+ "@types/node": "^22.5.0",
56
55
  "changelogen": "^0.5.4",
57
56
  "eslint": "^8.46.0",
58
57
  "nuxt": "^3.7.0"
@@ -1,12 +0,0 @@
1
- import GQLFieldBuilder from "./GQLFieldBuilder.mjs";
2
- import { api } from "./index.mjs";
3
- export default (name, fields) => {
4
- const builder = GQLFieldBuilder();
5
- fields.forEach((field) => {
6
- const modelField = api.model(name).field(field);
7
- if (modelField) {
8
- builder.add(modelField.getGQLField());
9
- }
10
- });
11
- return builder.get();
12
- };
@@ -1,39 +0,0 @@
1
- import { useRuntimeConfig } from "nuxt/app";
2
- import { Notify } from "quasar";
3
- import { createClient } from "@hostlink/light";
4
- export { default as f } from "./f.mjs";
5
- export { default as getApiUrl } from "./getApiUrl.mjs";
6
- export { default as getCurrentUser } from "./getCurrentUser.mjs";
7
- export { default as getObject } from "./getObject.mjs";
8
- export { default as list } from "./list.mjs";
9
- export { default as m } from "./m.mjs";
10
- export { default as q } from "./q.mjs";
11
- export { default as t } from "./t.mjs";
12
- export { default as updateObject } from "./updateObject.mjs";
13
- export { default as listObject } from "./listObject.mjs";
14
- export { default as loadObject } from "./loadObject.mjs";
15
- export { default as isGranted } from "./isGranted.mjs";
16
- export { default as GQLFieldBuilder } from "./GQLFieldBuilder.mjs";
17
- export { default as getModelField } from "./getModelField.mjs";
18
- export { default as getModelFields } from "./getModelFields.mjs";
19
- export { default as getModelColumns } from "./getModelColumns.mjs";
20
- export { default as sv } from "./sv.mjs";
21
- export { default as model } from "./model.mjs";
22
- export { default as defineLightModel } from "./defineLightModel.mjs";
23
- export const notify = function(message, color = "positive") {
24
- Notify.create({
25
- message,
26
- color,
27
- position: "top"
28
- });
29
- };
30
- export { default as getID } from "./getID.mjs";
31
- export { default as id } from "./getID.mjs";
32
- export const getApiBase = () => {
33
- const config = useRuntimeConfig();
34
- return config?.public?.apiBase ?? "/api/";
35
- };
36
- export const api = createClient("");
37
- export const getGQLFields = (name, fields) => {
38
- return api.model(name).gqlFields(fields);
39
- };
@@ -1,2 +0,0 @@
1
- declare const _default: (name: string, id: number, data: Object) => Promise<any>;
2
- export default _default;
@@ -1,12 +0,0 @@
1
- import m from "./m.mjs";
2
- import { Dialog } from "quasar";
3
- export default async (name, id, data) => {
4
- try {
5
- return await m(`update${name}`, { id, data });
6
- } catch (e) {
7
- Dialog.create({
8
- title: "Error",
9
- message: e.message
10
- });
11
- }
12
- };
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes