@vue/devtools-ui 7.3.2 → 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 +5 -5
- 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,66 +1,73 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
'
|
|
15
|
-
'
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
20
|
-
'
|
|
21
|
-
'
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
-
'
|
|
31
|
-
'
|
|
32
|
-
'
|
|
33
|
-
'
|
|
34
|
-
'
|
|
35
|
-
'
|
|
36
|
-
'
|
|
37
|
-
'
|
|
38
|
-
'
|
|
39
|
-
'
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'
|
|
46
|
-
'
|
|
47
|
-
'
|
|
48
|
-
'
|
|
49
|
-
'
|
|
50
|
-
'
|
|
51
|
-
'
|
|
52
|
-
'
|
|
53
|
-
'
|
|
54
|
-
'
|
|
55
|
-
'
|
|
56
|
-
'
|
|
57
|
-
'
|
|
58
|
-
'
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
1
|
+
import { UserConfig } from 'unocss';
|
|
2
|
+
|
|
3
|
+
export declare const theme: {
|
|
4
|
+
colors: Record<string, any>;
|
|
5
|
+
fontFamily: {
|
|
6
|
+
sans: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare const themeDef: {
|
|
11
|
+
colors: {
|
|
12
|
+
white: string;
|
|
13
|
+
black: string;
|
|
14
|
+
'gray-900': string;
|
|
15
|
+
'gray-800': string;
|
|
16
|
+
'gray-700': string;
|
|
17
|
+
'gray-600': string;
|
|
18
|
+
'gray-500': string;
|
|
19
|
+
'gray-400': string;
|
|
20
|
+
'gray-300': string;
|
|
21
|
+
'gray-200': string;
|
|
22
|
+
'gray-100': string;
|
|
23
|
+
'primary-900': string;
|
|
24
|
+
'primary-800': string;
|
|
25
|
+
'primary-700': string;
|
|
26
|
+
'primary-600': string;
|
|
27
|
+
'primary-500': string;
|
|
28
|
+
'primary-400': string;
|
|
29
|
+
'primary-300': string;
|
|
30
|
+
'primary-200': string;
|
|
31
|
+
'primary-100': string;
|
|
32
|
+
'accent-900': string;
|
|
33
|
+
'accent-800': string;
|
|
34
|
+
'accent-700': string;
|
|
35
|
+
'accent-600': string;
|
|
36
|
+
'accent-500': string;
|
|
37
|
+
'accent-400': string;
|
|
38
|
+
'accent-300': string;
|
|
39
|
+
'accent-200': string;
|
|
40
|
+
'accent-100': string;
|
|
41
|
+
'danger-900': string;
|
|
42
|
+
'danger-800': string;
|
|
43
|
+
'danger-700': string;
|
|
44
|
+
'danger-600': string;
|
|
45
|
+
'danger-500': string;
|
|
46
|
+
'danger-400': string;
|
|
47
|
+
'danger-300': string;
|
|
48
|
+
'danger-200': string;
|
|
49
|
+
'danger-100': string;
|
|
50
|
+
'warning-900': string;
|
|
51
|
+
'warning-800': string;
|
|
52
|
+
'warning-700': string;
|
|
53
|
+
'warning-600': string;
|
|
54
|
+
'warning-500': string;
|
|
55
|
+
'warning-400': string;
|
|
56
|
+
'warning-300': string;
|
|
57
|
+
'warning-200': string;
|
|
58
|
+
'warning-100': string;
|
|
59
|
+
'info-900': string;
|
|
60
|
+
'info-800': string;
|
|
61
|
+
'info-700': string;
|
|
62
|
+
'info-600': string;
|
|
63
|
+
'info-500': string;
|
|
64
|
+
'info-400': string;
|
|
65
|
+
'info-300': string;
|
|
66
|
+
'info-200': string;
|
|
67
|
+
'info-100': string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export declare const unoConfig: UserConfig<object>;
|
|
72
|
+
|
|
73
|
+
export { }
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.3.
|
|
4
|
+
"version": "7.3.3",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
-
"types": "./dist/types/
|
|
9
|
+
"types": "./dist/types/index.d.ts",
|
|
10
10
|
"import": "./dist/index.js",
|
|
11
11
|
"require": "./dist/index.cjs"
|
|
12
12
|
},
|
|
13
13
|
"./style.css": "./dist/style.css",
|
|
14
14
|
"./theme": {
|
|
15
|
-
"types": "./dist/types/theme
|
|
15
|
+
"types": "./dist/types/theme.d.ts",
|
|
16
16
|
"import": "./dist/theme.js",
|
|
17
17
|
"require": "./dist/theme.cjs"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"main": "./dist/index.cjs",
|
|
21
21
|
"module": "./dist/index.js",
|
|
22
|
-
"types": "./dist/types/
|
|
22
|
+
"types": "./dist/types/index.d.ts",
|
|
23
23
|
"files": [
|
|
24
24
|
"dist"
|
|
25
25
|
],
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@vueuse/integrations": "^10.11.0",
|
|
36
36
|
"colord": "^2.9.3",
|
|
37
37
|
"focus-trap": "^7.5.4",
|
|
38
|
-
"@vue/devtools-shared": "7.3.
|
|
38
|
+
"@vue/devtools-shared": "7.3.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@histoire/plugin-vue": "^0.17.17",
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
-
default?(_: {}): any;
|
|
3
|
-
}>;
|
|
4
|
-
export default _default;
|
|
5
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
-
new (): {
|
|
7
|
-
$slots: S;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
export interface ButtonProps {
|
|
2
|
-
type?: ButtonType;
|
|
3
|
-
round?: 'full' | 'normal' | false;
|
|
4
|
-
loading?: boolean;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
size?: 'normal' | 'mini';
|
|
7
|
-
flat?: boolean;
|
|
8
|
-
outlined?: boolean;
|
|
9
|
-
}
|
|
10
|
-
export type ButtonType = 'default' | 'primary' | 'accent' | 'danger' | 'warning' | 'info' | 'success';
|
|
11
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps>, {
|
|
12
|
-
type: string;
|
|
13
|
-
round: string;
|
|
14
|
-
loading: boolean;
|
|
15
|
-
disabled: boolean;
|
|
16
|
-
size: string;
|
|
17
|
-
flat: boolean;
|
|
18
|
-
outlined: boolean;
|
|
19
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
-
click: (e: MouseEvent) => void;
|
|
21
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps>, {
|
|
22
|
-
type: string;
|
|
23
|
-
round: string;
|
|
24
|
-
loading: boolean;
|
|
25
|
-
disabled: boolean;
|
|
26
|
-
size: string;
|
|
27
|
-
flat: boolean;
|
|
28
|
-
outlined: boolean;
|
|
29
|
-
}>>> & {
|
|
30
|
-
onClick?: ((e: MouseEvent) => any) | undefined;
|
|
31
|
-
}, {
|
|
32
|
-
flat: boolean;
|
|
33
|
-
type: ButtonType;
|
|
34
|
-
round: false | "full" | "normal";
|
|
35
|
-
loading: boolean;
|
|
36
|
-
disabled: boolean;
|
|
37
|
-
size: "normal" | "mini";
|
|
38
|
-
outlined: boolean;
|
|
39
|
-
}, {}>, {
|
|
40
|
-
icon?(_: {
|
|
41
|
-
class: string;
|
|
42
|
-
}): any;
|
|
43
|
-
default?(_: {}): any;
|
|
44
|
-
"icon-right"?(_: {}): any;
|
|
45
|
-
}>;
|
|
46
|
-
export default _default;
|
|
47
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
48
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
49
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
50
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
51
|
-
} : {
|
|
52
|
-
type: import('vue').PropType<T[K]>;
|
|
53
|
-
required: true;
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
type __VLS_WithDefaults<P, D> = {
|
|
57
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
58
|
-
default: D[K];
|
|
59
|
-
}> : P[K];
|
|
60
|
-
};
|
|
61
|
-
type __VLS_Prettify<T> = {
|
|
62
|
-
[K in keyof T]: T[K];
|
|
63
|
-
} & {};
|
|
64
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
65
|
-
new (): {
|
|
66
|
-
$slots: S;
|
|
67
|
-
};
|
|
68
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
-
default?(_: {}): any;
|
|
3
|
-
}>;
|
|
4
|
-
export default _default;
|
|
5
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
-
new (): {
|
|
7
|
-
$slots: S;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
modelValue: boolean;
|
|
3
|
-
variant?: "accent" | "normal" | undefined;
|
|
4
|
-
}>, {
|
|
5
|
-
variant: string;
|
|
6
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (value: boolean) => void;
|
|
8
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
-
modelValue: boolean;
|
|
10
|
-
variant?: "accent" | "normal" | undefined;
|
|
11
|
-
}>, {
|
|
12
|
-
variant: string;
|
|
13
|
-
}>>> & {
|
|
14
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15
|
-
}, {
|
|
16
|
-
variant: 'normal' | 'accent';
|
|
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
|
-
} & {};
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
modelValue: boolean;
|
|
3
|
-
content: string;
|
|
4
|
-
cancelText?: string | undefined;
|
|
5
|
-
confirmText?: string | undefined;
|
|
6
|
-
width?: string | undefined;
|
|
7
|
-
height?: string | undefined;
|
|
8
|
-
title?: string | undefined;
|
|
9
|
-
loading?: boolean | undefined;
|
|
10
|
-
autoClose?: boolean | undefined;
|
|
11
|
-
}>, {
|
|
12
|
-
cancelText: string;
|
|
13
|
-
confirmText: string;
|
|
14
|
-
width: string;
|
|
15
|
-
height: string;
|
|
16
|
-
title: string;
|
|
17
|
-
loading: boolean;
|
|
18
|
-
autoClose: boolean;
|
|
19
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
-
"update:modelValue": (value: boolean) => void;
|
|
21
|
-
close: () => void;
|
|
22
|
-
confirm: () => void;
|
|
23
|
-
cancel: () => void;
|
|
24
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
25
|
-
modelValue: boolean;
|
|
26
|
-
content: string;
|
|
27
|
-
cancelText?: string | undefined;
|
|
28
|
-
confirmText?: string | undefined;
|
|
29
|
-
width?: string | undefined;
|
|
30
|
-
height?: string | undefined;
|
|
31
|
-
title?: string | undefined;
|
|
32
|
-
loading?: boolean | undefined;
|
|
33
|
-
autoClose?: boolean | undefined;
|
|
34
|
-
}>, {
|
|
35
|
-
cancelText: string;
|
|
36
|
-
confirmText: string;
|
|
37
|
-
width: string;
|
|
38
|
-
height: string;
|
|
39
|
-
title: string;
|
|
40
|
-
loading: boolean;
|
|
41
|
-
autoClose: boolean;
|
|
42
|
-
}>>> & {
|
|
43
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
44
|
-
onClose?: (() => any) | undefined;
|
|
45
|
-
onCancel?: (() => any) | undefined;
|
|
46
|
-
onConfirm?: (() => any) | undefined;
|
|
47
|
-
}, {
|
|
48
|
-
title: string;
|
|
49
|
-
loading: boolean;
|
|
50
|
-
autoClose: boolean;
|
|
51
|
-
width: string;
|
|
52
|
-
height: string;
|
|
53
|
-
cancelText: string;
|
|
54
|
-
confirmText: string;
|
|
55
|
-
}, {}>, {
|
|
56
|
-
default?(_: {
|
|
57
|
-
class: string;
|
|
58
|
-
}): any;
|
|
59
|
-
}>;
|
|
60
|
-
export default _default;
|
|
61
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
62
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
63
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
64
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
65
|
-
} : {
|
|
66
|
-
type: import('vue').PropType<T[K]>;
|
|
67
|
-
required: true;
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
type __VLS_WithDefaults<P, D> = {
|
|
71
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
72
|
-
default: D[K];
|
|
73
|
-
}> : P[K];
|
|
74
|
-
};
|
|
75
|
-
type __VLS_Prettify<T> = {
|
|
76
|
-
[K in keyof T]: T[K];
|
|
77
|
-
} & {};
|
|
78
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
79
|
-
new (): {
|
|
80
|
-
$slots: S;
|
|
81
|
-
};
|
|
82
|
-
};
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Credit to [@hooray](https://github.com/hooray)
|
|
3
|
-
* @see https://github.com/vuejs/vitepress/pull/2347
|
|
4
|
-
*/
|
|
5
|
-
declare function toggle(event?: MouseEvent): void;
|
|
6
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
-
isDark?: boolean | undefined;
|
|
8
|
-
animation?: boolean | undefined;
|
|
9
|
-
animationDuration?: number | undefined;
|
|
10
|
-
}>, {
|
|
11
|
-
isDark: boolean;
|
|
12
|
-
animation: boolean;
|
|
13
|
-
animationDuration: number;
|
|
14
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
15
|
-
isDark?: boolean | undefined;
|
|
16
|
-
animation?: boolean | undefined;
|
|
17
|
-
animationDuration?: number | undefined;
|
|
18
|
-
}>, {
|
|
19
|
-
isDark: boolean;
|
|
20
|
-
animation: boolean;
|
|
21
|
-
animationDuration: number;
|
|
22
|
-
}>>>, {
|
|
23
|
-
isDark: boolean;
|
|
24
|
-
animation: boolean;
|
|
25
|
-
animationDuration: number;
|
|
26
|
-
}, {}>, {
|
|
27
|
-
default?(_: {
|
|
28
|
-
mode: "auto" | "light" | "dark";
|
|
29
|
-
isDark: boolean;
|
|
30
|
-
toggle: typeof toggle;
|
|
31
|
-
}): any;
|
|
32
|
-
}>;
|
|
33
|
-
export default _default;
|
|
34
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
35
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
36
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
37
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
38
|
-
} : {
|
|
39
|
-
type: import('vue').PropType<T[K]>;
|
|
40
|
-
required: true;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
type __VLS_WithDefaults<P, D> = {
|
|
44
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
45
|
-
default: D[K];
|
|
46
|
-
}> : P[K];
|
|
47
|
-
};
|
|
48
|
-
type __VLS_Prettify<T> = {
|
|
49
|
-
[K in keyof T]: T[K];
|
|
50
|
-
} & {};
|
|
51
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
52
|
-
new (): {
|
|
53
|
-
$slots: S;
|
|
54
|
-
};
|
|
55
|
-
};
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import { OverlayProps } from './Overlay';
|
|
2
|
-
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
modelValue?: boolean | undefined;
|
|
5
|
-
autoClose?: boolean | undefined;
|
|
6
|
-
title?: string | undefined;
|
|
7
|
-
width?: string | undefined;
|
|
8
|
-
height?: string | undefined;
|
|
9
|
-
closable?: boolean | undefined;
|
|
10
|
-
mountTo?: string | HTMLElement | undefined;
|
|
11
|
-
} & OverlayProps>, {
|
|
12
|
-
title: string;
|
|
13
|
-
modelValue: boolean;
|
|
14
|
-
autoClose: boolean;
|
|
15
|
-
width: string;
|
|
16
|
-
height: string;
|
|
17
|
-
closable: boolean;
|
|
18
|
-
mountTo: string;
|
|
19
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
-
close: () => void;
|
|
21
|
-
"update:modelValue": (value: boolean) => void;
|
|
22
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
23
|
-
modelValue?: boolean | undefined;
|
|
24
|
-
autoClose?: boolean | undefined;
|
|
25
|
-
title?: string | undefined;
|
|
26
|
-
width?: string | undefined;
|
|
27
|
-
height?: string | undefined;
|
|
28
|
-
closable?: boolean | undefined;
|
|
29
|
-
mountTo?: string | HTMLElement | undefined;
|
|
30
|
-
} & OverlayProps>, {
|
|
31
|
-
title: string;
|
|
32
|
-
modelValue: boolean;
|
|
33
|
-
autoClose: boolean;
|
|
34
|
-
width: string;
|
|
35
|
-
height: string;
|
|
36
|
-
closable: boolean;
|
|
37
|
-
mountTo: string;
|
|
38
|
-
}>>> & {
|
|
39
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40
|
-
onClose?: (() => any) | undefined;
|
|
41
|
-
}, {
|
|
42
|
-
title: string;
|
|
43
|
-
modelValue: boolean;
|
|
44
|
-
autoClose: boolean;
|
|
45
|
-
width: string;
|
|
46
|
-
height: string;
|
|
47
|
-
closable: boolean;
|
|
48
|
-
mountTo: string | HTMLElement;
|
|
49
|
-
}, {}>, {
|
|
50
|
-
title?(_: {}): any;
|
|
51
|
-
default?(_: {}): any;
|
|
52
|
-
footer?(_: {}): any;
|
|
53
|
-
}>;
|
|
54
|
-
export default _default;
|
|
55
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
56
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
57
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
58
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
59
|
-
} : {
|
|
60
|
-
type: import('vue').PropType<T[K]>;
|
|
61
|
-
required: true;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
type __VLS_WithDefaults<P, D> = {
|
|
65
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
66
|
-
default: D[K];
|
|
67
|
-
}> : P[K];
|
|
68
|
-
};
|
|
69
|
-
type __VLS_Prettify<T> = {
|
|
70
|
-
[K in keyof T]: T[K];
|
|
71
|
-
} & {};
|
|
72
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
73
|
-
new (): {
|
|
74
|
-
$slots: S;
|
|
75
|
-
};
|
|
76
|
-
};
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { OverlayProps } from './Overlay';
|
|
2
|
-
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
modelValue: boolean;
|
|
5
|
-
mountTo?: string | HTMLElement | undefined;
|
|
6
|
-
placement?: "top" | "bottom" | "right" | "left" | undefined;
|
|
7
|
-
closeOutside?: boolean | undefined;
|
|
8
|
-
closable?: boolean | undefined;
|
|
9
|
-
contentClass?: string | undefined;
|
|
10
|
-
permanent?: boolean | undefined;
|
|
11
|
-
contentBlur?: boolean | undefined;
|
|
12
|
-
top?: string | HTMLElement | undefined;
|
|
13
|
-
} & OverlayProps>, {
|
|
14
|
-
mountTo: string;
|
|
15
|
-
placement: string;
|
|
16
|
-
closeOutside: boolean;
|
|
17
|
-
closable: boolean;
|
|
18
|
-
permanent: boolean;
|
|
19
|
-
contentBlur: boolean;
|
|
20
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
-
"update:modelValue": (modelValue: boolean) => void;
|
|
22
|
-
close: () => void;
|
|
23
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
24
|
-
modelValue: boolean;
|
|
25
|
-
mountTo?: string | HTMLElement | undefined;
|
|
26
|
-
placement?: "top" | "bottom" | "right" | "left" | undefined;
|
|
27
|
-
closeOutside?: boolean | undefined;
|
|
28
|
-
closable?: boolean | undefined;
|
|
29
|
-
contentClass?: string | undefined;
|
|
30
|
-
permanent?: boolean | undefined;
|
|
31
|
-
contentBlur?: boolean | undefined;
|
|
32
|
-
top?: string | HTMLElement | undefined;
|
|
33
|
-
} & OverlayProps>, {
|
|
34
|
-
mountTo: string;
|
|
35
|
-
placement: string;
|
|
36
|
-
closeOutside: boolean;
|
|
37
|
-
closable: boolean;
|
|
38
|
-
permanent: boolean;
|
|
39
|
-
contentBlur: boolean;
|
|
40
|
-
}>>> & {
|
|
41
|
-
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
42
|
-
onClose?: (() => any) | undefined;
|
|
43
|
-
}, {
|
|
44
|
-
closable: boolean;
|
|
45
|
-
mountTo: string | HTMLElement;
|
|
46
|
-
placement: "top" | "bottom" | "right" | "left";
|
|
47
|
-
closeOutside: boolean;
|
|
48
|
-
permanent: boolean;
|
|
49
|
-
contentBlur: boolean;
|
|
50
|
-
}, {}>, {
|
|
51
|
-
default?(_: {}): any;
|
|
52
|
-
}>;
|
|
53
|
-
export default _default;
|
|
54
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
55
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
56
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
57
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
58
|
-
} : {
|
|
59
|
-
type: import('vue').PropType<T[K]>;
|
|
60
|
-
required: true;
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
|
-
type __VLS_WithDefaults<P, D> = {
|
|
64
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
65
|
-
default: D[K];
|
|
66
|
-
}> : P[K];
|
|
67
|
-
};
|
|
68
|
-
type __VLS_Prettify<T> = {
|
|
69
|
-
[K in keyof T]: T[K];
|
|
70
|
-
} & {};
|
|
71
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
72
|
-
new (): {
|
|
73
|
-
$slots: S;
|
|
74
|
-
};
|
|
75
|
-
};
|