@ecan-bi/pivot-table 1.0.14 → 1.0.15
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 +11034 -10185
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +34 -34
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/directives/focus.d.ts +4 -0
- package/types/pivotTable/PivotTable.vue.d.ts +607 -7
- 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/ColorPick.vue.d.ts +1 -1
- package/types/pivotTable/pivot-config/IndSourceList.vue.d.ts +408 -0
- package/types/pivotTable/pivot-config/PivotConfig.vue.d.ts +571 -0
- package/types/pivotTable/pivot-config/index.d.ts +2 -0
- package/types/pivotTable/pivot-config/v-node-render/VNodeRender.d.ts +12 -0
- package/types/pivotTable/pivot-config/v-node-render/index.d.ts +2 -0
- package/types/utils/constant.d.ts +25 -0
- package/types/utils/request.d.ts +2 -0
- package/types/utils/util.d.ts +5 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
1
|
+
import { nextTick, PropType } from 'vue';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
id: {
|
|
4
4
|
type: StringConstructor;
|
|
@@ -86,9 +86,22 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
86
86
|
type: StringConstructor;
|
|
87
87
|
default: string;
|
|
88
88
|
};
|
|
89
|
+
fullMode: {
|
|
90
|
+
type: BooleanConstructor;
|
|
91
|
+
default: boolean;
|
|
92
|
+
};
|
|
93
|
+
pageId: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
indicatorUrl: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
89
101
|
}>, {
|
|
90
102
|
dropDownMenuColor: import("vue").ComputedRef<any>;
|
|
91
103
|
dropDownMenuBgColor: import("vue").ComputedRef<any>;
|
|
104
|
+
dropDownMenuHightLightColor: import("vue").ComputedRef<any>;
|
|
92
105
|
styleData: import("vue").ComputedRef<any>;
|
|
93
106
|
subMenuLeft: import("vue").Ref<string, string>;
|
|
94
107
|
subMenuTop: import("vue").Ref<string, string>;
|
|
@@ -98,11 +111,14 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
98
111
|
conditionalPropertyRef: import("vue").Ref<any, any>;
|
|
99
112
|
chartModalRef: import("vue").Ref<any, any>;
|
|
100
113
|
pivotTopRef: import("vue").Ref<any, any>;
|
|
114
|
+
pivotConfigRef: import("vue").Ref<any, any>;
|
|
101
115
|
pivotAggregateRef: import("vue").Ref<any, any>;
|
|
102
116
|
filterData: import("vue").Ref<any, any>;
|
|
103
117
|
loadingRect: import("vue").Ref<{}, {}>;
|
|
104
118
|
loading: import("vue").Ref<boolean, boolean>;
|
|
105
119
|
click: () => void;
|
|
120
|
+
isTableInit: import("vue").Ref<boolean, boolean>;
|
|
121
|
+
configStyle: import("vue").Ref<any, any>;
|
|
106
122
|
onFilterChange: ({ checkKeys, key, type }: {
|
|
107
123
|
checkKeys: any;
|
|
108
124
|
key: any;
|
|
@@ -112,6 +128,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
112
128
|
handleCondition: (indicatorKey: string, config?: any[]) => void;
|
|
113
129
|
handleAggregate: (types: string[], key: string) => void;
|
|
114
130
|
handleGetTop: (data: any) => void;
|
|
131
|
+
handleConfig: () => void;
|
|
132
|
+
handleGetConfig: (dimensions?: any[], indicators?: any[]) => void;
|
|
115
133
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
116
134
|
id: {
|
|
117
135
|
type: StringConstructor;
|
|
@@ -199,6 +217,18 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
199
217
|
type: StringConstructor;
|
|
200
218
|
default: string;
|
|
201
219
|
};
|
|
220
|
+
fullMode: {
|
|
221
|
+
type: BooleanConstructor;
|
|
222
|
+
default: boolean;
|
|
223
|
+
};
|
|
224
|
+
pageId: {
|
|
225
|
+
type: StringConstructor;
|
|
226
|
+
default: string;
|
|
227
|
+
};
|
|
228
|
+
indicatorUrl: {
|
|
229
|
+
type: StringConstructor;
|
|
230
|
+
default: string;
|
|
231
|
+
};
|
|
202
232
|
}>> & Readonly<{}>, {
|
|
203
233
|
data: unknown[];
|
|
204
234
|
type: string;
|
|
@@ -210,6 +240,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
210
240
|
width: string;
|
|
211
241
|
height: string;
|
|
212
242
|
zIndex: number;
|
|
243
|
+
pageId: string;
|
|
244
|
+
fullMode: boolean;
|
|
213
245
|
id: string;
|
|
214
246
|
keyName: string;
|
|
215
247
|
events: unknown[];
|
|
@@ -223,6 +255,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
223
255
|
styleConfig: {
|
|
224
256
|
[key: string]: any;
|
|
225
257
|
};
|
|
258
|
+
indicatorUrl: string;
|
|
226
259
|
}, {}, {
|
|
227
260
|
PivotFilter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
228
261
|
data: {
|
|
@@ -708,11 +741,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
708
741
|
fontVariant?: import("csstype").Property.FontVariant;
|
|
709
742
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates;
|
|
710
743
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps;
|
|
711
|
-
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian;
|
|
712
|
-
* 获取指标的计算类型(计算指标的字段名:指标字段-计算类型)
|
|
713
|
-
* @param field 指标字段
|
|
714
|
-
* @param indicators 已有的指标字段 string[] | object[]
|
|
715
|
-
*/
|
|
744
|
+
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian;
|
|
716
745
|
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji;
|
|
717
746
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures;
|
|
718
747
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric;
|
|
@@ -4278,7 +4307,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
4278
4307
|
onBlur: () => void;
|
|
4279
4308
|
onEnter: () => void;
|
|
4280
4309
|
onFormatChange: (format: any) => void;
|
|
4281
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "formatChange" | "
|
|
4310
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "formatChange" | "focus" | "blur" | "enter")[], "change" | "formatChange" | "focus" | "blur" | "enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4282
4311
|
format: {
|
|
4283
4312
|
type: StringConstructor;
|
|
4284
4313
|
default: string;
|
|
@@ -7741,5 +7770,576 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
7741
7770
|
}>> & Readonly<{}>, {
|
|
7742
7771
|
theme: string;
|
|
7743
7772
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7773
|
+
PivotConfig: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7774
|
+
theme: {
|
|
7775
|
+
type: StringConstructor;
|
|
7776
|
+
default: string;
|
|
7777
|
+
};
|
|
7778
|
+
fullMode: {
|
|
7779
|
+
type: BooleanConstructor;
|
|
7780
|
+
default: boolean;
|
|
7781
|
+
};
|
|
7782
|
+
pageId: {
|
|
7783
|
+
type: StringConstructor;
|
|
7784
|
+
default: string;
|
|
7785
|
+
};
|
|
7786
|
+
}>, {
|
|
7787
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
7788
|
+
fieldAreas: import("vue").Ref<{
|
|
7789
|
+
title: string;
|
|
7790
|
+
icon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7791
|
+
[key: string]: any;
|
|
7792
|
+
}>;
|
|
7793
|
+
fields: any[];
|
|
7794
|
+
}[], {
|
|
7795
|
+
title: string;
|
|
7796
|
+
icon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7797
|
+
[key: string]: any;
|
|
7798
|
+
}>;
|
|
7799
|
+
fields: any[];
|
|
7800
|
+
}[] | {
|
|
7801
|
+
title: string;
|
|
7802
|
+
icon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7803
|
+
[key: string]: any;
|
|
7804
|
+
}>;
|
|
7805
|
+
fields: any[];
|
|
7806
|
+
}[]>;
|
|
7807
|
+
dataSourceList: import("vue").Ref<{
|
|
7808
|
+
[key: string]: any;
|
|
7809
|
+
}[], {
|
|
7810
|
+
[key: string]: any;
|
|
7811
|
+
}[]>;
|
|
7812
|
+
indSourceRef: import("vue").Ref<any, any>;
|
|
7813
|
+
searchText: import("vue").Ref<string, string>;
|
|
7814
|
+
maskList: import("vue").Ref<any[], any[]>;
|
|
7815
|
+
currentEditItem: import("vue").Ref<any, any>;
|
|
7816
|
+
handleOk: () => void;
|
|
7817
|
+
onSearch: () => void;
|
|
7818
|
+
onDragStart: (event: any, dataSource: {
|
|
7819
|
+
[key: string]: any;
|
|
7820
|
+
}) => void;
|
|
7821
|
+
onDragAreaStart: (event: any, dataSource: {
|
|
7822
|
+
[key: string]: any;
|
|
7823
|
+
}) => void;
|
|
7824
|
+
onDragEnd: () => void;
|
|
7825
|
+
handleDeleteField: (index: number, fIndex: number) => void;
|
|
7826
|
+
handleEdit: (index: number, fIndex: number) => void;
|
|
7827
|
+
onConfirmLabel: () => void;
|
|
7828
|
+
onDragAdd: () => void;
|
|
7829
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7830
|
+
theme: {
|
|
7831
|
+
type: StringConstructor;
|
|
7832
|
+
default: string;
|
|
7833
|
+
};
|
|
7834
|
+
fullMode: {
|
|
7835
|
+
type: BooleanConstructor;
|
|
7836
|
+
default: boolean;
|
|
7837
|
+
};
|
|
7838
|
+
pageId: {
|
|
7839
|
+
type: StringConstructor;
|
|
7840
|
+
default: string;
|
|
7841
|
+
};
|
|
7842
|
+
}>> & Readonly<{}>, {
|
|
7843
|
+
theme: string;
|
|
7844
|
+
pageId: string;
|
|
7845
|
+
fullMode: boolean;
|
|
7846
|
+
}, {}, {
|
|
7847
|
+
VNodeRender: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7848
|
+
node: {
|
|
7849
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
7850
|
+
required: true;
|
|
7851
|
+
};
|
|
7852
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7853
|
+
node: {
|
|
7854
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
7855
|
+
required: true;
|
|
7856
|
+
};
|
|
7857
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7858
|
+
draggable: import("vue").DefineComponent<{
|
|
7859
|
+
list: {
|
|
7860
|
+
type: ArrayConstructor;
|
|
7861
|
+
required: boolean;
|
|
7862
|
+
default: any;
|
|
7863
|
+
};
|
|
7864
|
+
modelValue: {
|
|
7865
|
+
type: ArrayConstructor;
|
|
7866
|
+
required: boolean;
|
|
7867
|
+
default: any;
|
|
7868
|
+
};
|
|
7869
|
+
itemKey: {
|
|
7870
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
7871
|
+
required: boolean;
|
|
7872
|
+
};
|
|
7873
|
+
clone: {
|
|
7874
|
+
type: FunctionConstructor;
|
|
7875
|
+
default: (original: any) => any;
|
|
7876
|
+
};
|
|
7877
|
+
tag: {
|
|
7878
|
+
type: StringConstructor;
|
|
7879
|
+
default: string;
|
|
7880
|
+
};
|
|
7881
|
+
move: {
|
|
7882
|
+
type: FunctionConstructor;
|
|
7883
|
+
default: any;
|
|
7884
|
+
};
|
|
7885
|
+
componentData: {
|
|
7886
|
+
type: ObjectConstructor;
|
|
7887
|
+
required: boolean;
|
|
7888
|
+
default: any;
|
|
7889
|
+
};
|
|
7890
|
+
}, unknown, {
|
|
7891
|
+
error: boolean;
|
|
7892
|
+
}, {
|
|
7893
|
+
realList(): any;
|
|
7894
|
+
getKey(): any;
|
|
7895
|
+
}, {
|
|
7896
|
+
getUnderlyingVm(domElement: any): any;
|
|
7897
|
+
getUnderlyingPotencialDraggableComponent(htmElement: any): any;
|
|
7898
|
+
emitChanges(evt: any): void;
|
|
7899
|
+
alterList(onList: any): void;
|
|
7900
|
+
spliceList(): void;
|
|
7901
|
+
updatePosition(oldIndex: any, newIndex: any): void;
|
|
7902
|
+
getRelatedContextFromMoveEvent({ to, related }: {
|
|
7903
|
+
to: any;
|
|
7904
|
+
related: any;
|
|
7905
|
+
}): any;
|
|
7906
|
+
getVmIndexFromDomIndex(domIndex: any): any;
|
|
7907
|
+
onDragStart(evt: any): void;
|
|
7908
|
+
onDragAdd(evt: any): void;
|
|
7909
|
+
onDragRemove(evt: any): void;
|
|
7910
|
+
onDragUpdate(evt: any): void;
|
|
7911
|
+
computeFutureIndex(relatedContext: any, evt: any): any;
|
|
7912
|
+
onDragMove(evt: any, originalEvent: any): any;
|
|
7913
|
+
onDragEnd(): void;
|
|
7914
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
7915
|
+
move: Function;
|
|
7916
|
+
tag: string;
|
|
7917
|
+
clone: Function;
|
|
7918
|
+
list: unknown[];
|
|
7919
|
+
modelValue: unknown[];
|
|
7920
|
+
componentData: Record<string, any>;
|
|
7921
|
+
} & {
|
|
7922
|
+
itemKey?: string | Function;
|
|
7923
|
+
}>, {
|
|
7924
|
+
move: Function;
|
|
7925
|
+
tag: string;
|
|
7926
|
+
clone: Function;
|
|
7927
|
+
list: unknown[];
|
|
7928
|
+
modelValue: unknown[];
|
|
7929
|
+
componentData: Record<string, any>;
|
|
7930
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7931
|
+
IndSourceList: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7932
|
+
data: {
|
|
7933
|
+
type: PropType<any[]>;
|
|
7934
|
+
default: () => any[];
|
|
7935
|
+
};
|
|
7936
|
+
source: {
|
|
7937
|
+
type: StringConstructor;
|
|
7938
|
+
default: string;
|
|
7939
|
+
};
|
|
7940
|
+
isSub: {
|
|
7941
|
+
type: BooleanConstructor;
|
|
7942
|
+
default: boolean;
|
|
7943
|
+
};
|
|
7944
|
+
hasChildren: {
|
|
7945
|
+
type: BooleanConstructor;
|
|
7946
|
+
default: boolean;
|
|
7947
|
+
};
|
|
7948
|
+
pageId: {
|
|
7949
|
+
type: StringConstructor;
|
|
7950
|
+
default: string;
|
|
7951
|
+
};
|
|
7952
|
+
}>, {
|
|
7953
|
+
columnRef: import("vue").Ref<any, any>;
|
|
7954
|
+
sourceList: import("vue").Ref<{
|
|
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[];
|
|
7978
|
+
};
|
|
7979
|
+
source: {
|
|
7980
|
+
type: StringConstructor;
|
|
7981
|
+
default: string;
|
|
7982
|
+
};
|
|
7983
|
+
isSub: {
|
|
7984
|
+
type: BooleanConstructor;
|
|
7985
|
+
default: boolean;
|
|
7986
|
+
};
|
|
7987
|
+
hasChildren: {
|
|
7988
|
+
type: BooleanConstructor;
|
|
7989
|
+
default: boolean;
|
|
7990
|
+
};
|
|
7991
|
+
pageId: {
|
|
7992
|
+
type: StringConstructor;
|
|
7993
|
+
default: string;
|
|
7994
|
+
};
|
|
7995
|
+
}>> & Readonly<{}>, {
|
|
7996
|
+
data: any[];
|
|
7997
|
+
source: string;
|
|
7998
|
+
isSub: boolean;
|
|
7999
|
+
hasChildren: boolean;
|
|
8000
|
+
pageId: string;
|
|
8001
|
+
}, {}, {
|
|
8002
|
+
CaretRightOutlined: import("@ant-design/icons-vue/lib/icons/CaretRightOutlined").CaretRightOutlinedIconType;
|
|
8003
|
+
CaretDownOutlined: import("@ant-design/icons-vue/lib/icons/CaretDownOutlined").CaretDownOutlinedIconType;
|
|
8004
|
+
LoadingOutlined: import("@ant-design/icons-vue/lib/icons/LoadingOutlined").LoadingOutlinedIconType;
|
|
8005
|
+
Draggable: import("vue").DefineComponent<{
|
|
8006
|
+
list: {
|
|
8007
|
+
type: ArrayConstructor;
|
|
8008
|
+
required: boolean;
|
|
8009
|
+
default: any;
|
|
8010
|
+
};
|
|
8011
|
+
modelValue: {
|
|
8012
|
+
type: ArrayConstructor;
|
|
8013
|
+
required: boolean;
|
|
8014
|
+
default: any;
|
|
8015
|
+
};
|
|
8016
|
+
itemKey: {
|
|
8017
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
8018
|
+
required: boolean;
|
|
8019
|
+
};
|
|
8020
|
+
clone: {
|
|
8021
|
+
type: FunctionConstructor;
|
|
8022
|
+
default: (original: any) => any;
|
|
8023
|
+
};
|
|
8024
|
+
tag: {
|
|
8025
|
+
type: StringConstructor;
|
|
8026
|
+
default: string;
|
|
8027
|
+
};
|
|
8028
|
+
move: {
|
|
8029
|
+
type: FunctionConstructor;
|
|
8030
|
+
default: any;
|
|
8031
|
+
};
|
|
8032
|
+
componentData: {
|
|
8033
|
+
type: ObjectConstructor;
|
|
8034
|
+
required: boolean;
|
|
8035
|
+
default: any;
|
|
8036
|
+
};
|
|
8037
|
+
}, unknown, {
|
|
8038
|
+
error: boolean;
|
|
8039
|
+
}, {
|
|
8040
|
+
realList(): any;
|
|
8041
|
+
getKey(): any;
|
|
8042
|
+
}, {
|
|
8043
|
+
getUnderlyingVm(domElement: any): any;
|
|
8044
|
+
getUnderlyingPotencialDraggableComponent(htmElement: any): any;
|
|
8045
|
+
emitChanges(evt: any): void;
|
|
8046
|
+
alterList(onList: any): void;
|
|
8047
|
+
spliceList(): void;
|
|
8048
|
+
updatePosition(oldIndex: any, newIndex: any): void;
|
|
8049
|
+
getRelatedContextFromMoveEvent({ to, related }: {
|
|
8050
|
+
to: any;
|
|
8051
|
+
related: any;
|
|
8052
|
+
}): any;
|
|
8053
|
+
getVmIndexFromDomIndex(domIndex: any): any;
|
|
8054
|
+
onDragStart(evt: any): void;
|
|
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;
|
|
8141
|
+
};
|
|
8142
|
+
$refs: {
|
|
8143
|
+
[x: string]: unknown;
|
|
8144
|
+
};
|
|
8145
|
+
$slots: Readonly<{
|
|
8146
|
+
[name: string]: import("vue").Slot<any>;
|
|
8147
|
+
}>;
|
|
8148
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
8149
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
8150
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
8151
|
+
$el: any;
|
|
8152
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8153
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8154
|
+
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8155
|
+
visible: {
|
|
8156
|
+
type: BooleanConstructor;
|
|
8157
|
+
default: any;
|
|
8158
|
+
};
|
|
8159
|
+
defaultVisible: {
|
|
8160
|
+
type: BooleanConstructor;
|
|
8161
|
+
default: any;
|
|
8162
|
+
};
|
|
8163
|
+
placement: PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
8164
|
+
color: StringConstructor;
|
|
8165
|
+
transitionName: StringConstructor;
|
|
8166
|
+
overlayStyle: {
|
|
8167
|
+
type: PropType<import("vue").CSSProperties>;
|
|
8168
|
+
default: import("vue").CSSProperties;
|
|
8169
|
+
};
|
|
8170
|
+
overlayClassName: StringConstructor;
|
|
8171
|
+
openClassName: StringConstructor;
|
|
8172
|
+
prefixCls: StringConstructor;
|
|
8173
|
+
mouseEnterDelay: NumberConstructor;
|
|
8174
|
+
mouseLeaveDelay: NumberConstructor;
|
|
8175
|
+
getPopupContainer: PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
8176
|
+
arrowPointAtCenter: {
|
|
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)[];
|
|
8224
|
+
};
|
|
8225
|
+
$forceUpdate: () => void;
|
|
8226
|
+
$nextTick: typeof nextTick;
|
|
8227
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
8228
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
8229
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8230
|
+
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8231
|
+
visible: {
|
|
8232
|
+
type: BooleanConstructor;
|
|
8233
|
+
default: any;
|
|
8234
|
+
};
|
|
8235
|
+
defaultVisible: {
|
|
8236
|
+
type: BooleanConstructor;
|
|
8237
|
+
default: any;
|
|
8238
|
+
};
|
|
8239
|
+
placement: PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
8240
|
+
color: StringConstructor;
|
|
8241
|
+
transitionName: StringConstructor;
|
|
8242
|
+
overlayStyle: {
|
|
8243
|
+
type: PropType<import("vue").CSSProperties>;
|
|
8244
|
+
default: import("vue").CSSProperties;
|
|
8245
|
+
};
|
|
8246
|
+
overlayClassName: StringConstructor;
|
|
8247
|
+
openClassName: StringConstructor;
|
|
8248
|
+
prefixCls: StringConstructor;
|
|
8249
|
+
mouseEnterDelay: NumberConstructor;
|
|
8250
|
+
mouseLeaveDelay: NumberConstructor;
|
|
8251
|
+
getPopupContainer: PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
8252
|
+
arrowPointAtCenter: {
|
|
8253
|
+
type: BooleanConstructor;
|
|
8254
|
+
default: any;
|
|
8255
|
+
};
|
|
8256
|
+
autoAdjustOverflow: {
|
|
8257
|
+
type: PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
8258
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8259
|
+
};
|
|
8260
|
+
destroyTooltipOnHide: {
|
|
8261
|
+
type: BooleanConstructor;
|
|
8262
|
+
default: any;
|
|
8263
|
+
};
|
|
8264
|
+
align: {
|
|
8265
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
8266
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8267
|
+
};
|
|
8268
|
+
builtinPlacements: {
|
|
8269
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
8270
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8271
|
+
};
|
|
8272
|
+
children: ArrayConstructor;
|
|
8273
|
+
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8274
|
+
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8275
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
|
|
8276
|
+
__isFragment?: never;
|
|
8277
|
+
__isTeleport?: never;
|
|
8278
|
+
__isSuspense?: never;
|
|
8279
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8280
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
8281
|
+
trigger: PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
8282
|
+
visible: {
|
|
8283
|
+
type: BooleanConstructor;
|
|
8284
|
+
default: any;
|
|
8285
|
+
};
|
|
8286
|
+
defaultVisible: {
|
|
8287
|
+
type: BooleanConstructor;
|
|
8288
|
+
default: any;
|
|
8289
|
+
};
|
|
8290
|
+
placement: PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
8291
|
+
color: StringConstructor;
|
|
8292
|
+
transitionName: StringConstructor;
|
|
8293
|
+
overlayStyle: {
|
|
8294
|
+
type: PropType<import("vue").CSSProperties>;
|
|
8295
|
+
default: import("vue").CSSProperties;
|
|
8296
|
+
};
|
|
8297
|
+
overlayClassName: StringConstructor;
|
|
8298
|
+
openClassName: StringConstructor;
|
|
8299
|
+
prefixCls: StringConstructor;
|
|
8300
|
+
mouseEnterDelay: NumberConstructor;
|
|
8301
|
+
mouseLeaveDelay: NumberConstructor;
|
|
8302
|
+
getPopupContainer: PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
8303
|
+
arrowPointAtCenter: {
|
|
8304
|
+
type: BooleanConstructor;
|
|
8305
|
+
default: any;
|
|
8306
|
+
};
|
|
8307
|
+
autoAdjustOverflow: {
|
|
8308
|
+
type: PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
8309
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8310
|
+
};
|
|
8311
|
+
destroyTooltipOnHide: {
|
|
8312
|
+
type: BooleanConstructor;
|
|
8313
|
+
default: any;
|
|
8314
|
+
};
|
|
8315
|
+
align: {
|
|
8316
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
8317
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8318
|
+
};
|
|
8319
|
+
builtinPlacements: {
|
|
8320
|
+
type: PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
8321
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8322
|
+
};
|
|
8323
|
+
children: ArrayConstructor;
|
|
8324
|
+
onVisibleChange: PropType<(vis: boolean) => void>;
|
|
8325
|
+
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
8326
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
8327
|
+
visible: boolean;
|
|
8328
|
+
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
8329
|
+
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
8330
|
+
defaultVisible: boolean;
|
|
8331
|
+
overlayStyle: import("vue").CSSProperties;
|
|
8332
|
+
destroyTooltipOnHide: boolean;
|
|
8333
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
8334
|
+
arrowPointAtCenter: boolean;
|
|
8335
|
+
}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
|
|
8336
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8337
|
+
DeleteOutlined: import("@ant-design/icons-vue/lib/icons/DeleteOutlined").DeleteOutlinedIconType;
|
|
8338
|
+
}, {
|
|
8339
|
+
focus: {
|
|
8340
|
+
mounted(el: HTMLElement): void;
|
|
8341
|
+
};
|
|
8342
|
+
}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8343
|
+
SettingOutlined: import("@ant-design/icons-vue/lib/icons/SettingOutlined").SettingOutlinedIconType;
|
|
7744
8344
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7745
8345
|
export default _sfc_main;
|