@hostlink/nuxt-light 1.13.1 → 1.13.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "1.13.1",
4
+ "version": "1.13.2",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.3",
7
7
  "unbuild": "2.0.0"
@@ -2,7 +2,7 @@
2
2
  import { type QBannerProps } from 'quasar'
3
3
  import { computed, useSlots } from 'vue'
4
4
 
5
- export interface LBannerProps extends QBannerProps {
5
+ export interface LBannerProps extends /* @vue-ignore */ QBannerProps {
6
6
  icon?: string
7
7
  type?: 'primary' | 'secondary' | 'accent' | 'dark' | 'positive' | 'negative' | 'info' | 'warning'
8
8
  }
@@ -4,7 +4,7 @@ import { computed, inject, unref, toRaw } from "vue";
4
4
  import { useLight } from '#imports';
5
5
  import { useI18n } from "vue-i18n";
6
6
 
7
- export interface LBtnProps extends QBtnProps {
7
+ export interface LBtnProps extends /* @vue-ignore */ QBtnProps {
8
8
  permission?: string;
9
9
  }
10
10
 
@@ -8,7 +8,7 @@ const emit = defineEmits(["close"]);
8
8
  const minimized = defineModel<boolean>("minimized", { default: false })
9
9
  const maximized = defineModel<boolean>("maximized", { default: false })
10
10
 
11
- export interface LCardProps extends QCardProps {
11
+ export interface LCardProps extends /* @vue-ignore */ QCardProps {
12
12
  loading?: boolean;
13
13
  title?: string;
14
14
  /**
@@ -2,7 +2,7 @@
2
2
  import { computed } from "vue"
3
3
  import { type QCheckboxProps } from "quasar"
4
4
 
5
- export interface LCheckboxProps extends QCheckboxProps {
5
+ export interface LCheckboxProps extends /* @vue-ignore */ QCheckboxProps {
6
6
  }
7
7
 
8
8
  const emit = defineEmits(["update:modelValue"]);
@@ -27,7 +27,7 @@ const TextHightlightCMD = ((cmd, name) => {
27
27
  edit.focus()
28
28
  })
29
29
 
30
- export interface LEditorProps extends QEditorProps {
30
+ export interface LEditorProps extends /* @vue-ignore */ QEditorProps {
31
31
  }
32
32
 
33
33
  const emit = defineEmits(["update:modelValue"]);
@@ -5,7 +5,7 @@ import tc2sc from "../lib/tc2sc";
5
5
  import { useLight } from '#imports';
6
6
 
7
7
  import type { QInputProps } from "quasar";
8
- export interface LInputProps extends QInputProps {
8
+ export interface LInputProps extends /* @vue-ignore */ QInputProps {
9
9
  showPassword?: boolean;
10
10
  translate?: boolean;
11
11
  required?: boolean;
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  import type { QItemProps } from 'quasar';
3
3
 
4
- export interface LItemProps extends QItemProps {
4
+ export interface LItemProps extends /* @vue-ignore */ QItemProps {
5
5
  label?: string;
6
6
  type?: 'text' | 'caption';
7
7
  name?: string;
@@ -2,7 +2,7 @@
2
2
 
3
3
  import type { QListProps } from 'quasar';
4
4
 
5
- export interface LListProps extends QListProps {
5
+ export interface LListProps extends /* @vue-ignore */ QListProps {
6
6
  fields?: any[];
7
7
  modelValue?: any;
8
8
  }
@@ -9,7 +9,7 @@ const router = useRouter();
9
9
  const route = useRoute();
10
10
  const light = useLight();
11
11
 
12
- export interface LPageProps extends QPageProps {
12
+ export interface LPageProps extends /* @vue-ignore */ QPageProps {
13
13
  title?: string;
14
14
  backBtn?: boolean;
15
15
  editBtn?: boolean;
@@ -8,7 +8,7 @@ const emits = defineEmits(["update:modelValue"]);
8
8
 
9
9
  const { t } = useI18n();
10
10
  const light = useLight();
11
- interface LSelectProps extends QSelectProps {
11
+ interface LSelectProps extends /* @vue-ignore */ QSelectProps {
12
12
  required?: boolean,
13
13
  }
14
14
 
@@ -11,7 +11,7 @@ const maximized = defineModel<boolean>("maximized", { default: false })
11
11
 
12
12
 
13
13
  // extends QTableColumn
14
- export interface LTableColumn extends QTableColumn {
14
+ export interface LTableColumn extends /* @vue-ignore */ QTableColumn {
15
15
  searchable?: boolean,
16
16
  searchType?: string,
17
17
  searchOptions?: Array<any> | Function,
@@ -23,7 +23,7 @@ export interface LTableColumn extends QTableColumn {
23
23
  const errors = ref<InstanceType<any>>([
24
24
  ]);
25
25
 
26
- export interface LTableProps extends QTableProps {
26
+ export interface LTableProps extends /* @vue-ignore */ QTableProps {
27
27
  columns?: Array<LTableColumn>,
28
28
  actions?: Array<string>,
29
29
  sortBy?: string | null | undefined,
@@ -2,7 +2,7 @@
2
2
  import type { QTabsProps } from 'quasar';
3
3
  import { onMounted, useSlots } from '#imports';
4
4
  const model = defineModel<string | number | null | undefined>()
5
- export interface LTabsProps extends QTabsProps {
5
+ export interface LTabsProps extends /* @vue-ignore */ QTabsProps {
6
6
  }
7
7
  defineProps<LTabsProps>();
8
8
  const slots = useSlots()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "1.13.1",
3
+ "version": "1.13.2",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": "@hostlink/nuxt-light",
6
6
  "license": "MIT",
@@ -43,9 +43,9 @@
43
43
  "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
44
44
  },
45
45
  "devDependencies": {
46
- "@nuxt/module-builder": "^0.8.3",
47
46
  "@nuxt/devtools": "latest",
48
47
  "@nuxt/eslint-config": "^0.2.0",
48
+ "@nuxt/module-builder": "^0.8.3",
49
49
  "@nuxt/schema": "^3.7.4",
50
50
  "@nuxt/test-utils": "^3.7.0",
51
51
  "@types/node": "^22.5.0",