@vue/devtools-ui 7.3.1 → 7.3.3
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/index.js +1 -2
- package/dist/theme.js +4 -8
- package/dist/types/index.d.ts +1062 -0
- package/dist/types/{theme/theme.d.ts → theme.d.ts} +73 -66
- package/package.json +11 -11
- package/dist/types/src/components/Badge.d.ts +0 -9
- package/dist/types/src/components/Button.d.ts +0 -68
- package/dist/types/src/components/Card.d.ts +0 -9
- package/dist/types/src/components/Checkbox.d.ts +0 -35
- package/dist/types/src/components/Confirm.d.ts +0 -82
- package/dist/types/src/components/DarkToggle.d.ts +0 -55
- package/dist/types/src/components/Dialog.d.ts +0 -76
- package/dist/types/src/components/Drawer.d.ts +0 -75
- package/dist/types/src/components/Dropdown.d.ts +0 -102
- package/dist/types/src/components/DropdownButton.d.ts +0 -39
- package/dist/types/src/components/FormField.d.ts +0 -47
- package/dist/types/src/components/Icon.d.ts +0 -33
- package/dist/types/src/components/Input.d.ts +0 -84
- package/dist/types/src/components/LoadingIndicator.d.ts +0 -2
- package/dist/types/src/components/Notification.d.ts +0 -33
- package/dist/types/src/components/Overlay.d.ts +0 -40
- package/dist/types/src/components/Select.d.ts +0 -126
- package/dist/types/src/components/Switch.d.ts +0 -28
- package/dist/types/src/components/Tooltip.d.ts +0 -21
- package/dist/types/src/components/index.d.ts +0 -21
- package/dist/types/src/composables/index.d.ts +0 -3
- package/dist/types/src/composables/notification.d.ts +0 -10
- package/dist/types/src/composables/theme.d.ts +0 -7
- package/dist/types/src/index.d.ts +0 -6
- package/dist/types/src/types/floating-vue.d.ts +0 -10
- package/dist/types/src/types/index.d.ts +0 -1
- package/dist/types/theme/index.d.ts +0 -2
- package/dist/types/theme/uno.config.d.ts +0 -3
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import { ButtonProps } from './Button';
|
|
2
|
-
|
|
3
|
-
declare const _default: <T>(__VLS_props: {
|
|
4
|
-
label?: string | undefined;
|
|
5
|
-
disabled?: boolean | undefined;
|
|
6
|
-
placement?: import('floating-vue').Placement | undefined;
|
|
7
|
-
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
8
|
-
buttonProps?: ButtonProps | undefined;
|
|
9
|
-
buttonClass?: string | undefined;
|
|
10
|
-
trigger?: "click" | "hover" | undefined;
|
|
11
|
-
distance?: number | undefined;
|
|
12
|
-
skidding?: number | undefined;
|
|
13
|
-
shown?: boolean | undefined;
|
|
14
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, __VLS_ctx?: {
|
|
15
|
-
attrs: any;
|
|
16
|
-
slots: Readonly<{
|
|
17
|
-
default: () => any;
|
|
18
|
-
popper: (props: {
|
|
19
|
-
hide: () => void;
|
|
20
|
-
}) => any;
|
|
21
|
-
'button-icon': () => any;
|
|
22
|
-
'button-icon-right': () => any;
|
|
23
|
-
}> & {
|
|
24
|
-
default: () => any;
|
|
25
|
-
popper: (props: {
|
|
26
|
-
hide: () => void;
|
|
27
|
-
}) => any;
|
|
28
|
-
'button-icon': () => any;
|
|
29
|
-
'button-icon-right': () => any;
|
|
30
|
-
};
|
|
31
|
-
emit: (evt: "update:visible", value: boolean) => void;
|
|
32
|
-
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
33
|
-
props: {
|
|
34
|
-
label?: string | undefined;
|
|
35
|
-
disabled?: boolean | undefined;
|
|
36
|
-
placement?: import('floating-vue').Placement | undefined;
|
|
37
|
-
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
38
|
-
buttonProps?: ButtonProps | undefined;
|
|
39
|
-
buttonClass?: string | undefined;
|
|
40
|
-
trigger?: "click" | "hover" | undefined;
|
|
41
|
-
distance?: number | undefined;
|
|
42
|
-
skidding?: number | undefined;
|
|
43
|
-
shown?: boolean | undefined;
|
|
44
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
45
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
46
|
-
attrs: any;
|
|
47
|
-
slots: Readonly<{
|
|
48
|
-
default: () => any;
|
|
49
|
-
popper: (props: {
|
|
50
|
-
hide: () => void;
|
|
51
|
-
}) => any;
|
|
52
|
-
'button-icon': () => any;
|
|
53
|
-
'button-icon-right': () => any;
|
|
54
|
-
}> & {
|
|
55
|
-
default: () => any;
|
|
56
|
-
popper: (props: {
|
|
57
|
-
hide: () => void;
|
|
58
|
-
}) => any;
|
|
59
|
-
'button-icon': () => any;
|
|
60
|
-
'button-icon-right': () => any;
|
|
61
|
-
};
|
|
62
|
-
emit: (evt: "update:visible", value: boolean) => void;
|
|
63
|
-
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
64
|
-
[key: string]: any;
|
|
65
|
-
}> & {
|
|
66
|
-
__ctx?: {
|
|
67
|
-
props: {
|
|
68
|
-
label?: string | undefined;
|
|
69
|
-
disabled?: boolean | undefined;
|
|
70
|
-
placement?: import('floating-vue').Placement | undefined;
|
|
71
|
-
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
72
|
-
buttonProps?: ButtonProps | undefined;
|
|
73
|
-
buttonClass?: string | undefined;
|
|
74
|
-
trigger?: "click" | "hover" | undefined;
|
|
75
|
-
distance?: number | undefined;
|
|
76
|
-
skidding?: number | undefined;
|
|
77
|
-
shown?: boolean | undefined;
|
|
78
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
79
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
80
|
-
attrs: any;
|
|
81
|
-
slots: Readonly<{
|
|
82
|
-
default: () => any;
|
|
83
|
-
popper: (props: {
|
|
84
|
-
hide: () => void;
|
|
85
|
-
}) => any;
|
|
86
|
-
'button-icon': () => any;
|
|
87
|
-
'button-icon-right': () => any;
|
|
88
|
-
}> & {
|
|
89
|
-
default: () => any;
|
|
90
|
-
popper: (props: {
|
|
91
|
-
hide: () => void;
|
|
92
|
-
}) => any;
|
|
93
|
-
'button-icon': () => any;
|
|
94
|
-
'button-icon-right': () => any;
|
|
95
|
-
};
|
|
96
|
-
emit: (evt: "update:visible", value: boolean) => void;
|
|
97
|
-
} | undefined;
|
|
98
|
-
};
|
|
99
|
-
export default _default;
|
|
100
|
-
type __VLS_Prettify<T> = {
|
|
101
|
-
[K in keyof T]: T[K];
|
|
102
|
-
} & {};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { ButtonProps } from './Button';
|
|
2
|
-
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps & {
|
|
4
|
-
keepOpen?: boolean | undefined;
|
|
5
|
-
}>, {
|
|
6
|
-
keepOpen: boolean;
|
|
7
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps & {
|
|
8
|
-
keepOpen?: boolean | undefined;
|
|
9
|
-
}>, {
|
|
10
|
-
keepOpen: boolean;
|
|
11
|
-
}>>>, {
|
|
12
|
-
keepOpen: boolean;
|
|
13
|
-
}, {}>, {
|
|
14
|
-
icon?(_: {}): any;
|
|
15
|
-
default?(_: {}): any;
|
|
16
|
-
}>;
|
|
17
|
-
export default _default;
|
|
18
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
20
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
21
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
22
|
-
} : {
|
|
23
|
-
type: import('vue').PropType<T[K]>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
type __VLS_WithDefaults<P, D> = {
|
|
28
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
29
|
-
default: D[K];
|
|
30
|
-
}> : P[K];
|
|
31
|
-
};
|
|
32
|
-
type __VLS_Prettify<T> = {
|
|
33
|
-
[K in keyof T]: T[K];
|
|
34
|
-
} & {};
|
|
35
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
|
-
new (): {
|
|
37
|
-
$slots: S;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
modelValue: string;
|
|
3
|
-
status?: "danger" | "warning" | "success" | "normal" | undefined;
|
|
4
|
-
showMessage?: boolean | undefined;
|
|
5
|
-
message?: string | undefined;
|
|
6
|
-
placeholder?: string | undefined;
|
|
7
|
-
}>, {
|
|
8
|
-
message: string;
|
|
9
|
-
showMessage: boolean;
|
|
10
|
-
status: string;
|
|
11
|
-
}>, {}, unknown, {}, {}, 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<{
|
|
14
|
-
modelValue: string;
|
|
15
|
-
status?: "danger" | "warning" | "success" | "normal" | undefined;
|
|
16
|
-
showMessage?: boolean | undefined;
|
|
17
|
-
message?: string | undefined;
|
|
18
|
-
placeholder?: string | undefined;
|
|
19
|
-
}>, {
|
|
20
|
-
message: string;
|
|
21
|
-
showMessage: boolean;
|
|
22
|
-
status: string;
|
|
23
|
-
}>>> & {
|
|
24
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
25
|
-
}, {
|
|
26
|
-
message: string;
|
|
27
|
-
status: 'normal' | 'danger' | 'success' | 'warning';
|
|
28
|
-
showMessage: boolean;
|
|
29
|
-
}, {}>;
|
|
30
|
-
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,33 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
icon?: string | undefined;
|
|
3
|
-
inline?: boolean | undefined;
|
|
4
|
-
action?: boolean | undefined;
|
|
5
|
-
}>, {
|
|
6
|
-
action: boolean;
|
|
7
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
-
icon?: string | undefined;
|
|
9
|
-
inline?: boolean | undefined;
|
|
10
|
-
action?: boolean | undefined;
|
|
11
|
-
}>, {
|
|
12
|
-
action: boolean;
|
|
13
|
-
}>>>, {
|
|
14
|
-
action: boolean;
|
|
15
|
-
}, {}>;
|
|
16
|
-
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,84 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
modelValue: string;
|
|
3
|
-
placeholder?: string | undefined;
|
|
4
|
-
variant?: "flat" | "accent" | "warning" | "normal" | undefined;
|
|
5
|
-
disabled?: boolean | undefined;
|
|
6
|
-
leftIcon?: string | undefined;
|
|
7
|
-
rightIcon?: string | undefined;
|
|
8
|
-
loading?: boolean | undefined;
|
|
9
|
-
autoFocus?: boolean | undefined;
|
|
10
|
-
loadingDebounceTime?: number | undefined;
|
|
11
|
-
readonly?: boolean | undefined;
|
|
12
|
-
type?: string | undefined;
|
|
13
|
-
}>, {
|
|
14
|
-
placeholder: string;
|
|
15
|
-
variant: string;
|
|
16
|
-
disabled: boolean;
|
|
17
|
-
type: string;
|
|
18
|
-
/**
|
|
19
|
-
* loading will auto enable disabled
|
|
20
|
-
*/
|
|
21
|
-
loading: boolean;
|
|
22
|
-
autoFocus: boolean;
|
|
23
|
-
loadingDebounceTime: number;
|
|
24
|
-
readonly: boolean;
|
|
25
|
-
}>, {}, unknown, {}, {}, 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<{
|
|
30
|
-
modelValue: string;
|
|
31
|
-
placeholder?: string | undefined;
|
|
32
|
-
variant?: "flat" | "accent" | "warning" | "normal" | undefined;
|
|
33
|
-
disabled?: boolean | undefined;
|
|
34
|
-
leftIcon?: string | undefined;
|
|
35
|
-
rightIcon?: string | undefined;
|
|
36
|
-
loading?: boolean | undefined;
|
|
37
|
-
autoFocus?: boolean | undefined;
|
|
38
|
-
loadingDebounceTime?: number | undefined;
|
|
39
|
-
readonly?: boolean | undefined;
|
|
40
|
-
type?: string | undefined;
|
|
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
|
-
}>>> & {
|
|
54
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
55
|
-
onUpdateFocused?: ((value: boolean) => any) | undefined;
|
|
56
|
-
onKeyTab?: ((e: KeyboardEvent) => any) | undefined;
|
|
57
|
-
}, {
|
|
58
|
-
type: string;
|
|
59
|
-
loading: boolean;
|
|
60
|
-
disabled: boolean;
|
|
61
|
-
variant: 'normal' | 'accent' | 'flat' | 'warning';
|
|
62
|
-
placeholder: string;
|
|
63
|
-
autoFocus: boolean;
|
|
64
|
-
loadingDebounceTime: number;
|
|
65
|
-
readonly: boolean;
|
|
66
|
-
}, {}>;
|
|
67
|
-
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 +0,0 @@
|
|
|
1
|
-
import { VueNotificationOptions } from '../composables/notification';
|
|
2
|
-
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<VueNotificationOptions>, {
|
|
4
|
-
placement: string;
|
|
5
|
-
type: string;
|
|
6
|
-
duration: number;
|
|
7
|
-
}>, {}, unknown, {}, {}, 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
|
-
}>>>, {
|
|
12
|
-
type: "warning" | "info" | "success" | "error";
|
|
13
|
-
duration: number;
|
|
14
|
-
placement: import('../composables/notification').VueNotificationPlacement;
|
|
15
|
-
}, {}>;
|
|
16
|
-
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,40 +0,0 @@
|
|
|
1
|
-
export interface OverlayProps {
|
|
2
|
-
dim?: boolean;
|
|
3
|
-
blur?: boolean;
|
|
4
|
-
/**
|
|
5
|
-
* Position of the overlay, default is `fixed`
|
|
6
|
-
*/
|
|
7
|
-
position?: 'fixed' | 'absolute';
|
|
8
|
-
}
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OverlayProps>, {
|
|
10
|
-
position: string;
|
|
11
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OverlayProps>, {
|
|
12
|
-
position: string;
|
|
13
|
-
}>>>, {
|
|
14
|
-
position: "fixed" | "absolute";
|
|
15
|
-
}, {}>, {
|
|
16
|
-
default?(_: {}): any;
|
|
17
|
-
}>;
|
|
18
|
-
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
|
-
} & {};
|
|
36
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
-
new (): {
|
|
38
|
-
$slots: S;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
import { ButtonProps } from './Button';
|
|
2
|
-
|
|
3
|
-
declare const _default: <Value extends string | number, Label, M extends boolean>(__VLS_props: {
|
|
4
|
-
disabled?: boolean | undefined;
|
|
5
|
-
modelValue: M extends true ? Value[] : Value;
|
|
6
|
-
"onUpdate:modelValue"?: ((value: M extends true ? Value[] : Value) => any) | undefined;
|
|
7
|
-
autoClose?: boolean | undefined;
|
|
8
|
-
buttonProps?: ButtonProps | undefined;
|
|
9
|
-
placeholder?: string | undefined;
|
|
10
|
-
multiple?: M | undefined;
|
|
11
|
-
options: {
|
|
12
|
-
label: Label;
|
|
13
|
-
value: Value;
|
|
14
|
-
}[];
|
|
15
|
-
labelRenderer?: ((label: Label) => string) | undefined;
|
|
16
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, __VLS_ctx?: {
|
|
17
|
-
attrs: any;
|
|
18
|
-
slots: Readonly<{
|
|
19
|
-
item: (props: {
|
|
20
|
-
item: {
|
|
21
|
-
label: Label;
|
|
22
|
-
value: Value;
|
|
23
|
-
};
|
|
24
|
-
active: boolean;
|
|
25
|
-
disabled: boolean;
|
|
26
|
-
}) => any;
|
|
27
|
-
button: () => any;
|
|
28
|
-
}> & {
|
|
29
|
-
item: (props: {
|
|
30
|
-
item: {
|
|
31
|
-
label: Label;
|
|
32
|
-
value: Value;
|
|
33
|
-
};
|
|
34
|
-
active: boolean;
|
|
35
|
-
disabled: boolean;
|
|
36
|
-
}) => any;
|
|
37
|
-
button: () => any;
|
|
38
|
-
};
|
|
39
|
-
emit: (evt: "update:modelValue", value: M extends true ? Value[] : Value) => void;
|
|
40
|
-
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
41
|
-
props: {
|
|
42
|
-
disabled?: boolean | undefined;
|
|
43
|
-
modelValue: M extends true ? Value[] : Value;
|
|
44
|
-
"onUpdate:modelValue"?: ((value: M extends true ? Value[] : Value) => any) | undefined;
|
|
45
|
-
autoClose?: boolean | undefined;
|
|
46
|
-
buttonProps?: ButtonProps | undefined;
|
|
47
|
-
placeholder?: string | undefined;
|
|
48
|
-
multiple?: M | undefined;
|
|
49
|
-
options: {
|
|
50
|
-
label: Label;
|
|
51
|
-
value: Value;
|
|
52
|
-
}[];
|
|
53
|
-
labelRenderer?: ((label: Label) => string) | undefined;
|
|
54
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
55
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
56
|
-
attrs: any;
|
|
57
|
-
slots: Readonly<{
|
|
58
|
-
item: (props: {
|
|
59
|
-
item: {
|
|
60
|
-
label: Label;
|
|
61
|
-
value: Value;
|
|
62
|
-
};
|
|
63
|
-
active: boolean;
|
|
64
|
-
disabled: boolean;
|
|
65
|
-
}) => any;
|
|
66
|
-
button: () => any;
|
|
67
|
-
}> & {
|
|
68
|
-
item: (props: {
|
|
69
|
-
item: {
|
|
70
|
-
label: Label;
|
|
71
|
-
value: Value;
|
|
72
|
-
};
|
|
73
|
-
active: boolean;
|
|
74
|
-
disabled: boolean;
|
|
75
|
-
}) => any;
|
|
76
|
-
button: () => any;
|
|
77
|
-
};
|
|
78
|
-
emit: (evt: "update:modelValue", value: M extends true ? Value[] : Value) => void;
|
|
79
|
-
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
80
|
-
[key: string]: any;
|
|
81
|
-
}> & {
|
|
82
|
-
__ctx?: {
|
|
83
|
-
props: {
|
|
84
|
-
disabled?: boolean | undefined;
|
|
85
|
-
modelValue: M extends true ? Value[] : Value;
|
|
86
|
-
"onUpdate:modelValue"?: ((value: M extends true ? Value[] : Value) => any) | undefined;
|
|
87
|
-
autoClose?: boolean | undefined;
|
|
88
|
-
buttonProps?: ButtonProps | undefined;
|
|
89
|
-
placeholder?: string | undefined;
|
|
90
|
-
multiple?: M | undefined;
|
|
91
|
-
options: {
|
|
92
|
-
label: Label;
|
|
93
|
-
value: Value;
|
|
94
|
-
}[];
|
|
95
|
-
labelRenderer?: ((label: Label) => string) | undefined;
|
|
96
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
97
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
98
|
-
attrs: any;
|
|
99
|
-
slots: Readonly<{
|
|
100
|
-
item: (props: {
|
|
101
|
-
item: {
|
|
102
|
-
label: Label;
|
|
103
|
-
value: Value;
|
|
104
|
-
};
|
|
105
|
-
active: boolean;
|
|
106
|
-
disabled: boolean;
|
|
107
|
-
}) => any;
|
|
108
|
-
button: () => any;
|
|
109
|
-
}> & {
|
|
110
|
-
item: (props: {
|
|
111
|
-
item: {
|
|
112
|
-
label: Label;
|
|
113
|
-
value: Value;
|
|
114
|
-
};
|
|
115
|
-
active: boolean;
|
|
116
|
-
disabled: boolean;
|
|
117
|
-
}) => any;
|
|
118
|
-
button: () => any;
|
|
119
|
-
};
|
|
120
|
-
emit: (evt: "update:modelValue", value: M extends true ? Value[] : Value) => void;
|
|
121
|
-
} | undefined;
|
|
122
|
-
};
|
|
123
|
-
export default _default;
|
|
124
|
-
type __VLS_Prettify<T> = {
|
|
125
|
-
[K in keyof T]: T[K];
|
|
126
|
-
} & {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
modelValue: boolean;
|
|
3
|
-
disabled?: boolean | undefined;
|
|
4
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
|
-
"update:modelValue": (value: boolean) => void;
|
|
6
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
-
modelValue: boolean;
|
|
8
|
-
disabled?: boolean | undefined;
|
|
9
|
-
}>>> & {
|
|
10
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
11
|
-
}, {}, {}>, {
|
|
12
|
-
default?(_: {}): any;
|
|
13
|
-
}>;
|
|
14
|
-
export default _default;
|
|
15
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
-
} : {
|
|
20
|
-
type: import('vue').PropType<T[K]>;
|
|
21
|
-
required: true;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
-
new (): {
|
|
26
|
-
$slots: S;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { FloatingVueCommonProps } from '../types';
|
|
2
|
-
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<FloatingVueCommonProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FloatingVueCommonProps>>>, {}, {}>, {
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
popper?(_: {}): any;
|
|
6
|
-
}>;
|
|
7
|
-
export default _default;
|
|
8
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
10
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
11
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
12
|
-
} : {
|
|
13
|
-
type: import('vue').PropType<T[K]>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
-
new (): {
|
|
19
|
-
$slots: S;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { default as Button } from './Button';
|
|
2
|
-
import { default as Badge } from './Badge';
|
|
3
|
-
import { default as LoadingIndicator } from './LoadingIndicator';
|
|
4
|
-
import { default as Icon } from './Icon';
|
|
5
|
-
import { default as DarkToggle } from './DarkToggle';
|
|
6
|
-
import { default as Card } from './Card';
|
|
7
|
-
import { default as Dialog } from './Dialog';
|
|
8
|
-
import { default as Input } from './Input';
|
|
9
|
-
import { default as FormField } from './FormField';
|
|
10
|
-
import { default as Dropdown } from './Dropdown';
|
|
11
|
-
import { default as DropdownButton } from './DropdownButton';
|
|
12
|
-
import { default as Confirm } from './Confirm';
|
|
13
|
-
import { default as Select } from './Select';
|
|
14
|
-
import { default as Switch } from './Switch';
|
|
15
|
-
import { default as Checkbox } from './Checkbox';
|
|
16
|
-
import { default as Drawer } from './Drawer';
|
|
17
|
-
import { default as Overlay } from './Overlay';
|
|
18
|
-
import { default as Notification } from './Notification';
|
|
19
|
-
import { default as Tooltip } from './Tooltip';
|
|
20
|
-
|
|
21
|
-
export { Badge as VueBadge, Button as VueButton, Card as VueCard, Checkbox as VueCheckbox, Dialog as VueDialog, Drawer as VueDrawer, LoadingIndicator as VueLoadingIndicator, Icon as VueIcon, DarkToggle as VueDarkToggle, Input as VueInput, FormField as VueFormField, Overlay as VueOverlay, Dropdown as VueDropdown, DropdownButton as VueDropdownButton, Confirm as VueConfirm, Select as VueSelect, Switch as VueSwitch, Notification as VueNotification, Tooltip as VueTooltip, };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export type VueNotificationPlacement = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
|
|
2
|
-
export interface VueNotificationOptions {
|
|
3
|
-
message: string;
|
|
4
|
-
type?: 'success' | 'error' | 'info' | 'warning';
|
|
5
|
-
classes?: string;
|
|
6
|
-
duration?: number;
|
|
7
|
-
placement?: VueNotificationPlacement;
|
|
8
|
-
onClose?: () => void;
|
|
9
|
-
}
|
|
10
|
-
export declare function showVueNotification(options: VueNotificationOptions): void;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { UseColorModeOptions } from '@vueuse/core';
|
|
2
|
-
|
|
3
|
-
export declare const THEME_KEY = "__vue-devtools-theme__";
|
|
4
|
-
export declare function useDevToolsColorMode(options?: Omit<UseColorModeOptions, 'storageKey'>): {
|
|
5
|
-
colorMode: import('@vueuse/core').UseColorModeReturn<import('@vueuse/core').BasicColorMode>;
|
|
6
|
-
isDark: import('vue').ComputedRef<boolean>;
|
|
7
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './floating-vue';
|