@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.
Files changed (36) hide show
  1. package/dist/index.cjs +1 -1
  2. package/dist/index.css +1 -1
  3. package/dist/index.js +1045 -688
  4. package/dist/types/components/checkbox/index.d.ts +24 -3
  5. package/dist/types/components/checkbox/src/checkbox.d.ts +4 -5
  6. package/dist/types/components/checkbox/src/checkbox.vue.d.ts +12 -1
  7. package/dist/types/components/dialog/index.d.ts +0 -15
  8. package/dist/types/components/dialog/src/dialog.d.ts +1 -5
  9. package/dist/types/components/dialog/src/dialog.vue.d.ts +0 -5
  10. package/dist/types/components/dynamic-form/index.d.ts +245 -0
  11. package/dist/types/components/dynamic-form/src/dynamic-form.d.ts +128 -0
  12. package/dist/types/components/dynamic-form/src/dynamic-form.vue.d.ts +398 -0
  13. package/dist/types/components/fast-table/index.d.ts +8 -9
  14. package/dist/types/components/fast-table/src/column-config.vue.d.ts +1 -1
  15. package/dist/types/components/fast-table/src/fast-table.vue.d.ts +4 -4
  16. package/dist/types/components/icon/src/icon.d.ts +0 -1
  17. package/dist/types/components/image-upload/index.d.ts +257 -352
  18. package/dist/types/components/image-upload/src/image-upload.vue.d.ts +253 -348
  19. package/dist/types/components/index.d.ts +1 -0
  20. package/dist/types/components/pagination/index.d.ts +37 -21
  21. package/dist/types/components/pagination/src/pagination.d.ts +0 -10
  22. package/dist/types/components/pagination/src/pagination.vue.d.ts +15 -8
  23. package/dist/types/components/radio/index.d.ts +24 -3
  24. package/dist/types/components/radio/src/radio.d.ts +2 -5
  25. package/dist/types/components/radio/src/radio.vue.d.ts +11 -1
  26. package/dist/types/components/search-form/index.d.ts +3 -3
  27. package/dist/types/components/search-form/src/search-form.d.ts +1 -1
  28. package/dist/types/components/search-form/src/search-form.vue.d.ts +1 -1
  29. package/dist/types/components/select/index.d.ts +19 -6
  30. package/dist/types/components/select/src/select.d.ts +0 -1
  31. package/dist/types/components/select/src/select.vue.d.ts +9 -2
  32. package/dist/types/components/table/index.d.ts +8 -9
  33. package/dist/types/components/table/src/table.d.ts +4 -5
  34. package/dist/types/components/table/src/table.vue.d.ts +4 -4
  35. package/dist/types/ez-ui/component.d.ts +1257 -583
  36. package/package.json +1 -4
@@ -1,5 +1,6 @@
1
1
  export * from './checkbox';
2
2
  export * from './dialog';
3
+ export * from './dynamic-form';
3
4
  export * from './fast-table';
4
5
  export * from './icon';
5
6
  export * from './pagination';
@@ -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<import('.').PaginationProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
4
- total: number;
5
- size: "large" | "default" | "small";
6
- background: boolean;
7
- layout: string;
8
- pageSizes: number[];
9
- }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
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<import('.').PaginationProps> & Readonly<{}>, {}, {}, {}, {}, {
17
- total: number;
18
- size: "large" | "default" | "small";
19
- background: boolean;
20
- layout: string;
21
- pageSizes: number[];
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<import('.').PaginationProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
27
- total: number;
28
- size: "large" | "default" | "small";
29
- background: boolean;
30
- layout: string;
31
- pageSizes: number[];
32
- }, {}, 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>;
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,12 +1,2 @@
1
1
  export interface PaginationProps {
2
- /** 是否为分页按钮添加背景色 */
3
- background?: boolean;
4
- /** 分页大小 */
5
- size?: 'large' | 'default' | 'small';
6
- /** 总数 */
7
- total: number;
8
- /** 下拉选项集合 */
9
- pageSizes?: number[];
10
- /** 布局 */
11
- layout?: string;
12
2
  }
@@ -1,9 +1,16 @@
1
- import { PaginationProps } from './pagination';
2
- declare const _default: import('vue').DefineComponent<PaginationProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<PaginationProps> & Readonly<{}>, {
3
- total: number;
4
- size: "large" | "default" | "small";
5
- background: boolean;
6
- layout: string;
7
- pageSizes: number[];
8
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
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<import('.').RadioProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
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<import('.').RadioProps> & 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<import('.').RadioProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
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 extends Partial<InheritCheckboxProps> {
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
- declare const _default: import('vue').DefineComponent<RadioProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RadioProps> & Readonly<{}>, {
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
- arrowHeight: number;
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
- arrowHeight: number;
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
- arrowHeight: number;
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;
@@ -1,4 +1,4 @@
1
1
  export interface SearchFormProps {
2
- arrowHeight?: number;
2
+ collapsedHeight?: number;
3
3
  reset?: boolean;
4
4
  }
@@ -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
- arrowHeight: number;
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<import('.').SelectPropsType> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
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<import('.').SelectPropsType> & 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<import('.').SelectPropsType> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
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;
@@ -16,6 +16,5 @@ export interface GroupOption {
16
16
  }
17
17
  export interface SelectPropsType {
18
18
  options: SelectOption[];
19
- clearable?: boolean;
20
19
  }
21
20
  export type SelectOption = SelectOptionItem | GroupOption;
@@ -1,6 +1,13 @@
1
1
  import { SelectPropsType } from './select';
2
- declare const _default: import('vue').DefineComponent<SelectPropsType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SelectPropsType> & Readonly<{}>, {
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
- }) => T;
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
- }) => T;
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
- }) => T;
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
- }) => T;
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
- }) => D;
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
- }) => D;
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
- }) => T;
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
- }) => T;
21
+ }) => import('vue').VNodeChild;
22
22
  };
23
23
  emit: {};
24
24
  }>) => import('vue').VNode & {