@bagelink/vue 0.0.411 → 0.0.417
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/components/Accordion.vue.d.ts +1 -1
- package/dist/components/AccordionItem.vue.d.ts +2 -2
- package/dist/components/Alert.vue.d.ts +2 -2
- package/dist/components/Avatar.vue.d.ts +2 -2
- package/dist/components/Avatar.vue.d.ts.map +1 -1
- package/dist/components/Badge.vue.d.ts +3 -2
- package/dist/components/BglVideo.vue.d.ts +1 -1
- package/dist/components/Btn.vue.d.ts +4 -3
- package/dist/components/Card.vue.d.ts +2 -2
- package/dist/components/Carousel.vue.d.ts +3 -3
- package/dist/components/DataPreview.vue.d.ts +10 -9
- package/dist/components/ListItem.vue.d.ts +2 -2
- package/dist/components/ListView.vue.d.ts +1 -1
- package/dist/components/MaterialIcon.vue.d.ts +4 -3
- package/dist/components/Modal.vue.d.ts +5 -5
- package/dist/components/ModalConfirm.vue.d.ts +3 -3
- package/dist/components/ModalConfirm.vue.d.ts.map +1 -1
- package/dist/components/ModalForm.vue.d.ts +27 -26
- package/dist/components/NavBar.vue.d.ts +4 -3
- package/dist/components/NavBar.vue.d.ts.map +1 -1
- package/dist/components/PageTitle.vue.d.ts +2 -2
- package/dist/components/RouterWrapper.vue.d.ts +1 -1
- package/dist/components/TableSchema.vue.d.ts +383 -6
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/Title.vue.d.ts +2 -2
- package/dist/components/TopBar.vue.d.ts +1 -1
- package/dist/components/dashboard/Lineart.vue.d.ts +4 -3
- package/dist/components/form/BglField.vue.d.ts +5 -4
- package/dist/components/form/BglForm.vue.d.ts +6 -5
- package/dist/components/form/BglForm.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/CheckInput.vue.d.ts +14 -14
- package/dist/components/form/inputs/Checkbox.vue.d.ts +4 -4
- package/dist/components/form/inputs/ColorPicker.vue.d.ts +3 -3
- package/dist/components/form/inputs/DateInput.vue.d.ts +5 -5
- package/dist/components/form/inputs/DatePicker.vue.d.ts +10 -3
- package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/FileUpload.vue.d.ts +16 -15
- package/dist/components/form/inputs/JSONInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/RadioPillsInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/RichText.vue.d.ts +3 -3
- package/dist/components/form/inputs/SelectInput.vue.d.ts +4 -3
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TableField.vue.d.ts +3 -3
- package/dist/components/form/inputs/TextInput.vue.d.ts +5 -4
- package/dist/components/form/inputs/ToggleInput.vue.d.ts +12 -12
- package/dist/components/layout/BottomMenu.vue.d.ts +4 -3
- package/dist/components/layout/Layout.vue.d.ts +2 -2
- package/dist/components/layout/SidebarMenu.vue.d.ts +5 -4
- package/dist/components/layout/TabbedLayout.vue.d.ts +5 -4
- package/dist/components/layout/Tabs.vue.d.ts +4 -3
- package/dist/components/layout/TabsBody.vue.d.ts +2 -2
- package/dist/components/layout/TabsNav.vue.d.ts +4 -3
- package/dist/components/layout/tabsManager.d.ts +1 -1
- package/dist/index.cjs +7041 -4955
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +7041 -4955
- package/dist/plugins/bagel.d.ts +2 -1
- package/dist/plugins/modal.d.ts +3 -3
- package/dist/style.css +242 -240
- package/dist/types/BagelForm.d.ts +1 -0
- package/dist/types/BtnOptions.d.ts +2 -1
- package/dist/types/NavLink.d.ts +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/utils/BagelFormUtils.d.ts +2 -1
- package/dist/utils/clickOutside.d.ts +2 -1
- package/dist/utils/index.d.ts +2 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/Avatar.vue +2 -1
- package/src/components/NavBar.vue +235 -226
- package/src/components/TableSchema.vue +34 -4
- package/src/components/form/BglForm.vue +13 -3
- package/src/components/form/inputs/CheckInput.vue +1 -0
- package/src/components/form/inputs/DatePicker.vue +13 -2
- package/src/components/form/inputs/SelectInput.vue +14 -15
|
@@ -1,40 +1,41 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StorageFile } from '../../..';
|
|
2
|
+
|
|
2
3
|
type FSValue = string[] | string | number;
|
|
3
|
-
declare const _default: import(
|
|
4
|
-
modelValue: import(
|
|
4
|
+
declare const _default: import('vue').DefineComponent<{
|
|
5
|
+
modelValue: import('vue').PropType<FSValue>;
|
|
5
6
|
label: {
|
|
6
|
-
type: import(
|
|
7
|
+
type: import('vue').PropType<string>;
|
|
7
8
|
required: true;
|
|
8
9
|
};
|
|
9
10
|
multiple: {
|
|
10
|
-
type: import(
|
|
11
|
+
type: import('vue').PropType<boolean>;
|
|
11
12
|
};
|
|
12
13
|
files: {
|
|
13
|
-
type: import(
|
|
14
|
+
type: import('vue').PropType<StorageFile | StorageFile[]>;
|
|
14
15
|
};
|
|
15
16
|
deleteEndpoint: {
|
|
16
|
-
type: import(
|
|
17
|
+
type: import('vue').PropType<string>;
|
|
17
18
|
};
|
|
18
19
|
bindkey: {
|
|
19
|
-
type: import(
|
|
20
|
+
type: import('vue').PropType<keyof StorageFile>;
|
|
20
21
|
};
|
|
21
|
-
}, {}, unknown, {}, {}, import(
|
|
22
|
-
modelValue: import(
|
|
22
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
modelValue: import('vue').PropType<FSValue>;
|
|
23
24
|
label: {
|
|
24
|
-
type: import(
|
|
25
|
+
type: import('vue').PropType<string>;
|
|
25
26
|
required: true;
|
|
26
27
|
};
|
|
27
28
|
multiple: {
|
|
28
|
-
type: import(
|
|
29
|
+
type: import('vue').PropType<boolean>;
|
|
29
30
|
};
|
|
30
31
|
files: {
|
|
31
|
-
type: import(
|
|
32
|
+
type: import('vue').PropType<StorageFile | StorageFile[]>;
|
|
32
33
|
};
|
|
33
34
|
deleteEndpoint: {
|
|
34
|
-
type: import(
|
|
35
|
+
type: import('vue').PropType<string>;
|
|
35
36
|
};
|
|
36
37
|
bindkey: {
|
|
37
|
-
type: import(
|
|
38
|
+
type: import('vue').PropType<keyof StorageFile>;
|
|
38
39
|
};
|
|
39
40
|
}>>, {}, {}>;
|
|
40
41
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
description?: string | undefined;
|
|
3
3
|
label?: string | undefined;
|
|
4
4
|
modelValue: any;
|
|
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
10
10
|
editMode: boolean;
|
|
11
11
|
placeholder: string;
|
|
12
12
|
label: string;
|
|
13
|
-
}>, {}, unknown, {}, {}, import(
|
|
13
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
14
|
"update:modelValue": (...args: any[]) => void;
|
|
15
|
-
}, string, import(
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
16
16
|
description?: string | undefined;
|
|
17
17
|
label?: string | undefined;
|
|
18
18
|
modelValue: any;
|
|
@@ -2,14 +2,14 @@ type Option = string | number | Record<string, any> | {
|
|
|
2
2
|
label: string;
|
|
3
3
|
value: string | number;
|
|
4
4
|
};
|
|
5
|
-
declare const _default: import(
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
options?: Option[] | undefined;
|
|
7
7
|
modelValue?: any;
|
|
8
8
|
id?: string | undefined;
|
|
9
9
|
label?: string | undefined;
|
|
10
|
-
}>, {}, unknown, {}, {}, import(
|
|
10
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (...args: any[]) => void;
|
|
12
|
-
}, string, import(
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
13
|
options?: Option[] | undefined;
|
|
14
14
|
modelValue?: any;
|
|
15
15
|
id?: string | undefined;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
modelValue: string;
|
|
3
|
-
}>, {}, unknown, {}, {}, import(
|
|
3
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
4
|
"update:modelValue": (...args: any[]) => void;
|
|
5
|
-
}, string, import(
|
|
5
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
modelValue: string;
|
|
7
7
|
}>>> & {
|
|
8
8
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
|
|
1
2
|
type Option = string | number | Record<string, any> | {
|
|
2
3
|
label: string;
|
|
3
4
|
value: string | number;
|
|
4
5
|
};
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
7
|
options: Option[];
|
|
7
8
|
placeholder?: string | undefined;
|
|
8
9
|
disabled?: boolean | undefined;
|
|
@@ -12,9 +13,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
12
13
|
label?: string | undefined;
|
|
13
14
|
fullWidth?: boolean | undefined;
|
|
14
15
|
multiselect?: boolean | undefined;
|
|
15
|
-
}>, {}, unknown, {}, {}, import(
|
|
16
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
17
|
"update:modelValue": (...args: any[]) => void;
|
|
17
|
-
}, string, import(
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
18
19
|
options: Option[];
|
|
19
20
|
placeholder?: string | undefined;
|
|
20
21
|
disabled?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAyDA;AAIA,OAAO,wBAAwB,CAAC;AAKhC,KAAK,MAAM,GACR,MAAM,GACN,MAAM,GACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GACnB;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAyDA;AAIA,OAAO,wBAAwB,CAAC;AAKhC,KAAK,MAAM,GACR,MAAM,GACN,MAAM,GACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GACnB;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoc7C,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
description?: string | undefined;
|
|
3
3
|
meta: Record<string, any>;
|
|
4
4
|
fieldname: string;
|
|
@@ -7,9 +7,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
7
7
|
}>, {
|
|
8
8
|
description: string;
|
|
9
9
|
bagelApp: null;
|
|
10
|
-
}>, {}, unknown, {}, {}, import(
|
|
10
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (...args: any[]) => void;
|
|
12
|
-
}, string, import(
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
13
|
description?: string | undefined;
|
|
14
14
|
meta: Record<string, any>;
|
|
15
15
|
fieldname: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { MaterialIcons } from '../../..';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
id?: string | undefined;
|
|
4
5
|
title?: string | undefined;
|
|
5
6
|
helptext?: string | undefined;
|
|
@@ -27,10 +28,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
28
|
toggleEdit: boolean;
|
|
28
29
|
modelValue: string;
|
|
29
30
|
autocomplete: string;
|
|
30
|
-
}>, {}, unknown, {}, {}, import(
|
|
31
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31
32
|
"update:modelValue": (...args: any[]) => void;
|
|
32
33
|
debounce: (...args: any[]) => void;
|
|
33
|
-
}, string, import(
|
|
34
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
34
35
|
id?: string | undefined;
|
|
35
36
|
title?: string | undefined;
|
|
36
37
|
helptext?: string | undefined;
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
declare const _default: import(
|
|
2
|
-
modelValue: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
modelValue: import('vue').PropType<boolean>;
|
|
3
3
|
label: {
|
|
4
|
-
type: import(
|
|
4
|
+
type: import('vue').PropType<string>;
|
|
5
5
|
required: true;
|
|
6
6
|
};
|
|
7
7
|
id: {
|
|
8
|
-
type: import(
|
|
8
|
+
type: import('vue').PropType<string>;
|
|
9
9
|
};
|
|
10
10
|
title: {
|
|
11
|
-
type: import(
|
|
11
|
+
type: import('vue').PropType<string>;
|
|
12
12
|
};
|
|
13
13
|
small: {
|
|
14
|
-
type: import(
|
|
14
|
+
type: import('vue').PropType<boolean>;
|
|
15
15
|
};
|
|
16
|
-
}, {}, unknown, {}, {}, import(
|
|
17
|
-
modelValue: import(
|
|
16
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
modelValue: import('vue').PropType<boolean>;
|
|
18
18
|
label: {
|
|
19
|
-
type: import(
|
|
19
|
+
type: import('vue').PropType<string>;
|
|
20
20
|
required: true;
|
|
21
21
|
};
|
|
22
22
|
id: {
|
|
23
|
-
type: import(
|
|
23
|
+
type: import('vue').PropType<string>;
|
|
24
24
|
};
|
|
25
25
|
title: {
|
|
26
|
-
type: import(
|
|
26
|
+
type: import('vue').PropType<string>;
|
|
27
27
|
};
|
|
28
28
|
small: {
|
|
29
|
-
type: import(
|
|
29
|
+
type: import('vue').PropType<boolean>;
|
|
30
30
|
};
|
|
31
31
|
}>>, {}, {}>;
|
|
32
32
|
export default _default;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { NavLink } from '../..';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
navLinks: NavLink[];
|
|
4
|
-
}>, {}, unknown, {}, {}, import(
|
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
5
6
|
navLinks: NavLink[];
|
|
6
7
|
}>>>, {}, {}>, {
|
|
7
8
|
brand?(_: {}): any;
|
|
@@ -6,14 +6,14 @@ type LayoutProrps = {
|
|
|
6
6
|
mRows?: string[];
|
|
7
7
|
rows?: string[];
|
|
8
8
|
};
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<LayoutProrps>, {
|
|
10
10
|
gap: number;
|
|
11
11
|
h100: boolean;
|
|
12
12
|
columns: () => never[];
|
|
13
13
|
rows: () => never[];
|
|
14
14
|
mColumns: () => never[];
|
|
15
15
|
mRows: () => never[];
|
|
16
|
-
}>, {}, unknown, {}, {}, import(
|
|
16
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<LayoutProrps>, {
|
|
17
17
|
gap: number;
|
|
18
18
|
h100: boolean;
|
|
19
19
|
columns: () => never[];
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { NavLink } from '../..';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
navLinks?: NavLink[] | undefined;
|
|
4
5
|
expandable?: boolean | undefined;
|
|
5
6
|
open: boolean;
|
|
6
|
-
}>, {}, unknown, {}, {}, import(
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
8
|
"update:open": (...args: any[]) => void;
|
|
8
|
-
}, string, import(
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
10
|
navLinks?: NavLink[] | undefined;
|
|
10
11
|
expandable?: boolean | undefined;
|
|
11
12
|
open: boolean;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { Router } from 'vue-router';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
title?: string | undefined;
|
|
4
5
|
tabs: string[];
|
|
5
6
|
modelValue?: string | undefined;
|
|
6
7
|
router?: Router | undefined;
|
|
7
8
|
sideTabs?: boolean | undefined;
|
|
8
|
-
}>, {}, unknown, {}, {}, import(
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
10
|
"update:modelValue": (...args: any[]) => void;
|
|
10
|
-
}, string, import(
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
11
12
|
title?: string | undefined;
|
|
12
13
|
tabs: string[];
|
|
13
14
|
modelValue?: string | undefined;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { Tab } from '../..';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
tabs: Tab[];
|
|
4
5
|
modelValue?: string | undefined;
|
|
5
|
-
}>, {}, unknown, {}, {}, import(
|
|
6
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
7
|
tabs: Tab[];
|
|
7
8
|
modelValue?: string | undefined;
|
|
8
9
|
}>>>, {}, {}>, Partial<Record<any, (_: {}) => any>>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
group: string;
|
|
3
|
-
}>, {}, unknown, {}, {}, import(
|
|
3
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
group: string;
|
|
5
5
|
}>>>, {}, {}>, Partial<Record<any, (_: {}) => any>>>;
|
|
6
6
|
export default _default;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { Tab } from '../..';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
title?: string | undefined;
|
|
4
5
|
tabs: Tab[];
|
|
5
6
|
modelValue?: string | undefined;
|
|
6
7
|
sideTabs?: boolean | undefined;
|
|
7
8
|
group: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import(
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
10
|
title?: string | undefined;
|
|
10
11
|
tabs: Tab[];
|
|
11
12
|
modelValue?: string | undefined;
|