@dt-frames/ui 2.0.9 → 2.0.11

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.
Files changed (60) hide show
  1. package/es/components/curd/index.js +6 -2973
  2. package/es/components/curd/src/components/Curd.d.ts +13 -881
  3. package/es/components/curd/src/hooks/useCurd.d.ts +3 -3
  4. package/es/components/curd/src/props.d.ts +3 -4
  5. package/es/components/curd/src/types/curd.type.d.ts +2 -2
  6. package/es/components/drawer/index.d.ts +9 -166
  7. package/es/components/drawer/index.js +20 -458
  8. package/es/components/drawer/src/components/DrawerFooter.d.ts +1 -84
  9. package/es/components/drawer/src/index.d.ts +9 -166
  10. package/es/components/drawer/src/types/index.type.d.ts +1 -1
  11. package/es/components/form/index.d.ts +5 -1
  12. package/es/components/form/index.js +97 -491
  13. package/es/components/form/index.less +18 -0
  14. package/es/components/form/src/components/FormButtons.d.ts +13 -3
  15. package/es/components/form/src/components/FormItem.d.ts +0 -1
  16. package/es/components/form/src/components/formIcon.d.ts +3 -3
  17. package/es/components/form/src/components/formInputUseDialog.d.ts +2 -2
  18. package/es/components/form/src/hooks/useLabelWidth.d.ts +2 -18
  19. package/es/components/form/src/props.d.ts +3 -4
  20. package/es/components/form/src/types/form.type.d.ts +5 -3
  21. package/es/components/form/src/types/items.type.d.ts +12 -5
  22. package/es/components/modal/index.d.ts +2 -1
  23. package/es/components/modal/index.js +19 -456
  24. package/es/components/modal/src/components/Modal.d.ts +2 -2
  25. package/es/components/modal/src/components/ModalFooter.d.ts +2 -85
  26. package/es/components/modal/src/components/ModalWrap.d.ts +1 -75
  27. package/es/components/modal/src/index.d.ts +14 -171
  28. package/es/components/modal/src/props.d.ts +2 -1
  29. package/es/components/table/index.js +47 -1849
  30. package/es/components/table/index.less +3 -3
  31. package/es/components/table/src/components/TableAction.d.ts +1 -1
  32. package/es/components/table/src/components/editTable/EditTableCell.d.ts +1 -1
  33. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +1 -867
  34. package/es/components/table/src/index.d.ts +10 -10
  35. package/es/components/tree/index.js +29 -39
  36. package/es/components/tree/src/components/TreeHeader.d.ts +1 -1
  37. package/es/components/tree/src/index.d.ts +2 -2
  38. package/es/components/upload/index.d.ts +2 -0
  39. package/es/components/upload/index.js +16 -0
  40. package/es/components/upload/index.less +0 -0
  41. package/es/components/upload/src/index.d.ts +2 -0
  42. package/es/theme/index.d.ts +2 -1
  43. package/es/theme/index.js +11 -4
  44. package/es/theme/index.less +1 -0
  45. package/es/theme/src/components/header/components/size.d.ts +5 -5
  46. package/es/theme/src/components/header/index.d.ts +5 -5
  47. package/es/theme/src/components/header/multiple-header.d.ts +5 -5
  48. package/es/theme/src/hooks/useMenu.d.ts +1 -1
  49. package/es/theme/src/index.d.ts +10 -10
  50. package/es/theme/transition.less +105 -0
  51. package/index.js +21 -1
  52. package/manualContentPath.js +110 -0
  53. package/package.json +5 -2
  54. package/vite.config.ts +16 -4
  55. package/vite.config.ts.timestamp-1678694558071.mjs +59 -0
  56. package/vite.config.ts.timestamp-1678700851971.mjs +61 -0
  57. package/es/components/form/src/index.d.ts +0 -2922
  58. package/es/components/table/src/components/TableHeader.d.ts +0 -1136
  59. package/es/components/table/src/components/tableSetting/Download.d.ts +0 -922
  60. package/es/components/table/src/components/tableSetting/index.d.ts +0 -1030
