@hostlink/nuxt-light 1.31.3 → 1.32.1
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/Fieldset.vue.d.ts +3 -1
- package/dist/runtime/components/L/ForgetPasswordDialog.vue +6 -5
- package/dist/runtime/components/l-alert.vue.d.ts +3 -1
- package/dist/runtime/components/l-app-main.vue +6 -6
- package/dist/runtime/components/l-app-main.vue.d.ts +2 -84
- package/dist/runtime/components/l-app.vue.d.ts +3 -1
- package/dist/runtime/components/l-banner.vue.d.ts +2 -16
- package/dist/runtime/components/l-bar.vue.d.ts +2 -12
- package/dist/runtime/components/l-btn.vue.d.ts +2 -53
- package/dist/runtime/components/l-card.vue.d.ts +2 -44
- package/dist/runtime/components/l-checkbox.vue.d.ts +2 -4
- package/dist/runtime/components/l-col.vue.d.ts +2 -15
- package/dist/runtime/components/l-date-picker.vue +1 -1
- package/dist/runtime/components/l-date-picker.vue.d.ts +2 -37
- package/dist/runtime/components/l-drag-drop-group.vue.d.ts +3 -1
- package/dist/runtime/components/l-field.vue.d.ts +2 -14
- package/dist/runtime/components/l-file-upload.vue.d.ts +2 -87
- package/dist/runtime/components/l-form-dialog.vue.d.ts +3 -1
- package/dist/runtime/components/l-form.vue.d.ts +2 -75
- package/dist/runtime/components/l-input.vue +1 -1
- package/dist/runtime/components/l-input.vue.d.ts +2 -29
- package/dist/runtime/components/l-item.vue.d.ts +2 -8
- package/dist/runtime/components/l-link.vue.d.ts +3 -1
- package/dist/runtime/components/l-list.vue.d.ts +2 -11
- package/dist/runtime/components/l-login.vue +11 -10
- package/dist/runtime/components/l-page.vue.d.ts +2 -18
- package/dist/runtime/components/l-row.vue.d.ts +2 -6
- package/dist/runtime/components/l-tab.vue.d.ts +2 -7
- package/dist/runtime/components/l-table.vue +4 -0
- package/dist/runtime/components/l-table.vue.d.ts +3 -106
- package/dist/runtime/components/l-tabs.vue +1 -1
- package/dist/runtime/components/l-tabs.vue.d.ts +2 -11
- package/dist/runtime/components/l-time-picker.vue +1 -1
- package/dist/runtime/components/l-time-picker.vue.d.ts +2 -21
- package/dist/runtime/formkit/Checkbox.vue.d.ts +4 -1
- package/dist/runtime/formkit/DatePicker.vue.d.ts +4 -1
- package/dist/runtime/formkit/Editor.vue.d.ts +3 -1
- package/dist/runtime/formkit/File.vue.d.ts +4 -1
- package/dist/runtime/formkit/FilePicker.vue.d.ts +4 -1
- package/dist/runtime/formkit/FileUpload.vue.d.ts +4 -1
- package/dist/runtime/formkit/Form.vue.d.ts +2 -23
- package/dist/runtime/formkit/GroupSelect.vue.d.ts +4 -1
- package/dist/runtime/formkit/Input.vue.d.ts +2 -24
- package/dist/runtime/formkit/InputXlsx.vue.d.ts +3 -1
- package/dist/runtime/formkit/Radio.vue.d.ts +3 -1
- package/dist/runtime/formkit/Repeater.vue.d.ts +7 -1
- package/dist/runtime/formkit/Select.vue.d.ts +4 -1
- package/dist/runtime/formkit/TimePicker.vue.d.ts +4 -1
- package/dist/runtime/formkit/Toggle.vue.d.ts +2 -11
- package/package.json +3 -3
package/dist/module.json
CHANGED
|
@@ -11,4 +11,6 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
11
11
|
readonly gutter?: string | undefined;
|
|
12
12
|
};
|
|
13
13
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
-
type __VLS_Slots =
|
|
14
|
+
type __VLS_Slots = {
|
|
15
|
+
default?: ((props: {}) => any) | undefined;
|
|
16
|
+
};
|
|
@@ -18,10 +18,9 @@ const onOKClick = async () => {
|
|
|
18
18
|
}
|
|
19
19
|
try {
|
|
20
20
|
$q.loading.show();
|
|
21
|
-
await api.auth.forgetPassword(username.value, email.value);
|
|
21
|
+
const jwt = await api.auth.forgetPassword(username.value, email.value);
|
|
22
22
|
onDialogOK({
|
|
23
|
-
|
|
24
|
-
email: email.value
|
|
23
|
+
jwt
|
|
25
24
|
});
|
|
26
25
|
} catch (e) {
|
|
27
26
|
$q.notify({
|
|
@@ -50,8 +49,10 @@ const onOKClick = async () => {
|
|
|
50
49
|
<q-card-section>
|
|
51
50
|
<q-input v-model="username" :label="$t('Username')" stack-label
|
|
52
51
|
:rules="[val => !!val || $t('Username is required')]" hide-bottom-space />
|
|
53
|
-
<q-input v-model="email" :label="$t('Email')" stack-label type="email" hide-bottom-space
|
|
54
|
-
|
|
52
|
+
<q-input v-model="email" :label="$t('Email')" stack-label type="email" hide-bottom-space :rules="[
|
|
53
|
+
val => !!val || $t('Email is required'),
|
|
54
|
+
val => /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(val) || $t('Invalid email format')
|
|
55
|
+
]" />
|
|
55
56
|
</q-card-section>
|
|
56
57
|
|
|
57
58
|
|
|
@@ -9,4 +9,6 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
readonly type?: string | undefined;
|
|
10
10
|
};
|
|
11
11
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
-
type __VLS_Slots =
|
|
12
|
+
type __VLS_Slots = {
|
|
13
|
+
default?: ((props: {}) => any) | undefined;
|
|
14
|
+
};
|
|
@@ -246,7 +246,7 @@ const onLogout = async () => {
|
|
|
246
246
|
<q-btn :icon="$q.fullscreen.isActive ? 'fullscreen_exit' : 'fullscreen'" round flat dense
|
|
247
247
|
class="q-mr-xs" @click="$q.fullscreen.toggle()">
|
|
248
248
|
<q-tooltip>
|
|
249
|
-
{{ $q.fullscreen.isActive ? $t(
|
|
249
|
+
{{ $q.fullscreen.isActive ? $t("Exit Fullscreen") : $t("Fullscreen") }}
|
|
250
250
|
</q-tooltip>
|
|
251
251
|
</q-btn>
|
|
252
252
|
|
|
@@ -293,28 +293,28 @@ const onLogout = async () => {
|
|
|
293
293
|
<q-item-section avatar>
|
|
294
294
|
<q-icon name="sym_o_person" />
|
|
295
295
|
</q-item-section>
|
|
296
|
-
<q-item-section >{{ $t(
|
|
296
|
+
<q-item-section >{{ $t("Profile") }}</q-item-section>
|
|
297
297
|
</q-item>
|
|
298
298
|
|
|
299
299
|
<q-item v-close-popup to="/User/setting">
|
|
300
300
|
<q-item-section avatar>
|
|
301
301
|
<q-icon name="sym_o_settings" />
|
|
302
302
|
</q-item-section>
|
|
303
|
-
<q-item-section>{{ $t(
|
|
303
|
+
<q-item-section>{{ $t("Setting") }}</q-item-section>
|
|
304
304
|
</q-item>
|
|
305
305
|
|
|
306
306
|
<q-item v-close-popup v-if="showViewAs" to="/System/view_as">
|
|
307
307
|
<q-item-section avatar>
|
|
308
308
|
<q-icon name="sym_o_visibility" />
|
|
309
309
|
</q-item-section>
|
|
310
|
-
<q-item-section>{{ $t(
|
|
310
|
+
<q-item-section>{{ $t("View as") }}</q-item-section>
|
|
311
311
|
</q-item>
|
|
312
312
|
|
|
313
313
|
<q-item v-close-popup v-if="app.viewAsMode" @click="exitViewAs" clickable>
|
|
314
314
|
<q-item-section avatar>
|
|
315
315
|
<q-icon name="sym_o_visibility_off" />
|
|
316
316
|
</q-item-section>
|
|
317
|
-
<q-item-section>{{ $t(
|
|
317
|
+
<q-item-section>{{ $t("Exit view as") }}</q-item-section>
|
|
318
318
|
</q-item>
|
|
319
319
|
|
|
320
320
|
<q-separator />
|
|
@@ -323,7 +323,7 @@ const onLogout = async () => {
|
|
|
323
323
|
<q-item-section avatar>
|
|
324
324
|
<q-icon name="logout" />
|
|
325
325
|
</q-item-section>
|
|
326
|
-
<q-item-section>{{ $t(
|
|
326
|
+
<q-item-section>{{ $t("Logout") }}</q-item-section>
|
|
327
327
|
</q-item>
|
|
328
328
|
</q-list>
|
|
329
329
|
</q-menu>
|
|
@@ -1,89 +1,7 @@
|
|
|
1
|
-
declare const $q: import("quasar").QVueGlobals;
|
|
2
|
-
declare const appVersion: {};
|
|
3
|
-
declare const tt: any;
|
|
4
|
-
declare let app: any;
|
|
5
|
-
declare let my: any;
|
|
6
|
-
declare const light: any;
|
|
7
|
-
declare const myFavorites: import("vue").ComputedRef<any>;
|
|
8
|
-
declare const myFavoritesCount: import("vue").ComputedRef<any>;
|
|
9
|
-
declare let system: any;
|
|
10
|
-
declare const menus: any;
|
|
11
|
-
declare const leftDrawerOpen: import("vue").Ref<boolean, boolean>;
|
|
12
|
-
declare const rightDrawerOpen: import("vue").Ref<boolean, boolean>;
|
|
13
|
-
declare const toggleLeftDrawer: () => void;
|
|
14
|
-
declare const toggleRightDrawer: () => void;
|
|
15
|
-
declare let showViewAs: boolean;
|
|
16
|
-
declare const layoutView: import("vue").ComputedRef<string>;
|
|
17
|
-
declare const style: {
|
|
18
|
-
miniState: any;
|
|
19
|
-
dense: any;
|
|
20
|
-
footer: any;
|
|
21
|
-
menuOverlayHeader: any;
|
|
22
|
-
};
|
|
23
|
-
declare const isMouseOnDrawer: import("vue").Ref<boolean, boolean>;
|
|
24
|
-
declare const isMini: import("vue").ComputedRef<boolean>;
|
|
25
|
-
declare const menuDark: import("vue").ComputedRef<boolean>;
|
|
26
|
-
declare const languages: any;
|
|
27
|
-
declare const onChangeLocale: (locale: any) => Promise<void>;
|
|
28
|
-
declare const exitViewAs: () => Promise<void>;
|
|
29
|
-
declare const storageColor: import("vue").ComputedRef<"warning" | "negative" | undefined>;
|
|
30
|
-
declare const containerClass: import("vue").ComputedRef<{
|
|
31
|
-
'bg-grey-2'?: undefined;
|
|
32
|
-
} | {
|
|
33
|
-
'bg-grey-2': boolean;
|
|
34
|
-
}>;
|
|
35
|
-
declare const containerStyle: import("vue").ComputedRef<{
|
|
36
|
-
color?: undefined;
|
|
37
|
-
} | {
|
|
38
|
-
color: string;
|
|
39
|
-
}>;
|
|
40
|
-
declare const onToggleFav: () => Promise<void>;
|
|
41
|
-
declare const isFav: import("vue").ComputedRef<any>;
|
|
42
|
-
declare const menuWidth: any;
|
|
43
|
-
declare const c1: import("vue").ComputedRef<any>;
|
|
44
|
-
declare const onLogout: () => Promise<void>;
|
|
45
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
46
1
|
declare var __VLS_247: {};
|
|
47
|
-
type __VLS_Slots =
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
48
3
|
header?: (props: typeof __VLS_247) => any;
|
|
49
|
-
}
|
|
50
|
-
declare const __VLS_self: import("vue").DefineComponent<{}, {
|
|
51
|
-
$q: typeof $q;
|
|
52
|
-
appVersion: typeof appVersion;
|
|
53
|
-
tt: typeof tt;
|
|
54
|
-
app: typeof app;
|
|
55
|
-
my: typeof my;
|
|
56
|
-
light: typeof light;
|
|
57
|
-
myFavorites: typeof myFavorites;
|
|
58
|
-
myFavoritesCount: typeof myFavoritesCount;
|
|
59
|
-
system: typeof system;
|
|
60
|
-
menus: typeof menus;
|
|
61
|
-
leftDrawerOpen: typeof leftDrawerOpen;
|
|
62
|
-
rightDrawerOpen: typeof rightDrawerOpen;
|
|
63
|
-
toggleLeftDrawer: typeof toggleLeftDrawer;
|
|
64
|
-
toggleRightDrawer: typeof toggleRightDrawer;
|
|
65
|
-
showViewAs: typeof showViewAs;
|
|
66
|
-
layoutView: typeof layoutView;
|
|
67
|
-
style: typeof style;
|
|
68
|
-
isMouseOnDrawer: typeof isMouseOnDrawer;
|
|
69
|
-
isMini: typeof isMini;
|
|
70
|
-
menuDark: typeof menuDark;
|
|
71
|
-
languages: typeof languages;
|
|
72
|
-
onChangeLocale: typeof onChangeLocale;
|
|
73
|
-
exitViewAs: typeof exitViewAs;
|
|
74
|
-
storageColor: typeof storageColor;
|
|
75
|
-
containerClass: typeof containerClass;
|
|
76
|
-
containerStyle: typeof containerStyle;
|
|
77
|
-
onToggleFav: typeof onToggleFav;
|
|
78
|
-
isFav: typeof isFav;
|
|
79
|
-
menuWidth: typeof menuWidth;
|
|
80
|
-
c1: typeof c1;
|
|
81
|
-
onLogout: typeof onLogout;
|
|
82
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
83
|
-
logout: (...args: any[]) => void;
|
|
84
|
-
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
85
|
-
onLogout?: ((...args: any[]) => any) | undefined;
|
|
86
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
};
|
|
87
5
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
88
6
|
logout: (...args: any[]) => void;
|
|
89
7
|
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
@@ -4,4 +4,6 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
|
-
type __VLS_Slots =
|
|
7
|
+
type __VLS_Slots = {
|
|
8
|
+
header?: ((props: {}) => any) | undefined;
|
|
9
|
+
};
|
|
@@ -3,24 +3,10 @@ export type LBannerProps = QBannerProps & {
|
|
|
3
3
|
icon?: string;
|
|
4
4
|
type?: 'primary' | 'secondary' | 'accent' | 'dark' | 'positive' | 'negative' | 'info' | 'warning';
|
|
5
5
|
};
|
|
6
|
-
declare const classes: import("vue").ComputedRef<string[]>;
|
|
7
|
-
declare const localIcon: import("vue").ComputedRef<string | undefined>;
|
|
8
|
-
declare const slots: import("vue").ComputedRef<Readonly<{
|
|
9
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
10
|
-
}>>;
|
|
11
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
12
6
|
declare var __VLS_11: string | number, __VLS_12: any;
|
|
13
|
-
type __VLS_Slots =
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
14
8
|
[K in NonNullable<typeof __VLS_11>]?: (props: typeof __VLS_12) => any;
|
|
15
|
-
}
|
|
16
|
-
declare const __VLS_self: import("vue").DefineComponent<LBannerProps, {
|
|
17
|
-
classes: typeof classes;
|
|
18
|
-
localIcon: typeof localIcon;
|
|
19
|
-
slots: typeof slots;
|
|
20
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LBannerProps> & Readonly<{}>, {
|
|
21
|
-
type: "primary" | "secondary" | "accent" | "dark" | "positive" | "negative" | "info" | "warning";
|
|
22
|
-
rounded: boolean;
|
|
23
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
};
|
|
24
10
|
declare const __VLS_component: import("vue").DefineComponent<LBannerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LBannerProps> & Readonly<{}>, {
|
|
25
11
|
type: "primary" | "secondary" | "accent" | "dark" | "positive" | "negative" | "info" | "warning";
|
|
26
12
|
rounded: boolean;
|
|
@@ -1,22 +1,12 @@
|
|
|
1
|
-
import { QBar } from 'quasar';
|
|
2
1
|
import type { QBarProps } from 'quasar';
|
|
3
2
|
export interface LBarProps extends QBarProps {
|
|
4
3
|
color?: string;
|
|
5
4
|
textColor?: string;
|
|
6
5
|
}
|
|
7
|
-
declare const barClass: import("vue").ComputedRef<string[]>;
|
|
8
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
9
6
|
declare var __VLS_6: {};
|
|
10
|
-
type __VLS_Slots =
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
11
8
|
default?: (props: typeof __VLS_6) => any;
|
|
12
|
-
}
|
|
13
|
-
declare const __VLS_self: import("vue").DefineComponent<LBarProps, {
|
|
14
|
-
QBar: typeof QBar;
|
|
15
|
-
barClass: typeof barClass;
|
|
16
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LBarProps> & Readonly<{}>, {
|
|
17
|
-
color: string;
|
|
18
|
-
textColor: string;
|
|
19
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
};
|
|
20
10
|
declare const __VLS_component: import("vue").DefineComponent<LBarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LBarProps> & Readonly<{}>, {
|
|
21
11
|
color: string;
|
|
22
12
|
textColor: string;
|
|
@@ -1,64 +1,13 @@
|
|
|
1
|
-
import { QBtn } from "quasar";
|
|
2
1
|
import type { QBtnProps } from "quasar";
|
|
3
2
|
export interface LBtnProps extends QBtnProps {
|
|
4
3
|
permission?: string;
|
|
5
4
|
confirmMessage?: string;
|
|
6
5
|
confirmTitle?: string;
|
|
7
6
|
}
|
|
8
|
-
declare const filteredProps: {
|
|
9
|
-
size: string | undefined;
|
|
10
|
-
type: string | undefined;
|
|
11
|
-
to: string | any | undefined;
|
|
12
|
-
replace: boolean;
|
|
13
|
-
href: string | undefined;
|
|
14
|
-
target: string | undefined;
|
|
15
|
-
label: string | number | undefined;
|
|
16
|
-
icon: string | undefined;
|
|
17
|
-
iconRight: string | undefined;
|
|
18
|
-
outline: boolean;
|
|
19
|
-
flat: boolean;
|
|
20
|
-
unelevated: boolean;
|
|
21
|
-
rounded: boolean;
|
|
22
|
-
push: boolean;
|
|
23
|
-
square: boolean;
|
|
24
|
-
glossy: boolean;
|
|
25
|
-
fab: boolean;
|
|
26
|
-
fabMini: boolean;
|
|
27
|
-
padding: string | undefined;
|
|
28
|
-
color: import("quasar").NamedColor | undefined;
|
|
29
|
-
textColor: import("quasar").NamedColor | undefined;
|
|
30
|
-
noCaps: boolean;
|
|
31
|
-
noWrap: boolean;
|
|
32
|
-
dense: boolean;
|
|
33
|
-
ripple: boolean | any | undefined;
|
|
34
|
-
tabindex: number | string | undefined;
|
|
35
|
-
align: "left" | "right" | "center" | "around" | "between" | "evenly" | undefined;
|
|
36
|
-
stack: boolean;
|
|
37
|
-
stretch: boolean;
|
|
38
|
-
loading: boolean | null | undefined;
|
|
39
|
-
disable: boolean;
|
|
40
|
-
round: boolean;
|
|
41
|
-
percentage: number | undefined;
|
|
42
|
-
darkPercentage: boolean;
|
|
43
|
-
permission: string;
|
|
44
|
-
confirmMessage: string;
|
|
45
|
-
confirmTitle: string;
|
|
46
|
-
};
|
|
47
|
-
declare const handleClick: () => void;
|
|
48
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
49
7
|
declare var __VLS_10: {};
|
|
50
|
-
type __VLS_Slots =
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
51
9
|
default?: (props: typeof __VLS_10) => any;
|
|
52
|
-
}
|
|
53
|
-
declare const __VLS_self: import("vue").DefineComponent<LBtnProps, {
|
|
54
|
-
QBtn: typeof QBtn;
|
|
55
|
-
filteredProps: typeof filteredProps;
|
|
56
|
-
handleClick: typeof handleClick;
|
|
57
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LBtnProps> & Readonly<{}>, {
|
|
58
|
-
permission: string;
|
|
59
|
-
confirmMessage: string;
|
|
60
|
-
confirmTitle: string;
|
|
61
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
};
|
|
62
11
|
declare const __VLS_component: import("vue").DefineComponent<LBtnProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LBtnProps> & Readonly<{}>, {
|
|
63
12
|
permission: string;
|
|
64
13
|
confirmMessage: string;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import type { QCardProps } from 'quasar';
|
|
2
|
-
declare const minimized: import("vue").ModelRef<boolean, string, boolean, boolean>;
|
|
3
|
-
declare const maximized: import("vue").ModelRef<boolean, string, boolean, boolean>;
|
|
4
2
|
export interface LCardProps extends QCardProps {
|
|
5
3
|
loading?: boolean;
|
|
6
4
|
title?: string;
|
|
@@ -13,54 +11,14 @@ export interface LCardProps extends QCardProps {
|
|
|
13
11
|
maximizable?: boolean;
|
|
14
12
|
}
|
|
15
13
|
type __VLS_Props = LCardProps;
|
|
16
|
-
declare const attrs: import("vue").ComputedRef<any>;
|
|
17
|
-
declare const barClass: import("vue").ComputedRef<string[]>;
|
|
18
|
-
declare const showBar: import("vue").ComputedRef<boolean>;
|
|
19
|
-
declare const showSecurity: import("vue").ComputedRef<boolean>;
|
|
20
|
-
declare const roles: import("vue").Ref<{
|
|
21
|
-
name: string;
|
|
22
|
-
granted: boolean;
|
|
23
|
-
}[], {
|
|
24
|
-
name: string;
|
|
25
|
-
granted: boolean;
|
|
26
|
-
}[] | {
|
|
27
|
-
name: string;
|
|
28
|
-
granted: boolean;
|
|
29
|
-
}[]>;
|
|
30
|
-
declare const onUpdatePermission: (role: any) => Promise<void>;
|
|
31
|
-
declare const onClose: () => void;
|
|
32
14
|
type __VLS_PublicProps = __VLS_Props & {
|
|
33
15
|
"minimized"?: boolean;
|
|
34
16
|
"maximized"?: boolean;
|
|
35
17
|
};
|
|
36
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
37
18
|
declare var __VLS_66: {};
|
|
38
|
-
type __VLS_Slots =
|
|
19
|
+
type __VLS_Slots = {} & {
|
|
39
20
|
default?: (props: typeof __VLS_66) => any;
|
|
40
|
-
}
|
|
41
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
42
|
-
minimized: typeof minimized;
|
|
43
|
-
maximized: typeof maximized;
|
|
44
|
-
attrs: typeof attrs;
|
|
45
|
-
barClass: typeof barClass;
|
|
46
|
-
showBar: typeof showBar;
|
|
47
|
-
showSecurity: typeof showSecurity;
|
|
48
|
-
roles: typeof roles;
|
|
49
|
-
onUpdatePermission: typeof onUpdatePermission;
|
|
50
|
-
onClose: typeof onClose;
|
|
51
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
52
|
-
close: (...args: any[]) => void;
|
|
53
|
-
"update:minimized": (value: boolean) => void;
|
|
54
|
-
"update:maximized": (value: boolean) => void;
|
|
55
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
56
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
57
|
-
"onUpdate:minimized"?: ((value: boolean) => any) | undefined;
|
|
58
|
-
"onUpdate:maximized"?: ((value: boolean) => any) | undefined;
|
|
59
|
-
}>, {
|
|
60
|
-
flat: boolean;
|
|
61
|
-
bordered: boolean;
|
|
62
|
-
square: boolean;
|
|
63
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
};
|
|
64
22
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
65
23
|
close: (...args: any[]) => void;
|
|
66
24
|
"update:minimized": (value: boolean) => void;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { type QCheckboxProps } from "quasar";
|
|
2
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
3
2
|
declare var __VLS_6: {};
|
|
4
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
5
4
|
default?: (props: typeof __VLS_6) => any;
|
|
6
|
-
}
|
|
7
|
-
declare const __VLS_self: import("vue").DefineComponent<QCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
};
|
|
8
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>;
|
|
9
7
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
10
8
|
export default _default;
|
|
@@ -4,23 +4,10 @@ export interface LColProps {
|
|
|
4
4
|
xs?: number | string;
|
|
5
5
|
gutter?: "xs" | "sm" | "md" | "lg" | "xl" | "none";
|
|
6
6
|
}
|
|
7
|
-
declare const classes: import("vue").ComputedRef<{
|
|
8
|
-
[x: string]: boolean;
|
|
9
|
-
"col-12": boolean;
|
|
10
|
-
}>;
|
|
11
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
12
7
|
declare var __VLS_1: {};
|
|
13
|
-
type __VLS_Slots =
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
14
9
|
default?: (props: typeof __VLS_1) => any;
|
|
15
|
-
}
|
|
16
|
-
declare const __VLS_self: import("vue").DefineComponent<LColProps, {
|
|
17
|
-
classes: typeof classes;
|
|
18
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LColProps> & Readonly<{}>, {
|
|
19
|
-
xs: number | string;
|
|
20
|
-
sm: number | string;
|
|
21
|
-
md: number | string;
|
|
22
|
-
gutter: "xs" | "sm" | "md" | "lg" | "xl" | "none";
|
|
23
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
};
|
|
24
11
|
declare const __VLS_component: import("vue").DefineComponent<LColProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LColProps> & Readonly<{}>, {
|
|
25
12
|
xs: number | string;
|
|
26
13
|
sm: number | string;
|
|
@@ -4,7 +4,7 @@ import { useLight } from "#imports";
|
|
|
4
4
|
import { date } from "quasar";
|
|
5
5
|
import { useI18n } from "vue-i18n";
|
|
6
6
|
const { t } = useI18n();
|
|
7
|
-
const modelValue = defineModel();
|
|
7
|
+
const modelValue = defineModel({ type: null });
|
|
8
8
|
const props = defineProps({
|
|
9
9
|
label: { type: String, required: false },
|
|
10
10
|
required: { type: Boolean, required: false },
|
|
@@ -16,48 +16,13 @@ export interface LDatePickerProps {
|
|
|
16
16
|
color?: string;
|
|
17
17
|
}
|
|
18
18
|
type __VLS_Props = LDatePickerProps;
|
|
19
|
-
declare const popup: import("vue").Ref<any, any>;
|
|
20
|
-
declare const localValue: import("vue").WritableComputedRef<any, string | Object>;
|
|
21
|
-
declare const dateValue: import("vue").WritableComputedRef<import("vue").ModelRef<any, string, any, any>, string>;
|
|
22
|
-
declare const input_attrs: import("vue").ComputedRef<any>;
|
|
23
|
-
declare const date_attrs: import("vue").ComputedRef<{
|
|
24
|
-
required: boolean;
|
|
25
|
-
color: string;
|
|
26
|
-
mask: string;
|
|
27
|
-
range: boolean;
|
|
28
|
-
disable: boolean;
|
|
29
|
-
}>;
|
|
30
19
|
type __VLS_PublicProps = __VLS_Props & {
|
|
31
20
|
modelValue?: any;
|
|
32
21
|
};
|
|
33
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
34
22
|
declare var __VLS_25: string | number, __VLS_26: any;
|
|
35
|
-
type __VLS_Slots =
|
|
23
|
+
type __VLS_Slots = {} & {
|
|
36
24
|
[K in NonNullable<typeof __VLS_25>]?: (props: typeof __VLS_26) => any;
|
|
37
|
-
}
|
|
38
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
39
|
-
popup: typeof popup;
|
|
40
|
-
localValue: typeof localValue;
|
|
41
|
-
dateValue: typeof dateValue;
|
|
42
|
-
input_attrs: typeof input_attrs;
|
|
43
|
-
date_attrs: typeof date_attrs;
|
|
44
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
45
|
-
"update:modelValue": (value: any) => any;
|
|
46
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
47
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
48
|
-
}>, {
|
|
49
|
-
dense: boolean;
|
|
50
|
-
rounded: boolean;
|
|
51
|
-
square: boolean;
|
|
52
|
-
disable: boolean;
|
|
53
|
-
mask: string;
|
|
54
|
-
hideBottomSpace: boolean;
|
|
55
|
-
filled: boolean;
|
|
56
|
-
outlined: boolean;
|
|
57
|
-
standout: boolean;
|
|
58
|
-
stackLabel: boolean;
|
|
59
|
-
range: boolean;
|
|
60
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
};
|
|
61
26
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
62
27
|
"update:modelValue": (value: any) => any;
|
|
63
28
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -9,4 +9,6 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
getGroupName: () => symbol;
|
|
10
10
|
findAllItems: () => any[];
|
|
11
11
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
-
type __VLS_Slots =
|
|
12
|
+
type __VLS_Slots = {
|
|
13
|
+
default?: ((props: {}) => any) | undefined;
|
|
14
|
+
};
|
|
@@ -1,20 +1,8 @@
|
|
|
1
1
|
import type { QFieldProps } from 'quasar';
|
|
2
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
3
2
|
declare var __VLS_6: {};
|
|
4
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
5
4
|
default?: (props: typeof __VLS_6) => any;
|
|
6
|
-
}
|
|
7
|
-
declare const __VLS_self: import("vue").DefineComponent<QFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QFieldProps> & Readonly<{}>, {
|
|
8
|
-
dense: boolean;
|
|
9
|
-
dark: boolean | null;
|
|
10
|
-
rounded: boolean;
|
|
11
|
-
square: boolean;
|
|
12
|
-
hideBottomSpace: boolean;
|
|
13
|
-
filled: boolean;
|
|
14
|
-
outlined: boolean;
|
|
15
|
-
standout: string | boolean;
|
|
16
|
-
stackLabel: boolean;
|
|
17
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
};
|
|
18
6
|
declare const __VLS_component: import("vue").DefineComponent<QFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<QFieldProps> & Readonly<{}>, {
|
|
19
7
|
dense: boolean;
|
|
20
8
|
dark: boolean | null;
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
import { format } from 'quasar';
|
|
2
|
-
declare const humanStorageSize: typeof format.humanStorageSize;
|
|
3
|
-
declare const modelValue: import("vue").ModelRef<unknown, string, unknown, unknown>;
|
|
4
|
-
declare const system: any;
|
|
5
1
|
export interface LFileProps {
|
|
6
2
|
label?: string;
|
|
7
3
|
filled?: boolean;
|
|
@@ -17,94 +13,13 @@ export interface LFileProps {
|
|
|
17
13
|
color?: string;
|
|
18
14
|
}
|
|
19
15
|
type __VLS_Props = LFileProps;
|
|
20
|
-
declare const show: import("vue").Ref<boolean, boolean>;
|
|
21
|
-
declare const attrs: import("vue").ComputedRef<any>;
|
|
22
|
-
declare const uploadFile: import("vue").Ref<{
|
|
23
|
-
readonly lastModified: number;
|
|
24
|
-
readonly name: string;
|
|
25
|
-
readonly webkitRelativePath: string;
|
|
26
|
-
readonly size: number;
|
|
27
|
-
readonly type: string;
|
|
28
|
-
arrayBuffer: {
|
|
29
|
-
(): Promise<ArrayBuffer>;
|
|
30
|
-
(): Promise<ArrayBuffer>;
|
|
31
|
-
};
|
|
32
|
-
bytes: {
|
|
33
|
-
(): Promise<Uint8Array>;
|
|
34
|
-
(): Promise<Uint8Array>;
|
|
35
|
-
};
|
|
36
|
-
slice: {
|
|
37
|
-
(start?: number, end?: number, contentType?: string): Blob;
|
|
38
|
-
(start?: number, end?: number, contentType?: string): Blob;
|
|
39
|
-
};
|
|
40
|
-
stream: {
|
|
41
|
-
(): ReadableStream<Uint8Array>;
|
|
42
|
-
(): ReadableStream<Uint8Array>;
|
|
43
|
-
};
|
|
44
|
-
text: {
|
|
45
|
-
(): Promise<string>;
|
|
46
|
-
(): Promise<string>;
|
|
47
|
-
};
|
|
48
|
-
} | null, File | {
|
|
49
|
-
readonly lastModified: number;
|
|
50
|
-
readonly name: string;
|
|
51
|
-
readonly webkitRelativePath: string;
|
|
52
|
-
readonly size: number;
|
|
53
|
-
readonly type: string;
|
|
54
|
-
arrayBuffer: {
|
|
55
|
-
(): Promise<ArrayBuffer>;
|
|
56
|
-
(): Promise<ArrayBuffer>;
|
|
57
|
-
};
|
|
58
|
-
bytes: {
|
|
59
|
-
(): Promise<Uint8Array>;
|
|
60
|
-
(): Promise<Uint8Array>;
|
|
61
|
-
};
|
|
62
|
-
slice: {
|
|
63
|
-
(start?: number, end?: number, contentType?: string): Blob;
|
|
64
|
-
(start?: number, end?: number, contentType?: string): Blob;
|
|
65
|
-
};
|
|
66
|
-
stream: {
|
|
67
|
-
(): ReadableStream<Uint8Array>;
|
|
68
|
-
(): ReadableStream<Uint8Array>;
|
|
69
|
-
};
|
|
70
|
-
text: {
|
|
71
|
-
(): Promise<string>;
|
|
72
|
-
(): Promise<string>;
|
|
73
|
-
};
|
|
74
|
-
} | null>;
|
|
75
|
-
declare const onUploadFile: () => Promise<void>;
|
|
76
16
|
type __VLS_PublicProps = __VLS_Props & {
|
|
77
17
|
modelValue?: any;
|
|
78
18
|
};
|
|
79
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
80
19
|
declare var __VLS_53: string | number, __VLS_54: any;
|
|
81
|
-
type __VLS_Slots =
|
|
20
|
+
type __VLS_Slots = {} & {
|
|
82
21
|
[K in NonNullable<typeof __VLS_53>]?: (props: typeof __VLS_54) => any;
|
|
83
|
-
}
|
|
84
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
85
|
-
humanStorageSize: typeof humanStorageSize;
|
|
86
|
-
modelValue: typeof modelValue;
|
|
87
|
-
system: typeof system;
|
|
88
|
-
show: typeof show;
|
|
89
|
-
attrs: typeof attrs;
|
|
90
|
-
uploadFile: typeof uploadFile;
|
|
91
|
-
onUploadFile: typeof onUploadFile;
|
|
92
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
93
|
-
"update:modelValue": (value: any) => any;
|
|
94
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
95
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
96
|
-
}>, {
|
|
97
|
-
path: string;
|
|
98
|
-
dense: boolean;
|
|
99
|
-
rounded: boolean;
|
|
100
|
-
square: boolean;
|
|
101
|
-
filled: boolean;
|
|
102
|
-
outlined: boolean;
|
|
103
|
-
standout: boolean;
|
|
104
|
-
stackLabel: boolean;
|
|
105
|
-
driveIndex: number;
|
|
106
|
-
accept: string;
|
|
107
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
};
|
|
108
23
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
109
24
|
"update:modelValue": (value: any) => any;
|
|
110
25
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -20,4 +20,6 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
20
20
|
readonly showNotification?: boolean | undefined;
|
|
21
21
|
};
|
|
22
22
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
|
-
type __VLS_Slots =
|
|
23
|
+
type __VLS_Slots = {
|
|
24
|
+
default?: ((props: any) => any) | undefined;
|
|
25
|
+
};
|