3h1-ui 1.0.8 → 1.0.9
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/es/components/lib/components/lib/components/index.d.ts +14 -0
- package/es/components/lib/components/lib/components/src/ShyClassTree/index.d.ts +2 -0
- package/es/components/lib/components/lib/components/src/ShyClassTree/index.vue.d.ts +67 -0
- package/es/components/lib/components/lib/components/src/ShyForm/IndexView.vue.d.ts +23 -0
- package/es/components/lib/components/lib/components/src/ShyPage/IndexView.vue.d.ts +34 -0
- package/es/components/lib/components/lib/components/src/ShySonTable/index.d.ts +2 -0
- package/es/components/lib/components/lib/components/src/ShySonTable/index.vue.d.ts +36 -0
- package/es/components/lib/components/lib/components/src/ShySteps/index.d.ts +2 -0
- package/es/components/lib/components/lib/components/src/ShySteps/index.vue.d.ts +31 -0
- package/es/components/lib/components/lib/components/src/ShyTable/ButtonGroup.vue.d.ts +25 -0
- package/es/components/lib/components/lib/components/src/ShyTable/IndexView.vue.d.ts +2 -0
- package/es/components/lib/components/lib/components/src/ShyTimeLine/index.d.ts +2 -0
- package/es/components/lib/components/lib/components/src/ShyTimeLine/index.vue.d.ts +64 -0
- package/es/components/lib/components/lib/components/src/search/IndexView.vue.d.ts +61 -0
- package/es/index.js +487 -24745
- package/lib/components/lib/components/lib/components/index.d.ts +14 -0
- package/lib/components/lib/components/lib/components/src/ShyClassTree/index.d.ts +2 -0
- package/lib/components/lib/components/lib/components/src/ShyClassTree/index.vue.d.ts +67 -0
- package/lib/components/lib/components/lib/components/src/ShyForm/IndexView.vue.d.ts +23 -0
- package/lib/components/lib/components/lib/components/src/ShyPage/IndexView.vue.d.ts +34 -0
- package/lib/components/lib/components/lib/components/src/ShySonTable/index.d.ts +2 -0
- package/lib/components/lib/components/lib/components/src/ShySonTable/index.vue.d.ts +36 -0
- package/lib/components/lib/components/lib/components/src/ShySteps/index.d.ts +2 -0
- package/lib/components/lib/components/lib/components/src/ShySteps/index.vue.d.ts +31 -0
- package/lib/components/lib/components/lib/components/src/ShyTable/ButtonGroup.vue.d.ts +25 -0
- package/lib/components/lib/components/lib/components/src/ShyTable/IndexView.vue.d.ts +2 -0
- package/lib/components/lib/components/lib/components/src/ShyTimeLine/index.d.ts +2 -0
- package/lib/components/lib/components/lib/components/src/ShyTimeLine/index.vue.d.ts +64 -0
- package/lib/components/lib/components/lib/components/src/search/IndexView.vue.d.ts +61 -0
- package/lib/index.js +491 -24749
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ShyClassTree } from './src/ShyClassTree';
|
|
2
|
+
import { ShyTimeLine } from './src/ShyTimeLine';
|
|
3
|
+
import { ShySteps } from './src/ShySteps';
|
|
4
|
+
import { ShySonTable } from './src/ShySonTable';
|
|
5
|
+
import ShySearch from './src/search/IndexView.vue';
|
|
6
|
+
import ShyForm from './src/ShyForm/IndexView.vue';
|
|
7
|
+
import ShyTable from './src/ShyTable/IndexView.vue';
|
|
8
|
+
import ShyPage from './src/ShyPage/IndexView.vue';
|
|
9
|
+
import { App } from 'vue';
|
|
10
|
+
export { ShyClassTree, ShyTimeLine, ShySteps, ShySonTable, ShySearch, ShyForm, ShyTable, ShyPage };
|
|
11
|
+
declare const _default: {
|
|
12
|
+
install(app: App): void;
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
data: {
|
|
3
|
+
required: true;
|
|
4
|
+
type: {
|
|
5
|
+
(arrayLength: number): object[];
|
|
6
|
+
(...items: object[]): object[];
|
|
7
|
+
new (arrayLength: number): object[];
|
|
8
|
+
new (...items: object[]): object[];
|
|
9
|
+
isArray(arg: any): arg is any[];
|
|
10
|
+
readonly prototype: any[];
|
|
11
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
12
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
13
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
14
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
15
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
16
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
treeOption: {
|
|
20
|
+
type: ObjectConstructor;
|
|
21
|
+
default: () => {};
|
|
22
|
+
};
|
|
23
|
+
}, {
|
|
24
|
+
props: any;
|
|
25
|
+
emit: (event: "onSearch" | "treeSelect", ...args: any[]) => void;
|
|
26
|
+
search: import("vue").Ref<string>;
|
|
27
|
+
onSearchHndler: () => void;
|
|
28
|
+
treeSelectHanlder: (selectedKeys: Array<string>, e: any) => void;
|
|
29
|
+
treeOption: {
|
|
30
|
+
showLine: boolean;
|
|
31
|
+
selectedKeys: never[];
|
|
32
|
+
expandedKeys: never[];
|
|
33
|
+
fieldNames: {
|
|
34
|
+
children: string;
|
|
35
|
+
title: string;
|
|
36
|
+
key: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSearch" | "treeSelect")[], "onSearch" | "treeSelect", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
data: {
|
|
41
|
+
required: true;
|
|
42
|
+
type: {
|
|
43
|
+
(arrayLength: number): object[];
|
|
44
|
+
(...items: object[]): object[];
|
|
45
|
+
new (arrayLength: number): object[];
|
|
46
|
+
new (...items: object[]): object[];
|
|
47
|
+
isArray(arg: any): arg is any[];
|
|
48
|
+
readonly prototype: any[];
|
|
49
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
50
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
51
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
52
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
53
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
54
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
treeOption: {
|
|
58
|
+
type: ObjectConstructor;
|
|
59
|
+
default: () => {};
|
|
60
|
+
};
|
|
61
|
+
}>> & {
|
|
62
|
+
onOnSearch?: ((...args: any[]) => any) | undefined;
|
|
63
|
+
onTreeSelect?: ((...args: any[]) => any) | undefined;
|
|
64
|
+
}, {
|
|
65
|
+
treeOption: Record<string, any>;
|
|
66
|
+
}>;
|
|
67
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
column: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
default: () => never[];
|
|
6
|
+
};
|
|
7
|
+
}, {
|
|
8
|
+
props: any;
|
|
9
|
+
form: {};
|
|
10
|
+
rules: {};
|
|
11
|
+
resetFields: (newValues?: import("ant-design-vue/lib/form/useForm").Props | undefined) => void;
|
|
12
|
+
validate: <T = any>(names?: (string | string[]) | undefined, option?: import("ant-design-vue/lib/form/useForm").validateOptions | undefined) => Promise<T>;
|
|
13
|
+
validateInfos: import("ant-design-vue/lib/form/useForm").validateInfos;
|
|
14
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
column: {
|
|
16
|
+
type: ArrayConstructor;
|
|
17
|
+
required: true;
|
|
18
|
+
default: () => never[];
|
|
19
|
+
};
|
|
20
|
+
}>>, {
|
|
21
|
+
column: unknown[];
|
|
22
|
+
}>;
|
|
23
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
page: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: () => {
|
|
6
|
+
current: number;
|
|
7
|
+
pageSize: number;
|
|
8
|
+
total: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
props: any;
|
|
13
|
+
emit: (event: "update:page", ...args: any[]) => void;
|
|
14
|
+
current: import("vue").Ref<number>;
|
|
15
|
+
pageSize: import("vue").Ref<number>;
|
|
16
|
+
total: import("vue").Ref<number>;
|
|
17
|
+
changeEvent: (current: number, pageSize: number) => void;
|
|
18
|
+
zhCN: import("ant-design-vue/es/locale-provider").Locale;
|
|
19
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:page"[], "update:page", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
page: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
default: () => {
|
|
24
|
+
current: number;
|
|
25
|
+
pageSize: number;
|
|
26
|
+
total: number;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
}>> & {
|
|
30
|
+
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
|
|
31
|
+
}, {
|
|
32
|
+
page: Record<string, any>;
|
|
33
|
+
}>;
|
|
34
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
interface columnItem {
|
|
2
|
+
title: string;
|
|
3
|
+
dataIndex: string;
|
|
4
|
+
[parmas: string]: any;
|
|
5
|
+
}
|
|
6
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
7
|
+
columns: {
|
|
8
|
+
type: ArrayConstructor;
|
|
9
|
+
default: () => never[];
|
|
10
|
+
};
|
|
11
|
+
data: {
|
|
12
|
+
type: ArrayConstructor;
|
|
13
|
+
default: () => never[];
|
|
14
|
+
};
|
|
15
|
+
}, {
|
|
16
|
+
handleResizeColumn: (w: number, col: any) => void;
|
|
17
|
+
props: any;
|
|
18
|
+
tableData: object[];
|
|
19
|
+
tableColumns: columnItem[];
|
|
20
|
+
deleteItem: (index: number) => void;
|
|
21
|
+
addItem: () => void;
|
|
22
|
+
getDefaultVal: () => any;
|
|
23
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
columns: {
|
|
25
|
+
type: ArrayConstructor;
|
|
26
|
+
default: () => never[];
|
|
27
|
+
};
|
|
28
|
+
data: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
default: () => never[];
|
|
31
|
+
};
|
|
32
|
+
}>>, {
|
|
33
|
+
data: unknown[];
|
|
34
|
+
columns: unknown[];
|
|
35
|
+
}>;
|
|
36
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
interface columnItem {
|
|
2
|
+
title: String;
|
|
3
|
+
value: Number;
|
|
4
|
+
}
|
|
5
|
+
interface optionType {
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
current: number;
|
|
8
|
+
stepStyle: object;
|
|
9
|
+
columns: Array<columnItem>;
|
|
10
|
+
}
|
|
11
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
12
|
+
option: {
|
|
13
|
+
type: ObjectConstructor;
|
|
14
|
+
default: () => {};
|
|
15
|
+
};
|
|
16
|
+
}, {
|
|
17
|
+
emit: (event: "change", ...args: any[]) => void;
|
|
18
|
+
props: any;
|
|
19
|
+
stepOption: optionType;
|
|
20
|
+
stepChange: (current: number) => void;
|
|
21
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
option: {
|
|
23
|
+
type: ObjectConstructor;
|
|
24
|
+
default: () => {};
|
|
25
|
+
};
|
|
26
|
+
}>> & {
|
|
27
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
28
|
+
}, {
|
|
29
|
+
option: Record<string, any>;
|
|
30
|
+
}>;
|
|
31
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
data: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}, {
|
|
7
|
+
props: any;
|
|
8
|
+
baseButtonList: import("vue").Ref<any>;
|
|
9
|
+
hideButtonList: import("vue").Ref<any>;
|
|
10
|
+
setStyle: (dataIndex: string) => {
|
|
11
|
+
color: string;
|
|
12
|
+
} | undefined;
|
|
13
|
+
emit: (event: "click-event", ...args: any[]) => void;
|
|
14
|
+
clickEvent: (dataIndex: string) => void;
|
|
15
|
+
DownOutlined: import("@ant-design/icons-vue/lib/icons/DownOutlined").DownOutlinedIconType;
|
|
16
|
+
MinusOutlined: import("@ant-design/icons-vue/lib/icons/MinusOutlined").MinusOutlinedIconType;
|
|
17
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click-event"[], "click-event", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
data: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>> & {
|
|
23
|
+
"onClick-event"?: ((...args: any[]) => any) | undefined;
|
|
24
|
+
}, {}>;
|
|
25
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<unknown, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
interface itemContent {
|
|
2
|
+
label?: string;
|
|
3
|
+
value?: string;
|
|
4
|
+
}
|
|
5
|
+
interface dataItem {
|
|
6
|
+
color?: string;
|
|
7
|
+
dotIcon?: string;
|
|
8
|
+
position?: string | "left";
|
|
9
|
+
content: Array<itemContent>;
|
|
10
|
+
}
|
|
11
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
12
|
+
data: {
|
|
13
|
+
required: true;
|
|
14
|
+
type: {
|
|
15
|
+
(arrayLength: number): dataItem[];
|
|
16
|
+
(...items: dataItem[]): dataItem[];
|
|
17
|
+
new (arrayLength: number): dataItem[];
|
|
18
|
+
new (...items: dataItem[]): dataItem[];
|
|
19
|
+
isArray(arg: any): arg is any[];
|
|
20
|
+
readonly prototype: any[];
|
|
21
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
22
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
23
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
24
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
25
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
26
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
option: {
|
|
30
|
+
type: ObjectConstructor;
|
|
31
|
+
defautle: () => {
|
|
32
|
+
pending: boolean;
|
|
33
|
+
mode: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
}, {
|
|
37
|
+
props: any;
|
|
38
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
data: {
|
|
40
|
+
required: true;
|
|
41
|
+
type: {
|
|
42
|
+
(arrayLength: number): dataItem[];
|
|
43
|
+
(...items: dataItem[]): dataItem[];
|
|
44
|
+
new (arrayLength: number): dataItem[];
|
|
45
|
+
new (...items: dataItem[]): dataItem[];
|
|
46
|
+
isArray(arg: any): arg is any[];
|
|
47
|
+
readonly prototype: any[];
|
|
48
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
49
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
50
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
51
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
52
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
53
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
option: {
|
|
57
|
+
type: ObjectConstructor;
|
|
58
|
+
defautle: () => {
|
|
59
|
+
pending: boolean;
|
|
60
|
+
mode: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
}>>, {}>;
|
|
64
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
column: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
default: () => never[];
|
|
6
|
+
};
|
|
7
|
+
}, {
|
|
8
|
+
props: any;
|
|
9
|
+
form: {};
|
|
10
|
+
searchColumn: import("vue").ComputedRef<{
|
|
11
|
+
label: string;
|
|
12
|
+
span?: number | undefined;
|
|
13
|
+
}[]>;
|
|
14
|
+
baseColumn: import("vue").ComputedRef<{
|
|
15
|
+
label: string;
|
|
16
|
+
span?: number | undefined;
|
|
17
|
+
}[]>;
|
|
18
|
+
currentColumn: import("vue").Ref<any>;
|
|
19
|
+
isExpanded: import("vue").Ref<boolean>;
|
|
20
|
+
expandEvent: () => void;
|
|
21
|
+
isExpandFlag: import("vue").ComputedRef<boolean>;
|
|
22
|
+
iconStyle: {
|
|
23
|
+
fontSize: string;
|
|
24
|
+
color: string;
|
|
25
|
+
};
|
|
26
|
+
ShyForm: import("vue").DefineComponent<{
|
|
27
|
+
column: {
|
|
28
|
+
type: ArrayConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
default: () => never[];
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
props: any;
|
|
34
|
+
form: {};
|
|
35
|
+
rules: {};
|
|
36
|
+
resetFields: (newValues?: import("ant-design-vue/lib/form/useForm").Props | undefined) => void;
|
|
37
|
+
validate: <T = any>(names?: (string | string[]) | undefined, option?: import("ant-design-vue/lib/form/useForm").validateOptions | undefined) => Promise<T>;
|
|
38
|
+
validateInfos: import("ant-design-vue/lib/form/useForm").validateInfos;
|
|
39
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
column: {
|
|
41
|
+
type: ArrayConstructor;
|
|
42
|
+
required: true;
|
|
43
|
+
default: () => never[];
|
|
44
|
+
};
|
|
45
|
+
}>>, {
|
|
46
|
+
column: unknown[];
|
|
47
|
+
}>;
|
|
48
|
+
DownOutlined: import("@ant-design/icons-vue/lib/icons/DownOutlined").DownOutlinedIconType;
|
|
49
|
+
UpOutlined: import("@ant-design/icons-vue/lib/icons/UpOutlined").UpOutlinedIconType;
|
|
50
|
+
SearchOutlined: import("@ant-design/icons-vue/lib/icons/SearchOutlined").SearchOutlinedIconType;
|
|
51
|
+
ClearOutlined: import("@ant-design/icons-vue/lib/icons/ClearOutlined").ClearOutlinedIconType;
|
|
52
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
column: {
|
|
54
|
+
type: ArrayConstructor;
|
|
55
|
+
required: true;
|
|
56
|
+
default: () => never[];
|
|
57
|
+
};
|
|
58
|
+
}>>, {
|
|
59
|
+
column: unknown[];
|
|
60
|
+
}>;
|
|
61
|
+
export default _sfc_main;
|