@ecan-bi/datav 1.1.79 → 1.1.80

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.
@@ -0,0 +1,160 @@
1
+ import { Props } from '../../utils/props';
2
+ export interface TreeSelectOption {
3
+ value: any;
4
+ label: string;
5
+ disabled?: boolean;
6
+ key?: string;
7
+ title?: string;
8
+ children?: TreeSelectOption[];
9
+ }
10
+ export declare type TreeSelectOptions = TreeSelectOption[];
11
+ export interface TreeSelectProps extends Props {
12
+ data: TreeSelectOptions;
13
+ value: string;
14
+ dataFieldNames: {
15
+ label: string;
16
+ value: string;
17
+ children: string;
18
+ };
19
+ multiple: boolean;
20
+ maxTagCount: number | undefined;
21
+ placeholder: string;
22
+ treeCheckable: boolean;
23
+ treeCheckStrictly: boolean;
24
+ }
25
+ export declare const treeSelectProps: TreeSelectProps;
26
+ export declare const treeSelectComponentProps: {
27
+ data: {
28
+ type?: import("vue").PropType<TreeSelectOptions>;
29
+ default?: TreeSelectOptions;
30
+ };
31
+ value: {
32
+ type?: import("vue").PropType<string>;
33
+ default?: string;
34
+ };
35
+ dataFieldNames: {
36
+ type?: import("vue").PropType<{
37
+ label: string;
38
+ value: string;
39
+ children: string;
40
+ }>;
41
+ default?: {
42
+ label: string;
43
+ value: string;
44
+ children: string;
45
+ };
46
+ };
47
+ multiple: {
48
+ type?: import("vue").PropType<boolean>;
49
+ default?: boolean;
50
+ };
51
+ maxTagCount: {
52
+ type?: import("vue").PropType<number>;
53
+ default?: number;
54
+ };
55
+ placeholder: {
56
+ type?: import("vue").PropType<string>;
57
+ default?: string;
58
+ };
59
+ treeCheckable: {
60
+ type?: import("vue").PropType<boolean>;
61
+ default?: boolean;
62
+ };
63
+ treeCheckStrictly: {
64
+ type?: import("vue").PropType<boolean>;
65
+ default?: boolean;
66
+ };
67
+ id: {
68
+ type?: import("vue").PropType<string>;
69
+ default?: string;
70
+ };
71
+ name: {
72
+ type?: import("vue").PropType<string>;
73
+ default?: string;
74
+ };
75
+ keyName: {
76
+ type?: import("vue").PropType<string>;
77
+ default?: string;
78
+ };
79
+ type: {
80
+ type?: import("vue").PropType<string>;
81
+ default?: string;
82
+ };
83
+ width: {
84
+ type?: import("vue").PropType<string>;
85
+ default?: string;
86
+ };
87
+ height: {
88
+ type?: import("vue").PropType<string>;
89
+ default?: string;
90
+ };
91
+ position: {
92
+ type?: import("vue").PropType<string>;
93
+ default?: string;
94
+ };
95
+ top: {
96
+ type?: import("vue").PropType<string>;
97
+ default?: string;
98
+ };
99
+ left: {
100
+ type?: import("vue").PropType<string>;
101
+ default?: string;
102
+ };
103
+ zIndex: {
104
+ type?: import("vue").PropType<number>;
105
+ default?: number;
106
+ };
107
+ rotate: {
108
+ type?: import("vue").PropType<string>;
109
+ default?: string;
110
+ };
111
+ isShow: {
112
+ type?: import("vue").PropType<boolean>;
113
+ default?: boolean;
114
+ };
115
+ isRender: {
116
+ type?: import("vue").PropType<boolean>;
117
+ default?: boolean;
118
+ };
119
+ events: {
120
+ type?: import("vue").PropType<import('../../utils/props').Events>;
121
+ default?: import('../../utils/props').Events;
122
+ };
123
+ requestUrl: {
124
+ type?: import("vue").PropType<string>;
125
+ default?: string;
126
+ };
127
+ requestMethod: {
128
+ type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
129
+ default?: import('../../utils/props').RequestMethod;
130
+ };
131
+ requestHeaders: {
132
+ type?: import("vue").PropType<{
133
+ [key: string]: any;
134
+ }>;
135
+ default?: {
136
+ [key: string]: any;
137
+ };
138
+ };
139
+ isOpenRequestTimer: {
140
+ type?: import("vue").PropType<boolean>;
141
+ default?: boolean;
142
+ };
143
+ requestInterval: {
144
+ type?: import("vue").PropType<number>;
145
+ default?: number;
146
+ };
147
+ requestParams: {
148
+ type?: import("vue").PropType<import('../../utils/props').RequestParams>;
149
+ default?: import('../../utils/props').RequestParams;
150
+ };
151
+ requestSort: {
152
+ type?: import("vue").PropType<number>;
153
+ default?: number;
154
+ };
155
+ dataType: {
156
+ type?: import("vue").PropType<"indicator" | "static" | "request">;
157
+ default?: "indicator" | "static" | "request";
158
+ };
159
+ };
160
+ export declare const treeSelectEvents: string[];