@@ -187,8 +187,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
187
187
  innerPropsRef: import("vue").Ref<BasicTableProps>;
188
188
  getProps: import("vue").ComputedRef<{
189
189
  components?: import("ant-design-vue/es/vc-table/interface").TableComponents<any>;
190
+ id?: string;
190
191
  size?: import("ant-design-vue/es/button").ButtonSize;
191
- title?: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
192
+ locale?: import("ant-design-vue/es/table/interface").TableLocale;
193
+ prefixCls?: string;
194
+ onChange?: (pagination: import("ant-design-vue/es/table").TablePaginationConfig, filters: Record<string, import("ant-design-vue/es/table/interface").FilterValue>, sorter: import("ant-design-vue/es/table/interface").SorterResult<any> | import("ant-design-vue/es/table/interface").SorterResult<any>[], extra: import("ant-design-vue/es/table/interface").TableCurrentDataSource<any>) => void;
195
+ rowKey: string | (import("ant-design-vue/es/vc-table/interface").GetRowKey<any> & string);
196
+ dataSource: import("@dt-frames/core").Recordable<any>[];
197
+ bordered: boolean;
192
198
  loading: (boolean | Partial<import("vue").ExtractPropTypes<{
193
199
  prefixCls: StringConstructor;
194
200
  spinning: {
@@ -201,14 +207,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
201
207
  delay: NumberConstructor;
202
208
  indicator: import("vue-types").VueTypeValidableDef<any>;
203
209
  }>>) & boolean;
204
- footer?: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
205
- id?: string;
206
- locale?: import("ant-design-vue/es/table/interface").TableLocale;
207
- prefixCls?: string;
208
- onChange?: (pagination: import("ant-design-vue/es/table").TablePaginationConfig, filters: Record<string, import("ant-design-vue/es/table/interface").FilterValue>, sorter: import("ant-design-vue/es/table/interface").SorterResult<any> | import("ant-design-vue/es/table/interface").SorterResult<any>[], extra: import("ant-design-vue/es/table/interface").TableCurrentDataSource<any>) => void;
209
- rowKey: string | (import("ant-design-vue/es/vc-table/interface").GetRowKey<any> & string);
210
- dataSource: import("@dt-frames/core").Recordable<any>[];
211
- bordered: boolean;
212
210
  rowClassName: (record: any, index: number) => string;
213
211
  scroll: {
214
212
  x?: string | number | true;
@@ -223,6 +221,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
223
221
  customRow: import("ant-design-vue/es/vc-table/interface").GetComponentProps<any> & ((record: any, index: any) => void);
224
222
  childrenColumnName: string;
225
223
  tableLayout?: import("ant-design-vue/es/vc-table/interface").TableLayout;
224
+ title?: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
225
+ footer?: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
226
226
  showHeader?: boolean;
227
227
  customHeaderRow?: import("ant-design-vue/es/vc-table/interface").GetComponentProps<import("ant-design-vue/es/vc-table/interface").ColumnType<any>[]>;
228
228
  direction?: "ltr" | "rtl";
@@ -584,7 +584,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
584
584
  "onRow-mouseleave"?: (...args: any[]) => any;
585
585
  "onEdit-change"?: (...args: any[]) => any;
586
586
  }, {
587
- loading: boolean;
588
587
  autoFetch: boolean;
589
588
  clickToSelectRow: boolean;
590
589
  tableSetting: {};
@@ -607,6 +606,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
607
606
  bordered: boolean;
608
607
  canResize: boolean;
609
608
  pagination: any;
609
+ loading: boolean;
610
610
  scroll: {};
611
611
  onTableChange: Function;
612
612
  onDownload: Function;
@@ -196,8 +196,8 @@ function useTree(treeDataRef, getFieldNames) {
196
196
  const { key: keyField, children: childrenField } = unref(getFieldNames);
197
197
  if (!childrenField || !keyField)
198
198
  return keys;
199
- for (let index2 = 0; index2 < treeData.length; index2++) {
200
- const node = treeData[index2];
199
+ for (let index = 0; index < treeData.length; index++) {
200
+ const node = treeData[index];
201
201
  keys.push(node[keyField]);
202
202
  const children = node[childrenField];
203
203
  if (children && children.length) {
@@ -212,8 +212,8 @@ function useTree(treeDataRef, getFieldNames) {
212
212
  const { key: keyField, children: childrenField } = unref(getFieldNames);
213
213
  if (!childrenField || !keyField)
214
214
  return keys;
215
- for (let index2 = 0; index2 < treeData.length; index2++) {
216
- const node = treeData[index2];
215
+ for (let index = 0; index < treeData.length; index++) {
216
+ const node = treeData[index];
217
217
  node.disabled !== true && node.selectable !== false && keys.push(node[keyField]);
218
218
  const children = node[childrenField];
219
219
  if (children && children.length) {
@@ -228,8 +228,8 @@ function useTree(treeDataRef, getFieldNames) {
228
228
  const { key: keyField, children: childrenField } = unref(getFieldNames);
229
229
  if (!childrenField || !keyField)
230
230
  return keys;
231
- for (let index2 = 0; index2 < treeData.length; index2++) {
232
- const node = treeData[index2];
231
+ for (let index = 0; index < treeData.length; index++) {
232
+ const node = treeData[index];
233
233
  const children = node[childrenField];
234
234
  if (nodeKey === node[keyField]) {
235
235
  keys.push(node[keyField]);
@@ -251,11 +251,11 @@ function useTree(treeDataRef, getFieldNames) {
251
251
  const { key: keyField, children: childrenField } = unref(getFieldNames);
252
252
  if (!childrenField || !keyField)
253
253
  return;
254
- for (let index2 = 0; index2 < treeData.length; index2++) {
255
- const element = treeData[index2];
254
+ for (let index = 0; index < treeData.length; index++) {
255
+ const element = treeData[index];
256
256
  const children = element[childrenField];
257
257
  if (element[keyField] === key) {
258
- treeData[index2] = { ...treeData[index2], ...node };
258
+ treeData[index] = { ...treeData[index], ...node };
259
259
  break;
260
260
  } else if (children && children.length) {
261
261
  updateNodeByKey(key, node, element[childrenField]);
@@ -267,8 +267,8 @@ function useTree(treeDataRef, getFieldNames) {
267
267
  return [];
268
268
  const res = [];
269
269
  const data = list || unref(treeDataRef) || [];
270
- for (let index2 = 0; index2 < data.length; index2++) {
271
- const item = data[index2];
270
+ for (let index = 0; index < data.length; index++) {
271
+ const item = data[index];
272
272
  const { key: keyField, children: childrenField } = unref(getFieldNames);
273
273
  const key = keyField ? item[keyField] : "";
274
274
  const children = childrenField ? item[childrenField] : [];
@@ -330,11 +330,11 @@ function useTree(treeDataRef, getFieldNames) {
330
330
  const { key: keyField, children: childrenField } = unref(getFieldNames);
331
331
  if (!childrenField || !keyField)
332
332
  return;
333
- for (let index2 = 0; index2 < treeData.length; index2++) {
334
- const element = treeData[index2];
333
+ for (let index = 0; index < treeData.length; index++) {
334
+ const element = treeData[index];
335
335
  const children = element[childrenField];
336
336
  if (element[keyField] === key) {
337
- treeData.splice(index2, 1);
337
+ treeData.splice(index, 1);
338
338
  break;
339
339
  } else if (children && children.length) {
340
340
  deleteNodeByKey(key, element[childrenField]);
@@ -455,8 +455,8 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
455
455
  const _component_AMenu = Menu;
456
456
  const _component_ADropdown = Dropdown;
457
457
  return openBlock(), createElementBlock("div", _hoisted_1$1, [
458
- unref(slots).headerTitle ? renderSlot(_ctx.$slots, "headerTitle", { key: 0 }) : createCommentVNode("v-if", true),
459
- !unref(slots).headerTitle && _ctx.title ? (openBlock(), createElementBlock("h4", _hoisted_2, toDisplayString(_ctx.title), 1)) : createCommentVNode("v-if", true),
458
+ unref(slots).headerTitle ? renderSlot(_ctx.$slots, "headerTitle", { key: 0 }) : createCommentVNode("", true),
459
+ !unref(slots).headerTitle && _ctx.title ? (openBlock(), createElementBlock("h4", _hoisted_2, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true),
460
460
  _ctx.search || _ctx.toolbar ? (openBlock(), createElementBlock("div", _hoisted_3, [
461
461
  _ctx.search ? (openBlock(), createElementBlock("div", _hoisted_4, [
462
462
  createVNode(_component_AInputSearch, {
@@ -466,7 +466,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
466
466
  "onUpdate:value": _cache[0] || (_cache[0] = ($event) => searchValue.value = $event),
467
467
  placeholder: unref(t)("FILTER")
468
468
  }, null, 8, ["value", "placeholder"])
469
- ])) : createCommentVNode("v-if", true),
469
+ ])) : createCommentVNode("", true),
470
470
  _ctx.toolbar ? (openBlock(), createBlock(_component_ADropdown, {
471
471
  key: 1,
472
472
  onClick: _cache[1] || (_cache[1] = withModifiers(() => {
@@ -485,7 +485,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
485
485
  ]),
486
486
  _: 2
487
487
  }, 1040),
488
- item.divider ? (openBlock(), createBlock(_component_AMenuDivider, { key: 0 })) : createCommentVNode("v-if", true)
488
+ item.divider ? (openBlock(), createBlock(_component_AMenuDivider, { key: 0 })) : createCommentVNode("", true)
489
489
  ], 64);
490
490
  }), 128))
491
491
  ]),
@@ -496,20 +496,12 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
496
496
  _hoisted_5
497
497
  ]),
498
498
  _: 1
499
- })) : createCommentVNode("v-if", true)
500
- ])) : createCommentVNode("v-if", true)
499
+ })) : createCommentVNode("", true)
500
+ ])) : createCommentVNode("", true)
501
501
  ]);
502
502
  };
503
503
  }
504
504
  });
505
- const _export_sfc = (sfc, props) => {
506
- const target = sfc.__vccOpts || sfc;
507
- for (const [key, val] of props) {
508
- target[key] = val;
509
- }
510
- return target;
511
- };
512
- const TreeHeader = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/tree/src/components/TreeHeader.vue"]]);
513
505
  function _isSlot(s) {
514
506
  return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !isVNode(s);
515
507
  }
@@ -632,7 +624,6 @@ const _sfc_main$1 = defineComponent({
632
624
  };
633
625
  }
634
626
  });
635
- const contextMenuVue = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/tree/src/components/ContextMenu.vue"]]);
636
627
  function useContextMenu() {
637
628
  const menuManager = {
638
629
  domList: [],
@@ -656,7 +647,7 @@ function useContextMenu() {
656
647
  propsData.customEvent = event;
657
648
  propsData.axis = { x: event.clientX, y: event.clientY };
658
649
  }
659
- const vm = createVNode(contextMenuVue, propsData);
650
+ const vm = createVNode(_sfc_main$1, propsData);
660
651
  render(vm, container);
661
652
  const handleClick = function() {
662
653
  menuManager.resolve("");
@@ -843,9 +834,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
843
834
  setExpandedKeys([...state.expandedKeys, key]);
844
835
  } else {
845
836
  const keys = [...state.expandedKeys];
846
- const index2 = keys.findIndex((item) => item === key);
847
- if (index2 !== -1) {
848
- keys.splice(index2, 1);
837
+ const index = keys.findIndex((item) => item === key);
838
+ if (index !== -1) {
839
+ keys.splice(index, 1);
849
840
  }
850
841
  setExpandedKeys(keys);
851
842
  }
@@ -856,7 +847,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
856
847
  } = props;
857
848
  if (!actionList || actionList.length === 0)
858
849
  return;
859
- return actionList.map((item, index2) => {
850
+ return actionList.map((item, index) => {
860
851
  let nodeShow = true;
861
852
  if (isFunction(item.show)) {
862
853
  nodeShow = item.show?.(node);
@@ -866,7 +857,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
866
857
  if (!nodeShow)
867
858
  return null;
868
859
  return createVNode("span", {
869
- "key": index2,
860
+ "key": index,
870
861
  "class": "tree-action"
871
862
  }, [item.render(node)]);
872
863
  });
@@ -1055,7 +1046,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1055
1046
  const _component_ATree = Tree;
1056
1047
  const _component_AEmpty = Empty;
1057
1048
  const _component_ASpin = Spin;
1058
- return openBlock(), createElementBlock("div", _hoisted_1, [unref(showTitle) ? (openBlock(), createBlock(TreeHeader, {
1049
+ return openBlock(), createElementBlock("div", _hoisted_1, [unref(showTitle) ? (openBlock(), createBlock(_sfc_main$2, {
1059
1050
  key: 0,
1060
1051
  title: _ctx.title,
1061
1052
  toolbar: _ctx.toolbar,
@@ -1068,7 +1059,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1068
1059
  }, {
1069
1060
  default: withCtx(() => [createTextVNode(toDisplayString(unref(extendSlots)(unref(slots))), 1)]),
1070
1061
  _: 1
1071
- }, 8, ["title", "toolbar", "search", "checkable", "searchText"])) : createCommentVNode("v-if", true), createVNode(_component_ASpin, {
1062
+ }, 8, ["title", "toolbar", "search", "checkable", "searchText"])) : createCommentVNode("", true), createVNode(_component_ASpin, {
1072
1063
  spinning: _ctx.loading,
1073
1064
  tip: unref(t)("LOADING")
1074
1065
  }, {
@@ -1081,7 +1072,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1081
1072
  };
1082
1073
  }
1083
1074
  });
1084
- const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/tree/src/index.vue"]]);
1085
1075
  export {
1086
- index as DtTree
1076
+ _sfc_main as DtTree
1087
1077
  };
@@ -87,10 +87,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
87
87
  }>> & {
88
88
  onSearch?: (...args: any[]) => any;
89
89
  }, {
90
- search: boolean;
91
90
  checkable: boolean;
92
91
  title: string;
93
92
  toolbar: boolean;
93
+ search: boolean;
94
94
  searchText: string;
95
95
  checkAll: Function;
96
96
  expandAll: Function;
@@ -6402,10 +6402,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
6402
6402
  }>> & {
6403
6403
  onSearch?: (...args: any[]) => any;
6404
6404
  }, {
6405
- search: boolean;
6406
6405
  checkable: boolean;
6407
6406
  title: string;
6408
6407
  toolbar: boolean;
6408
+ search: boolean;
6409
6409
  searchText: string;
6410
6410
  checkAll: Function;
6411
6411
  expandAll: Function;
@@ -6502,7 +6502,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
6502
6502
  onClickNode?: (...args: any[]) => any;
6503
6503
  "onUpdate:searchValue"?: (...args: any[]) => any;
6504
6504
  }, {
6505
- search: boolean;
6506
6505
  defaultExpandAll: boolean;
6507
6506
  showIcon: boolean;
6508
6507
  loading: boolean;
@@ -6522,5 +6521,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
6522
6521
  selectedOnSearch: boolean;
6523
6522
  title: string;
6524
6523
  toolbar: boolean;
6524
+ search: boolean;
6525
6525
  }>;
6526
6526
  export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ import { default as DtUpload } from "./src/index";
2
+ export { DtUpload };
@@ -0,0 +1,16 @@
1
+ import { openBlock, createElementBlock } from "vue";
2
+ const _export_sfc = (sfc, props) => {
3
+ const target = sfc.__vccOpts || sfc;
4
+ for (const [key, val] of props) {
5
+ target[key] = val;
6
+ }
7
+ return target;
8
+ };
9
+ const _sfc_main = {};
10
+ function _sfc_render(_ctx, _cache) {
11
+ return openBlock(), createElementBlock("div", null, "\u8FD9\u662F\u6587\u4EF6\u4E0A\u4F20\u7EC4\u4EF6");
12
+ }
13
+ const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
14
+ export {
15
+ index as DtUpload
16
+ };
File without changes
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -6,6 +6,7 @@ import type { ThemeOptions, HeadOptions, MenuOptions, FooterOptions, RouteReuseO
6
6
  import { Component } from 'vue';
7
7
  import { SFCWithInstall } from '../utils/withInstall';
8
8
  import { UiSize, ContentMode, MenuMode, MenuType } from './src/enums/theme.enum';
9
+ import { useMenu, useHeader, useMultipleTab, useTheme } from './src/hooks';
9
10
  declare const DtTheme: SFCWithInstall<Component>;
10
- export { UiSize, ContentMode, MenuMode, MenuType, uiLang, DtTheme, useThemeStore, useRouteReuseStore, defaultThemeConf };
11
+ export { UiSize, ContentMode, MenuMode, MenuType, uiLang, DtTheme, useMenu, useHeader, useMultipleTab, useTheme, useThemeStore, useRouteReuseStore, defaultThemeConf };
11
12
  export type { ThemeOptions, HeadOptions, MenuOptions, FooterOptions, RouteReuseOptions };
package/es/theme/index.js CHANGED
@@ -15,6 +15,7 @@ import "ant-design-vue/es/breadcrumb/style";
15
15
  import "ant-design-vue/es/popover/style";
16
16
  import "ant-design-vue/es/input/style";
17
17
  import "ant-design-vue/es/empty/style";
18
+ import { DtSlotContainer as DtSlotContainer$1 } from "../components/container";
18
19
  import { Popover as Popover$1, Modal, LayoutFooter } from "ant-design-vue";
19
20
  import "ant-design-vue/es/avatar/style";
20
21
  import "ant-design-vue/es/drawer/style";
@@ -1612,7 +1613,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
1612
1613
  overlayClassName: "dt-notify__popover"
1613
1614
  }, {
1614
1615
  content: withCtx(() => [
1615
- unref$1(slots).notify ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
1616
+ unref$1(slots).notify ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
1616
1617
  key: 0,
1617
1618
  template: unref$1(slots).notify
1618
1619
  }, null, 8, ["template"])) : createCommentVNode("", true)
@@ -1622,7 +1623,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
1622
1623
  withDirectives(createElementVNode("span", null, null, 512), [
1623
1624
  [_directive_icon, "ant-design:bell-outlined"]
1624
1625
  ]),
1625
- unref$1(slots).notifyBadge ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
1626
+ unref$1(slots).notifyBadge ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
1626
1627
  key: 0,
1627
1628
  template: unref$1(slots).notifyBadge
1628
1629
  }, null, 8, ["template"])) : createCommentVNode("", true)
@@ -1729,7 +1730,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
1729
1730
  }, {
1730
1731
  content: withCtx(() => [
1731
1732
  createElementVNode("div", _hoisted_1$8, [
1732
- unref$1(slots).userInfo ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
1733
+ unref$1(slots).userInfo ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
1733
1734
  key: 0,
1734
1735
  template: unref$1(slots).userInfo
1735
1736
  }, null, 8, ["template"])) : createCommentVNode("", true),
@@ -3266,7 +3267,9 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
3266
3267
  createVNode(_component_router_view, null, {
3267
3268
  default: withCtx(({ Component, route }) => [
3268
3269
  createVNode(Transition, {
3269
- name: getTransitionName(route)
3270
+ name: getTransitionName(route),
3271
+ mode: "out-in",
3272
+ appear: ""
3270
3273
  }, {
3271
3274
  default: withCtx(() => [
3272
3275
  !route.meta.hideTab && unref$1(getCanCache) ? (openBlock(), createBlock(KeepAlive, {
@@ -3607,6 +3610,10 @@ export {
3607
3610
  UiSize,
3608
3611
  defaultThemeConf,
3609
3612
  uiLang,
3613
+ useHeader,
3614
+ useMenu,
3615
+ useMultipleTab,
3610
3616
  useRouteReuseStore,
3617
+ useTheme,
3611
3618
  useThemeStore
3612
3619
  };
@@ -1,4 +1,5 @@
1
1
  @import '../components/container/index.less';
2
+ @import './transition.less';
2
3
 
3
4
  @primary-color: #269ac1;
4
5
  @header-bg-color: #fff;
@@ -87,8 +87,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
87
87
  $slots: Readonly<{
88
88
  [name: string]: import("vue").Slot;
89
89
  }>;
90
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
91
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
90
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
91
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
92
92
  $emit: (event: string, ...args: any[]) => void;
93
93
  $el: any;
94
94
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
@@ -148,7 +148,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
148
148
  destroyTooltipOnHide: boolean;
149
149
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
150
150
  arrowPointAtCenter: boolean;
151
- }> & {
151
+ }, {}, string> & {
152
152
  beforeCreate?: (() => void) | (() => void)[];
153
153
  created?: (() => void) | (() => void)[];
154
154
  beforeMount?: (() => void) | (() => void)[];
@@ -163,7 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
163
163
  unmounted?: (() => void) | (() => void)[];
164
164
  renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
165
165
  renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
166
- 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)[];
166
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
167
167
  };
168
168
  $forceUpdate: () => void;
169
169
  $nextTick: typeof import("vue").nextTick;
@@ -277,6 +277,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
277
277
  destroyTooltipOnHide: boolean;
278
278
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
279
279
  arrowPointAtCenter: boolean;
280
- }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
280
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
281
281
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
282
282
  export default _sfc_main;
@@ -333,8 +333,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
333
333
  $slots: Readonly<{
334
334
  [name: string]: import("vue").Slot;
335
335
  }>;
336
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
337
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
336
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
337
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
338
338
  $emit: (event: string, ...args: any[]) => void;
339
339
  $el: any;
340
340
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
@@ -394,7 +394,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
394
394
  destroyTooltipOnHide: boolean;
395
395
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
396
396
  arrowPointAtCenter: boolean;
397
- }> & {
397
+ }, {}, string> & {
398
398
  beforeCreate?: (() => void) | (() => void)[];
399
399
  created?: (() => void) | (() => void)[];
400
400
  beforeMount?: (() => void) | (() => void)[];
@@ -409,7 +409,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
409
409
  unmounted?: (() => void) | (() => void)[];
410
410
  renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
411
411
  renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
412
- 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)[];
412
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
413
413
  };
414
414
  $forceUpdate: () => void;
415
415
  $nextTick: typeof import("vue").nextTick;
@@ -523,7 +523,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
523
523
  destroyTooltipOnHide: boolean;
524
524
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
525
525
  arrowPointAtCenter: boolean;
526
- }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
526
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
527
527
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
528
528
  readonly DtUserInfo: import("vue").DefineComponent<{}, {
529
529
  t: {
@@ -356,8 +356,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
356
356
  $slots: Readonly<{
357
357
  [name: string]: import("vue").Slot;
358
358
  }>;
359
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
360
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
359
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
360
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
361
361
  $emit: (event: string, ...args: any[]) => void;
362
362
  $el: any;
363
363
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
@@ -417,7 +417,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
417
417
  destroyTooltipOnHide: boolean;
418
418
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
419
419
  arrowPointAtCenter: boolean;
420
- }> & {
420
+ }, {}, string> & {
421
421
  beforeCreate?: (() => void) | (() => void)[];
422
422
  created?: (() => void) | (() => void)[];
423
423
  beforeMount?: (() => void) | (() => void)[];
@@ -432,7 +432,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
432
432
  unmounted?: (() => void) | (() => void)[];
433
433
  renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
434
434
  renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
435
- 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)[];
435
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
436
436
  };
437
437
  $forceUpdate: () => void;
438
438
  $nextTick: typeof import("vue").nextTick;
@@ -546,7 +546,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
546
546
  destroyTooltipOnHide: boolean;
547
547
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
548
548
  arrowPointAtCenter: boolean;
549
- }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
549
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
550
550
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
551
551
  readonly DtUserInfo: import("vue").DefineComponent<{}, {
552
552
  t: {
@@ -17,7 +17,7 @@ export declare function useMenu(): {
17
17
  getSplit: import("vue").ComputedRef<boolean>;
18
18
  getCollapsed: import("vue").ComputedRef<boolean>;
19
19
  getIsHorizontal: import("vue").ComputedRef<boolean>;
20
- getMiniWidthNumber: import("vue").ComputedRef<48 | 80>;
20
+ getMiniWidthNumber: import("vue").ComputedRef<80 | 48>;
21
21
  getRealWidth: import("vue").ComputedRef<number>;
22
22
  getCalcContentWidth: import("vue").ComputedRef<string>;
23
23
  getIsMixMode: import("vue").ComputedRef<boolean>;
@@ -371,8 +371,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
371
371
  $slots: Readonly<{
372
372
  [name: string]: import("vue").Slot;
373
373
  }>;
374
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
375
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
374
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
375
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
376
376
  $emit: (event: string, ...args: any[]) => void;
377
377
  $el: any;
378
378
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
@@ -432,7 +432,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
432
432
  destroyTooltipOnHide: boolean;
433
433
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
434
434
  arrowPointAtCenter: boolean;
435
- }> & {
435
+ }, {}, string> & {
436
436
  beforeCreate?: (() => void) | (() => void)[];
437
437
  created?: (() => void) | (() => void)[];
438
438
  beforeMount?: (() => void) | (() => void)[];
@@ -447,7 +447,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
447
447
  unmounted?: (() => void) | (() => void)[];
448
448
  renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
449
449
  renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
450
- 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)[];
450
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
451
451
  };
452
452
  $forceUpdate: () => void;
453
453
  $nextTick: typeof import("vue").nextTick;
@@ -561,7 +561,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
561
561
  destroyTooltipOnHide: boolean;
562
562
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
563
563
  arrowPointAtCenter: boolean;
564
- }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
564
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
565
565
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
566
566
  readonly DtUserInfo: import("vue").DefineComponent<{}, {
567
567
  t: {
@@ -1435,8 +1435,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1435
1435
  $slots: Readonly<{
1436
1436
  [name: string]: import("vue").Slot;
1437
1437
  }>;
1438
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1439
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
1438
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1439
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1440
1440
  $emit: (event: string, ...args: any[]) => void;
1441
1441
  $el: any;
1442
1442
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
@@ -1496,7 +1496,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1496
1496
  destroyTooltipOnHide: boolean;
1497
1497
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
1498
1498
  arrowPointAtCenter: boolean;
1499
- }> & {
1499
+ }, {}, string> & {
1500
1500
  beforeCreate?: (() => void) | (() => void)[];
1501
1501
  created?: (() => void) | (() => void)[];
1502
1502
  beforeMount?: (() => void) | (() => void)[];
@@ -1511,7 +1511,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1511
1511
  unmounted?: (() => void) | (() => void)[];
1512
1512
  renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1513
1513
  renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1514
- 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)[];
1514
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1515
1515
  };
1516
1516
  $forceUpdate: () => void;
1517
1517
  $nextTick: typeof import("vue").nextTick;
@@ -1625,7 +1625,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1625
1625
  destroyTooltipOnHide: boolean;
1626
1626
  autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
1627
1627
  arrowPointAtCenter: boolean;
1628
- }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
1628
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
1629
1629
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1630
1630
  readonly DtUserInfo: import("vue").DefineComponent<{}, {
1631
1631
  t: {