@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 +1 -1
- package/dist/runtime/components/l-banner.vue +1 -1
- package/dist/runtime/components/l-btn.vue +1 -1
- package/dist/runtime/components/l-card.vue +1 -1
- package/dist/runtime/components/l-checkbox.vue +1 -1
- package/dist/runtime/components/l-editor.vue +1 -1
- package/dist/runtime/components/l-input.vue +1 -1
- package/dist/runtime/components/l-item.vue +1 -1
- package/dist/runtime/components/l-list.vue +1 -1
- package/dist/runtime/components/l-page.vue +1 -1
- package/dist/runtime/components/l-select.vue +1 -1
- package/dist/runtime/components/l-table.vue +2 -2
- package/dist/runtime/components/l-tabs.vue +1 -1
- package/package.json +2 -2
package/dist/module.json
CHANGED
|
@@ -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"]);
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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.
|
|
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",
|