@maxtan/ez-ui 0.13.0 → 0.15.0
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.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +1045 -688
- package/dist/types/components/checkbox/index.d.ts +24 -3
- package/dist/types/components/checkbox/src/checkbox.d.ts +4 -5
- package/dist/types/components/checkbox/src/checkbox.vue.d.ts +12 -1
- package/dist/types/components/dialog/index.d.ts +0 -15
- package/dist/types/components/dialog/src/dialog.d.ts +1 -5
- package/dist/types/components/dialog/src/dialog.vue.d.ts +0 -5
- package/dist/types/components/dynamic-form/index.d.ts +245 -0
- package/dist/types/components/dynamic-form/src/dynamic-form.d.ts +128 -0
- package/dist/types/components/dynamic-form/src/dynamic-form.vue.d.ts +398 -0
- package/dist/types/components/fast-table/index.d.ts +8 -9
- package/dist/types/components/fast-table/src/column-config.vue.d.ts +1 -1
- package/dist/types/components/fast-table/src/fast-table.vue.d.ts +4 -4
- package/dist/types/components/icon/src/icon.d.ts +0 -1
- package/dist/types/components/image-upload/index.d.ts +257 -352
- package/dist/types/components/image-upload/src/image-upload.vue.d.ts +253 -348
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/pagination/index.d.ts +37 -21
- package/dist/types/components/pagination/src/pagination.d.ts +0 -10
- package/dist/types/components/pagination/src/pagination.vue.d.ts +15 -8
- package/dist/types/components/radio/index.d.ts +24 -3
- package/dist/types/components/radio/src/radio.d.ts +2 -5
- package/dist/types/components/radio/src/radio.vue.d.ts +11 -1
- package/dist/types/components/search-form/index.d.ts +3 -3
- package/dist/types/components/search-form/src/search-form.d.ts +1 -1
- package/dist/types/components/search-form/src/search-form.vue.d.ts +1 -1
- package/dist/types/components/select/index.d.ts +19 -6
- package/dist/types/components/select/src/select.d.ts +0 -1
- package/dist/types/components/select/src/select.vue.d.ts +9 -2
- package/dist/types/components/table/index.d.ts +8 -9
- package/dist/types/components/table/src/table.d.ts +4 -5
- package/dist/types/components/table/src/table.vue.d.ts +4 -4
- package/dist/types/ez-ui/component.d.ts +1257 -583
- package/package.json +1 -4
|
@@ -1,33 +1,49 @@
|
|
|
1
1
|
export type * from './src/pagination';
|
|
2
2
|
export declare const EzPagination: ({
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
|
+
currentPage?: number;
|
|
5
|
+
pageSize?: number;
|
|
6
|
+
}> & Readonly<{
|
|
7
|
+
"onCurrent-change"?: (value: number) => any;
|
|
8
|
+
"onSize-change"?: (value: number) => any;
|
|
9
|
+
"onUpdate:currentPage"?: (value: number) => any;
|
|
10
|
+
"onUpdate:pageSize"?: (value: number) => any;
|
|
11
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
"current-change": (value: number) => any;
|
|
13
|
+
"size-change": (value: number) => any;
|
|
14
|
+
"update:currentPage": (value: number) => any;
|
|
15
|
+
"update:pageSize": (value: number) => any;
|
|
16
|
+
}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
10
17
|
P: {};
|
|
11
18
|
B: {};
|
|
12
19
|
D: {};
|
|
13
20
|
C: {};
|
|
14
21
|
M: {};
|
|
15
22
|
Defaults: {};
|
|
16
|
-
}, Readonly<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
}, Readonly<{
|
|
24
|
+
currentPage?: number;
|
|
25
|
+
pageSize?: number;
|
|
26
|
+
}> & Readonly<{
|
|
27
|
+
"onCurrent-change"?: (value: number) => any;
|
|
28
|
+
"onSize-change"?: (value: number) => any;
|
|
29
|
+
"onUpdate:currentPage"?: (value: number) => any;
|
|
30
|
+
"onUpdate:pageSize"?: (value: number) => any;
|
|
31
|
+
}>, {}, {}, {}, {}, {}>;
|
|
23
32
|
__isFragment?: never;
|
|
24
33
|
__isTeleport?: never;
|
|
25
34
|
__isSuspense?: never;
|
|
26
|
-
} & import('vue').ComponentOptionsBase<Readonly<
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
35
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
36
|
+
currentPage?: number;
|
|
37
|
+
pageSize?: number;
|
|
38
|
+
}> & Readonly<{
|
|
39
|
+
"onCurrent-change"?: (value: number) => any;
|
|
40
|
+
"onSize-change"?: (value: number) => any;
|
|
41
|
+
"onUpdate:currentPage"?: (value: number) => any;
|
|
42
|
+
"onUpdate:pageSize"?: (value: number) => any;
|
|
43
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
44
|
+
"current-change": (value: number) => any;
|
|
45
|
+
"size-change": (value: number) => any;
|
|
46
|
+
"update:currentPage": (value: number) => any;
|
|
47
|
+
"update:pageSize": (value: number) => any;
|
|
48
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin) & Record<string, any>;
|
|
33
49
|
export default EzPagination;
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
type __VLS_PublicProps = {
|
|
2
|
+
'currentPage'?: number;
|
|
3
|
+
'pageSize'?: number;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
"current-change": (value: number) => any;
|
|
7
|
+
"size-change": (value: number) => any;
|
|
8
|
+
"update:currentPage": (value: number) => any;
|
|
9
|
+
"update:pageSize": (value: number) => any;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
+
"onCurrent-change"?: (value: number) => any;
|
|
12
|
+
"onSize-change"?: (value: number) => any;
|
|
13
|
+
"onUpdate:currentPage"?: (value: number) => any;
|
|
14
|
+
"onUpdate:pageSize"?: (value: number) => any;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
9
16
|
export default _default;
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
export type * from './src/radio';
|
|
2
2
|
export declare const EzRadio: ({
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
|
+
modelValue?: string | number | boolean;
|
|
5
|
+
} & import('.').RadioProps> & Readonly<{
|
|
6
|
+
onChange?: (value: string | number | boolean) => any;
|
|
7
|
+
"onUpdate:modelValue"?: (value: string | number | boolean) => any;
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
change: (value: string | number | boolean) => any;
|
|
10
|
+
"update:modelValue": (value: string | number | boolean) => any;
|
|
11
|
+
}, import('vue').PublicProps, {
|
|
4
12
|
type: import('.').RadioType;
|
|
5
13
|
options: import('.').RadioOption[];
|
|
6
14
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -10,14 +18,27 @@ export declare const EzRadio: ({
|
|
|
10
18
|
C: {};
|
|
11
19
|
M: {};
|
|
12
20
|
Defaults: {};
|
|
13
|
-
}, Readonly<
|
|
21
|
+
}, Readonly<{
|
|
22
|
+
modelValue?: string | number | boolean;
|
|
23
|
+
} & import('.').RadioProps> & Readonly<{
|
|
24
|
+
onChange?: (value: string | number | boolean) => any;
|
|
25
|
+
"onUpdate:modelValue"?: (value: string | number | boolean) => any;
|
|
26
|
+
}>, {}, {}, {}, {}, {
|
|
14
27
|
type: import('.').RadioType;
|
|
15
28
|
options: import('.').RadioOption[];
|
|
16
29
|
}>;
|
|
17
30
|
__isFragment?: never;
|
|
18
31
|
__isTeleport?: never;
|
|
19
32
|
__isSuspense?: never;
|
|
20
|
-
} & import('vue').ComponentOptionsBase<Readonly<
|
|
33
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
34
|
+
modelValue?: string | number | boolean;
|
|
35
|
+
} & import('.').RadioProps> & Readonly<{
|
|
36
|
+
onChange?: (value: string | number | boolean) => any;
|
|
37
|
+
"onUpdate:modelValue"?: (value: string | number | boolean) => any;
|
|
38
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
39
|
+
change: (value: string | number | boolean) => any;
|
|
40
|
+
"update:modelValue": (value: string | number | boolean) => any;
|
|
41
|
+
}, string, {
|
|
21
42
|
type: import('.').RadioType;
|
|
22
43
|
options: import('.').RadioOption[];
|
|
23
44
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin) & Record<string, any>;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import { RadioProps as ElRadioProps } from 'element-plus';
|
|
2
|
-
type PickProps = 'disabled';
|
|
3
|
-
type InheritCheckboxProps = Pick<ElRadioProps, PickProps>;
|
|
4
1
|
export type RadioType = 'default' | 'button' | 'border';
|
|
5
|
-
export interface RadioOption
|
|
2
|
+
export interface RadioOption {
|
|
6
3
|
value: string | number | boolean;
|
|
7
4
|
label: string;
|
|
5
|
+
disabled?: boolean;
|
|
8
6
|
}
|
|
9
7
|
export interface RadioProps {
|
|
10
8
|
type?: RadioType;
|
|
11
9
|
options: RadioOption[];
|
|
12
10
|
}
|
|
13
|
-
export {};
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import { RadioProps } from './radio';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = RadioProps;
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
modelValue?: string | number | boolean;
|
|
5
|
+
} & __VLS_Props;
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
change: (value: string | number | boolean) => any;
|
|
8
|
+
"update:modelValue": (value: string | number | boolean) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
10
|
+
onChange?: (value: string | number | boolean) => any;
|
|
11
|
+
"onUpdate:modelValue"?: (value: string | number | boolean) => any;
|
|
12
|
+
}>, {
|
|
3
13
|
type: import('./radio').RadioType;
|
|
4
14
|
options: import('./radio').RadioOption[];
|
|
5
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -9,7 +9,7 @@ export declare const EzSearchForm: ({
|
|
|
9
9
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
10
|
"update:expanded": (value: Boolean) => any;
|
|
11
11
|
}, import('vue').PublicProps, {
|
|
12
|
-
|
|
12
|
+
collapsedHeight: number;
|
|
13
13
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
14
14
|
wrapRef: HTMLDivElement;
|
|
15
15
|
}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -26,7 +26,7 @@ export declare const EzSearchForm: ({
|
|
|
26
26
|
}>, {
|
|
27
27
|
countViewHeight: () => void;
|
|
28
28
|
}, {}, {}, {}, {
|
|
29
|
-
|
|
29
|
+
collapsedHeight: number;
|
|
30
30
|
}>;
|
|
31
31
|
__isFragment?: never;
|
|
32
32
|
__isTeleport?: never;
|
|
@@ -40,7 +40,7 @@ export declare const EzSearchForm: ({
|
|
|
40
40
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
41
|
"update:expanded": (value: Boolean) => any;
|
|
42
42
|
}, string, {
|
|
43
|
-
|
|
43
|
+
collapsedHeight: number;
|
|
44
44
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
45
45
|
$slots: {
|
|
46
46
|
operate?(_: {}): any;
|
|
@@ -22,7 +22,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
22
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
23
23
|
"onUpdate:expanded"?: (value: Boolean) => any;
|
|
24
24
|
}>, {
|
|
25
|
-
|
|
25
|
+
collapsedHeight: number;
|
|
26
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
27
27
|
wrapRef: HTMLDivElement;
|
|
28
28
|
}, any>;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
export type * from './src/select';
|
|
2
2
|
export declare const EzSelect: ({
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
|
+
modelValue?: any;
|
|
5
|
+
} & import('.').SelectPropsType> & Readonly<{
|
|
6
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
7
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
"update:modelValue": (value: any) => any;
|
|
9
|
+
}, import('vue').PublicProps, {
|
|
4
10
|
options: import('.').SelectOption[];
|
|
5
|
-
clearable: boolean;
|
|
6
11
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
7
12
|
P: {};
|
|
8
13
|
B: {};
|
|
@@ -10,15 +15,23 @@ export declare const EzSelect: ({
|
|
|
10
15
|
C: {};
|
|
11
16
|
M: {};
|
|
12
17
|
Defaults: {};
|
|
13
|
-
}, Readonly<
|
|
18
|
+
}, Readonly<{
|
|
19
|
+
modelValue?: any;
|
|
20
|
+
} & import('.').SelectPropsType> & Readonly<{
|
|
21
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
22
|
+
}>, {}, {}, {}, {}, {
|
|
14
23
|
options: import('.').SelectOption[];
|
|
15
|
-
clearable: boolean;
|
|
16
24
|
}>;
|
|
17
25
|
__isFragment?: never;
|
|
18
26
|
__isTeleport?: never;
|
|
19
27
|
__isSuspense?: never;
|
|
20
|
-
} & import('vue').ComponentOptionsBase<Readonly<
|
|
28
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
29
|
+
modelValue?: any;
|
|
30
|
+
} & import('.').SelectPropsType> & Readonly<{
|
|
31
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
32
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
33
|
+
"update:modelValue": (value: any) => any;
|
|
34
|
+
}, string, {
|
|
21
35
|
options: import('.').SelectOption[];
|
|
22
|
-
clearable: boolean;
|
|
23
36
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin) & Record<string, any>;
|
|
24
37
|
export default EzSelect;
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { SelectPropsType } from './select';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = SelectPropsType;
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
modelValue?: any;
|
|
5
|
+
} & __VLS_Props;
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (value: any) => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
10
|
+
}>, {
|
|
3
11
|
options: import('./select').SelectOption[];
|
|
4
|
-
clearable: boolean;
|
|
5
12
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
13
|
export default _default;
|
|
@@ -4,15 +4,15 @@ export declare const EzTable: ((<T = any>(__VLS_props: NonNullable<Awaited<typeo
|
|
|
4
4
|
row: T;
|
|
5
5
|
column: import('.').TableColumn<T>;
|
|
6
6
|
$index: number;
|
|
7
|
-
}) =>
|
|
7
|
+
}) => import('vue').VNodeChild;
|
|
8
8
|
} & {
|
|
9
|
-
append?: import('vue').VNodeChild;
|
|
10
|
-
empty?: import('vue').VNodeChild;
|
|
9
|
+
append?: () => import('vue').VNodeChild;
|
|
10
|
+
empty?: () => import('vue').VNodeChild;
|
|
11
11
|
} & {
|
|
12
12
|
[x: `header-${string}`]: (props: {
|
|
13
13
|
column: import('.').TableColumn<T>;
|
|
14
14
|
$index: number;
|
|
15
|
-
}) =>
|
|
15
|
+
}) => import('vue').VNodeChild;
|
|
16
16
|
};
|
|
17
17
|
attrs: any;
|
|
18
18
|
emit: {};
|
|
@@ -20,7 +20,6 @@ export declare const EzTable: ((<T = any>(__VLS_props: NonNullable<Awaited<typeo
|
|
|
20
20
|
props: {
|
|
21
21
|
data: T[];
|
|
22
22
|
columns: import('.').TableColumn<T>[];
|
|
23
|
-
border?: boolean;
|
|
24
23
|
rowKey?: string;
|
|
25
24
|
} & import('vue').PublicProps;
|
|
26
25
|
expose(exposed: import('vue').ShallowUnwrapRef<{
|
|
@@ -32,15 +31,15 @@ export declare const EzTable: ((<T = any>(__VLS_props: NonNullable<Awaited<typeo
|
|
|
32
31
|
row: T;
|
|
33
32
|
column: import('.').TableColumn<T>;
|
|
34
33
|
$index: number;
|
|
35
|
-
}) =>
|
|
34
|
+
}) => import('vue').VNodeChild;
|
|
36
35
|
} & {
|
|
37
|
-
append?: import('vue').VNodeChild;
|
|
38
|
-
empty?: import('vue').VNodeChild;
|
|
36
|
+
append?: () => import('vue').VNodeChild;
|
|
37
|
+
empty?: () => import('vue').VNodeChild;
|
|
39
38
|
} & {
|
|
40
39
|
[x: `header-${string}`]: (props: {
|
|
41
40
|
column: import('.').TableColumn<T>;
|
|
42
41
|
$index: number;
|
|
43
|
-
}) =>
|
|
42
|
+
}) => import('vue').VNodeChild;
|
|
44
43
|
};
|
|
45
44
|
emit: {};
|
|
46
45
|
}>) => import('vue').VNode & {
|
|
@@ -10,19 +10,18 @@ export type TableSolt<D> = {
|
|
|
10
10
|
row: D;
|
|
11
11
|
column: TableColumn<D>;
|
|
12
12
|
$index: number;
|
|
13
|
-
}) =>
|
|
13
|
+
}) => VNodeChild;
|
|
14
14
|
} & {
|
|
15
|
-
append?: VNodeChild;
|
|
16
|
-
empty?: VNodeChild;
|
|
15
|
+
append?: () => VNodeChild;
|
|
16
|
+
empty?: () => VNodeChild;
|
|
17
17
|
} & {
|
|
18
18
|
[key in `header-${string}`]?: (props: {
|
|
19
19
|
column: TableColumn<D>;
|
|
20
20
|
$index: number;
|
|
21
|
-
}) =>
|
|
21
|
+
}) => VNodeChild;
|
|
22
22
|
};
|
|
23
23
|
export interface TableProps<T = any> {
|
|
24
24
|
data: T[];
|
|
25
25
|
columns: TableColumn<T>[];
|
|
26
|
-
border?: boolean;
|
|
27
26
|
rowKey?: string;
|
|
28
27
|
}
|
|
@@ -10,15 +10,15 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
|
|
|
10
10
|
row: T;
|
|
11
11
|
column: TableColumn<T>;
|
|
12
12
|
$index: number;
|
|
13
|
-
}) =>
|
|
13
|
+
}) => import('vue').VNodeChild;
|
|
14
14
|
} & {
|
|
15
|
-
append?: import('vue').VNodeChild;
|
|
16
|
-
empty?: import('vue').VNodeChild;
|
|
15
|
+
append?: () => import('vue').VNodeChild;
|
|
16
|
+
empty?: () => import('vue').VNodeChild;
|
|
17
17
|
} & {
|
|
18
18
|
[x: `header-${string}`]: (props: {
|
|
19
19
|
column: TableColumn<T>;
|
|
20
20
|
$index: number;
|
|
21
|
-
}) =>
|
|
21
|
+
}) => import('vue').VNodeChild;
|
|
22
22
|
};
|
|
23
23
|
emit: {};
|
|
24
24
|
}>) => import('vue').VNode & {
|