@hostlink/nuxt-light 1.48.13 → 1.49.0

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 (41) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/l-audit-card.d.vue.ts +9 -0
  3. package/dist/runtime/components/l-audit-card.vue +1 -0
  4. package/dist/runtime/components/l-audit-card.vue.d.ts +9 -0
  5. package/dist/runtime/components/l-card.d.vue.ts +1 -1
  6. package/dist/runtime/components/l-card.vue.d.ts +1 -1
  7. package/dist/runtime/components/l-checkbox.d.vue.ts +3 -1
  8. package/dist/runtime/components/l-checkbox.vue +1 -1
  9. package/dist/runtime/components/l-checkbox.vue.d.ts +3 -1
  10. package/dist/runtime/components/l-customizer.d.vue.ts +6 -6
  11. package/dist/runtime/components/l-customizer.vue.d.ts +6 -6
  12. package/dist/runtime/components/l-date-picker.d.vue.ts +5 -5
  13. package/dist/runtime/components/l-date-picker.vue.d.ts +5 -5
  14. package/dist/runtime/components/l-fav-menu.d.vue.ts +2 -2
  15. package/dist/runtime/components/l-fav-menu.vue.d.ts +2 -2
  16. package/dist/runtime/components/l-field.d.vue.ts +3 -3
  17. package/dist/runtime/components/l-field.vue.d.ts +3 -3
  18. package/dist/runtime/components/l-file-manager.d.vue.ts +4 -4
  19. package/dist/runtime/components/l-file-manager.vue.d.ts +4 -4
  20. package/dist/runtime/components/l-file-upload.d.vue.ts +4 -4
  21. package/dist/runtime/components/l-file-upload.vue.d.ts +4 -4
  22. package/dist/runtime/components/l-file.d.vue.ts +3 -3
  23. package/dist/runtime/components/l-file.vue.d.ts +3 -3
  24. package/dist/runtime/components/l-form-dialog.d.vue.ts +2 -2
  25. package/dist/runtime/components/l-form-dialog.vue.d.ts +2 -2
  26. package/dist/runtime/components/l-input.d.vue.ts +3 -3
  27. package/dist/runtime/components/l-input.vue.d.ts +3 -3
  28. package/dist/runtime/components/l-item.d.vue.ts +1 -1
  29. package/dist/runtime/components/l-item.vue.d.ts +1 -1
  30. package/dist/runtime/components/l-menu.d.vue.ts +2 -2
  31. package/dist/runtime/components/l-menu.vue.d.ts +2 -2
  32. package/dist/runtime/components/l-select.d.vue.ts +4 -4
  33. package/dist/runtime/components/l-select.vue.d.ts +4 -4
  34. package/dist/runtime/components/l-table.d.vue.ts +7 -7
  35. package/dist/runtime/components/l-table.vue.d.ts +7 -7
  36. package/dist/runtime/components/l-time-picker.d.vue.ts +2 -2
  37. package/dist/runtime/components/l-time-picker.vue.d.ts +2 -2
  38. package/dist/runtime/composables/model.js +1 -1
  39. package/dist/runtime/composables/useLight.d.ts +40 -40
  40. package/dist/runtime/models/User.d.ts +1 -1
  41. package/package.json +5 -5
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "1.48.13",
4
+ "version": "1.49.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -1,3 +1,12 @@
1
+ import { type LCardProps } from './l-card.vue.js';
2
+ export type LAuditCardProps = LCardProps & {
3
+ modelValue: {
4
+ createdTime: string;
5
+ createdBy: string;
6
+ updatedTime: string;
7
+ updatedBy: string;
8
+ };
9
+ };
1
10
  type __VLS_PublicProps = {
2
11
  modelValue: {
3
12
  createdTime: string;
@@ -1,4 +1,5 @@
1
1
  <script setup>
2
+ import {} from "./l-card.vue";
2
3
  const modelValue = defineModel({ type: Object, ...{
3
4
  required: true
4
5
  } });
@@ -1,3 +1,12 @@
1
+ import { type LCardProps } from './l-card.vue.js';
2
+ export type LAuditCardProps = LCardProps & {
3
+ modelValue: {
4
+ createdTime: string;
5
+ createdBy: string;
6
+ updatedTime: string;
7
+ updatedBy: string;
8
+ };
9
+ };
1
10
  type __VLS_PublicProps = {
2
11
  modelValue: {
3
12
  createdTime: string;
@@ -32,8 +32,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
32
32
  "onUpdate:maximized"?: ((value: boolean) => any) | undefined;
33
33
  }>, {
34
34
  flat: boolean;
35
- bordered: boolean;
36
35
  square: boolean;
36
+ bordered: boolean;
37
37
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
38
38
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
39
39
  export default _default;
@@ -32,8 +32,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
32
32
  "onUpdate:maximized"?: ((value: boolean) => any) | undefined;
33
33
  }>, {
34
34
  flat: boolean;
35
- bordered: boolean;
36
35
  square: boolean;
36
+ bordered: boolean;
37
37
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
38
38
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
39
39
  export default _default;
@@ -3,7 +3,9 @@ declare var __VLS_6: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<QCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const __VLS_component: import("vue").DefineComponent<QCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QCheckboxProps> & Readonly<{}>, {
7
+ dark: boolean | null;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
9
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
10
  export default _default;
9
11
  type __VLS_WithSlots<T, S> = T & {
@@ -17,7 +17,7 @@ defineProps({
17
17
  indeterminateIcon: { type: null, required: false },
18
18
  color: { type: null, required: false },
19
19
  keepColor: { type: Boolean, required: false, skipCheck: true },
20
- dark: { type: [Boolean, null], required: false, skipCheck: true },
20
+ dark: { type: [Boolean, null], required: false, skipCheck: true, default: void 0 },
21
21
  dense: { type: Boolean, required: false, skipCheck: true },
22
22
  disable: { type: Boolean, required: false, skipCheck: true },
23
23
  tabindex: { type: null, required: false },
@@ -3,7 +3,9 @@ declare var __VLS_6: {};
3
3
  type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
- declare const __VLS_component: import("vue").DefineComponent<QCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const __VLS_component: import("vue").DefineComponent<QCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QCheckboxProps> & Readonly<{}>, {
7
+ dark: boolean | null;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
9
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
8
10
  export default _default;
9
11
  type __VLS_WithSlots<T, S> = T & {
@@ -1,20 +1,20 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: (event: "update:theme" | "update:menuOverlayHeader" | "update:dense" | "update:color" | "update:miniState" | "update:footer", ...args: any[]) => void;
3
3
  color: string;
4
- miniState: boolean;
4
+ time: string;
5
+ theme: string;
5
6
  dense: boolean;
7
+ miniState: boolean;
6
8
  footer: boolean;
7
9
  menuOverlayHeader: boolean;
8
- theme: string;
9
- time: string;
10
10
  $props: {
11
11
  readonly color?: string | undefined;
12
- readonly miniState?: boolean | undefined;
12
+ readonly time?: string | undefined;
13
+ readonly theme?: string | undefined;
13
14
  readonly dense?: boolean | undefined;
15
+ readonly miniState?: boolean | undefined;
14
16
  readonly footer?: boolean | undefined;
15
17
  readonly menuOverlayHeader?: boolean | undefined;
16
- readonly theme?: string | undefined;
17
- readonly time?: string | undefined;
18
18
  };
19
19
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
20
20
  export default _default;
@@ -1,20 +1,20 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: (event: "update:theme" | "update:menuOverlayHeader" | "update:dense" | "update:color" | "update:miniState" | "update:footer", ...args: any[]) => void;
3
3
  color: string;
4
- miniState: boolean;
4
+ time: string;
5
+ theme: string;
5
6
  dense: boolean;
7
+ miniState: boolean;
6
8
  footer: boolean;
7
9
  menuOverlayHeader: boolean;
8
- theme: string;
9
- time: string;
10
10
  $props: {
11
11
  readonly color?: string | undefined;
12
- readonly miniState?: boolean | undefined;
12
+ readonly time?: string | undefined;
13
+ readonly theme?: string | undefined;
13
14
  readonly dense?: boolean | undefined;
15
+ readonly miniState?: boolean | undefined;
14
16
  readonly footer?: boolean | undefined;
15
17
  readonly menuOverlayHeader?: boolean | undefined;
16
- readonly theme?: string | undefined;
17
- readonly time?: string | undefined;
18
18
  };
19
19
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
20
20
  export default _default;
@@ -13,18 +13,18 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
15
15
  }>, {
16
- dense: boolean;
17
16
  dark: boolean | null;
18
17
  rounded: boolean;
19
18
  square: boolean;
19
+ dense: boolean;
20
20
  disable: boolean;
21
- todayBtn: boolean;
22
- range: boolean;
23
- stackLabel: boolean;
24
- filled: boolean;
25
21
  outlined: boolean;
22
+ filled: boolean;
23
+ stackLabel: boolean;
26
24
  standout: string | boolean;
27
25
  hideBottomSpace: boolean;
26
+ range: boolean;
27
+ todayBtn: boolean;
28
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
29
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
30
  export default _default;
@@ -13,18 +13,18 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
15
15
  }>, {
16
- dense: boolean;
17
16
  dark: boolean | null;
18
17
  rounded: boolean;
19
18
  square: boolean;
19
+ dense: boolean;
20
20
  disable: boolean;
21
- todayBtn: boolean;
22
- range: boolean;
23
- stackLabel: boolean;
24
- filled: boolean;
25
21
  outlined: boolean;
22
+ filled: boolean;
23
+ stackLabel: boolean;
26
24
  standout: string | boolean;
27
25
  hideBottomSpace: boolean;
26
+ range: boolean;
27
+ todayBtn: boolean;
28
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
29
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
30
  export default _default;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- dense?: any;
3
2
  value?: any;
3
+ dense?: any;
4
4
  $props: {
5
- readonly dense?: any;
6
5
  readonly value?: any;
6
+ readonly dense?: any;
7
7
  };
8
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- dense?: any;
3
2
  value?: any;
3
+ dense?: any;
4
4
  $props: {
5
- readonly dense?: any;
6
5
  readonly value?: any;
6
+ readonly dense?: any;
7
7
  };
8
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
@@ -4,13 +4,13 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<QFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QFieldProps> & Readonly<{}>, {
7
- dense: boolean;
8
7
  dark: boolean | null;
9
8
  rounded: boolean;
10
9
  square: boolean;
11
- stackLabel: boolean;
12
- filled: boolean;
10
+ dense: boolean;
13
11
  outlined: boolean;
12
+ filled: boolean;
13
+ stackLabel: boolean;
14
14
  standout: string | boolean;
15
15
  hideBottomSpace: boolean;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -4,13 +4,13 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_6) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<QFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QFieldProps> & Readonly<{}>, {
7
- dense: boolean;
8
7
  dark: boolean | null;
9
8
  rounded: boolean;
10
9
  square: boolean;
11
- stackLabel: boolean;
12
- filled: boolean;
10
+ dense: boolean;
13
11
  outlined: boolean;
12
+ filled: boolean;
13
+ stackLabel: boolean;
14
14
  standout: string | boolean;
15
15
  hideBottomSpace: boolean;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -1,15 +1,15 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: (event: "close" | "input", ...args: any[]) => void;
3
3
  base: string;
4
- closeable: boolean;
5
- multiple: boolean;
6
4
  height: string;
5
+ multiple: boolean;
6
+ closeable: boolean;
7
7
  defaultAction: string;
8
8
  $props: {
9
9
  readonly base?: string | undefined;
10
- readonly closeable?: boolean | undefined;
11
- readonly multiple?: boolean | undefined;
12
10
  readonly height?: string | undefined;
11
+ readonly multiple?: boolean | undefined;
12
+ readonly closeable?: boolean | undefined;
13
13
  readonly defaultAction?: string | undefined;
14
14
  };
15
15
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -1,15 +1,15 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: (event: "close" | "input", ...args: any[]) => void;
3
3
  base: string;
4
- closeable: boolean;
5
- multiple: boolean;
6
4
  height: string;
5
+ multiple: boolean;
6
+ closeable: boolean;
7
7
  defaultAction: string;
8
8
  $props: {
9
9
  readonly base?: string | undefined;
10
- readonly closeable?: boolean | undefined;
11
- readonly multiple?: boolean | undefined;
12
10
  readonly height?: string | undefined;
11
+ readonly multiple?: boolean | undefined;
12
+ readonly closeable?: boolean | undefined;
13
13
  readonly defaultAction?: string | undefined;
14
14
  };
15
15
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -26,15 +26,15 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
26
26
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
27
27
  }>, {
28
28
  path: string;
29
- dense: boolean;
30
29
  rounded: boolean;
31
30
  square: boolean;
32
- stackLabel: boolean;
33
- filled: boolean;
31
+ dense: boolean;
34
32
  outlined: boolean;
33
+ filled: boolean;
34
+ stackLabel: boolean;
35
35
  standout: boolean;
36
- driveIndex: number;
37
36
  accept: string;
37
+ driveIndex: number;
38
38
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
39
39
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
40
40
  export default _default;
@@ -26,15 +26,15 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
26
26
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
27
27
  }>, {
28
28
  path: string;
29
- dense: boolean;
30
29
  rounded: boolean;
31
30
  square: boolean;
32
- stackLabel: boolean;
33
- filled: boolean;
31
+ dense: boolean;
34
32
  outlined: boolean;
33
+ filled: boolean;
34
+ stackLabel: boolean;
35
35
  standout: boolean;
36
- driveIndex: number;
37
36
  accept: string;
37
+ driveIndex: number;
38
38
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
39
39
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
40
40
  export default _default;
@@ -14,12 +14,12 @@ declare const _default: import("vue").DefineComponent<LFileProps, {}, {}, {}, {}
14
14
  }, string, import("vue").PublicProps, Readonly<LFileProps> & Readonly<{
15
15
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16
16
  }>, {
17
- dense: boolean;
18
17
  rounded: boolean;
19
18
  square: boolean;
20
- stackLabel: boolean;
21
- filled: boolean;
19
+ dense: boolean;
22
20
  outlined: boolean;
21
+ filled: boolean;
22
+ stackLabel: boolean;
23
23
  standout: boolean;
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
25
  export default _default;
@@ -14,12 +14,12 @@ declare const _default: import("vue").DefineComponent<LFileProps, {}, {}, {}, {}
14
14
  }, string, import("vue").PublicProps, Readonly<LFileProps> & Readonly<{
15
15
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16
16
  }>, {
17
- dense: boolean;
18
17
  rounded: boolean;
19
18
  square: boolean;
20
- stackLabel: boolean;
21
- filled: boolean;
19
+ dense: boolean;
22
20
  outlined: boolean;
21
+ filled: boolean;
22
+ stackLabel: boolean;
23
23
  standout: boolean;
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
25
  export default _default;
@@ -6,15 +6,15 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: (event: "submit", ...args: any[]) => void;
8
8
  cancel: Function;
9
- width: string;
10
9
  value: Record<string, any>;
10
+ width: string;
11
11
  title: string;
12
12
  save: Function;
13
13
  showNotification: boolean;
14
14
  $props: {
15
15
  readonly cancel?: Function | undefined;
16
- readonly width?: string | undefined;
17
16
  readonly value?: Record<string, any> | undefined;
17
+ readonly width?: string | undefined;
18
18
  readonly title?: string | undefined;
19
19
  readonly save?: Function | undefined;
20
20
  readonly showNotification?: boolean | undefined;
@@ -6,15 +6,15 @@ type __VLS_WithSlots<T, S> = T & (new () => {
6
6
  declare const __VLS_component: import("vue").DefineComponent<{}, {
7
7
  $emit: (event: "submit", ...args: any[]) => void;
8
8
  cancel: Function;
9
- width: string;
10
9
  value: Record<string, any>;
10
+ width: string;
11
11
  title: string;
12
12
  save: Function;
13
13
  showNotification: boolean;
14
14
  $props: {
15
15
  readonly cancel?: Function | undefined;
16
- readonly width?: string | undefined;
17
16
  readonly value?: Record<string, any> | undefined;
17
+ readonly width?: string | undefined;
18
18
  readonly title?: string | undefined;
19
19
  readonly save?: Function | undefined;
20
20
  readonly showNotification?: boolean | undefined;
@@ -17,13 +17,13 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
17
17
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
18
18
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
19
19
  }>, {
20
- dense: boolean;
21
20
  dark: boolean | null;
22
21
  rounded: boolean;
23
22
  square: boolean;
24
- stackLabel: boolean;
25
- filled: boolean;
23
+ dense: boolean;
26
24
  outlined: boolean;
25
+ filled: boolean;
26
+ stackLabel: boolean;
27
27
  standout: string | boolean;
28
28
  hideBottomSpace: boolean;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -17,13 +17,13 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
17
17
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
18
18
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
19
19
  }>, {
20
- dense: boolean;
21
20
  dark: boolean | null;
22
21
  rounded: boolean;
23
22
  square: boolean;
24
- stackLabel: boolean;
25
- filled: boolean;
23
+ dense: boolean;
26
24
  outlined: boolean;
25
+ filled: boolean;
26
+ stackLabel: boolean;
27
27
  standout: string | boolean;
28
28
  hideBottomSpace: boolean;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -15,8 +15,8 @@ type __VLS_Slots = {} & {
15
15
  end?: (props: typeof __VLS_30) => any;
16
16
  };
17
17
  declare const __VLS_component: import("vue").DefineComponent<LItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LItemProps> & Readonly<{}>, {
18
- alignItems: "flex-start" | "center" | "flex-end" | "stretch";
19
18
  top: boolean;
19
+ alignItems: "flex-start" | "center" | "flex-end" | "stretch";
20
20
  labelTop: boolean;
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
22
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -15,8 +15,8 @@ type __VLS_Slots = {} & {
15
15
  end?: (props: typeof __VLS_30) => any;
16
16
  };
17
17
  declare const __VLS_component: import("vue").DefineComponent<LItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LItemProps> & Readonly<{}>, {
18
- alignItems: "flex-start" | "center" | "flex-end" | "stretch";
19
18
  top: boolean;
19
+ alignItems: "flex-start" | "center" | "flex-end" | "stretch";
20
20
  labelTop: boolean;
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
22
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- dense?: any;
3
2
  value?: any;
3
+ dense?: any;
4
4
  $props: {
5
- readonly dense?: any;
6
5
  readonly value?: any;
6
+ readonly dense?: any;
7
7
  };
8
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- dense?: any;
3
2
  value?: any;
3
+ dense?: any;
4
4
  $props: {
5
- readonly dense?: any;
6
5
  readonly value?: any;
6
+ readonly dense?: any;
7
7
  };
8
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
@@ -1,19 +1,19 @@
1
1
  import type { QSelectProps } from "quasar";
2
2
  declare const _default: import("vue").DefineComponent<QSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QSelectProps> & Readonly<{}>, {
3
- dense: boolean;
4
3
  dark: boolean | null;
5
4
  rounded: boolean;
6
5
  square: boolean;
7
- stackLabel: boolean;
8
- filled: boolean;
6
+ dense: boolean;
9
7
  outlined: boolean;
8
+ filled: boolean;
9
+ stackLabel: boolean;
10
10
  standout: string | boolean;
11
11
  hideBottomSpace: boolean;
12
12
  emitValue: boolean;
13
13
  mapOptions: boolean;
14
+ inputDebounce: string | number;
14
15
  optionValue: string | ((option: string | any) => any);
15
16
  optionLabel: string | ((option: string | any) => string);
16
17
  optionsDark: boolean | null;
17
- inputDebounce: string | number;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
19
  export default _default;
@@ -1,19 +1,19 @@
1
1
  import type { QSelectProps } from "quasar";
2
2
  declare const _default: import("vue").DefineComponent<QSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QSelectProps> & Readonly<{}>, {
3
- dense: boolean;
4
3
  dark: boolean | null;
5
4
  rounded: boolean;
6
5
  square: boolean;
7
- stackLabel: boolean;
8
- filled: boolean;
6
+ dense: boolean;
9
7
  outlined: boolean;
8
+ filled: boolean;
9
+ stackLabel: boolean;
10
10
  standout: string | boolean;
11
11
  hideBottomSpace: boolean;
12
12
  emitValue: boolean;
13
13
  mapOptions: boolean;
14
+ inputDebounce: string | number;
14
15
  optionValue: string | ((option: string | any) => any);
15
16
  optionLabel: string | ((option: string | any) => string);
16
17
  optionsDark: boolean | null;
17
- inputDebounce: string | number;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
19
  export default _default;
@@ -92,12 +92,10 @@ declare const __VLS_component: import("vue").DefineComponent<LTableProps, {
92
92
  "onUpdate:selected"?: ((p: any[]) => any) | undefined;
93
93
  }>, {
94
94
  flat: boolean;
95
- dense: boolean;
96
- dark: boolean | null;
97
- bordered: boolean;
98
95
  fullscreen: boolean;
99
- selected: any[];
96
+ dark: boolean | null;
100
97
  actions: Array<"view" | "edit" | "delete" | "update">;
98
+ dense: boolean;
101
99
  pagination: {
102
100
  sortBy?: string | null;
103
101
  descending?: boolean;
@@ -105,11 +103,13 @@ declare const __VLS_component: import("vue").DefineComponent<LTableProps, {
105
103
  rowsPerPage?: number;
106
104
  rowsNumber?: number;
107
105
  };
108
- selection: "none" | "multiple" | "single";
109
- loadingLabel: string;
106
+ selected: any[];
107
+ bordered: boolean;
110
108
  noDataLabel: string;
111
- rowsPerPageOptions: readonly any[];
109
+ loadingLabel: string;
112
110
  rowsPerPageLabel: string;
111
+ rowsPerPageOptions: readonly any[];
112
+ selection: "none" | "single" | "multiple";
113
113
  searchable: boolean;
114
114
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
115
115
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -92,12 +92,10 @@ declare const __VLS_component: import("vue").DefineComponent<LTableProps, {
92
92
  "onUpdate:selected"?: ((p: any[]) => any) | undefined;
93
93
  }>, {
94
94
  flat: boolean;
95
- dense: boolean;
96
- dark: boolean | null;
97
- bordered: boolean;
98
95
  fullscreen: boolean;
99
- selected: any[];
96
+ dark: boolean | null;
100
97
  actions: Array<"view" | "edit" | "delete" | "update">;
98
+ dense: boolean;
101
99
  pagination: {
102
100
  sortBy?: string | null;
103
101
  descending?: boolean;
@@ -105,11 +103,13 @@ declare const __VLS_component: import("vue").DefineComponent<LTableProps, {
105
103
  rowsPerPage?: number;
106
104
  rowsNumber?: number;
107
105
  };
108
- selection: "none" | "multiple" | "single";
109
- loadingLabel: string;
106
+ selected: any[];
107
+ bordered: boolean;
110
108
  noDataLabel: string;
111
- rowsPerPageOptions: readonly any[];
109
+ loadingLabel: string;
112
110
  rowsPerPageLabel: string;
111
+ rowsPerPageOptions: readonly any[];
112
+ selection: "none" | "single" | "multiple";
113
113
  searchable: boolean;
114
114
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
115
115
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -23,10 +23,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
23
23
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
24
24
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
25
25
  }>, {
26
- mask: string;
26
+ format24h: boolean;
27
27
  required: boolean;
28
+ mask: string;
28
29
  hideBottomSpace: boolean;
29
- format24h: boolean;
30
30
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
31
31
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
32
32
  export default _default;
@@ -23,10 +23,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
23
23
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
24
24
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
25
25
  }>, {
26
- mask: string;
26
+ format24h: boolean;
27
27
  required: boolean;
28
+ mask: string;
28
29
  hideBottomSpace: boolean;
29
- format24h: boolean;
30
30
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
31
31
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
32
32
  export default _default;
@@ -13,7 +13,7 @@ export default (name) => {
13
13
  for (let f of fs) {
14
14
  const field = m.field(f);
15
15
  if (!field) continue;
16
- const option = field;
16
+ const option = { ...field };
17
17
  option.name = field.name ?? f;
18
18
  columns.push(option);
19
19
  }
@@ -229,13 +229,13 @@ declare const light: {
229
229
  reset: string;
230
230
  select: string;
231
231
  filter: string;
232
- clear: string;
232
+ update: string;
233
+ remove: string;
233
234
  set: string;
234
- search: string;
235
+ clear: string;
235
236
  ok: string;
237
+ search: string;
236
238
  create: string;
237
- remove: string;
238
- update: string;
239
239
  refresh: string;
240
240
  expand: (label?: string | undefined) => string;
241
241
  collapse: (label?: string | undefined) => string;
@@ -256,24 +256,21 @@ declare const light: {
256
256
  };
257
257
  table: {
258
258
  loading: string;
259
- columns: string;
260
259
  noData: string;
261
260
  noResults: string;
262
261
  recordsPerPage: string;
263
262
  allRows: string;
263
+ columns: string;
264
264
  selectedRecords: (rows: number) => string;
265
265
  pagination: (start: number, end: number, total: number) => string;
266
266
  };
267
267
  editor: {
268
- align: string;
268
+ url: string;
269
+ bold: string;
269
270
  left: string;
270
271
  right: string;
271
- code: string;
272
- hr: string;
273
272
  center: string;
274
- bold: string;
275
- url: string;
276
- fontSize: string;
273
+ align: string;
277
274
  italic: string;
278
275
  strikethrough: string;
279
276
  underline: string;
@@ -290,6 +287,8 @@ declare const light: {
290
287
  indent: string;
291
288
  removeFormat: string;
292
289
  formatting: string;
290
+ fontSize: string;
291
+ hr: string;
293
292
  undo: string;
294
293
  redo: string;
295
294
  heading1: string;
@@ -299,6 +298,7 @@ declare const light: {
299
298
  heading5: string;
300
299
  heading6: string;
301
300
  paragraph: string;
301
+ code: string;
302
302
  size1: string;
303
303
  size2: string;
304
304
  size3: string;
@@ -335,9 +335,9 @@ declare const light: {
335
335
  right: string;
336
336
  };
337
337
  colorPicker: {
338
- palette: string;
339
338
  spectrum: string;
340
339
  tune: string;
340
+ palette: string;
341
341
  };
342
342
  pullToRefresh: {
343
343
  icon: string;
@@ -350,8 +350,8 @@ declare const light: {
350
350
  navigationIcon: string;
351
351
  };
352
352
  chip: {
353
- selected: string;
354
353
  remove: string;
354
+ selected: string;
355
355
  };
356
356
  datetime: {
357
357
  arrowLeft: string;
@@ -361,15 +361,11 @@ declare const light: {
361
361
  };
362
362
  editor: {
363
363
  size: string;
364
- align: string;
364
+ bold: string;
365
365
  left: string;
366
366
  right: string;
367
- code: string;
368
- hr: string;
369
367
  center: string;
370
- font: string;
371
- bold: string;
372
- fontSize: string;
368
+ align: string;
373
369
  italic: string;
374
370
  strikethrough: string;
375
371
  underline: string;
@@ -386,10 +382,14 @@ declare const light: {
386
382
  indent: string;
387
383
  removeFormat: string;
388
384
  formatting: string;
385
+ fontSize: string;
386
+ hr: string;
389
387
  undo: string;
390
388
  redo: string;
389
+ code: string;
391
390
  viewSource: string;
392
391
  heading: string;
392
+ font: string;
393
393
  heading1?: string | undefined;
394
394
  heading2?: string | undefined;
395
395
  heading3?: string | undefined;
@@ -449,8 +449,8 @@ declare const light: {
449
449
  };
450
450
  uploader: {
451
451
  done: string;
452
- clear: string;
453
452
  add: string;
453
+ clear: string;
454
454
  upload: string;
455
455
  removeQueue: string;
456
456
  removeUploaded: string;
@@ -835,13 +835,13 @@ declare const _default: () => {
835
835
  reset: string;
836
836
  select: string;
837
837
  filter: string;
838
- clear: string;
838
+ update: string;
839
+ remove: string;
839
840
  set: string;
840
- search: string;
841
+ clear: string;
841
842
  ok: string;
843
+ search: string;
842
844
  create: string;
843
- remove: string;
844
- update: string;
845
845
  refresh: string;
846
846
  expand: (label?: string | undefined) => string;
847
847
  collapse: (label?: string | undefined) => string;
@@ -862,24 +862,21 @@ declare const _default: () => {
862
862
  };
863
863
  table: {
864
864
  loading: string;
865
- columns: string;
866
865
  noData: string;
867
866
  noResults: string;
868
867
  recordsPerPage: string;
869
868
  allRows: string;
869
+ columns: string;
870
870
  selectedRecords: (rows: number) => string;
871
871
  pagination: (start: number, end: number, total: number) => string;
872
872
  };
873
873
  editor: {
874
- align: string;
874
+ url: string;
875
+ bold: string;
875
876
  left: string;
876
877
  right: string;
877
- code: string;
878
- hr: string;
879
878
  center: string;
880
- bold: string;
881
- url: string;
882
- fontSize: string;
879
+ align: string;
883
880
  italic: string;
884
881
  strikethrough: string;
885
882
  underline: string;
@@ -896,6 +893,8 @@ declare const _default: () => {
896
893
  indent: string;
897
894
  removeFormat: string;
898
895
  formatting: string;
896
+ fontSize: string;
897
+ hr: string;
899
898
  undo: string;
900
899
  redo: string;
901
900
  heading1: string;
@@ -905,6 +904,7 @@ declare const _default: () => {
905
904
  heading5: string;
906
905
  heading6: string;
907
906
  paragraph: string;
907
+ code: string;
908
908
  size1: string;
909
909
  size2: string;
910
910
  size3: string;
@@ -941,9 +941,9 @@ declare const _default: () => {
941
941
  right: string;
942
942
  };
943
943
  colorPicker: {
944
- palette: string;
945
944
  spectrum: string;
946
945
  tune: string;
946
+ palette: string;
947
947
  };
948
948
  pullToRefresh: {
949
949
  icon: string;
@@ -956,8 +956,8 @@ declare const _default: () => {
956
956
  navigationIcon: string;
957
957
  };
958
958
  chip: {
959
- selected: string;
960
959
  remove: string;
960
+ selected: string;
961
961
  };
962
962
  datetime: {
963
963
  arrowLeft: string;
@@ -967,15 +967,11 @@ declare const _default: () => {
967
967
  };
968
968
  editor: {
969
969
  size: string;
970
- align: string;
970
+ bold: string;
971
971
  left: string;
972
972
  right: string;
973
- code: string;
974
- hr: string;
975
973
  center: string;
976
- font: string;
977
- bold: string;
978
- fontSize: string;
974
+ align: string;
979
975
  italic: string;
980
976
  strikethrough: string;
981
977
  underline: string;
@@ -992,10 +988,14 @@ declare const _default: () => {
992
988
  indent: string;
993
989
  removeFormat: string;
994
990
  formatting: string;
991
+ fontSize: string;
992
+ hr: string;
995
993
  undo: string;
996
994
  redo: string;
995
+ code: string;
997
996
  viewSource: string;
998
997
  heading: string;
998
+ font: string;
999
999
  heading1?: string | undefined;
1000
1000
  heading2?: string | undefined;
1001
1001
  heading3?: string | undefined;
@@ -1055,8 +1055,8 @@ declare const _default: () => {
1055
1055
  };
1056
1056
  uploader: {
1057
1057
  done: string;
1058
- clear: string;
1059
1058
  add: string;
1059
+ clear: string;
1060
1060
  upload: string;
1061
1061
  removeQueue: string;
1062
1062
  removeUploaded: string;
@@ -53,7 +53,7 @@ declare const _default: {
53
53
  label: string;
54
54
  value: number;
55
55
  }[];
56
- format: (value: any) => string;
56
+ format: (value: any) => string | undefined;
57
57
  };
58
58
  has2FA: {
59
59
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "1.48.13",
3
+ "version": "1.49.0",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "prepack": "nuxt-module-build build",
23
- "dev": "nuxi dev playground --host",
23
+ "dev": "nuxi dev playground --public",
24
24
  "dev:build": "nuxi build playground",
25
25
  "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
26
26
  "release:org": "npm run lint && npm run test && npm run prepack && npm publish && git push --follow-tags",
@@ -50,13 +50,13 @@
50
50
  "devDependencies": {
51
51
  "@nuxt/devtools": "latest",
52
52
  "@nuxt/eslint-config": "^0.2.0",
53
- "@nuxt/kit": "^4.1.2",
54
- "@nuxt/schema": "^4.1.2",
53
+ "@nuxt/kit": "^4.2.0",
54
+ "@nuxt/schema": "^4.2.0",
55
55
  "@nuxt/test-utils": "^3.17.2",
56
56
  "@types/node": "^22.5.0",
57
57
  "changelogen": "^0.5.4",
58
58
  "eslint": "^8.46.0",
59
- "nuxt": "^4.1.2",
59
+ "nuxt": "^4.2.0",
60
60
  "typescript": "^5.9.2",
61
61
  "vue-tsc": "^2.2.8"
62
62
  }