@dt-frames/ui 1.0.50 → 1.0.51
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.
|
@@ -142,7 +142,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
142
142
|
'onUpdate:current': import("vue").PropType<(current: number) => void>;
|
|
143
143
|
'onUpdate:pageSize': import("vue").PropType<(size: number) => void>;
|
|
144
144
|
}>>>;
|
|
145
|
-
default: {
|
|
145
|
+
default: {
|
|
146
|
+
pageSize: number;
|
|
147
|
+
current: number;
|
|
148
|
+
};
|
|
146
149
|
};
|
|
147
150
|
loading: {
|
|
148
151
|
type: BooleanConstructor;
|
|
@@ -603,7 +606,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
603
606
|
'onUpdate:current': import("vue").PropType<(current: number) => void>;
|
|
604
607
|
'onUpdate:pageSize': import("vue").PropType<(size: number) => void>;
|
|
605
608
|
}>>>;
|
|
606
|
-
default: {
|
|
609
|
+
default: {
|
|
610
|
+
pageSize: number;
|
|
611
|
+
current: number;
|
|
612
|
+
};
|
|
607
613
|
};
|
|
608
614
|
loading: {
|
|
609
615
|
type: BooleanConstructor;
|
|
@@ -685,7 +691,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
685
691
|
customRow: (record: any, index: any) => void;
|
|
686
692
|
childrenColumnName: string;
|
|
687
693
|
dataSource: Recordable<any>[];
|
|
688
|
-
pagination: {
|
|
694
|
+
pagination: {
|
|
695
|
+
pageSize: number;
|
|
696
|
+
current: number;
|
|
697
|
+
};
|
|
689
698
|
rowSelection: {
|
|
690
699
|
type: string;
|
|
691
700
|
fixed: boolean;
|
|
@@ -145,7 +145,10 @@ export declare const TableProps: {
|
|
|
145
145
|
'onUpdate:current': PropType<(current: number) => void>;
|
|
146
146
|
'onUpdate:pageSize': PropType<(size: number) => void>;
|
|
147
147
|
}>>>;
|
|
148
|
-
default: {
|
|
148
|
+
default: {
|
|
149
|
+
pageSize: number;
|
|
150
|
+
current: number;
|
|
151
|
+
};
|
|
149
152
|
};
|
|
150
153
|
loading: {
|
|
151
154
|
type: BooleanConstructor;
|
package/es/index.js
CHANGED
|
@@ -3761,14 +3761,20 @@ function useFormEvents({
|
|
|
3761
3761
|
console.error("\u6240\u6709\u7684\u5143\u7D20\u90FD\u5FC5\u987B\u8BBE\u7F6Ename\u5C5E\u6027");
|
|
3762
3762
|
return;
|
|
3763
3763
|
}
|
|
3764
|
+
let schema = [];
|
|
3764
3765
|
updateItems.forEach((it) => {
|
|
3766
|
+
let isMerge = false;
|
|
3765
3767
|
unref(getSchema).forEach((val) => {
|
|
3766
3768
|
if (val.name === it.name) {
|
|
3767
|
-
deepMerge(val, it);
|
|
3769
|
+
const newSchema = deepMerge(val, it);
|
|
3770
|
+
schema.push(newSchema);
|
|
3771
|
+
isMerge = true;
|
|
3768
3772
|
}
|
|
3769
3773
|
});
|
|
3774
|
+
if (!isMerge)
|
|
3775
|
+
schema.push(it);
|
|
3770
3776
|
});
|
|
3771
|
-
schemaRef.value = uniqBy(
|
|
3777
|
+
schemaRef.value = uniqBy(schema, "name");
|
|
3772
3778
|
}
|
|
3773
3779
|
function resetSchema(data) {
|
|
3774
3780
|
let updateItems = [];
|
|
@@ -4954,7 +4960,10 @@ const TableProps = {
|
|
|
4954
4960
|
canResize: { type: Boolean, default: false },
|
|
4955
4961
|
pagination: {
|
|
4956
4962
|
type: [Object, Boolean],
|
|
4957
|
-
default: {
|
|
4963
|
+
default: {
|
|
4964
|
+
pageSize: 20,
|
|
4965
|
+
current: 1
|
|
4966
|
+
}
|
|
4958
4967
|
},
|
|
4959
4968
|
loading: { type: Boolean, default: false },
|
|
4960
4969
|
rowClassName: { type: Function },
|
|
@@ -5645,7 +5654,7 @@ function useColumns(propsRef, getPaginationRef, tableElRef) {
|
|
|
5645
5654
|
var _a, _b;
|
|
5646
5655
|
let els = (_a = unref(tableElRef)) == null ? void 0 : _a.$el.querySelectorAll(".__column");
|
|
5647
5656
|
let allWidth = 0;
|
|
5648
|
-
for (let i = 0; i < els.length; i++) {
|
|
5657
|
+
for (let i = 0; i < (els == null ? void 0 : els.length); i++) {
|
|
5649
5658
|
allWidth += (_b = els[i].offsetWidth) != null ? _b : 0;
|
|
5650
5659
|
}
|
|
5651
5660
|
let columnAllWidth = 0, noWidthNum = 0;
|
|
@@ -5818,7 +5827,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
5818
5827
|
columns.splice(oldIndex, 1);
|
|
5819
5828
|
}
|
|
5820
5829
|
plainSortOptions.value = columns;
|
|
5821
|
-
setColumns(columns);
|
|
5830
|
+
setColumns(columns.map((col) => col.value).filter((value) => state.checkedList.includes(value)));
|
|
5822
5831
|
}
|
|
5823
5832
|
});
|
|
5824
5833
|
sortableOrder = sortable.toArray();
|
|
@@ -6940,7 +6949,7 @@ function useDownload(exportUrl, exportName) {
|
|
|
6940
6949
|
};
|
|
6941
6950
|
}
|
|
6942
6951
|
function useSource(opt) {
|
|
6943
|
-
var _a, _b, _c, _d;
|
|
6952
|
+
var _a, _b, _c, _d, _e, _f;
|
|
6944
6953
|
const { t } = useI18n("UI");
|
|
6945
6954
|
const loading = {
|
|
6946
6955
|
onSearch: ref(false),
|
|
@@ -6967,7 +6976,7 @@ function useSource(opt) {
|
|
|
6967
6976
|
const { appConf } = useAppStore();
|
|
6968
6977
|
const pagination = ref({
|
|
6969
6978
|
current: ((_b = (_a = appConf == null ? void 0 : appConf.ui) == null ? void 0 : _a.table) == null ? void 0 : _b.defaultPageNo) || 1,
|
|
6970
|
-
pageSize: ((_d = (_c = appConf == null ? void 0 : appConf.ui) == null ? void 0 : _c.table) == null ? void 0 : _d.defaultPageSize) ||
|
|
6979
|
+
pageSize: ((_d = (_c = appConf == null ? void 0 : appConf.ui) == null ? void 0 : _c.table) == null ? void 0 : _d.defaultPageSize) || 20,
|
|
6971
6980
|
total: 0
|
|
6972
6981
|
});
|
|
6973
6982
|
const dataSource = ref([]);
|
|
@@ -6975,7 +6984,7 @@ function useSource(opt) {
|
|
|
6975
6984
|
entityDTO: {},
|
|
6976
6985
|
pageDTO: {
|
|
6977
6986
|
pageNo: 0,
|
|
6978
|
-
pageSize:
|
|
6987
|
+
pageSize: (_f = (_e = appConf == null ? void 0 : appConf.ui) == null ? void 0 : _e.table) == null ? void 0 : _f.defaultPageSize
|
|
6979
6988
|
},
|
|
6980
6989
|
orderDTOs: []
|
|
6981
6990
|
});
|
|
@@ -7016,7 +7025,7 @@ function useSource(opt) {
|
|
|
7016
7025
|
const { fetch } = useFetch(queryPage, baseUrl);
|
|
7017
7026
|
loading.onQuerypage.value = true;
|
|
7018
7027
|
fetch(toRaw(baseData)).then((rsp) => {
|
|
7019
|
-
var _a2, _b2, _c2;
|
|
7028
|
+
var _a2, _b2, _c2, _d2, _e2;
|
|
7020
7029
|
if (isArray$1(rsp)) {
|
|
7021
7030
|
dataSource.value.splice(0, dataSource.value.length, ...rsp);
|
|
7022
7031
|
return;
|
|
@@ -7025,8 +7034,8 @@ function useSource(opt) {
|
|
|
7025
7034
|
dataSource.value.splice(0, dataSource.value.length, ...records);
|
|
7026
7035
|
pagination.value = {
|
|
7027
7036
|
current: ((_a2 = pageDTO == null ? void 0 : pageDTO.pageNo) != null ? _a2 : 0) + 1,
|
|
7028
|
-
pageSize: (
|
|
7029
|
-
total: (
|
|
7037
|
+
pageSize: (_d2 = pageDTO == null ? void 0 : pageDTO.pageSize) != null ? _d2 : (_c2 = (_b2 = appConf == null ? void 0 : appConf.ui) == null ? void 0 : _b2.table) == null ? void 0 : _c2.defaultPageSize,
|
|
7038
|
+
total: (_e2 = pageDTO == null ? void 0 : pageDTO.totalCount) != null ? _e2 : 0
|
|
7030
7039
|
};
|
|
7031
7040
|
}).finally(() => {
|
|
7032
7041
|
loading.onSearch.value = false;
|
|
@@ -8957,11 +8966,13 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
8957
8966
|
const menuList = ref([]);
|
|
8958
8967
|
const router = useRouter();
|
|
8959
8968
|
const filter2 = ref("");
|
|
8969
|
+
const visible = ref(false);
|
|
8960
8970
|
const { getShowSearch, getIsZH } = useHeader();
|
|
8961
8971
|
const isUseDef = computed(() => {
|
|
8962
8972
|
return isBoolean(getShowSearch.value);
|
|
8963
8973
|
});
|
|
8964
8974
|
function visibleChange(e) {
|
|
8975
|
+
visible.value = e;
|
|
8965
8976
|
if (e) {
|
|
8966
8977
|
filterMenu();
|
|
8967
8978
|
} else {
|
|
@@ -8971,25 +8982,28 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
8971
8982
|
function filterMenu() {
|
|
8972
8983
|
menuList.value = getFilterMenu(filter2.value, true);
|
|
8973
8984
|
}
|
|
8974
|
-
function
|
|
8985
|
+
function goPage(url) {
|
|
8975
8986
|
router.push(url);
|
|
8987
|
+
visible.value = false;
|
|
8976
8988
|
setTimeout(() => {
|
|
8977
8989
|
filter2.value = "";
|
|
8978
8990
|
menuList.value = [];
|
|
8979
|
-
});
|
|
8991
|
+
}, 500);
|
|
8980
8992
|
}
|
|
8981
8993
|
return (_ctx, _cache) => {
|
|
8982
8994
|
return unref(isUseDef) ? (openBlock(), createElementBlock("div", _hoisted_1$6, [
|
|
8983
8995
|
createVNode(unref(Popover), {
|
|
8984
8996
|
placement: "bottom",
|
|
8985
8997
|
overlayClassName: "menu_search__popover",
|
|
8986
|
-
trigger: "
|
|
8998
|
+
trigger: "click",
|
|
8999
|
+
visible: visible.value,
|
|
9000
|
+
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) => visible.value = $event),
|
|
8987
9001
|
onVisibleChange: visibleChange
|
|
8988
9002
|
}, {
|
|
8989
9003
|
content: withCtx(() => [
|
|
8990
9004
|
(openBlock(true), createElementBlock(Fragment, null, renderList(menuList.value, (menu) => {
|
|
8991
9005
|
return openBlock(), createElementBlock("p", {
|
|
8992
|
-
onClick: ($event) =>
|
|
9006
|
+
onClick: ($event) => goPage(menu.url)
|
|
8993
9007
|
}, toDisplayString(unref(getIsZH) ? menu.label : menu.enLabel), 9, _hoisted_2$3);
|
|
8994
9008
|
}), 256)),
|
|
8995
9009
|
!menuList.value.length ? (openBlock(), createElementBlock("div", _hoisted_3$1, [
|
|
@@ -9008,7 +9022,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
9008
9022
|
}, null, 8, ["value", "placeholder"])
|
|
9009
9023
|
]),
|
|
9010
9024
|
_: 1
|
|
9011
|
-
})
|
|
9025
|
+
}, 8, ["visible"])
|
|
9012
9026
|
])) : (openBlock(), createBlock(unref(getShowSearch), { key: 1 }));
|
|
9013
9027
|
};
|
|
9014
9028
|
}
|
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
+
t: {
|
|
3
|
+
(key: string): string;
|
|
4
|
+
(key: string, locale: string): string;
|
|
5
|
+
(key: string, locale: string, list: unknown[]): string;
|
|
6
|
+
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
7
|
+
(key: string, list: unknown[]): string;
|
|
8
|
+
(key: string, named: Record<string, unknown>): string;
|
|
9
|
+
};
|
|
10
|
+
menuList: import("vue").Ref<any[]>;
|
|
11
|
+
router: import("vue-router").Router;
|
|
12
|
+
filter: import("vue").Ref<string>;
|
|
13
|
+
getShowSearch: import("vue").ComputedRef<boolean | JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
}>>;
|
|
16
|
+
getIsZH: import("vue").ComputedRef<boolean>;
|
|
17
|
+
isUseDef: import("vue").ComputedRef<boolean>;
|
|
18
|
+
visibleChange: (e: any) => void;
|
|
19
|
+
filterMenu: () => void;
|
|
20
|
+
goPage: (url: string) => void;
|
|
21
|
+
Popover: {
|
|
22
|
+
new (...args: any[]): {
|
|
23
|
+
$: import("vue").ComponentInternalInstance;
|
|
24
|
+
$data: {};
|
|
25
|
+
$props: Partial<{
|
|
26
|
+
visible: boolean;
|
|
27
|
+
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
28
|
+
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
29
|
+
defaultVisible: boolean;
|
|
30
|
+
overlayStyle: import("vue").CSSProperties;
|
|
31
|
+
destroyTooltipOnHide: boolean;
|
|
32
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
33
|
+
arrowPointAtCenter: boolean;
|
|
34
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
content: import("vue-types").VueTypeValidableDef<any>;
|
|
36
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
37
|
+
trigger: import("vue").PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
38
|
+
visible: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
default: any;
|
|
41
|
+
};
|
|
42
|
+
defaultVisible: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: any;
|
|
45
|
+
};
|
|
46
|
+
placement: import("vue").PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
47
|
+
color: StringConstructor;
|
|
48
|
+
transitionName: StringConstructor;
|
|
49
|
+
overlayStyle: {
|
|
50
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
51
|
+
default: import("vue").CSSProperties;
|
|
52
|
+
};
|
|
53
|
+
overlayClassName: StringConstructor;
|
|
54
|
+
openClassName: StringConstructor;
|
|
55
|
+
prefixCls: StringConstructor;
|
|
56
|
+
mouseEnterDelay: NumberConstructor;
|
|
57
|
+
mouseLeaveDelay: NumberConstructor;
|
|
58
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
59
|
+
arrowPointAtCenter: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: any;
|
|
62
|
+
};
|
|
63
|
+
autoAdjustOverflow: {
|
|
64
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
65
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
66
|
+
};
|
|
67
|
+
destroyTooltipOnHide: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
default: any;
|
|
70
|
+
};
|
|
71
|
+
align: {
|
|
72
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
73
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
74
|
+
};
|
|
75
|
+
builtinPlacements: {
|
|
76
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
77
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
78
|
+
};
|
|
79
|
+
children: ArrayConstructor;
|
|
80
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
81
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
82
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "visible" | "defaultVisible" | "overlayStyle" | "arrowPointAtCenter" | "autoAdjustOverflow" | "destroyTooltipOnHide" | "align" | "builtinPlacements">;
|
|
83
|
+
$attrs: {
|
|
84
|
+
[x: string]: unknown;
|
|
85
|
+
};
|
|
86
|
+
$refs: {
|
|
87
|
+
[x: string]: unknown;
|
|
88
|
+
};
|
|
89
|
+
$slots: Readonly<{
|
|
90
|
+
[name: string]: import("vue").Slot;
|
|
91
|
+
}>;
|
|
92
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
93
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
94
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
95
|
+
$el: any;
|
|
96
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
97
|
+
content: import("vue-types").VueTypeValidableDef<any>;
|
|
98
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
99
|
+
trigger: import("vue").PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
100
|
+
visible: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: any;
|
|
103
|
+
};
|
|
104
|
+
defaultVisible: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: any;
|
|
107
|
+
};
|
|
108
|
+
placement: import("vue").PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
109
|
+
color: StringConstructor;
|
|
110
|
+
transitionName: StringConstructor;
|
|
111
|
+
overlayStyle: {
|
|
112
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
113
|
+
default: import("vue").CSSProperties;
|
|
114
|
+
};
|
|
115
|
+
overlayClassName: StringConstructor;
|
|
116
|
+
openClassName: StringConstructor;
|
|
117
|
+
prefixCls: StringConstructor;
|
|
118
|
+
mouseEnterDelay: NumberConstructor;
|
|
119
|
+
mouseLeaveDelay: NumberConstructor;
|
|
120
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
121
|
+
arrowPointAtCenter: {
|
|
122
|
+
type: BooleanConstructor;
|
|
123
|
+
default: any;
|
|
124
|
+
};
|
|
125
|
+
autoAdjustOverflow: {
|
|
126
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
127
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
128
|
+
};
|
|
129
|
+
destroyTooltipOnHide: {
|
|
130
|
+
type: BooleanConstructor;
|
|
131
|
+
default: any;
|
|
132
|
+
};
|
|
133
|
+
align: {
|
|
134
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
135
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
136
|
+
};
|
|
137
|
+
builtinPlacements: {
|
|
138
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
139
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
140
|
+
};
|
|
141
|
+
children: ArrayConstructor;
|
|
142
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
143
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
144
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
145
|
+
visible: boolean;
|
|
146
|
+
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
147
|
+
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
148
|
+
defaultVisible: boolean;
|
|
149
|
+
overlayStyle: import("vue").CSSProperties;
|
|
150
|
+
destroyTooltipOnHide: boolean;
|
|
151
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
152
|
+
arrowPointAtCenter: boolean;
|
|
153
|
+
}> & {
|
|
154
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
155
|
+
created?: (() => void) | (() => void)[];
|
|
156
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
157
|
+
mounted?: (() => void) | (() => void)[];
|
|
158
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
159
|
+
updated?: (() => void) | (() => void)[];
|
|
160
|
+
activated?: (() => void) | (() => void)[];
|
|
161
|
+
deactivated?: (() => void) | (() => void)[];
|
|
162
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
163
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
164
|
+
destroyed?: (() => void) | (() => void)[];
|
|
165
|
+
unmounted?: (() => void) | (() => void)[];
|
|
166
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
167
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
168
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
|
|
169
|
+
};
|
|
170
|
+
$forceUpdate: () => void;
|
|
171
|
+
$nextTick: typeof import("vue").nextTick;
|
|
172
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
173
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
174
|
+
content: import("vue-types").VueTypeValidableDef<any>;
|
|
175
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
176
|
+
trigger: import("vue").PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
177
|
+
visible: {
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
default: any;
|
|
180
|
+
};
|
|
181
|
+
defaultVisible: {
|
|
182
|
+
type: BooleanConstructor;
|
|
183
|
+
default: any;
|
|
184
|
+
};
|
|
185
|
+
placement: import("vue").PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
186
|
+
color: StringConstructor;
|
|
187
|
+
transitionName: StringConstructor;
|
|
188
|
+
overlayStyle: {
|
|
189
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
190
|
+
default: import("vue").CSSProperties;
|
|
191
|
+
};
|
|
192
|
+
overlayClassName: StringConstructor;
|
|
193
|
+
openClassName: StringConstructor;
|
|
194
|
+
prefixCls: StringConstructor;
|
|
195
|
+
mouseEnterDelay: NumberConstructor;
|
|
196
|
+
mouseLeaveDelay: NumberConstructor;
|
|
197
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
198
|
+
arrowPointAtCenter: {
|
|
199
|
+
type: BooleanConstructor;
|
|
200
|
+
default: any;
|
|
201
|
+
};
|
|
202
|
+
autoAdjustOverflow: {
|
|
203
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
204
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
205
|
+
};
|
|
206
|
+
destroyTooltipOnHide: {
|
|
207
|
+
type: BooleanConstructor;
|
|
208
|
+
default: any;
|
|
209
|
+
};
|
|
210
|
+
align: {
|
|
211
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
212
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
213
|
+
};
|
|
214
|
+
builtinPlacements: {
|
|
215
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
216
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
217
|
+
};
|
|
218
|
+
children: ArrayConstructor;
|
|
219
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
220
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
221
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
|
|
222
|
+
__isFragment?: never;
|
|
223
|
+
__isTeleport?: never;
|
|
224
|
+
__isSuspense?: never;
|
|
225
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
226
|
+
content: import("vue-types").VueTypeValidableDef<any>;
|
|
227
|
+
title: import("vue-types").VueTypeValidableDef<any>;
|
|
228
|
+
trigger: import("vue").PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
229
|
+
visible: {
|
|
230
|
+
type: BooleanConstructor;
|
|
231
|
+
default: any;
|
|
232
|
+
};
|
|
233
|
+
defaultVisible: {
|
|
234
|
+
type: BooleanConstructor;
|
|
235
|
+
default: any;
|
|
236
|
+
};
|
|
237
|
+
placement: import("vue").PropType<import("ant-design-vue/lib/tooltip").TooltipPlacement>;
|
|
238
|
+
color: StringConstructor;
|
|
239
|
+
transitionName: StringConstructor;
|
|
240
|
+
overlayStyle: {
|
|
241
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
242
|
+
default: import("vue").CSSProperties;
|
|
243
|
+
};
|
|
244
|
+
overlayClassName: StringConstructor;
|
|
245
|
+
openClassName: StringConstructor;
|
|
246
|
+
prefixCls: StringConstructor;
|
|
247
|
+
mouseEnterDelay: NumberConstructor;
|
|
248
|
+
mouseLeaveDelay: NumberConstructor;
|
|
249
|
+
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
250
|
+
arrowPointAtCenter: {
|
|
251
|
+
type: BooleanConstructor;
|
|
252
|
+
default: any;
|
|
253
|
+
};
|
|
254
|
+
autoAdjustOverflow: {
|
|
255
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow>;
|
|
256
|
+
default: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
257
|
+
};
|
|
258
|
+
destroyTooltipOnHide: {
|
|
259
|
+
type: BooleanConstructor;
|
|
260
|
+
default: any;
|
|
261
|
+
};
|
|
262
|
+
align: {
|
|
263
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").AlignType>;
|
|
264
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
265
|
+
};
|
|
266
|
+
builtinPlacements: {
|
|
267
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements>;
|
|
268
|
+
default: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
269
|
+
};
|
|
270
|
+
children: ArrayConstructor;
|
|
271
|
+
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
272
|
+
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
273
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
274
|
+
visible: boolean;
|
|
275
|
+
align: import("ant-design-vue/lib/vc-trigger/interface").AlignType;
|
|
276
|
+
builtinPlacements: import("ant-design-vue/lib/vc-trigger/interface").BuildInPlacements;
|
|
277
|
+
defaultVisible: boolean;
|
|
278
|
+
overlayStyle: import("vue").CSSProperties;
|
|
279
|
+
destroyTooltipOnHide: boolean;
|
|
280
|
+
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
281
|
+
arrowPointAtCenter: boolean;
|
|
282
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
|
283
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
284
|
+
export default _sfc_main;
|