@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,4 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
2
|
default?(_: {}): any;
|
|
3
3
|
}>;
|
|
4
4
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
label: string;
|
|
3
3
|
id?: string | undefined;
|
|
4
|
-
}>, {}, unknown, {}, {}, import(
|
|
4
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
5
5
|
label: string;
|
|
6
6
|
id?: string | undefined;
|
|
7
7
|
}>>>, {}, {}>, {
|
|
@@ -3,9 +3,9 @@ type Props = {
|
|
|
3
3
|
dismissable?: boolean;
|
|
4
4
|
type: 'info' | 'warning' | 'error';
|
|
5
5
|
};
|
|
6
|
-
declare const _default: import(
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
7
7
|
type: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import(
|
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
9
9
|
type: string;
|
|
10
10
|
}>>>, {
|
|
11
11
|
type: "error" | "info" | "warning";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
fallback?: string | undefined;
|
|
3
3
|
src?: string | undefined;
|
|
4
4
|
name?: string | undefined;
|
|
5
5
|
size?: number | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
size: number;
|
|
8
|
-
}>, {}, unknown, {}, {}, import(
|
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
9
|
fallback?: string | undefined;
|
|
10
10
|
src?: string | undefined;
|
|
11
11
|
name?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Avatar.vue.d.ts","sourceRoot":"","sources":["../../src/components/Avatar.vue"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Avatar.vue.d.ts","sourceRoot":"","sources":["../../src/components/Avatar.vue"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;;;UAuGS,MAAM;;AATf,wBAWG;AACH,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,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { MaterialIcons } from '..';
|
|
2
|
+
|
|
2
3
|
type Props = {
|
|
3
4
|
'color'?: 'green' | 'red' | 'blue' | 'light' | 'gray';
|
|
4
5
|
'size'?: string;
|
|
@@ -6,7 +7,7 @@ type Props = {
|
|
|
6
7
|
'icon'?: MaterialIcons;
|
|
7
8
|
'icon.end'?: MaterialIcons;
|
|
8
9
|
};
|
|
9
|
-
declare const _default: import(
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
|
10
11
|
export default _default;
|
|
11
12
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
13
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -6,7 +6,7 @@ type Props = {
|
|
|
6
6
|
controls?: boolean;
|
|
7
7
|
loop?: boolean;
|
|
8
8
|
};
|
|
9
|
-
declare const _default: import(
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
|
10
10
|
export default _default;
|
|
11
11
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
12
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { MaterialIcons, ThemeType } from '..';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
disabled?: boolean | undefined;
|
|
4
5
|
icon?: MaterialIcons | undefined;
|
|
5
6
|
'icon.end'?: MaterialIcons | undefined;
|
|
@@ -25,7 +26,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
25
26
|
role: string;
|
|
26
27
|
is: string;
|
|
27
28
|
border: boolean;
|
|
28
|
-
}>, {}, unknown, {}, {}, import(
|
|
29
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
29
30
|
disabled?: boolean | undefined;
|
|
30
31
|
icon?: MaterialIcons | undefined;
|
|
31
32
|
'icon.end'?: MaterialIcons | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
label?: string | undefined;
|
|
3
3
|
thin?: boolean | undefined;
|
|
4
4
|
outline?: boolean | undefined;
|
|
@@ -6,7 +6,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
6
6
|
overflowX?: boolean | undefined;
|
|
7
7
|
overflowY?: boolean | undefined;
|
|
8
8
|
bg?: "info" | "light" | "warning" | "white" | "gray" | "primary" | "transparent" | "dark" | "secondary" | "success" | "danger" | undefined;
|
|
9
|
-
}>, {}, unknown, {}, {}, import(
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
10
|
label?: string | undefined;
|
|
11
11
|
thin?: boolean | undefined;
|
|
12
12
|
outline?: boolean | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
2
2
|
autoHeight: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -19,9 +19,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
19
19
|
type: NumberConstructor;
|
|
20
20
|
default: number;
|
|
21
21
|
};
|
|
22
|
-
}, {}, unknown, {}, {}, import(
|
|
22
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
23
|
"update:index": (...args: any[]) => void;
|
|
24
|
-
}, string, import(
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
25
25
|
autoHeight: {
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
default: boolean;
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { BglFormSchemaT } from '..';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
|
+
data: import('vue').PropType<Record<string, any>>;
|
|
4
5
|
schema: {
|
|
5
|
-
type: import(
|
|
6
|
+
type: import('vue').PropType<BglFormSchemaT>;
|
|
6
7
|
};
|
|
7
8
|
title: {
|
|
8
|
-
type: import(
|
|
9
|
+
type: import('vue').PropType<string>;
|
|
9
10
|
};
|
|
10
|
-
}, {}, unknown, {}, {}, import(
|
|
11
|
-
data: import(
|
|
11
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
12
|
+
data: import('vue').PropType<Record<string, any>>;
|
|
12
13
|
schema: {
|
|
13
|
-
type: import(
|
|
14
|
+
type: import('vue').PropType<BglFormSchemaT>;
|
|
14
15
|
};
|
|
15
16
|
title: {
|
|
16
|
-
type: import(
|
|
17
|
+
type: import('vue').PropType<string>;
|
|
17
18
|
};
|
|
18
19
|
}>>, {}, {}>, {
|
|
19
20
|
footer?(_: {}): any;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
src?: string | undefined;
|
|
3
3
|
showAvatar?: boolean | undefined;
|
|
4
4
|
to?: string | undefined;
|
|
5
5
|
title?: string | undefined;
|
|
6
6
|
subtitle?: string | undefined;
|
|
7
|
-
}>, {}, unknown, {}, {}, import(
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
src?: string | undefined;
|
|
9
9
|
showAvatar?: boolean | undefined;
|
|
10
10
|
to?: string | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
2
|
header?(_: {}): any;
|
|
3
3
|
default?(_: {}): any;
|
|
4
4
|
}>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { MaterialIcons } from '..';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
icon?: MaterialIcons | undefined;
|
|
4
5
|
name?: MaterialIcons | undefined;
|
|
5
6
|
size?: number | undefined;
|
|
6
7
|
color?: string | undefined;
|
|
7
|
-
}>, {}, unknown, {}, {}, import(
|
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
9
|
icon?: MaterialIcons | undefined;
|
|
9
10
|
name?: MaterialIcons | undefined;
|
|
10
11
|
size?: number | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
import { BtnOptions } from '..';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
side?: boolean | undefined;
|
|
5
5
|
title?: string | undefined;
|
|
6
6
|
width?: string | undefined;
|
|
@@ -9,9 +9,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
9
9
|
visible?: boolean | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
closeModal: () => void;
|
|
12
|
-
}, unknown, {}, {}, import(
|
|
12
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
13
|
"update:visible": (...args: any[]) => void;
|
|
14
|
-
}, string, import(
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
15
15
|
side?: boolean | undefined;
|
|
16
16
|
title?: string | undefined;
|
|
17
17
|
width?: string | undefined;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
title: string;
|
|
3
3
|
message: string;
|
|
4
4
|
resolve: (value: boolean) => void;
|
|
5
|
-
}>, {}, unknown, {}, {}, import(
|
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
6
|
"update:visible": (...args: any[]) => void;
|
|
7
|
-
}, string, import(
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
title: string;
|
|
9
9
|
message: string;
|
|
10
10
|
resolve: (value: boolean) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModalConfirm.vue.d.ts","sourceRoot":"","sources":["../../src/components/ModalConfirm.vue"],"names":[],"mappings":"AASA;;WA6HQ,MAAM;aACJ,MAAM;
|
|
1
|
+
{"version":3,"file":"ModalConfirm.vue.d.ts","sourceRoot":"","sources":["../../src/components/ModalConfirm.vue"],"names":[],"mappings":"AASA;;WA6HQ,MAAM;aACJ,MAAM;aACN,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI;;;;WAF1B,MAAM;aACJ,MAAM;aACN,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI;;;;AARlC,wBAWG;AACH,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"}
|
|
@@ -1,74 +1,75 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BglFormSchemaT, BtnOptions } from '..';
|
|
2
|
+
|
|
2
3
|
declare function setFormValues(values: Record<string, any>): void;
|
|
3
|
-
declare const _default: import(
|
|
4
|
-
modelValue: import(
|
|
4
|
+
declare const _default: import('vue').DefineComponent<{
|
|
5
|
+
modelValue: import('vue').PropType<Record<string, any>>;
|
|
5
6
|
side: {
|
|
6
|
-
type: import(
|
|
7
|
+
type: import('vue').PropType<boolean>;
|
|
7
8
|
};
|
|
8
9
|
title: {
|
|
9
|
-
type: import(
|
|
10
|
+
type: import('vue').PropType<string>;
|
|
10
11
|
};
|
|
11
12
|
width: {
|
|
12
|
-
type: import(
|
|
13
|
+
type: import('vue').PropType<string>;
|
|
13
14
|
};
|
|
14
15
|
dismissable: {
|
|
15
|
-
type: import(
|
|
16
|
+
type: import('vue').PropType<boolean>;
|
|
16
17
|
};
|
|
17
18
|
actions: {
|
|
18
|
-
type: import(
|
|
19
|
+
type: import('vue').PropType<BtnOptions[]>;
|
|
19
20
|
};
|
|
20
21
|
schema: {
|
|
21
|
-
type: import(
|
|
22
|
+
type: import('vue').PropType<BglFormSchemaT | (() => BglFormSchemaT)>;
|
|
22
23
|
required: true;
|
|
23
24
|
};
|
|
24
25
|
onSubmit: {
|
|
25
|
-
type: import(
|
|
26
|
+
type: import('vue').PropType<(formData: any) => Promise<void>>;
|
|
26
27
|
};
|
|
27
28
|
onDelete: {
|
|
28
|
-
type: import(
|
|
29
|
+
type: import('vue').PropType<(id: string) => void>;
|
|
29
30
|
};
|
|
30
31
|
visible: {
|
|
31
|
-
type: import(
|
|
32
|
+
type: import('vue').PropType<boolean>;
|
|
32
33
|
};
|
|
33
34
|
onError: {
|
|
34
|
-
type: import(
|
|
35
|
+
type: import('vue').PropType<(err: any) => void>;
|
|
35
36
|
};
|
|
36
37
|
}, {
|
|
37
38
|
setFormValues: typeof setFormValues;
|
|
38
|
-
}, unknown, {}, {}, import(
|
|
39
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
39
40
|
"update:visible": (...args: any[]) => void;
|
|
40
|
-
}, string, import(
|
|
41
|
-
modelValue: import(
|
|
41
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
42
|
+
modelValue: import('vue').PropType<Record<string, any>>;
|
|
42
43
|
side: {
|
|
43
|
-
type: import(
|
|
44
|
+
type: import('vue').PropType<boolean>;
|
|
44
45
|
};
|
|
45
46
|
title: {
|
|
46
|
-
type: import(
|
|
47
|
+
type: import('vue').PropType<string>;
|
|
47
48
|
};
|
|
48
49
|
width: {
|
|
49
|
-
type: import(
|
|
50
|
+
type: import('vue').PropType<string>;
|
|
50
51
|
};
|
|
51
52
|
dismissable: {
|
|
52
|
-
type: import(
|
|
53
|
+
type: import('vue').PropType<boolean>;
|
|
53
54
|
};
|
|
54
55
|
actions: {
|
|
55
|
-
type: import(
|
|
56
|
+
type: import('vue').PropType<BtnOptions[]>;
|
|
56
57
|
};
|
|
57
58
|
schema: {
|
|
58
|
-
type: import(
|
|
59
|
+
type: import('vue').PropType<BglFormSchemaT | (() => BglFormSchemaT)>;
|
|
59
60
|
required: true;
|
|
60
61
|
};
|
|
61
62
|
onSubmit: {
|
|
62
|
-
type: import(
|
|
63
|
+
type: import('vue').PropType<(formData: any) => Promise<void>>;
|
|
63
64
|
};
|
|
64
65
|
onDelete: {
|
|
65
|
-
type: import(
|
|
66
|
+
type: import('vue').PropType<(id: string) => void>;
|
|
66
67
|
};
|
|
67
68
|
visible: {
|
|
68
|
-
type: import(
|
|
69
|
+
type: import('vue').PropType<boolean>;
|
|
69
70
|
};
|
|
70
71
|
onError: {
|
|
71
|
-
type: import(
|
|
72
|
+
type: import('vue').PropType<(err: any) => void>;
|
|
72
73
|
};
|
|
73
74
|
}>> & {
|
|
74
75
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { MaterialIcons, NavLink } from '..';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
footerLinks?: NavLink[] | undefined;
|
|
4
5
|
links?: NavLink[] | undefined;
|
|
5
6
|
homeIcon?: MaterialIcons | undefined;
|
|
@@ -11,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
11
12
|
homeTo: string;
|
|
12
13
|
links: () => never[];
|
|
13
14
|
footerLinks: () => never[];
|
|
14
|
-
}>, {}, unknown, {}, {}, import(
|
|
15
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
15
16
|
footerLinks?: NavLink[] | undefined;
|
|
16
17
|
links?: NavLink[] | undefined;
|
|
17
18
|
homeIcon?: MaterialIcons | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavBar.vue.d.ts","sourceRoot":"","sources":["../../src/components/NavBar.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NavBar.vue.d.ts","sourceRoot":"","sources":["../../src/components/NavBar.vue"],"names":[],"mappings":"AAiDA;AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsV5D,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,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
2
2
|
value: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
-
}, {}, unknown, {}, {}, import(
|
|
6
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
value: {
|
|
8
8
|
type: StringConstructor;
|
|
9
9
|
default: string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
3
3
|
//# sourceMappingURL=RouterWrapper.vue.d.ts.map
|