@vue/devtools-ui 7.6.5 → 7.6.6
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/types/src/components/Badge.d.ts +7 -2
- package/dist/types/src/components/Button.d.ts +15 -43
- package/dist/types/src/components/Card.d.ts +7 -2
- package/dist/types/src/components/Checkbox.d.ts +6 -27
- package/dist/types/src/components/CodeBlock.d.ts +3 -25
- package/dist/types/src/components/Confirm.d.ts +18 -46
- package/dist/types/src/components/DarkToggle.d.ts +15 -35
- package/dist/types/src/components/Dialog.d.ts +17 -45
- package/dist/types/src/components/Drawer.d.ts +14 -41
- package/dist/types/src/components/Dropdown.d.ts +7 -8
- package/dist/types/src/components/DropdownButton.d.ts +12 -29
- package/dist/types/src/components/FormField.d.ts +6 -31
- package/dist/types/src/components/IcIcon.d.ts +3 -12
- package/dist/types/src/components/Icon.d.ts +4 -25
- package/dist/types/src/components/Input.d.ts +8 -49
- package/dist/types/src/components/Notification.d.ts +2 -28
- package/dist/types/src/components/Overlay.d.ts +9 -25
- package/dist/types/src/components/Select.d.ts +7 -8
- package/dist/types/src/components/Switch.d.ts +13 -17
- package/dist/types/src/components/Tooltip.d.ts +9 -14
- package/dist/types/src/components/index.d.ts +0 -1
- package/dist/types/src/composables/shiki.d.ts +0 -1
- package/dist/types/src/composables/theme.d.ts +0 -1
- package/dist/types/src/index.d.ts +0 -1
- package/dist/types/src/types/floating-vue.d.ts +0 -1
- package/dist/types/theme/uno.config.d.ts +0 -1
- package/package.json +8 -8
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
-
|
|
2
|
+
slots: {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
refs: {};
|
|
6
|
+
attrs: Partial<{}>;
|
|
3
7
|
};
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
4
9
|
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>;
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
6
11
|
export default _default;
|
|
7
12
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
8
13
|
new (): {
|
|
@@ -9,31 +9,20 @@ export interface ButtonProps {
|
|
|
9
9
|
}
|
|
10
10
|
export type ButtonType = 'default' | 'primary' | 'accent' | 'danger' | 'warning' | 'info' | 'success';
|
|
11
11
|
declare function __VLS_template(): {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
slots: {
|
|
13
|
+
icon?(_: {
|
|
14
|
+
class: string;
|
|
15
|
+
}): any;
|
|
16
|
+
default?(_: {}): any;
|
|
17
|
+
"icon-right"?(_: {}): any;
|
|
18
|
+
};
|
|
19
|
+
refs: {};
|
|
20
|
+
attrs: Partial<{}>;
|
|
17
21
|
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
disabled: boolean;
|
|
23
|
-
size: string;
|
|
24
|
-
flat: boolean;
|
|
25
|
-
outlined: boolean;
|
|
26
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
|
-
click: (e: MouseEvent) => void;
|
|
28
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps>, {
|
|
29
|
-
type: string;
|
|
30
|
-
round: string;
|
|
31
|
-
loading: boolean;
|
|
32
|
-
disabled: boolean;
|
|
33
|
-
size: string;
|
|
34
|
-
flat: boolean;
|
|
35
|
-
outlined: boolean;
|
|
36
|
-
}>>> & Readonly<{
|
|
22
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
|
+
declare const __VLS_component: import('vue').DefineComponent<ButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
24
|
+
click: (e: MouseEvent) => any;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<ButtonProps> & Readonly<{
|
|
37
26
|
onClick?: ((e: MouseEvent) => any) | undefined;
|
|
38
27
|
}>, {
|
|
39
28
|
flat: boolean;
|
|
@@ -43,26 +32,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
43
32
|
disabled: boolean;
|
|
44
33
|
size: "normal" | "mini";
|
|
45
34
|
outlined: boolean;
|
|
46
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
47
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
35
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
36
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
48
37
|
export default _default;
|
|
49
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
50
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
51
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
52
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
53
|
-
} : {
|
|
54
|
-
type: import('vue').PropType<T[K]>;
|
|
55
|
-
required: true;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
type __VLS_WithDefaults<P, D> = {
|
|
59
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
60
|
-
default: D[K];
|
|
61
|
-
}> : P[K];
|
|
62
|
-
};
|
|
63
|
-
type __VLS_Prettify<T> = {
|
|
64
|
-
[K in keyof T]: T[K];
|
|
65
|
-
} & {};
|
|
66
38
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
67
39
|
new (): {
|
|
68
40
|
$slots: S;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
-
|
|
2
|
+
slots: {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
refs: {};
|
|
6
|
+
attrs: Partial<{}>;
|
|
3
7
|
};
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
4
9
|
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>;
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
6
11
|
export default _default;
|
|
7
12
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
8
13
|
new (): {
|
|
@@ -1,35 +1,14 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
modelValue: boolean;
|
|
3
3
|
variant?: "normal" | "accent";
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
"update:modelValue": (value: boolean) => void;
|
|
8
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
|
+
"update:modelValue": (value: boolean) => any;
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
9
7
|
modelValue: boolean;
|
|
10
8
|
variant?: "normal" | "accent";
|
|
11
|
-
}
|
|
12
|
-
variant: string;
|
|
13
|
-
}>>> & Readonly<{
|
|
9
|
+
}> & Readonly<{
|
|
14
10
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15
11
|
}>, {
|
|
16
12
|
variant: "normal" | "accent";
|
|
17
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
14
|
export default _default;
|
|
19
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
21
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
23
|
-
} : {
|
|
24
|
-
type: import('vue').PropType<T[K]>;
|
|
25
|
-
required: true;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
type __VLS_WithDefaults<P, D> = {
|
|
29
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
30
|
-
default: D[K];
|
|
31
|
-
}> : P[K];
|
|
32
|
-
};
|
|
33
|
-
type __VLS_Prettify<T> = {
|
|
34
|
-
[K in keyof T]: T[K];
|
|
35
|
-
} & {};
|
|
@@ -1,37 +1,15 @@
|
|
|
1
1
|
import { BuiltinLanguage } from 'shiki';
|
|
2
|
-
|
|
3
2
|
export interface VueCodeBlockProps {
|
|
4
3
|
code: string;
|
|
5
4
|
lang?: BuiltinLanguage | 'text';
|
|
6
5
|
lines?: boolean;
|
|
7
6
|
transformRendered?: (code: string) => string;
|
|
8
7
|
}
|
|
9
|
-
declare const _default: import('vue').DefineComponent<import('vue').
|
|
10
|
-
lines: boolean;
|
|
11
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
declare const _default: import('vue').DefineComponent<VueCodeBlockProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
9
|
loaded: (...args: any[]) => void;
|
|
13
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
14
|
-
lines: boolean;
|
|
15
|
-
}>>> & Readonly<{
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<VueCodeBlockProps> & Readonly<{
|
|
16
11
|
onLoaded?: ((...args: any[]) => any) | undefined;
|
|
17
12
|
}>, {
|
|
18
13
|
lines: boolean;
|
|
19
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
15
|
export default _default;
|
|
21
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
22
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
23
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
24
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
25
|
-
} : {
|
|
26
|
-
type: import('vue').PropType<T[K]>;
|
|
27
|
-
required: true;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
type __VLS_WithDefaults<P, D> = {
|
|
31
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
32
|
-
default: D[K];
|
|
33
|
-
}> : P[K];
|
|
34
|
-
};
|
|
35
|
-
type __VLS_Prettify<T> = {
|
|
36
|
-
[K in keyof T]: T[K];
|
|
37
|
-
} & {};
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
slots: {
|
|
3
|
+
default?(_: {
|
|
4
|
+
class: string;
|
|
5
|
+
}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
attrs: Partial<{}>;
|
|
5
9
|
};
|
|
6
|
-
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
7
12
|
modelValue: boolean;
|
|
8
13
|
content: string;
|
|
9
14
|
cancelText?: string;
|
|
@@ -13,20 +18,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
13
18
|
title?: string;
|
|
14
19
|
loading?: boolean;
|
|
15
20
|
autoClose?: boolean;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
loading: boolean;
|
|
23
|
-
autoClose: boolean;
|
|
24
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
-
"update:modelValue": (value: boolean) => void;
|
|
26
|
-
close: () => void;
|
|
27
|
-
confirm: () => void;
|
|
28
|
-
cancel: () => void;
|
|
29
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (value: boolean) => any;
|
|
23
|
+
close: () => any;
|
|
24
|
+
confirm: () => any;
|
|
25
|
+
cancel: () => any;
|
|
26
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
30
27
|
modelValue: boolean;
|
|
31
28
|
content: string;
|
|
32
29
|
cancelText?: string;
|
|
@@ -36,15 +33,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
36
33
|
title?: string;
|
|
37
34
|
loading?: boolean;
|
|
38
35
|
autoClose?: boolean;
|
|
39
|
-
}
|
|
40
|
-
cancelText: string;
|
|
41
|
-
confirmText: string;
|
|
42
|
-
width: string;
|
|
43
|
-
height: string;
|
|
44
|
-
title: string;
|
|
45
|
-
loading: boolean;
|
|
46
|
-
autoClose: boolean;
|
|
47
|
-
}>>> & Readonly<{
|
|
36
|
+
}> & Readonly<{
|
|
48
37
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
49
38
|
onClose?: (() => any) | undefined;
|
|
50
39
|
onConfirm?: (() => any) | undefined;
|
|
@@ -57,26 +46,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
57
46
|
height: string;
|
|
58
47
|
cancelText: string;
|
|
59
48
|
confirmText: string;
|
|
60
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
61
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
50
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
62
51
|
export default _default;
|
|
63
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
64
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
65
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
66
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
67
|
-
} : {
|
|
68
|
-
type: import('vue').PropType<T[K]>;
|
|
69
|
-
required: true;
|
|
70
|
-
};
|
|
71
|
-
};
|
|
72
|
-
type __VLS_WithDefaults<P, D> = {
|
|
73
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
74
|
-
default: D[K];
|
|
75
|
-
}> : P[K];
|
|
76
|
-
};
|
|
77
|
-
type __VLS_Prettify<T> = {
|
|
78
|
-
[K in keyof T]: T[K];
|
|
79
|
-
} & {};
|
|
80
52
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
81
53
|
new (): {
|
|
82
54
|
$slots: S;
|
|
@@ -4,52 +4,32 @@
|
|
|
4
4
|
*/
|
|
5
5
|
declare function toggle(event?: MouseEvent): void;
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {
|
|
9
|
+
mode: "dark" | "light" | "auto";
|
|
10
|
+
isDark: boolean;
|
|
11
|
+
toggle: typeof toggle;
|
|
12
|
+
}): any;
|
|
13
|
+
};
|
|
14
|
+
refs: {};
|
|
15
|
+
attrs: Partial<{}>;
|
|
12
16
|
};
|
|
13
|
-
|
|
17
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
14
19
|
isDark?: boolean;
|
|
15
20
|
animation?: boolean;
|
|
16
21
|
animationDuration?: number;
|
|
17
|
-
}
|
|
18
|
-
isDark: boolean;
|
|
19
|
-
animation: boolean;
|
|
20
|
-
animationDuration: number;
|
|
21
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
22
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
22
23
|
isDark?: boolean;
|
|
23
24
|
animation?: boolean;
|
|
24
25
|
animationDuration?: number;
|
|
25
|
-
}>, {
|
|
26
|
-
isDark: boolean;
|
|
27
|
-
animation: boolean;
|
|
28
|
-
animationDuration: number;
|
|
29
|
-
}>>> & Readonly<{}>, {
|
|
26
|
+
}> & Readonly<{}>, {
|
|
30
27
|
animation: boolean;
|
|
31
28
|
isDark: boolean;
|
|
32
29
|
animationDuration: number;
|
|
33
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
34
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
35
32
|
export default _default;
|
|
36
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
38
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
39
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
40
|
-
} : {
|
|
41
|
-
type: import('vue').PropType<T[K]>;
|
|
42
|
-
required: true;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
type __VLS_WithDefaults<P, D> = {
|
|
46
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
47
|
-
default: D[K];
|
|
48
|
-
}> : P[K];
|
|
49
|
-
};
|
|
50
|
-
type __VLS_Prettify<T> = {
|
|
51
|
-
[K in keyof T]: T[K];
|
|
52
|
-
} & {};
|
|
53
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
54
34
|
new (): {
|
|
55
35
|
$slots: S;
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import { OverlayProps } from './Overlay';
|
|
2
|
-
|
|
3
2
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
slots: {
|
|
4
|
+
title?(_: {}): any;
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
footer?(_: {}): any;
|
|
7
|
+
footer?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
attrs: Partial<{}>;
|
|
7
11
|
};
|
|
8
|
-
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
9
14
|
modelValue?: boolean;
|
|
10
15
|
autoClose?: boolean;
|
|
11
16
|
title?: string;
|
|
@@ -13,18 +18,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
13
18
|
height?: string;
|
|
14
19
|
closable?: boolean;
|
|
15
20
|
mountTo?: string | HTMLElement;
|
|
16
|
-
} & OverlayProps
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
width: string;
|
|
21
|
-
height: string;
|
|
22
|
-
closable: boolean;
|
|
23
|
-
mountTo: string;
|
|
24
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
-
close: () => void;
|
|
26
|
-
"update:modelValue": (value: boolean) => void;
|
|
27
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
|
+
} & OverlayProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
22
|
+
"update:modelValue": (value: boolean) => any;
|
|
23
|
+
close: () => any;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
28
25
|
modelValue?: boolean;
|
|
29
26
|
autoClose?: boolean;
|
|
30
27
|
title?: string;
|
|
@@ -32,15 +29,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
32
29
|
height?: string;
|
|
33
30
|
closable?: boolean;
|
|
34
31
|
mountTo?: string | HTMLElement;
|
|
35
|
-
} & OverlayProps
|
|
36
|
-
title: string;
|
|
37
|
-
modelValue: boolean;
|
|
38
|
-
autoClose: boolean;
|
|
39
|
-
width: string;
|
|
40
|
-
height: string;
|
|
41
|
-
closable: boolean;
|
|
42
|
-
mountTo: string;
|
|
43
|
-
}>>> & Readonly<{
|
|
32
|
+
} & OverlayProps> & Readonly<{
|
|
44
33
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
45
34
|
onClose?: (() => any) | undefined;
|
|
46
35
|
}>, {
|
|
@@ -51,26 +40,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
51
40
|
height: string;
|
|
52
41
|
closable: boolean;
|
|
53
42
|
mountTo: string | HTMLElement;
|
|
54
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
55
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
43
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
44
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
56
45
|
export default _default;
|
|
57
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
58
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
59
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
60
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
61
|
-
} : {
|
|
62
|
-
type: import('vue').PropType<T[K]>;
|
|
63
|
-
required: true;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
type __VLS_WithDefaults<P, D> = {
|
|
67
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
68
|
-
default: D[K];
|
|
69
|
-
}> : P[K];
|
|
70
|
-
};
|
|
71
|
-
type __VLS_Prettify<T> = {
|
|
72
|
-
[K in keyof T]: T[K];
|
|
73
|
-
} & {};
|
|
74
46
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
75
47
|
new (): {
|
|
76
48
|
$slots: S;
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { OverlayProps } from './Overlay';
|
|
2
|
-
|
|
3
2
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
attrs: Partial<{}>;
|
|
5
8
|
};
|
|
6
|
-
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
7
11
|
modelValue: boolean;
|
|
8
12
|
mountTo?: string | HTMLElement;
|
|
9
13
|
placement?: "left" | "right" | "top" | "bottom";
|
|
@@ -13,17 +17,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
13
17
|
permanent?: boolean;
|
|
14
18
|
contentBlur?: boolean;
|
|
15
19
|
top?: string | HTMLElement;
|
|
16
|
-
} & OverlayProps
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
closable: boolean;
|
|
21
|
-
permanent: boolean;
|
|
22
|
-
contentBlur: boolean;
|
|
23
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
24
|
-
"update:modelValue": (modelValue: boolean) => void;
|
|
25
|
-
close: () => void;
|
|
26
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
20
|
+
} & OverlayProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
22
|
+
close: () => any;
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
27
24
|
modelValue: boolean;
|
|
28
25
|
mountTo?: string | HTMLElement;
|
|
29
26
|
placement?: "left" | "right" | "top" | "bottom";
|
|
@@ -33,14 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
33
30
|
permanent?: boolean;
|
|
34
31
|
contentBlur?: boolean;
|
|
35
32
|
top?: string | HTMLElement;
|
|
36
|
-
} & OverlayProps
|
|
37
|
-
mountTo: string;
|
|
38
|
-
placement: string;
|
|
39
|
-
closeOutside: boolean;
|
|
40
|
-
closable: boolean;
|
|
41
|
-
permanent: boolean;
|
|
42
|
-
contentBlur: boolean;
|
|
43
|
-
}>>> & Readonly<{
|
|
33
|
+
} & OverlayProps> & Readonly<{
|
|
44
34
|
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
45
35
|
onClose?: (() => any) | undefined;
|
|
46
36
|
}>, {
|
|
@@ -50,26 +40,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
50
40
|
closeOutside: boolean;
|
|
51
41
|
permanent: boolean;
|
|
52
42
|
contentBlur: boolean;
|
|
53
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
54
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
43
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
44
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
55
45
|
export default _default;
|
|
56
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
57
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
58
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
59
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
60
|
-
} : {
|
|
61
|
-
type: import('vue').PropType<T[K]>;
|
|
62
|
-
required: true;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
type __VLS_WithDefaults<P, D> = {
|
|
66
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
67
|
-
default: D[K];
|
|
68
|
-
}> : P[K];
|
|
69
|
-
};
|
|
70
|
-
type __VLS_Prettify<T> = {
|
|
71
|
-
[K in keyof T]: T[K];
|
|
72
|
-
} & {};
|
|
73
46
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
74
47
|
new (): {
|
|
75
48
|
$slots: S;
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import { FloatingVueCommonProps } from '../types';
|
|
2
2
|
import { ButtonProps } from './Button';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{
|
|
3
|
+
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
6
5
|
readonly "onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
7
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>
|
|
6
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:visible"> & ({
|
|
8
7
|
label?: string;
|
|
9
8
|
buttonProps?: ButtonProps;
|
|
10
9
|
buttonClass?: string;
|
|
11
|
-
} & FloatingVueCommonProps)
|
|
10
|
+
} & FloatingVueCommonProps)> & import('vue').PublicProps;
|
|
12
11
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
13
12
|
attrs: any;
|
|
14
|
-
slots:
|
|
13
|
+
slots: Readonly<{
|
|
15
14
|
default: () => any;
|
|
16
15
|
popper: (props: {
|
|
17
16
|
hide: () => void;
|
|
@@ -25,12 +24,12 @@ declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], _
|
|
|
25
24
|
}) => any;
|
|
26
25
|
'button-icon': () => any;
|
|
27
26
|
'button-icon-right': () => any;
|
|
28
|
-
}
|
|
27
|
+
};
|
|
29
28
|
emit: (evt: "update:visible", value: boolean) => void;
|
|
30
29
|
}>) => import('vue').VNode & {
|
|
31
30
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
32
31
|
};
|
|
33
32
|
export default _default;
|
|
34
|
-
type
|
|
33
|
+
type __VLS_PrettifyLocal<T> = {
|
|
35
34
|
[K in keyof T]: T[K];
|
|
36
35
|
} & {};
|
|
@@ -1,39 +1,22 @@
|
|
|
1
1
|
import { ButtonProps } from './Button';
|
|
2
|
-
|
|
3
2
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
slots: {
|
|
4
|
+
icon?(_: {}): any;
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
attrs: Partial<{}>;
|
|
6
9
|
};
|
|
7
|
-
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<ButtonProps & {
|
|
8
12
|
keepOpen?: boolean;
|
|
9
|
-
}
|
|
10
|
-
keepOpen: boolean;
|
|
11
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps & {
|
|
13
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ButtonProps & {
|
|
12
14
|
keepOpen?: boolean;
|
|
13
|
-
}>, {
|
|
14
|
-
keepOpen: boolean;
|
|
15
|
-
}>>> & Readonly<{}>, {
|
|
15
|
+
}> & Readonly<{}>, {
|
|
16
16
|
keepOpen: boolean;
|
|
17
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
18
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
19
|
export default _default;
|
|
20
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
22
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
-
} : {
|
|
25
|
-
type: import('vue').PropType<T[K]>;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
type __VLS_WithDefaults<P, D> = {
|
|
30
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
31
|
-
default: D[K];
|
|
32
|
-
}> : P[K];
|
|
33
|
-
};
|
|
34
|
-
type __VLS_Prettify<T> = {
|
|
35
|
-
[K in keyof T]: T[K];
|
|
36
|
-
} & {};
|
|
37
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
21
|
new (): {
|
|
39
22
|
$slots: S;
|
|
@@ -1,47 +1,22 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
modelValue: string;
|
|
3
3
|
status?: "normal" | "danger" | "success" | "warning";
|
|
4
4
|
showMessage?: boolean;
|
|
5
5
|
message?: string;
|
|
6
6
|
placeholder?: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
status: string;
|
|
11
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (value: string) => void;
|
|
13
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
"update:modelValue": (value: string) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
14
10
|
modelValue: string;
|
|
15
11
|
status?: "normal" | "danger" | "success" | "warning";
|
|
16
12
|
showMessage?: boolean;
|
|
17
13
|
message?: string;
|
|
18
14
|
placeholder?: string;
|
|
19
|
-
}
|
|
20
|
-
message: string;
|
|
21
|
-
showMessage: boolean;
|
|
22
|
-
status: string;
|
|
23
|
-
}>>> & Readonly<{
|
|
15
|
+
}> & Readonly<{
|
|
24
16
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
25
17
|
}>, {
|
|
26
18
|
message: string;
|
|
27
19
|
status: "normal" | "danger" | "success" | "warning";
|
|
28
20
|
showMessage: boolean;
|
|
29
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
22
|
export default _default;
|
|
31
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
32
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
33
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
34
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
35
|
-
} : {
|
|
36
|
-
type: import('vue').PropType<T[K]>;
|
|
37
|
-
required: true;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
type __VLS_WithDefaults<P, D> = {
|
|
41
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
42
|
-
default: D[K];
|
|
43
|
-
}> : P[K];
|
|
44
|
-
};
|
|
45
|
-
type __VLS_Prettify<T> = {
|
|
46
|
-
[K in keyof T]: T[K];
|
|
47
|
-
} & {};
|
|
@@ -1,15 +1,6 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
name: string;
|
|
3
|
-
}
|
|
3
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
4
4
|
name: string;
|
|
5
|
-
}
|
|
5
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
6
|
export default _default;
|
|
7
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
9
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
10
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
11
|
-
} : {
|
|
12
|
-
type: import('vue').PropType<T[K]>;
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
@@ -1,33 +1,12 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
icon?: string;
|
|
3
3
|
inline?: boolean;
|
|
4
4
|
action?: boolean;
|
|
5
|
-
}
|
|
6
|
-
action: boolean;
|
|
7
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
8
6
|
icon?: string;
|
|
9
7
|
inline?: boolean;
|
|
10
8
|
action?: boolean;
|
|
11
|
-
}>, {
|
|
12
|
-
action: boolean;
|
|
13
|
-
}>>> & Readonly<{}>, {
|
|
9
|
+
}> & Readonly<{}>, {
|
|
14
10
|
action: boolean;
|
|
15
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
12
|
export default _default;
|
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
-
} : {
|
|
22
|
-
type: import('vue').PropType<T[K]>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
type __VLS_WithDefaults<P, D> = {
|
|
27
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
28
|
-
default: D[K];
|
|
29
|
-
}> : P[K];
|
|
30
|
-
};
|
|
31
|
-
type __VLS_Prettify<T> = {
|
|
32
|
-
[K in keyof T]: T[K];
|
|
33
|
-
} & {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
modelValue: string;
|
|
3
3
|
placeholder?: string;
|
|
4
4
|
variant?: "normal" | "accent" | "flat" | "warning";
|
|
@@ -10,23 +10,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10
10
|
loadingDebounceTime?: number;
|
|
11
11
|
readonly?: boolean;
|
|
12
12
|
type?: string;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* loading will auto enable disabled
|
|
20
|
-
*/
|
|
21
|
-
loading: boolean;
|
|
22
|
-
autoFocus: boolean;
|
|
23
|
-
loadingDebounceTime: number;
|
|
24
|
-
readonly: boolean;
|
|
25
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
26
|
-
"update:modelValue": (value: string) => void;
|
|
27
|
-
updateFocused: (value: boolean) => void;
|
|
28
|
-
keyTab: (e: KeyboardEvent) => void;
|
|
29
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
"update:modelValue": (value: string) => any;
|
|
15
|
+
updateFocused: (value: boolean) => any;
|
|
16
|
+
keyTab: (e: KeyboardEvent) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
30
18
|
modelValue: string;
|
|
31
19
|
placeholder?: string;
|
|
32
20
|
variant?: "normal" | "accent" | "flat" | "warning";
|
|
@@ -38,19 +26,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
38
26
|
loadingDebounceTime?: number;
|
|
39
27
|
readonly?: boolean;
|
|
40
28
|
type?: string;
|
|
41
|
-
}
|
|
42
|
-
placeholder: string;
|
|
43
|
-
variant: string;
|
|
44
|
-
disabled: boolean;
|
|
45
|
-
type: string;
|
|
46
|
-
/**
|
|
47
|
-
* loading will auto enable disabled
|
|
48
|
-
*/
|
|
49
|
-
loading: boolean;
|
|
50
|
-
autoFocus: boolean;
|
|
51
|
-
loadingDebounceTime: number;
|
|
52
|
-
readonly: boolean;
|
|
53
|
-
}>>> & Readonly<{
|
|
29
|
+
}> & Readonly<{
|
|
54
30
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
55
31
|
onUpdateFocused?: ((value: boolean) => any) | undefined;
|
|
56
32
|
onKeyTab?: ((e: KeyboardEvent) => any) | undefined;
|
|
@@ -63,22 +39,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
63
39
|
autoFocus: boolean;
|
|
64
40
|
loadingDebounceTime: number;
|
|
65
41
|
readonly: boolean;
|
|
66
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
42
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
67
43
|
export default _default;
|
|
68
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
69
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
70
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
71
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
72
|
-
} : {
|
|
73
|
-
type: import('vue').PropType<T[K]>;
|
|
74
|
-
required: true;
|
|
75
|
-
};
|
|
76
|
-
};
|
|
77
|
-
type __VLS_WithDefaults<P, D> = {
|
|
78
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
79
|
-
default: D[K];
|
|
80
|
-
}> : P[K];
|
|
81
|
-
};
|
|
82
|
-
type __VLS_Prettify<T> = {
|
|
83
|
-
[K in keyof T]: T[K];
|
|
84
|
-
} & {};
|
|
@@ -1,33 +1,7 @@
|
|
|
1
1
|
import { VueNotificationOptions } from '../composables/notification';
|
|
2
|
-
|
|
3
|
-
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<VueNotificationOptions>, {
|
|
4
|
-
placement: string;
|
|
5
|
-
type: string;
|
|
6
|
-
duration: number;
|
|
7
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<VueNotificationOptions>, {
|
|
8
|
-
placement: string;
|
|
9
|
-
type: string;
|
|
10
|
-
duration: number;
|
|
11
|
-
}>>> & Readonly<{}>, {
|
|
2
|
+
declare const _default: import('vue').DefineComponent<VueNotificationOptions, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VueNotificationOptions> & Readonly<{}>, {
|
|
12
3
|
type: "success" | "error" | "info" | "warning";
|
|
13
4
|
duration: number;
|
|
14
5
|
placement: import('..').VueNotificationPlacement;
|
|
15
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
6
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
7
|
export default _default;
|
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
-
} : {
|
|
22
|
-
type: import('vue').PropType<T[K]>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
type __VLS_WithDefaults<P, D> = {
|
|
27
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
28
|
-
default: D[K];
|
|
29
|
-
}> : P[K];
|
|
30
|
-
};
|
|
31
|
-
type __VLS_Prettify<T> = {
|
|
32
|
-
[K in keyof T]: T[K];
|
|
33
|
-
} & {};
|
|
@@ -7,34 +7,18 @@ export interface OverlayProps {
|
|
|
7
7
|
position?: 'fixed' | 'absolute';
|
|
8
8
|
}
|
|
9
9
|
declare function __VLS_template(): {
|
|
10
|
-
|
|
10
|
+
slots: {
|
|
11
|
+
default?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {};
|
|
14
|
+
attrs: Partial<{}>;
|
|
11
15
|
};
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OverlayProps>, {
|
|
15
|
-
position: string;
|
|
16
|
-
}>>> & Readonly<{}>, {
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<OverlayProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<OverlayProps> & Readonly<{}>, {
|
|
17
18
|
position: "fixed" | "absolute";
|
|
18
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
19
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
21
|
export default _default;
|
|
21
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
22
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
23
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
24
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
25
|
-
} : {
|
|
26
|
-
type: import('vue').PropType<T[K]>;
|
|
27
|
-
required: true;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
type __VLS_WithDefaults<P, D> = {
|
|
31
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
32
|
-
default: D[K];
|
|
33
|
-
}> : P[K];
|
|
34
|
-
};
|
|
35
|
-
type __VLS_Prettify<T> = {
|
|
36
|
-
[K in keyof T]: T[K];
|
|
37
|
-
} & {};
|
|
38
22
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
23
|
new (): {
|
|
40
24
|
$slots: S;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { ButtonProps } from './Button';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{
|
|
2
|
+
declare const _default: <Value extends number | string, Label, M extends boolean>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
4
|
readonly "onUpdate:modelValue"?: ((value: M extends true ? Value[] : Value) => any) | undefined;
|
|
6
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>
|
|
5
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & {
|
|
7
6
|
modelValue: M extends true ? Value[] : Value;
|
|
8
7
|
multiple?: M;
|
|
9
8
|
options: {
|
|
@@ -15,10 +14,10 @@ declare const _default: <Value extends number | string, Label, M extends boolean
|
|
|
15
14
|
disabled?: boolean;
|
|
16
15
|
labelRenderer?: (label: Label) => string;
|
|
17
16
|
buttonProps?: ButtonProps;
|
|
18
|
-
}
|
|
17
|
+
}> & import('vue').PublicProps;
|
|
19
18
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
20
19
|
attrs: any;
|
|
21
|
-
slots:
|
|
20
|
+
slots: Readonly<{
|
|
22
21
|
item: (props: {
|
|
23
22
|
item: {
|
|
24
23
|
label: Label;
|
|
@@ -38,12 +37,12 @@ declare const _default: <Value extends number | string, Label, M extends boolean
|
|
|
38
37
|
disabled: boolean;
|
|
39
38
|
}) => any;
|
|
40
39
|
button: () => any;
|
|
41
|
-
}
|
|
40
|
+
};
|
|
42
41
|
emit: (evt: "update:modelValue", value: M extends true ? Value[] : Value) => void;
|
|
43
42
|
}>) => import('vue').VNode & {
|
|
44
43
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
45
44
|
};
|
|
46
45
|
export default _default;
|
|
47
|
-
type
|
|
46
|
+
type __VLS_PrettifyLocal<T> = {
|
|
48
47
|
[K in keyof T]: T[K];
|
|
49
48
|
} & {};
|
|
@@ -1,28 +1,24 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
-
|
|
2
|
+
slots: {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
refs: {};
|
|
6
|
+
attrs: Partial<{}>;
|
|
3
7
|
};
|
|
4
|
-
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
5
10
|
modelValue: boolean;
|
|
6
11
|
disabled?: boolean;
|
|
7
|
-
}
|
|
8
|
-
"update:modelValue": (value: boolean) =>
|
|
9
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
12
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (value: boolean) => any;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
10
15
|
modelValue: boolean;
|
|
11
16
|
disabled?: boolean;
|
|
12
|
-
}
|
|
17
|
+
}> & Readonly<{
|
|
13
18
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
15
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
19
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
21
|
export default _default;
|
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
-
} : {
|
|
22
|
-
type: import('vue').PropType<T[K]>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
22
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
23
|
new (): {
|
|
28
24
|
$slots: S;
|
|
@@ -1,21 +1,16 @@
|
|
|
1
1
|
import { FloatingVueCommonProps } from '../types';
|
|
2
|
-
|
|
3
2
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
};
|
|
7
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FloatingVueCommonProps>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FloatingVueCommonProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
9
|
-
export default _default;
|
|
10
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
12
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
-
} : {
|
|
15
|
-
type: import('vue').PropType<T[K]>;
|
|
16
|
-
required: true;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
popper?(_: {}): any;
|
|
17
6
|
};
|
|
7
|
+
refs: {};
|
|
8
|
+
attrs: Partial<{}>;
|
|
18
9
|
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<FloatingVueCommonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FloatingVueCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
|
+
export default _default;
|
|
19
14
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
15
|
new (): {
|
|
21
16
|
$slots: S;
|
|
@@ -19,7 +19,6 @@ import { default as Overlay } from './Overlay';
|
|
|
19
19
|
import { default as Select } from './Select';
|
|
20
20
|
import { default as Switch } from './Switch';
|
|
21
21
|
import { default as Tooltip } from './Tooltip';
|
|
22
|
-
|
|
23
22
|
export { Badge as VueBadge, Button as VueButton, Card as VueCard, Checkbox as VueCheckbox, CodeBlock as VueCodeBlock, Confirm as VueConfirm, DarkToggle as VueDarkToggle, Dialog as VueDialog, Drawer as VueDrawer, Dropdown as VueDropdown, DropdownButton as VueDropdownButton, FormField as VueFormField, IcIcon as VueIcIcon, Icon as VueIcon, Input as VueInput, LoadingIndicator as VueLoadingIndicator, Notification as VueNotification, Overlay as VueOverlay, Select as VueSelect, Switch as VueSwitch, Tooltip as VueTooltip, };
|
|
24
23
|
export type * from './Badge';
|
|
25
24
|
export type * from './Button';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BuiltinLanguage, HighlighterCore } from 'shiki';
|
|
2
|
-
|
|
3
2
|
export declare const shiki: import('vue').ShallowRef<HighlighterCore | undefined, HighlighterCore | undefined>;
|
|
4
3
|
export declare function renderCodeHighlight(code: string, lang?: BuiltinLanguage | 'text'): {
|
|
5
4
|
code: string;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { UseColorModeOptions } from '@vueuse/core';
|
|
2
|
-
|
|
3
2
|
export declare const THEME_KEY = "__vue-devtools-theme__";
|
|
4
3
|
export declare function useDevToolsColorMode(options?: Omit<UseColorModeOptions, 'storageKey'>): {
|
|
5
4
|
colorMode: import('@vueuse/core').UseColorModeReturn<import('@vueuse/core').BasicColorMode>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.6.
|
|
4
|
+
"version": "7.6.6",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -37,23 +37,23 @@
|
|
|
37
37
|
"vue": ">=3.0.0-0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@vueuse/components": "^
|
|
41
|
-
"@vueuse/core": "^
|
|
42
|
-
"@vueuse/integrations": "^
|
|
40
|
+
"@vueuse/components": "^12.0.0",
|
|
41
|
+
"@vueuse/core": "^12.0.0",
|
|
42
|
+
"@vueuse/integrations": "^12.0.0",
|
|
43
43
|
"colord": "^2.9.3",
|
|
44
44
|
"focus-trap": "^7.6.2",
|
|
45
|
-
"@vue/devtools-shared": "7.6.
|
|
45
|
+
"@vue/devtools-shared": "7.6.6"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@histoire/plugin-vue": "^0.17.17",
|
|
49
49
|
"@iconify-json/ic": "^1.2.1",
|
|
50
|
-
"@types/node": "^22.10.
|
|
50
|
+
"@types/node": "^22.10.1",
|
|
51
51
|
"@unocss/reset": "^0.64.1",
|
|
52
|
-
"@vitejs/plugin-vue": "^5.2.
|
|
52
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
53
53
|
"floating-vue": "5.2.2",
|
|
54
54
|
"histoire": "^0.17.17",
|
|
55
55
|
"unocss": "^0.64.1",
|
|
56
|
-
"vite-plugin-dts": "^3.
|
|
56
|
+
"vite-plugin-dts": "^4.3.0"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "tsx ./scripts/update-icons.ts && vite build",
|