@ecan-bi/pivot-table 1.0.15 → 1.0.17
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.es.js +14475 -12081
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +37 -34
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +13 -12
- package/types/hooks/useIndicatorData.d.ts +4 -0
- package/types/pivotTable/DragArea.vue.d.ts +28 -0
- package/types/pivotTable/PivotAggregate.vue.d.ts +1 -0
- package/types/pivotTable/PivotTable.vue.d.ts +406 -332
- package/types/pivotTable/conditional-property/ConditionalProperty.vue.d.ts +1 -1
- package/types/pivotTable/conditional-property/components/PropertyConfig.vue.d.ts +1 -1
- package/types/pivotTable/conditional-property/components/prop-to-form/Radio.vue.d.ts +1 -1
- package/types/pivotTable/pivot-config/IndSourceList.vue.d.ts +3 -2
- package/types/pivotTable/pivot-config/PivotConfig.vue.d.ts +2 -417
- package/types/utils/util.d.ts +1 -1
- package/types/utils/constant.d.ts +0 -25
|
@@ -72,10 +72,6 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
72
72
|
type: StringConstructor;
|
|
73
73
|
default: string;
|
|
74
74
|
};
|
|
75
|
-
calculateList: {
|
|
76
|
-
type: PropType<any[]>;
|
|
77
|
-
default: () => any[];
|
|
78
|
-
};
|
|
79
75
|
styleConfig: {
|
|
80
76
|
type: PropType<{
|
|
81
77
|
[key: string]: any;
|
|
@@ -98,7 +94,25 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
98
94
|
type: StringConstructor;
|
|
99
95
|
default: string;
|
|
100
96
|
};
|
|
97
|
+
indicatorToken: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
context: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
enlargeContainer: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
globalModel: {
|
|
110
|
+
type: ObjectConstructor;
|
|
111
|
+
default: () => {};
|
|
112
|
+
};
|
|
101
113
|
}>, {
|
|
114
|
+
showDefaultTableArea: import("vue").ComputedRef<boolean>;
|
|
115
|
+
maskList: import("vue").Ref<any[], any[]>;
|
|
102
116
|
dropDownMenuColor: import("vue").ComputedRef<any>;
|
|
103
117
|
dropDownMenuBgColor: import("vue").ComputedRef<any>;
|
|
104
118
|
dropDownMenuHightLightColor: import("vue").ComputedRef<any>;
|
|
@@ -116,9 +130,23 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
116
130
|
filterData: import("vue").Ref<any, any>;
|
|
117
131
|
loadingRect: import("vue").Ref<{}, {}>;
|
|
118
132
|
loading: import("vue").Ref<boolean, boolean>;
|
|
119
|
-
click: () => void;
|
|
120
133
|
isTableInit: import("vue").Ref<boolean, boolean>;
|
|
121
|
-
|
|
134
|
+
toolBoxStyle: import("vue").Ref<any, any>;
|
|
135
|
+
indSourceRef: import("vue").Ref<any, any>;
|
|
136
|
+
searchText: import("vue").Ref<string, string>;
|
|
137
|
+
dragAreaStyle: import("vue").Ref<any, any>;
|
|
138
|
+
offsetWidth: import("vue").ComputedRef<number>;
|
|
139
|
+
showTreeData: import("vue").Ref<boolean, boolean>;
|
|
140
|
+
dataIconStyle: import("vue").ComputedRef<any>;
|
|
141
|
+
largeVisible: import("vue").Ref<boolean, boolean>;
|
|
142
|
+
sourceListStyle: import("vue").Ref<any, any>;
|
|
143
|
+
defaultTableStyle: import("vue").ComputedRef<{
|
|
144
|
+
width: string;
|
|
145
|
+
height: string;
|
|
146
|
+
backgroundColor: string;
|
|
147
|
+
color: string;
|
|
148
|
+
}>;
|
|
149
|
+
click: () => void;
|
|
122
150
|
onFilterChange: ({ checkKeys, key, type }: {
|
|
123
151
|
checkKeys: any;
|
|
124
152
|
key: any;
|
|
@@ -130,6 +158,14 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
130
158
|
handleGetTop: (data: any) => void;
|
|
131
159
|
handleConfig: () => void;
|
|
132
160
|
handleGetConfig: (dimensions?: any[], indicators?: any[]) => void;
|
|
161
|
+
onDragStart: (event: any, dataSource: {
|
|
162
|
+
[key: string]: any;
|
|
163
|
+
}) => void;
|
|
164
|
+
onDragEnd: () => void;
|
|
165
|
+
onSearch: () => void;
|
|
166
|
+
handleAddField: (type: string) => void;
|
|
167
|
+
toggleShowData: () => void;
|
|
168
|
+
handleEnScale: () => void;
|
|
133
169
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
134
170
|
id: {
|
|
135
171
|
type: StringConstructor;
|
|
@@ -203,10 +239,6 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
203
239
|
type: StringConstructor;
|
|
204
240
|
default: string;
|
|
205
241
|
};
|
|
206
|
-
calculateList: {
|
|
207
|
-
type: PropType<any[]>;
|
|
208
|
-
default: () => any[];
|
|
209
|
-
};
|
|
210
242
|
styleConfig: {
|
|
211
243
|
type: PropType<{
|
|
212
244
|
[key: string]: any;
|
|
@@ -229,7 +261,27 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
229
261
|
type: StringConstructor;
|
|
230
262
|
default: string;
|
|
231
263
|
};
|
|
264
|
+
indicatorToken: {
|
|
265
|
+
type: StringConstructor;
|
|
266
|
+
default: string;
|
|
267
|
+
};
|
|
268
|
+
context: {
|
|
269
|
+
type: StringConstructor;
|
|
270
|
+
default: string;
|
|
271
|
+
};
|
|
272
|
+
enlargeContainer: {
|
|
273
|
+
type: StringConstructor;
|
|
274
|
+
default: string;
|
|
275
|
+
};
|
|
276
|
+
globalModel: {
|
|
277
|
+
type: ObjectConstructor;
|
|
278
|
+
default: () => {};
|
|
279
|
+
};
|
|
232
280
|
}>> & Readonly<{}>, {
|
|
281
|
+
pageId: string;
|
|
282
|
+
indicatorUrl: string;
|
|
283
|
+
indicatorToken: string;
|
|
284
|
+
context: string;
|
|
233
285
|
data: unknown[];
|
|
234
286
|
type: string;
|
|
235
287
|
theme: string;
|
|
@@ -240,7 +292,6 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
240
292
|
width: string;
|
|
241
293
|
height: string;
|
|
242
294
|
zIndex: number;
|
|
243
|
-
pageId: string;
|
|
244
295
|
fullMode: boolean;
|
|
245
296
|
id: string;
|
|
246
297
|
keyName: string;
|
|
@@ -251,11 +302,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
251
302
|
dimensionList: any[];
|
|
252
303
|
indicatorList: any[];
|
|
253
304
|
pageMode: string;
|
|
254
|
-
calculateList: any[];
|
|
255
305
|
styleConfig: {
|
|
256
306
|
[key: string]: any;
|
|
257
307
|
};
|
|
258
|
-
|
|
308
|
+
enlargeContainer: string;
|
|
309
|
+
globalModel: Record<string, any>;
|
|
259
310
|
}, {}, {
|
|
260
311
|
PivotFilter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
261
312
|
data: {
|
|
@@ -7613,8 +7664,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7613
7664
|
default(): any[];
|
|
7614
7665
|
};
|
|
7615
7666
|
}>> & Readonly<{}>, {
|
|
7616
|
-
value: string;
|
|
7617
7667
|
options: unknown[];
|
|
7668
|
+
value: string;
|
|
7618
7669
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7619
7670
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7620
7671
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -7743,6 +7794,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7743
7794
|
label: string;
|
|
7744
7795
|
value: string;
|
|
7745
7796
|
}[];
|
|
7797
|
+
dimensionKey: import("vue").Ref<string, string>;
|
|
7746
7798
|
handleOk: () => void;
|
|
7747
7799
|
getPopupContainer: () => Element;
|
|
7748
7800
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -7804,20 +7856,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7804
7856
|
}>;
|
|
7805
7857
|
fields: any[];
|
|
7806
7858
|
}[]>;
|
|
7807
|
-
dataSourceList: import("vue").Ref<{
|
|
7808
|
-
[key: string]: any;
|
|
7809
|
-
}[], {
|
|
7810
|
-
[key: string]: any;
|
|
7811
|
-
}[]>;
|
|
7812
7859
|
indSourceRef: import("vue").Ref<any, any>;
|
|
7813
|
-
searchText: import("vue").Ref<string, string>;
|
|
7814
7860
|
maskList: import("vue").Ref<any[], any[]>;
|
|
7815
7861
|
currentEditItem: import("vue").Ref<any, any>;
|
|
7816
7862
|
handleOk: () => void;
|
|
7817
|
-
onSearch: () => void;
|
|
7818
|
-
onDragStart: (event: any, dataSource: {
|
|
7819
|
-
[key: string]: any;
|
|
7820
|
-
}) => void;
|
|
7821
7863
|
onDragAreaStart: (event: any, dataSource: {
|
|
7822
7864
|
[key: string]: any;
|
|
7823
7865
|
}) => void;
|
|
@@ -7826,6 +7868,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7826
7868
|
handleEdit: (index: number, fIndex: number) => void;
|
|
7827
7869
|
onConfirmLabel: () => void;
|
|
7828
7870
|
onDragAdd: () => void;
|
|
7871
|
+
onChangeLabel: (event: any) => void;
|
|
7829
7872
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7830
7873
|
theme: {
|
|
7831
7874
|
type: StringConstructor;
|
|
@@ -7840,8 +7883,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7840
7883
|
default: string;
|
|
7841
7884
|
};
|
|
7842
7885
|
}>> & Readonly<{}>, {
|
|
7843
|
-
theme: string;
|
|
7844
7886
|
pageId: string;
|
|
7887
|
+
theme: string;
|
|
7845
7888
|
fullMode: boolean;
|
|
7846
7889
|
}, {}, {
|
|
7847
7890
|
VNodeRender: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -7928,304 +7971,235 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7928
7971
|
modelValue: unknown[];
|
|
7929
7972
|
componentData: Record<string, any>;
|
|
7930
7973
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7931
|
-
|
|
7932
|
-
|
|
7933
|
-
|
|
7934
|
-
|
|
7935
|
-
|
|
7936
|
-
|
|
7937
|
-
|
|
7938
|
-
|
|
7939
|
-
|
|
7940
|
-
|
|
7941
|
-
|
|
7942
|
-
|
|
7974
|
+
DeleteOutlined: import("@ant-design/icons-vue/lib/icons/DeleteOutlined").DeleteOutlinedIconType;
|
|
7975
|
+
}, {
|
|
7976
|
+
focus: {
|
|
7977
|
+
mounted(el: HTMLElement): void;
|
|
7978
|
+
};
|
|
7979
|
+
}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7980
|
+
IndSourceList: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7981
|
+
data: {
|
|
7982
|
+
type: PropType<any[]>;
|
|
7983
|
+
default: () => any[];
|
|
7984
|
+
};
|
|
7985
|
+
source: {
|
|
7986
|
+
type: StringConstructor;
|
|
7987
|
+
default: string;
|
|
7988
|
+
};
|
|
7989
|
+
isSub: {
|
|
7990
|
+
type: BooleanConstructor;
|
|
7991
|
+
default: boolean;
|
|
7992
|
+
};
|
|
7993
|
+
hasChildren: {
|
|
7994
|
+
type: BooleanConstructor;
|
|
7995
|
+
default: boolean;
|
|
7996
|
+
};
|
|
7997
|
+
pageId: {
|
|
7998
|
+
type: StringConstructor;
|
|
7999
|
+
default: string;
|
|
8000
|
+
};
|
|
8001
|
+
}>, {
|
|
8002
|
+
columnRef: import("vue").Ref<any, any>;
|
|
8003
|
+
sourceList: import("vue").Ref<{
|
|
8004
|
+
[key: string]: any;
|
|
8005
|
+
}[], {
|
|
8006
|
+
[key: string]: any;
|
|
8007
|
+
}[]>;
|
|
8008
|
+
searchLoading: import("vue").Ref<boolean, boolean>;
|
|
8009
|
+
onToggleGroup: (index: number) => Promise<void>;
|
|
8010
|
+
onToggleSource: (dataSource: {
|
|
8011
|
+
[key: string]: any;
|
|
8012
|
+
}) => void;
|
|
8013
|
+
setItemDisabled: (_value: any) => false;
|
|
8014
|
+
setChildItemDisabled: (_value: any) => false;
|
|
8015
|
+
onDragStart: (event: any, dataSource: {
|
|
8016
|
+
[key: string]: any;
|
|
8017
|
+
}) => void;
|
|
8018
|
+
onDragEnd: () => void;
|
|
8019
|
+
mapDataSetScope: (scope: "0" | "1" | "2") => string;
|
|
8020
|
+
mapScope: (scope: "DIM" | "IDX" | "BUILT_IN_DIM" | "BUILT_IN_IDX" | "FIELD") => string;
|
|
8021
|
+
getLoadType: (type: string) => "" | "手工录入" | "系统取数" | "运算加工";
|
|
8022
|
+
getUseType: (type: string) => string;
|
|
8023
|
+
getSourceType: (dataTo: string) => "数据集" | "指标库" | "视图" | "其他";
|
|
8024
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8025
|
+
data: {
|
|
8026
|
+
type: PropType<any[]>;
|
|
8027
|
+
default: () => any[];
|
|
8028
|
+
};
|
|
8029
|
+
source: {
|
|
8030
|
+
type: StringConstructor;
|
|
8031
|
+
default: string;
|
|
8032
|
+
};
|
|
8033
|
+
isSub: {
|
|
8034
|
+
type: BooleanConstructor;
|
|
8035
|
+
default: boolean;
|
|
8036
|
+
};
|
|
8037
|
+
hasChildren: {
|
|
8038
|
+
type: BooleanConstructor;
|
|
8039
|
+
default: boolean;
|
|
8040
|
+
};
|
|
8041
|
+
pageId: {
|
|
8042
|
+
type: StringConstructor;
|
|
8043
|
+
default: string;
|
|
8044
|
+
};
|
|
8045
|
+
}>> & Readonly<{}>, {
|
|
8046
|
+
pageId: string;
|
|
8047
|
+
data: any[];
|
|
8048
|
+
source: string;
|
|
8049
|
+
isSub: boolean;
|
|
8050
|
+
hasChildren: boolean;
|
|
8051
|
+
}, {}, {
|
|
8052
|
+
CaretRightOutlined: import("@ant-design/icons-vue/lib/icons/CaretRightOutlined").CaretRightOutlinedIconType;
|
|
8053
|
+
CaretDownOutlined: import("@ant-design/icons-vue/lib/icons/CaretDownOutlined").CaretDownOutlinedIconType;
|
|
8054
|
+
LoadingOutlined: import("@ant-design/icons-vue/lib/icons/LoadingOutlined").LoadingOutlinedIconType;
|
|
8055
|
+
Draggable: import("vue").DefineComponent<{
|
|
8056
|
+
list: {
|
|
8057
|
+
type: ArrayConstructor;
|
|
8058
|
+
required: boolean;
|
|
8059
|
+
default: any;
|
|
7943
8060
|
};
|
|
7944
|
-
|
|
7945
|
-
type:
|
|
7946
|
-
|
|
8061
|
+
modelValue: {
|
|
8062
|
+
type: ArrayConstructor;
|
|
8063
|
+
required: boolean;
|
|
8064
|
+
default: any;
|
|
7947
8065
|
};
|
|
7948
|
-
|
|
7949
|
-
type: StringConstructor;
|
|
7950
|
-
|
|
8066
|
+
itemKey: {
|
|
8067
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
8068
|
+
required: boolean;
|
|
7951
8069
|
};
|
|
7952
|
-
|
|
7953
|
-
|
|
7954
|
-
|
|
7955
|
-
[key: string]: any;
|
|
7956
|
-
}[], {
|
|
7957
|
-
[key: string]: any;
|
|
7958
|
-
}[]>;
|
|
7959
|
-
searchLoading: import("vue").Ref<boolean, boolean>;
|
|
7960
|
-
onToggleGroup: (index: number) => Promise<void>;
|
|
7961
|
-
onToggleSource: (dataSource: {
|
|
7962
|
-
[key: string]: any;
|
|
7963
|
-
}) => void;
|
|
7964
|
-
setItemDisabled: (_value: any) => false;
|
|
7965
|
-
onDragStart: (event: any, dataSource: {
|
|
7966
|
-
[key: string]: any;
|
|
7967
|
-
}) => void;
|
|
7968
|
-
onDragEnd: () => void;
|
|
7969
|
-
mapDataSetScope: (scope: "0" | "1" | "2") => string;
|
|
7970
|
-
mapScope: (scope: "DIM" | "IDX" | "BUILT_IN_DIM") => string;
|
|
7971
|
-
getLoadType: (type: string) => "" | "手工录入" | "系统取数" | "运算加工";
|
|
7972
|
-
getUseType: (type: string) => string;
|
|
7973
|
-
getSourceType: (dataTo: string) => "数据集" | "指标库" | "视图" | "其他";
|
|
7974
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7975
|
-
data: {
|
|
7976
|
-
type: PropType<any[]>;
|
|
7977
|
-
default: () => any[];
|
|
8070
|
+
clone: {
|
|
8071
|
+
type: FunctionConstructor;
|
|
8072
|
+
default: (original: any) => any;
|
|
7978
8073
|
};
|
|
7979
|
-
|
|
8074
|
+
tag: {
|
|
7980
8075
|
type: StringConstructor;
|
|
7981
8076
|
default: string;
|
|
7982
8077
|
};
|
|
7983
|
-
|
|
7984
|
-
type:
|
|
7985
|
-
default:
|
|
7986
|
-
};
|
|
7987
|
-
hasChildren: {
|
|
7988
|
-
type: BooleanConstructor;
|
|
7989
|
-
default: boolean;
|
|
8078
|
+
move: {
|
|
8079
|
+
type: FunctionConstructor;
|
|
8080
|
+
default: any;
|
|
7990
8081
|
};
|
|
7991
|
-
|
|
7992
|
-
type:
|
|
7993
|
-
|
|
8082
|
+
componentData: {
|
|
8083
|
+
type: ObjectConstructor;
|
|
8084
|
+
required: boolean;
|
|
8085
|
+
default: any;
|
|
7994
8086
|
};
|
|
7995
|
-
}
|
|
7996
|
-
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
|
|
8000
|
-
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
8015
|
-
|
|
8016
|
-
|
|
8017
|
-
|
|
8018
|
-
|
|
8019
|
-
|
|
8020
|
-
|
|
8021
|
-
|
|
8022
|
-
|
|
8023
|
-
|
|
8024
|
-
|
|
8025
|
-
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
|
|
8040
|
-
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
|
|
8044
|
-
|
|
8045
|
-
|
|
8046
|
-
|
|
8047
|
-
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
|
|
8054
|
-
|
|
8055
|
-
onDragAdd(evt: any): void;
|
|
8056
|
-
onDragRemove(evt: any): void;
|
|
8057
|
-
onDragUpdate(evt: any): void;
|
|
8058
|
-
computeFutureIndex(relatedContext: any, evt: any): any;
|
|
8059
|
-
onDragMove(evt: any, originalEvent: any): any;
|
|
8060
|
-
onDragEnd(): void;
|
|
8061
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
8062
|
-
move: Function;
|
|
8063
|
-
tag: string;
|
|
8064
|
-
clone: Function;
|
|
8065
|
-
list: unknown[];
|
|
8066
|
-
modelValue: unknown[];
|
|
8067
|
-
componentData: Record<string, any>;
|
|
8068
|
-
} & {
|
|
8069
|
-
itemKey?: string | Function;
|
|
8070
|
-
}>, {
|
|
8071
|
-
move: Function;
|
|
8072
|
-
tag: string;
|
|
8073
|
-
clone: Function;
|
|
8074
|
-
list: unknown[];
|
|
8075
|
-
modelValue: unknown[];
|
|
8076
|
-
componentData: Record<string, any>;
|
|
8077
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8078
|
-
ATooltip: {
|
|
8079
|
-
new (...args: any[]): {
|
|
8080
|
-
$: import("vue").ComponentInternalInstance;
|
|
8081
|
-
$data: {};
|
|
8082
|
-
$props: Partial<{
|
|
8083
|
-
visible: boolean;
|
|
8084
|
-
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8085
|
-
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8086
|
-
defaultVisible: boolean;
|
|
8087
|
-
overlayStyle: import("vue").CSSProperties;
|
|
8088
|
-
destroyTooltipOnHide: boolean;
|
|
8089
|
-
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8090
|
-
arrowPointAtCenter: boolean;
|
|
8091
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
8092
|
-
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8093
|
-
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8094
|
-
visible: {
|
|
8095
|
-
type: BooleanConstructor;
|
|
8096
|
-
default: any;
|
|
8097
|
-
};
|
|
8098
|
-
defaultVisible: {
|
|
8099
|
-
type: BooleanConstructor;
|
|
8100
|
-
default: any;
|
|
8101
|
-
};
|
|
8102
|
-
placement: PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
8103
|
-
color: StringConstructor;
|
|
8104
|
-
transitionName: StringConstructor;
|
|
8105
|
-
overlayStyle: {
|
|
8106
|
-
type: PropType<import("vue").CSSProperties>;
|
|
8107
|
-
default: import("vue").CSSProperties;
|
|
8108
|
-
};
|
|
8109
|
-
overlayClassName: StringConstructor;
|
|
8110
|
-
openClassName: StringConstructor;
|
|
8111
|
-
prefixCls: StringConstructor;
|
|
8112
|
-
mouseEnterDelay: NumberConstructor;
|
|
8113
|
-
mouseLeaveDelay: NumberConstructor;
|
|
8114
|
-
getPopupContainer: PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
8115
|
-
arrowPointAtCenter: {
|
|
8116
|
-
type: BooleanConstructor;
|
|
8117
|
-
default: any;
|
|
8118
|
-
};
|
|
8119
|
-
autoAdjustOverflow: {
|
|
8120
|
-
type: PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
8121
|
-
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8122
|
-
};
|
|
8123
|
-
destroyTooltipOnHide: {
|
|
8124
|
-
type: BooleanConstructor;
|
|
8125
|
-
default: any;
|
|
8126
|
-
};
|
|
8127
|
-
align: {
|
|
8128
|
-
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
8129
|
-
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8130
|
-
};
|
|
8131
|
-
builtinPlacements: {
|
|
8132
|
-
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
8133
|
-
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8134
|
-
};
|
|
8135
|
-
children: ArrayConstructor;
|
|
8136
|
-
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8137
|
-
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8138
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "visible" | "align" | "defaultVisible" | "overlayStyle" | "arrowPointAtCenter" | "autoAdjustOverflow" | "destroyTooltipOnHide" | "builtinPlacements">;
|
|
8139
|
-
$attrs: {
|
|
8140
|
-
[x: string]: unknown;
|
|
8087
|
+
}, unknown, {
|
|
8088
|
+
error: boolean;
|
|
8089
|
+
}, {
|
|
8090
|
+
realList(): any;
|
|
8091
|
+
getKey(): any;
|
|
8092
|
+
}, {
|
|
8093
|
+
getUnderlyingVm(domElement: any): any;
|
|
8094
|
+
getUnderlyingPotencialDraggableComponent(htmElement: any): any;
|
|
8095
|
+
emitChanges(evt: any): void;
|
|
8096
|
+
alterList(onList: any): void;
|
|
8097
|
+
spliceList(): void;
|
|
8098
|
+
updatePosition(oldIndex: any, newIndex: any): void;
|
|
8099
|
+
getRelatedContextFromMoveEvent({ to, related }: {
|
|
8100
|
+
to: any;
|
|
8101
|
+
related: any;
|
|
8102
|
+
}): any;
|
|
8103
|
+
getVmIndexFromDomIndex(domIndex: any): any;
|
|
8104
|
+
onDragStart(evt: any): void;
|
|
8105
|
+
onDragAdd(evt: any): void;
|
|
8106
|
+
onDragRemove(evt: any): void;
|
|
8107
|
+
onDragUpdate(evt: any): void;
|
|
8108
|
+
computeFutureIndex(relatedContext: any, evt: any): any;
|
|
8109
|
+
onDragMove(evt: any, originalEvent: any): any;
|
|
8110
|
+
onDragEnd(): void;
|
|
8111
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
8112
|
+
move: Function;
|
|
8113
|
+
tag: string;
|
|
8114
|
+
clone: Function;
|
|
8115
|
+
list: unknown[];
|
|
8116
|
+
modelValue: unknown[];
|
|
8117
|
+
componentData: Record<string, any>;
|
|
8118
|
+
} & {
|
|
8119
|
+
itemKey?: string | Function;
|
|
8120
|
+
}>, {
|
|
8121
|
+
move: Function;
|
|
8122
|
+
tag: string;
|
|
8123
|
+
clone: Function;
|
|
8124
|
+
list: unknown[];
|
|
8125
|
+
modelValue: unknown[];
|
|
8126
|
+
componentData: Record<string, any>;
|
|
8127
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8128
|
+
ATooltip: {
|
|
8129
|
+
new (...args: any[]): {
|
|
8130
|
+
$: import("vue").ComponentInternalInstance;
|
|
8131
|
+
$data: {};
|
|
8132
|
+
$props: Partial<{
|
|
8133
|
+
visible: boolean;
|
|
8134
|
+
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8135
|
+
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8136
|
+
defaultVisible: boolean;
|
|
8137
|
+
overlayStyle: import("vue").CSSProperties;
|
|
8138
|
+
destroyTooltipOnHide: boolean;
|
|
8139
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8140
|
+
arrowPointAtCenter: boolean;
|
|
8141
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
8142
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8143
|
+
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8144
|
+
visible: {
|
|
8145
|
+
type: BooleanConstructor;
|
|
8146
|
+
default: any;
|
|
8141
8147
|
};
|
|
8142
|
-
|
|
8143
|
-
|
|
8148
|
+
defaultVisible: {
|
|
8149
|
+
type: BooleanConstructor;
|
|
8150
|
+
default: any;
|
|
8144
8151
|
};
|
|
8145
|
-
|
|
8146
|
-
|
|
8147
|
-
|
|
8148
|
-
|
|
8149
|
-
|
|
8150
|
-
|
|
8151
|
-
|
|
8152
|
-
|
|
8153
|
-
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
|
|
8174
|
-
|
|
8175
|
-
|
|
8176
|
-
|
|
8177
|
-
type: BooleanConstructor;
|
|
8178
|
-
default: any;
|
|
8179
|
-
};
|
|
8180
|
-
autoAdjustOverflow: {
|
|
8181
|
-
type: PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
8182
|
-
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8183
|
-
};
|
|
8184
|
-
destroyTooltipOnHide: {
|
|
8185
|
-
type: BooleanConstructor;
|
|
8186
|
-
default: any;
|
|
8187
|
-
};
|
|
8188
|
-
align: {
|
|
8189
|
-
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
8190
|
-
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8191
|
-
};
|
|
8192
|
-
builtinPlacements: {
|
|
8193
|
-
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
8194
|
-
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8195
|
-
};
|
|
8196
|
-
children: ArrayConstructor;
|
|
8197
|
-
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8198
|
-
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8199
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
8200
|
-
visible: boolean;
|
|
8201
|
-
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8202
|
-
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8203
|
-
defaultVisible: boolean;
|
|
8204
|
-
overlayStyle: import("vue").CSSProperties;
|
|
8205
|
-
destroyTooltipOnHide: boolean;
|
|
8206
|
-
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8207
|
-
arrowPointAtCenter: boolean;
|
|
8208
|
-
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & {
|
|
8209
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
8210
|
-
created?: (() => void) | (() => void)[];
|
|
8211
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
8212
|
-
mounted?: (() => void) | (() => void)[];
|
|
8213
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
8214
|
-
updated?: (() => void) | (() => void)[];
|
|
8215
|
-
activated?: (() => void) | (() => void)[];
|
|
8216
|
-
deactivated?: (() => void) | (() => void)[];
|
|
8217
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
8218
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
8219
|
-
destroyed?: (() => void) | (() => void)[];
|
|
8220
|
-
unmounted?: (() => void) | (() => void)[];
|
|
8221
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
8222
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
8223
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void)[];
|
|
8152
|
+
placement: PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
8153
|
+
color: StringConstructor;
|
|
8154
|
+
transitionName: StringConstructor;
|
|
8155
|
+
overlayStyle: {
|
|
8156
|
+
type: PropType<import("vue").CSSProperties>;
|
|
8157
|
+
default: import("vue").CSSProperties;
|
|
8158
|
+
};
|
|
8159
|
+
overlayClassName: StringConstructor;
|
|
8160
|
+
openClassName: StringConstructor;
|
|
8161
|
+
prefixCls: StringConstructor;
|
|
8162
|
+
mouseEnterDelay: NumberConstructor;
|
|
8163
|
+
mouseLeaveDelay: NumberConstructor;
|
|
8164
|
+
getPopupContainer: PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
8165
|
+
arrowPointAtCenter: {
|
|
8166
|
+
type: BooleanConstructor;
|
|
8167
|
+
default: any;
|
|
8168
|
+
};
|
|
8169
|
+
autoAdjustOverflow: {
|
|
8170
|
+
type: PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
8171
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8172
|
+
};
|
|
8173
|
+
destroyTooltipOnHide: {
|
|
8174
|
+
type: BooleanConstructor;
|
|
8175
|
+
default: any;
|
|
8176
|
+
};
|
|
8177
|
+
align: {
|
|
8178
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
8179
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8180
|
+
};
|
|
8181
|
+
builtinPlacements: {
|
|
8182
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
8183
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8224
8184
|
};
|
|
8225
|
-
|
|
8226
|
-
|
|
8227
|
-
|
|
8228
|
-
} &
|
|
8185
|
+
children: ArrayConstructor;
|
|
8186
|
+
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8187
|
+
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8188
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "visible" | "align" | "defaultVisible" | "overlayStyle" | "arrowPointAtCenter" | "autoAdjustOverflow" | "destroyTooltipOnHide" | "builtinPlacements">;
|
|
8189
|
+
$attrs: {
|
|
8190
|
+
[x: string]: unknown;
|
|
8191
|
+
};
|
|
8192
|
+
$refs: {
|
|
8193
|
+
[x: string]: unknown;
|
|
8194
|
+
};
|
|
8195
|
+
$slots: Readonly<{
|
|
8196
|
+
[name: string]: import("vue").Slot<any>;
|
|
8197
|
+
}>;
|
|
8198
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
8199
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
8200
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
8201
|
+
$el: any;
|
|
8202
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8229
8203
|
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8230
8204
|
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8231
8205
|
visible: {
|
|
@@ -8272,11 +8246,36 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8272
8246
|
children: ArrayConstructor;
|
|
8273
8247
|
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8274
8248
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8275
|
-
}
|
|
8276
|
-
|
|
8277
|
-
|
|
8278
|
-
|
|
8279
|
-
|
|
8249
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
8250
|
+
visible: boolean;
|
|
8251
|
+
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8252
|
+
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8253
|
+
defaultVisible: boolean;
|
|
8254
|
+
overlayStyle: import("vue").CSSProperties;
|
|
8255
|
+
destroyTooltipOnHide: boolean;
|
|
8256
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8257
|
+
arrowPointAtCenter: boolean;
|
|
8258
|
+
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & {
|
|
8259
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
8260
|
+
created?: (() => void) | (() => void)[];
|
|
8261
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
8262
|
+
mounted?: (() => void) | (() => void)[];
|
|
8263
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
8264
|
+
updated?: (() => void) | (() => void)[];
|
|
8265
|
+
activated?: (() => void) | (() => void)[];
|
|
8266
|
+
deactivated?: (() => void) | (() => void)[];
|
|
8267
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
8268
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
8269
|
+
destroyed?: (() => void) | (() => void)[];
|
|
8270
|
+
unmounted?: (() => void) | (() => void)[];
|
|
8271
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
8272
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
8273
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void)[];
|
|
8274
|
+
};
|
|
8275
|
+
$forceUpdate: () => void;
|
|
8276
|
+
$nextTick: typeof nextTick;
|
|
8277
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
8278
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
8280
8279
|
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8281
8280
|
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8282
8281
|
visible: {
|
|
@@ -8323,23 +8322,98 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
8323
8322
|
children: ArrayConstructor;
|
|
8324
8323
|
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8325
8324
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8326
|
-
}
|
|
8327
|
-
|
|
8328
|
-
|
|
8329
|
-
|
|
8330
|
-
|
|
8331
|
-
|
|
8332
|
-
|
|
8333
|
-
|
|
8334
|
-
|
|
8335
|
-
|
|
8336
|
-
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
|
|
8325
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
|
|
8326
|
+
__isFragment?: never;
|
|
8327
|
+
__isTeleport?: never;
|
|
8328
|
+
__isSuspense?: never;
|
|
8329
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8330
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8331
|
+
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8332
|
+
visible: {
|
|
8333
|
+
type: BooleanConstructor;
|
|
8334
|
+
default: any;
|
|
8335
|
+
};
|
|
8336
|
+
defaultVisible: {
|
|
8337
|
+
type: BooleanConstructor;
|
|
8338
|
+
default: any;
|
|
8339
|
+
};
|
|
8340
|
+
placement: PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
8341
|
+
color: StringConstructor;
|
|
8342
|
+
transitionName: StringConstructor;
|
|
8343
|
+
overlayStyle: {
|
|
8344
|
+
type: PropType<import("vue").CSSProperties>;
|
|
8345
|
+
default: import("vue").CSSProperties;
|
|
8346
|
+
};
|
|
8347
|
+
overlayClassName: StringConstructor;
|
|
8348
|
+
openClassName: StringConstructor;
|
|
8349
|
+
prefixCls: StringConstructor;
|
|
8350
|
+
mouseEnterDelay: NumberConstructor;
|
|
8351
|
+
mouseLeaveDelay: NumberConstructor;
|
|
8352
|
+
getPopupContainer: PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
8353
|
+
arrowPointAtCenter: {
|
|
8354
|
+
type: BooleanConstructor;
|
|
8355
|
+
default: any;
|
|
8356
|
+
};
|
|
8357
|
+
autoAdjustOverflow: {
|
|
8358
|
+
type: PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
8359
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8360
|
+
};
|
|
8361
|
+
destroyTooltipOnHide: {
|
|
8362
|
+
type: BooleanConstructor;
|
|
8363
|
+
default: any;
|
|
8364
|
+
};
|
|
8365
|
+
align: {
|
|
8366
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
8367
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8368
|
+
};
|
|
8369
|
+
builtinPlacements: {
|
|
8370
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
8371
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8372
|
+
};
|
|
8373
|
+
children: ArrayConstructor;
|
|
8374
|
+
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8375
|
+
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8376
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
8377
|
+
visible: boolean;
|
|
8378
|
+
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8379
|
+
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8380
|
+
defaultVisible: boolean;
|
|
8381
|
+
overlayStyle: import("vue").CSSProperties;
|
|
8382
|
+
destroyTooltipOnHide: boolean;
|
|
8383
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8384
|
+
arrowPointAtCenter: boolean;
|
|
8385
|
+
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
|
|
8386
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8387
|
+
DragArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8388
|
+
style: {
|
|
8389
|
+
type: ObjectConstructor;
|
|
8390
|
+
default: () => {};
|
|
8341
8391
|
};
|
|
8342
|
-
|
|
8392
|
+
maskList: {
|
|
8393
|
+
type: ArrayConstructor;
|
|
8394
|
+
default: () => any[];
|
|
8395
|
+
};
|
|
8396
|
+
}>, {
|
|
8397
|
+
onDragOver: (event: any) => void;
|
|
8398
|
+
onDragLeave: (event: any) => void;
|
|
8399
|
+
onDragEnd: (event: any) => void;
|
|
8400
|
+
onDrop: (event: any) => void;
|
|
8401
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8402
|
+
style: {
|
|
8403
|
+
type: ObjectConstructor;
|
|
8404
|
+
default: () => {};
|
|
8405
|
+
};
|
|
8406
|
+
maskList: {
|
|
8407
|
+
type: ArrayConstructor;
|
|
8408
|
+
default: () => any[];
|
|
8409
|
+
};
|
|
8410
|
+
}>> & Readonly<{}>, {
|
|
8411
|
+
style: Record<string, any>;
|
|
8412
|
+
maskList: unknown[];
|
|
8413
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8343
8414
|
SettingOutlined: import("@ant-design/icons-vue/lib/icons/SettingOutlined").SettingOutlinedIconType;
|
|
8415
|
+
DatabaseOutlined: import("@ant-design/icons-vue/lib/icons/DatabaseOutlined").DatabaseOutlinedIconType;
|
|
8416
|
+
ArrowsAltOutlined: import("@ant-design/icons-vue/lib/icons/ArrowsAltOutlined").ArrowsAltOutlinedIconType;
|
|
8417
|
+
ShrinkOutlined: import("@ant-design/icons-vue/lib/icons/ShrinkOutlined").ShrinkOutlinedIconType;
|
|
8344
8418
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8345
8419
|
export default _sfc_main;
|