@dt-frames/ui 2.0.3 → 2.0.5
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/es/assets/locales/en.ts +1 -1
- package/es/components/curd/index.js +346 -331
- package/es/components/curd/src/components/Curd.d.ts +0 -8
- package/es/components/curd/src/props.d.ts +0 -4
- package/es/components/drawer/index.d.ts +1 -1
- package/es/components/drawer/index.js +27 -27
- package/es/components/drawer/src/index.d.ts +2 -3
- package/es/components/form/index.d.ts +0 -33
- package/es/components/form/index.js +72 -36
- package/es/components/form/index.less +212 -9
- package/es/components/form/src/components/FormItem.d.ts +3 -7
- package/es/components/form/src/components/formIcon.d.ts +14 -14
- package/es/components/form/src/components/formInputUseDialog.d.ts +8 -8
- package/es/components/form/src/enums/index.d.ts +1 -1
- package/es/components/form/src/index.d.ts +0 -25
- package/es/components/form/src/props.d.ts +2 -6
- package/es/components/form/src/types/form.type.d.ts +1 -1
- package/es/components/icons/index.less +5 -0
- package/es/components/modal/index.js +35 -34
- package/es/components/modal/index.less +10 -0
- package/es/components/modal/src/components/ModalFooter.d.ts +3 -3
- package/es/components/modal/src/index.d.ts +9 -9
- package/es/components/source/hooks/useSource.d.ts +14 -0
- package/es/components/source/index.js +72 -31
- package/es/components/source/types/source.type.d.ts +5 -8
- package/es/components/table/index.js +418 -305
- package/es/components/table/index.less +62 -14
- package/es/components/table/src/components/TableAction.d.ts +1 -1
- package/es/components/table/src/index.d.ts +30 -10
- package/es/components/table/src/props.d.ts +12 -4
- package/es/components/table/src/types/table.type.d.ts +4 -5
- package/es/components/tree/index.d.ts +2 -0
- package/es/components/tree/index.js +1087 -0
- package/es/components/tree/index.less +119 -0
- package/es/components/tree/src/basicProps.d.ts +146 -0
- package/es/components/tree/src/components/ContextMenu.d.ts +64 -0
- package/es/components/tree/src/components/TreeHeader.d.ts +98 -0
- package/es/components/tree/src/enums/index.d.ts +6 -0
- package/es/components/tree/src/hooks/useContextMenu.d.ts +2 -0
- package/es/components/tree/src/hooks/useTree.d.ts +14 -0
- package/es/components/tree/src/index.d.ts +6526 -0
- package/es/components/tree/src/type/menu.d.ts +33 -0
- package/es/components/tree/src/type/tree.d.ts +55 -0
- package/es/components/tree/src/utils/tree.d.ts +5 -0
- package/es/packages/ui/src/assets/locales/en.d.ts +101 -0
- package/es/packages/ui/src/assets/locales/index.d.ts +2 -0
- package/es/packages/ui/src/assets/locales/zh.d.ts +103 -0
- package/es/packages/ui/src/components/container/index.d.ts +94 -0
- package/es/packages/ui/src/components/container/src/components/bar.d.ts +14 -0
- package/es/packages/ui/src/components/container/src/components/scroll-bar.d.ts +70 -0
- package/es/packages/ui/src/components/container/src/hooks/scroll.d.ts +10 -0
- package/es/packages/ui/src/components/container/src/scroll-container.d.ts +76 -0
- package/es/packages/ui/src/components/container/src/slot-container.d.ts +20 -0
- package/es/packages/ui/src/components/container/src/types/scroll.type.d.ts +22 -0
- package/es/packages/ui/src/components/container/src/utils/scroll.d.ts +5 -0
- package/es/packages/ui/src/global.d.ts +7 -0
- package/es/packages/ui/src/theme/index.d.ts +10 -0
- package/es/packages/ui/src/theme/src/components/content/index.d.ts +27 -0
- package/es/packages/ui/src/theme/src/components/feature/back-top.d.ts +5 -0
- package/es/packages/ui/src/theme/src/components/feature/index.d.ts +7 -0
- package/es/packages/ui/src/theme/src/components/footer/index.d.ts +31 -0
- package/es/packages/ui/src/theme/src/components/header/components/bread-crumb.d.ts +6 -0
- package/es/packages/ui/src/theme/src/components/header/components/fullscreen.d.ts +5 -0
- package/es/packages/ui/src/theme/src/components/header/components/index.d.ts +11 -0
- package/es/packages/ui/src/theme/src/components/header/components/lang-picker.d.ts +23 -0
- package/es/packages/ui/src/theme/src/components/header/components/logo.d.ts +56 -0
- package/es/packages/ui/src/theme/src/components/header/components/menu-filter.d.ts +22 -0
- package/es/packages/ui/src/theme/src/components/header/components/notify.d.ts +24 -0
- package/es/packages/ui/src/theme/src/components/header/components/setting-theme.d.ts +223 -0
- package/es/packages/ui/src/theme/src/components/header/components/size.d.ts +282 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/feature.d.ts +138 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/menu-type.d.ts +16 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/select.d.ts +58 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/switch.d.ts +49 -0
- package/es/packages/ui/src/theme/src/components/header/components/trigger.d.ts +10 -0
- package/es/packages/ui/src/theme/src/components/header/components/user-info.d.ts +37 -0
- package/es/packages/ui/src/theme/src/components/header/helper/change-theme.d.ts +13 -0
- package/es/packages/ui/src/theme/src/components/header/helper/menu-tree.d.ts +4 -0
- package/es/packages/ui/src/theme/src/components/header/index.d.ts +720 -0
- package/es/packages/ui/src/theme/src/components/header/multiple-header.d.ts +806 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +62 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +207 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +127 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +26 -0
- package/es/packages/ui/src/theme/src/components/sider/components/drag-bar.d.ts +14 -0
- package/es/packages/ui/src/theme/src/components/sider/components/layout-menu.d.ts +22 -0
- package/es/packages/ui/src/theme/src/components/sider/components/props.d.ts +69 -0
- package/es/packages/ui/src/theme/src/components/sider/components/sider-trigger.d.ts +17 -0
- package/es/packages/ui/src/theme/src/components/sider/helper/sider.d.ts +12 -0
- package/es/packages/ui/src/theme/src/components/sider/helper/split-menu.d.ts +10 -0
- package/es/packages/ui/src/theme/src/components/sider/index.d.ts +235 -0
- package/es/packages/ui/src/theme/src/components/sider/mix-sider.d.ts +167 -0
- package/es/packages/ui/src/theme/src/components/tabs/components/TabContent.d.ts +6 -0
- package/es/packages/ui/src/theme/src/components/tabs/components/TabRedo.d.ts +21 -0
- package/es/packages/ui/src/theme/src/components/tabs/components/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/components/tabs/hooks/useMultifyTabs.d.ts +7 -0
- package/es/packages/ui/src/theme/src/components/tabs/hooks/useTabDropdown.d.ts +6 -0
- package/es/packages/ui/src/theme/src/components/tabs/index.d.ts +63 -0
- package/es/packages/ui/src/theme/src/components/tabs/types/tabs.type.d.ts +7 -0
- package/es/packages/ui/src/theme/src/enums/index.d.ts +1 -0
- package/es/packages/ui/src/theme/src/enums/theme.enum.d.ts +34 -0
- package/es/packages/ui/src/theme/src/hooks/index.d.ts +6 -0
- package/es/packages/ui/src/theme/src/hooks/useDragLine.d.ts +2 -0
- package/es/packages/ui/src/theme/src/hooks/useHeader.d.ts +25 -0
- package/es/packages/ui/src/theme/src/hooks/useMenu.d.ts +29 -0
- package/es/packages/ui/src/theme/src/hooks/useMultifyTab.d.ts +8 -0
- package/es/packages/ui/src/theme/src/hooks/useOpenKeys.d.ts +7 -0
- package/es/packages/ui/src/theme/src/hooks/useTheme.d.ts +9 -0
- package/es/packages/ui/src/theme/src/index.d.ts +1851 -0
- package/es/packages/ui/src/theme/src/setting/theme.setting.d.ts +2 -0
- package/es/packages/ui/src/theme/src/stores/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/stores/routeReuse.store.d.ts +23 -0
- package/es/packages/ui/src/theme/src/stores/theme.store.d.ts +18 -0
- package/es/packages/ui/src/theme/src/types/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/types/menu.type.d.ts +15 -0
- package/es/packages/ui/src/theme/src/types/theme.type.d.ts +62 -0
- package/es/packages/ui/src/utils/withInstall.d.ts +4 -0
- package/es/theme/index.d.ts +2 -1
- package/es/theme/index.js +898 -683
- package/es/theme/index.less +205 -0
- package/es/theme/src/components/header/components/logo.d.ts +22 -0
- package/es/theme/src/components/header/components/size.d.ts +5 -5
- package/es/theme/src/components/header/helper/menu-tree.d.ts +1 -0
- package/es/theme/src/components/header/index.d.ts +92 -5
- package/es/theme/src/components/header/multiple-header.d.ts +94 -7
- package/es/theme/src/components/sider/components/drag-bar.d.ts +1 -1
- package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -1
- package/es/theme/src/components/sider/index.d.ts +169 -3
- package/es/theme/src/components/sider/mix-sider.d.ts +168 -0
- package/es/theme/src/enums/theme.enum.d.ts +2 -1
- package/es/theme/src/hooks/useMenu.d.ts +5 -3
- package/es/theme/src/hooks/useMultifyTab.d.ts +1 -0
- package/es/theme/src/index.d.ts +356 -15
- package/es/theme/src/stores/theme.store.d.ts +3 -0
- package/es/theme/src/types/theme.type.d.ts +2 -0
- package/index.d.ts +2 -1
- package/index.js +6 -2
- package/package.json +4 -4
- package/tsconfig.json +1 -0
- package/vite.config.ts +1 -0
package/es/theme/index.less
CHANGED
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
// 滚动条边框
|
|
33
33
|
@border-color-dark: #b6b7b9;
|
|
34
34
|
|
|
35
|
+
// table相关
|
|
36
|
+
@table-action-icon-color: #999;
|
|
37
|
+
|
|
35
38
|
/* 滚动条美化 */
|
|
36
39
|
::-webkit-scrollbar {
|
|
37
40
|
width: 7px;
|
|
@@ -72,9 +75,19 @@
|
|
|
72
75
|
background-color: @content-bg;
|
|
73
76
|
.ant-layout-content{
|
|
74
77
|
width: 100%;
|
|
78
|
+
&.fixed{
|
|
79
|
+
width: 1300px;
|
|
80
|
+
}
|
|
75
81
|
}
|
|
76
82
|
}
|
|
77
83
|
|
|
84
|
+
.ant-btn-lg{
|
|
85
|
+
font-size: 14px;
|
|
86
|
+
height: 34px;
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
}
|
|
90
|
+
|
|
78
91
|
.dt-page{
|
|
79
92
|
background: @page-bg-color;
|
|
80
93
|
}
|
|
@@ -191,6 +204,130 @@
|
|
|
191
204
|
}
|
|
192
205
|
}
|
|
193
206
|
}
|
|
207
|
+
|
|
208
|
+
.dt-mix-sider{
|
|
209
|
+
transition: all 0.2s ease 0s;
|
|
210
|
+
|
|
211
|
+
& > div:first-of-type, & > div:nth-of-type(2) {
|
|
212
|
+
background-color: @menu-bg-color;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
&.dark .dt-mix-sider__shallow-menu{
|
|
216
|
+
li{
|
|
217
|
+
color: #ffffffa1;
|
|
218
|
+
transition: all .3s ease;
|
|
219
|
+
|
|
220
|
+
i{
|
|
221
|
+
font-size: 20px;
|
|
222
|
+
}
|
|
223
|
+
p{
|
|
224
|
+
font-size: 12px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
&.active-menu {
|
|
228
|
+
background-color: @menu-sub-bg-color;
|
|
229
|
+
color: #fff;
|
|
230
|
+
&::before{
|
|
231
|
+
position: absolute;
|
|
232
|
+
top: 0;
|
|
233
|
+
left: 0;
|
|
234
|
+
width: 4px;
|
|
235
|
+
height: 100%;
|
|
236
|
+
background-color: @primary-color;
|
|
237
|
+
content: "";
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
&.dark .sub-menu{
|
|
244
|
+
border-right: 1px solid #eaf0fb;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
&__sub-shallow-menu{
|
|
248
|
+
padding: 6px 20px 12px 20px;
|
|
249
|
+
& > li{
|
|
250
|
+
|
|
251
|
+
li, .sub-menu{
|
|
252
|
+
line-height: 40px;
|
|
253
|
+
font-size: 13px;
|
|
254
|
+
align-items: center;
|
|
255
|
+
margin: 4px 0 8px -20px;
|
|
256
|
+
width: calc(100% + 40px);
|
|
257
|
+
padding-left: 24px;
|
|
258
|
+
i{
|
|
259
|
+
font-size: 18px;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&.active-menu, &:hover {
|
|
263
|
+
color: @primary-color;
|
|
264
|
+
background-color: @menu-mix-select-bg-color;
|
|
265
|
+
i{
|
|
266
|
+
opacity: 1;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
& > div:not(.sub-menu) {
|
|
272
|
+
border-bottom: 1px solid #eaf0fb;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
&:last-of-type > div{
|
|
276
|
+
border-bottom: none;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
&__animate-enter-active {
|
|
282
|
+
z-index: -1;
|
|
283
|
+
animation: slideLeft 0.2s;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
&__animate-leave-active{
|
|
287
|
+
z-index: -1;
|
|
288
|
+
animation: slideLeft 0.2s reverse;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
&-middle{
|
|
293
|
+
.dt-header-action {
|
|
294
|
+
i {
|
|
295
|
+
font-size: 20px;
|
|
296
|
+
}
|
|
297
|
+
span{
|
|
298
|
+
font-size: 13px;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.dt-reuse-tabs .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab span {
|
|
303
|
+
font-size: 13px;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.dt-reuse-tabs .ant-tabs-extra-content i{
|
|
307
|
+
font-size: 16px;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.ant-btn{
|
|
311
|
+
font-size: 13px;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
&-large{
|
|
316
|
+
.dt-sideBar .ant-menu .ant-menu-item, .dt-sideBar .ant-menu .ant-menu-submenu-title {
|
|
317
|
+
height: 48px !important;
|
|
318
|
+
}
|
|
319
|
+
.dt-menu-item span{
|
|
320
|
+
font-size: 14px !important;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.dt-reuse-tabs .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab span {
|
|
324
|
+
font-size: 13px;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.dt-reuse-tabs .ant-tabs-extra-content i{
|
|
328
|
+
font-size: 16px;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
194
331
|
}
|
|
195
332
|
|
|
196
333
|
.dt-menu-item{
|
|
@@ -424,6 +561,22 @@
|
|
|
424
561
|
}
|
|
425
562
|
}
|
|
426
563
|
|
|
564
|
+
&__item--mix-sidebar {
|
|
565
|
+
&::before{
|
|
566
|
+
content: '';
|
|
567
|
+
position: absolute;
|
|
568
|
+
left: 15%;
|
|
569
|
+
top: calc(25% + 1px);
|
|
570
|
+
width: 20%;
|
|
571
|
+
height: 75%;
|
|
572
|
+
background-color: #fff;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.dt-menu-type__item::before {
|
|
576
|
+
width: 15%;
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
427
580
|
&__item--active {
|
|
428
581
|
border: 2px solid @primary-color;
|
|
429
582
|
}
|
|
@@ -535,6 +688,15 @@
|
|
|
535
688
|
}
|
|
536
689
|
}
|
|
537
690
|
|
|
691
|
+
.ant-tabs-nav {
|
|
692
|
+
&::before {
|
|
693
|
+
border-bottom: none !important;
|
|
694
|
+
}
|
|
695
|
+
&-more{
|
|
696
|
+
display: flex;
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
|
|
538
700
|
.ant-tabs-tab:not(.ant-tabs-tab-active) {
|
|
539
701
|
border: 1px solid #d9d9d9 !important;
|
|
540
702
|
.anticon-close {
|
|
@@ -546,6 +708,34 @@
|
|
|
546
708
|
}
|
|
547
709
|
}
|
|
548
710
|
|
|
711
|
+
&__top{
|
|
712
|
+
.dt-reuse-tabs{
|
|
713
|
+
border-bottom: none;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.ant-tabs-extra-content{
|
|
717
|
+
display: flex;
|
|
718
|
+
span{
|
|
719
|
+
height: 28px;
|
|
720
|
+
line-height: 28px;
|
|
721
|
+
border: 1px solid #d9d9d9;
|
|
722
|
+
border-left: none;
|
|
723
|
+
&:hover{
|
|
724
|
+
background: rgba(0,0,0,0.03);
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.ant-tabs-nav-more{
|
|
730
|
+
height: 28px;
|
|
731
|
+
border: 1px solid #d9d9d9 !important;
|
|
732
|
+
&:hover{
|
|
733
|
+
background: rgba(0,0,0,0.03);
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
}
|
|
738
|
+
|
|
549
739
|
&--hide-close {
|
|
550
740
|
.ant-tabs-tab-remove {
|
|
551
741
|
opacity: 0 !important;
|
|
@@ -601,3 +791,18 @@
|
|
|
601
791
|
.ant-modal-confirm-body .ant-modal-confirm-content{
|
|
602
792
|
color: #909399;
|
|
603
793
|
}
|
|
794
|
+
|
|
795
|
+
.ant-tabs-dropdown-menu-title-content{
|
|
796
|
+
display: flex;
|
|
797
|
+
justify-content: space-between;
|
|
798
|
+
font-size: 13px;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
@keyframes slideLeft {
|
|
802
|
+
from {
|
|
803
|
+
transform: translateX(-100%);
|
|
804
|
+
}
|
|
805
|
+
to{
|
|
806
|
+
transform: translateX(0);
|
|
807
|
+
}
|
|
808
|
+
}
|
|
@@ -16,10 +16,32 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
16
|
(key: string, list: unknown[]): string;
|
|
17
17
|
(key: string, named: Record<string, unknown>): string;
|
|
18
18
|
};
|
|
19
|
+
slots: {
|
|
20
|
+
[name: string]: import("vue").Slot;
|
|
21
|
+
};
|
|
19
22
|
title: string;
|
|
20
23
|
getLogoWidth: import("vue").ComputedRef<string | number>;
|
|
21
24
|
props: any;
|
|
22
25
|
getLogoClass: import("vue").ComputedRef<string>;
|
|
26
|
+
readonly DtSlotContainer: import("../../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
27
|
+
template: {
|
|
28
|
+
type: FunctionConstructor;
|
|
29
|
+
};
|
|
30
|
+
data: {
|
|
31
|
+
type: ObjectConstructor;
|
|
32
|
+
};
|
|
33
|
+
}, {
|
|
34
|
+
props: any;
|
|
35
|
+
Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
36
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
template: {
|
|
38
|
+
type: FunctionConstructor;
|
|
39
|
+
};
|
|
40
|
+
data: {
|
|
41
|
+
type: ObjectConstructor;
|
|
42
|
+
};
|
|
43
|
+
}>>, {}>>;
|
|
44
|
+
readonly logoUrl: string;
|
|
23
45
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
46
|
theme: {
|
|
25
47
|
type: StringConstructor;
|
|
@@ -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, {}>>;
|
|
91
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
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
|
+
}> & {
|
|
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, {}
|
|
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)[];
|
|
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
|
-
}
|
|
280
|
+
}> & 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;
|
|
@@ -15,10 +15,75 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
15
15
|
getShowTopMenu: import("vue").ComputedRef<boolean>;
|
|
16
16
|
getShowSearch: import("vue").ComputedRef<boolean>;
|
|
17
17
|
getShowUiSize: import("vue").ComputedRef<boolean>;
|
|
18
|
+
getShowMultipleTab: import("vue").ComputedRef<boolean>;
|
|
19
|
+
getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
|
|
18
20
|
getSplitType: import("vue").ComputedRef<MenuSplitTye.NONE | MenuSplitTye.TOP>;
|
|
19
21
|
getMenuMode: import("vue").ComputedRef<MenuMode>;
|
|
22
|
+
getShowTab: import("vue").ComputedRef<boolean>;
|
|
20
23
|
props: any;
|
|
21
24
|
getHeaderCls: import("vue").ComputedRef<string>;
|
|
25
|
+
MultipleTabs: import("vue").DefineComponent<{}, {
|
|
26
|
+
t: {
|
|
27
|
+
(key: string): string;
|
|
28
|
+
(key: string, locale: string): string;
|
|
29
|
+
(key: string, locale: string, list: unknown[]): string;
|
|
30
|
+
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
31
|
+
(key: string, list: unknown[]): string;
|
|
32
|
+
(key: string, named: Record<string, unknown>): string;
|
|
33
|
+
};
|
|
34
|
+
router: import("vue-router").Router;
|
|
35
|
+
go: (path: string, isReplace?: boolean) => void;
|
|
36
|
+
tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
|
|
37
|
+
getTabList(): import("vue-router").RouteLocationNormalized[];
|
|
38
|
+
getCachedTabList(): string[];
|
|
39
|
+
getLastDragEndIndex(): number;
|
|
40
|
+
}, {
|
|
41
|
+
addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
|
|
42
|
+
closeTab(path: string, router: import("vue-router").Router): void;
|
|
43
|
+
closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
|
|
44
|
+
closeLeftTabs(path: string): void;
|
|
45
|
+
closeRightTabs(path: string): void;
|
|
46
|
+
closeOtherTabs(path: string): void;
|
|
47
|
+
bulkCloseTabs(pathList: string[]): void;
|
|
48
|
+
updateCacheTab(): void;
|
|
49
|
+
refreshPage(router: import("vue-router").Router): Promise<void>;
|
|
50
|
+
sortTabs(oldIndex: number, newIndex: number): void;
|
|
51
|
+
}>;
|
|
52
|
+
getShowQuick: import("vue").ComputedRef<boolean>;
|
|
53
|
+
getShowRedo: import("vue").ComputedRef<boolean>;
|
|
54
|
+
menuLabelMap: Map<any, any>;
|
|
55
|
+
activeKeyRef: any;
|
|
56
|
+
getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
|
|
57
|
+
unClose: import("vue").ComputedRef<boolean>;
|
|
58
|
+
handleChange: (activeKey: string) => void;
|
|
59
|
+
handleEdit: (targetKey: string) => void;
|
|
60
|
+
affixTextList: string[];
|
|
61
|
+
readonly DtTabRedo: import("vue").DefineComponent<{}, {
|
|
62
|
+
tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
|
|
63
|
+
getTabList(): import("vue-router").RouteLocationNormalized[];
|
|
64
|
+
getCachedTabList(): string[];
|
|
65
|
+
getLastDragEndIndex(): number;
|
|
66
|
+
}, {
|
|
67
|
+
addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
|
|
68
|
+
closeTab(path: string, router: import("vue-router").Router): void;
|
|
69
|
+
closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
|
|
70
|
+
closeLeftTabs(path: string): void;
|
|
71
|
+
closeRightTabs(path: string): void;
|
|
72
|
+
closeOtherTabs(path: string): void;
|
|
73
|
+
bulkCloseTabs(pathList: string[]): void;
|
|
74
|
+
updateCacheTab(): void;
|
|
75
|
+
refreshPage(router: import("vue-router").Router): Promise<void>;
|
|
76
|
+
sortTabs(oldIndex: number, newIndex: number): void;
|
|
77
|
+
}>;
|
|
78
|
+
router: import("vue-router").Router;
|
|
79
|
+
handleRedo: () => void;
|
|
80
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
81
|
+
readonly DtTabContent: import("vue").DefineComponent<{}, {
|
|
82
|
+
getDropMenuList: import("vue").ComputedRef<import("../tabs/types/tabs.type").DropMenu[]>;
|
|
83
|
+
handleContext: (e: any) => void;
|
|
84
|
+
handleMenuEvent: (item: import("../tabs/types/tabs.type").DropMenu) => void;
|
|
85
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
86
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
22
87
|
readonly DtFullScreen: import("vue").DefineComponent<{}, {
|
|
23
88
|
toggle: () => Promise<void>;
|
|
24
89
|
isFullscreen: import("vue").Ref<boolean>;
|
|
@@ -41,10 +106,32 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
41
106
|
(key: string, list: unknown[]): string;
|
|
42
107
|
(key: string, named: Record<string, unknown>): string;
|
|
43
108
|
};
|
|
109
|
+
slots: {
|
|
110
|
+
[name: string]: import("vue").Slot;
|
|
111
|
+
};
|
|
44
112
|
title: string;
|
|
45
113
|
getLogoWidth: import("vue").ComputedRef<string | number>;
|
|
46
114
|
props: any;
|
|
47
115
|
getLogoClass: import("vue").ComputedRef<string>;
|
|
116
|
+
readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
117
|
+
template: {
|
|
118
|
+
type: FunctionConstructor;
|
|
119
|
+
};
|
|
120
|
+
data: {
|
|
121
|
+
type: ObjectConstructor;
|
|
122
|
+
};
|
|
123
|
+
}, {
|
|
124
|
+
props: any;
|
|
125
|
+
Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
126
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
127
|
+
template: {
|
|
128
|
+
type: FunctionConstructor;
|
|
129
|
+
};
|
|
130
|
+
data: {
|
|
131
|
+
type: ObjectConstructor;
|
|
132
|
+
};
|
|
133
|
+
}>>, {}>>;
|
|
134
|
+
readonly logoUrl: string;
|
|
48
135
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
136
|
theme: {
|
|
50
137
|
type: StringConstructor;
|
|
@@ -223,8 +310,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
223
310
|
$slots: Readonly<{
|
|
224
311
|
[name: string]: import("vue").Slot;
|
|
225
312
|
}>;
|
|
226
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
227
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
313
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
314
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
228
315
|
$emit: (event: string, ...args: any[]) => void;
|
|
229
316
|
$el: any;
|
|
230
317
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -284,7 +371,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
284
371
|
destroyTooltipOnHide: boolean;
|
|
285
372
|
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
286
373
|
arrowPointAtCenter: boolean;
|
|
287
|
-
}
|
|
374
|
+
}> & {
|
|
288
375
|
beforeCreate?: (() => void) | (() => void)[];
|
|
289
376
|
created?: (() => void) | (() => void)[];
|
|
290
377
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -299,7 +386,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
299
386
|
unmounted?: (() => void) | (() => void)[];
|
|
300
387
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
301
388
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
302
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
389
|
+
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)[];
|
|
303
390
|
};
|
|
304
391
|
$forceUpdate: () => void;
|
|
305
392
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -413,7 +500,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
413
500
|
destroyTooltipOnHide: boolean;
|
|
414
501
|
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
415
502
|
arrowPointAtCenter: boolean;
|
|
416
|
-
}
|
|
503
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
|
417
504
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
418
505
|
readonly DtUserInfo: import("vue").DefineComponent<{}, {
|
|
419
506
|
t: {
|
|
@@ -4,14 +4,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
4
4
|
getHeaderHeight: import("vue").ComputedRef<number>;
|
|
5
5
|
getFixed: import("vue").ComputedRef<boolean>;
|
|
6
6
|
getShowFullHeaderRef: import("vue").ComputedRef<boolean>;
|
|
7
|
-
getHeaderTheme: import("vue").ComputedRef<import('../../../src/enums').Theme>;
|
|
8
7
|
getShowInsetHeaderRef: import("vue").ComputedRef<boolean>;
|
|
9
8
|
getTabsHeight: import("vue").ComputedRef<number>;
|
|
10
9
|
getCalcContentWidth: import("vue").ComputedRef<string>;
|
|
11
10
|
getIsMixMode: import("vue").ComputedRef<boolean>;
|
|
12
|
-
getIsTopMenu: import("vue").ComputedRef<boolean>;
|
|
13
11
|
getSplit: import("vue").ComputedRef<boolean>;
|
|
12
|
+
getIsMixSidebar: import("vue").ComputedRef<boolean>;
|
|
14
13
|
getShowMultipleTab: import("vue").ComputedRef<boolean>;
|
|
14
|
+
getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
|
|
15
15
|
getPlaceholderDomStyle: import("vue").ComputedRef<{
|
|
16
16
|
height: string;
|
|
17
17
|
}>;
|
|
@@ -38,10 +38,75 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
38
38
|
getShowTopMenu: import("vue").ComputedRef<boolean>;
|
|
39
39
|
getShowSearch: import("vue").ComputedRef<boolean>;
|
|
40
40
|
getShowUiSize: import("vue").ComputedRef<boolean>;
|
|
41
|
+
getShowMultipleTab: import("vue").ComputedRef<boolean>;
|
|
42
|
+
getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
|
|
41
43
|
getSplitType: import("vue").ComputedRef<MenuSplitTye.NONE | MenuSplitTye.TOP>;
|
|
42
44
|
getMenuMode: import("vue").ComputedRef<import('../../../src/enums').MenuMode>;
|
|
45
|
+
getShowTab: import("vue").ComputedRef<boolean>;
|
|
43
46
|
props: any;
|
|
44
47
|
getHeaderCls: import("vue").ComputedRef<string>;
|
|
48
|
+
MultipleTabs: import("vue").DefineComponent<{}, {
|
|
49
|
+
t: {
|
|
50
|
+
(key: string): string;
|
|
51
|
+
(key: string, locale: string): string;
|
|
52
|
+
(key: string, locale: string, list: unknown[]): string;
|
|
53
|
+
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
54
|
+
(key: string, list: unknown[]): string;
|
|
55
|
+
(key: string, named: Record<string, unknown>): string;
|
|
56
|
+
};
|
|
57
|
+
router: import("vue-router").Router;
|
|
58
|
+
go: (path: string, isReplace?: boolean) => void;
|
|
59
|
+
tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
|
|
60
|
+
getTabList(): import("vue-router").RouteLocationNormalized[];
|
|
61
|
+
getCachedTabList(): string[];
|
|
62
|
+
getLastDragEndIndex(): number;
|
|
63
|
+
}, {
|
|
64
|
+
addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
|
|
65
|
+
closeTab(path: string, router: import("vue-router").Router): void;
|
|
66
|
+
closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
|
|
67
|
+
closeLeftTabs(path: string): void;
|
|
68
|
+
closeRightTabs(path: string): void;
|
|
69
|
+
closeOtherTabs(path: string): void;
|
|
70
|
+
bulkCloseTabs(pathList: string[]): void;
|
|
71
|
+
updateCacheTab(): void;
|
|
72
|
+
refreshPage(router: import("vue-router").Router): Promise<void>;
|
|
73
|
+
sortTabs(oldIndex: number, newIndex: number): void;
|
|
74
|
+
}>;
|
|
75
|
+
getShowQuick: import("vue").ComputedRef<boolean>;
|
|
76
|
+
getShowRedo: import("vue").ComputedRef<boolean>;
|
|
77
|
+
menuLabelMap: Map<any, any>;
|
|
78
|
+
activeKeyRef: any;
|
|
79
|
+
getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
|
|
80
|
+
unClose: import("vue").ComputedRef<boolean>;
|
|
81
|
+
handleChange: (activeKey: string) => void;
|
|
82
|
+
handleEdit: (targetKey: string) => void;
|
|
83
|
+
affixTextList: string[];
|
|
84
|
+
readonly DtTabRedo: import("vue").DefineComponent<{}, {
|
|
85
|
+
tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
|
|
86
|
+
getTabList(): import("vue-router").RouteLocationNormalized[];
|
|
87
|
+
getCachedTabList(): string[];
|
|
88
|
+
getLastDragEndIndex(): number;
|
|
89
|
+
}, {
|
|
90
|
+
addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
|
|
91
|
+
closeTab(path: string, router: import("vue-router").Router): void;
|
|
92
|
+
closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
|
|
93
|
+
closeLeftTabs(path: string): void;
|
|
94
|
+
closeRightTabs(path: string): void;
|
|
95
|
+
closeOtherTabs(path: string): void;
|
|
96
|
+
bulkCloseTabs(pathList: string[]): void;
|
|
97
|
+
updateCacheTab(): void;
|
|
98
|
+
refreshPage(router: import("vue-router").Router): Promise<void>;
|
|
99
|
+
sortTabs(oldIndex: number, newIndex: number): void;
|
|
100
|
+
}>;
|
|
101
|
+
router: import("vue-router").Router;
|
|
102
|
+
handleRedo: () => void;
|
|
103
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
104
|
+
readonly DtTabContent: import("vue").DefineComponent<{}, {
|
|
105
|
+
getDropMenuList: import("vue").ComputedRef<import("../tabs/types/tabs.type").DropMenu[]>;
|
|
106
|
+
handleContext: (e: any) => void;
|
|
107
|
+
handleMenuEvent: (item: import("../tabs/types/tabs.type").DropMenu) => void;
|
|
108
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
109
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
45
110
|
readonly DtFullScreen: import("vue").DefineComponent<{}, {
|
|
46
111
|
toggle: () => Promise<void>;
|
|
47
112
|
isFullscreen: import("vue").Ref<boolean>;
|
|
@@ -64,10 +129,32 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
64
129
|
(key: string, list: unknown[]): string;
|
|
65
130
|
(key: string, named: Record<string, unknown>): string;
|
|
66
131
|
};
|
|
132
|
+
slots: {
|
|
133
|
+
[name: string]: import("vue").Slot;
|
|
134
|
+
};
|
|
67
135
|
title: string;
|
|
68
136
|
getLogoWidth: import("vue").ComputedRef<string | number>;
|
|
69
137
|
props: any;
|
|
70
138
|
getLogoClass: import("vue").ComputedRef<string>;
|
|
139
|
+
readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
140
|
+
template: {
|
|
141
|
+
type: FunctionConstructor;
|
|
142
|
+
};
|
|
143
|
+
data: {
|
|
144
|
+
type: ObjectConstructor;
|
|
145
|
+
};
|
|
146
|
+
}, {
|
|
147
|
+
props: any;
|
|
148
|
+
Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
149
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
150
|
+
template: {
|
|
151
|
+
type: FunctionConstructor;
|
|
152
|
+
};
|
|
153
|
+
data: {
|
|
154
|
+
type: ObjectConstructor;
|
|
155
|
+
};
|
|
156
|
+
}>>, {}>>;
|
|
157
|
+
readonly logoUrl: string;
|
|
71
158
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
72
159
|
theme: {
|
|
73
160
|
type: StringConstructor;
|
|
@@ -246,8 +333,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
246
333
|
$slots: Readonly<{
|
|
247
334
|
[name: string]: import("vue").Slot;
|
|
248
335
|
}>;
|
|
249
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
250
|
-
$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, {}>>;
|
|
337
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
251
338
|
$emit: (event: string, ...args: any[]) => void;
|
|
252
339
|
$el: any;
|
|
253
340
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -307,7 +394,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
307
394
|
destroyTooltipOnHide: boolean;
|
|
308
395
|
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
309
396
|
arrowPointAtCenter: boolean;
|
|
310
|
-
}
|
|
397
|
+
}> & {
|
|
311
398
|
beforeCreate?: (() => void) | (() => void)[];
|
|
312
399
|
created?: (() => void) | (() => void)[];
|
|
313
400
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -322,7 +409,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
322
409
|
unmounted?: (() => void) | (() => void)[];
|
|
323
410
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
324
411
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
325
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
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)[];
|
|
326
413
|
};
|
|
327
414
|
$forceUpdate: () => void;
|
|
328
415
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -436,7 +523,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
436
523
|
destroyTooltipOnHide: boolean;
|
|
437
524
|
autoAdjustOverflow: boolean | import("ant-design-vue/lib/tooltip").AdjustOverflow;
|
|
438
525
|
arrowPointAtCenter: boolean;
|
|
439
|
-
}
|
|
526
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
|
440
527
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
441
528
|
readonly DtUserInfo: import("vue").DefineComponent<{}, {
|
|
442
529
|
t: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
2
|
getCollapsed: import("vue").ComputedRef<boolean>;
|
|
3
3
|
getCanDrag: import("vue").ComputedRef<boolean>;
|
|
4
|
-
getMenuWidth: import("vue").ComputedRef<
|
|
4
|
+
getMenuWidth: import("vue").ComputedRef<number>;
|
|
5
5
|
getDragBarStyle: import("vue").ComputedRef<{
|
|
6
6
|
left: string;
|
|
7
7
|
} | {
|
|
@@ -6,7 +6,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6
6
|
}, {
|
|
7
7
|
getCollapsed: import("vue").ComputedRef<boolean>;
|
|
8
8
|
toggleCollapsed: () => void;
|
|
9
|
-
props: any;
|
|
10
9
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
10
|
type: {
|
|
12
11
|
type: StringConstructor;
|