@dt-frames/ui 2.0.9 → 2.0.10
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/components/curd/index.js +69 -77
- package/es/components/curd/index.less +2 -0
- package/es/components/curd/src/components/Curd.d.ts +16 -8
- package/es/components/curd/src/hooks/useCurd.d.ts +1 -1
- package/es/components/curd/src/props.d.ts +0 -1
- package/es/components/form/index.js +50 -21
- package/es/components/form/index.less +18 -0
- package/es/components/form/src/components/FormButtons.d.ts +13 -3
- package/es/components/form/src/components/FormItem.d.ts +0 -1
- package/es/components/form/src/hooks/useLabelWidth.d.ts +2 -18
- package/es/components/form/src/props.d.ts +3 -4
- package/es/components/form/src/types/form.type.d.ts +3 -3
- package/es/components/form/src/types/items.type.d.ts +12 -5
- package/es/components/modal/index.js +22 -2
- package/es/components/modal/src/components/Modal.d.ts +1 -1
- package/es/components/modal/src/components/ModalFooter.d.ts +10 -0
- package/es/components/modal/src/index.d.ts +14 -4
- package/es/components/modal/src/props.d.ts +2 -1
- package/es/components/table/index.js +33 -54
- package/es/components/table/index.less +3 -3
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +15 -5
- package/es/theme/index.js +144 -88
- package/es/theme/index.less +1 -0
- package/es/theme/src/components/header/components/size.d.ts +5 -5
- package/es/theme/src/components/header/index.d.ts +5 -5
- package/es/theme/src/components/header/multiple-header.d.ts +5 -5
- package/es/theme/src/index.d.ts +10 -10
- package/es/theme/transition.less +105 -0
- package/package.json +1 -1
package/es/theme/index.less
CHANGED
|
@@ -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, {}
|
|
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, {}
|
|
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, {}
|
|
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: {
|
package/es/theme/src/index.d.ts
CHANGED
|
@@ -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, {}
|
|
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, {}
|
|
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: {
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
/** zoom-fade */
|
|
2
|
+
.zoom-fade-enter-active,
|
|
3
|
+
.zoom-fade-leave-active {
|
|
4
|
+
transition: transform 0.2s, opacity 0.3s ease-out;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.zoom-fade-enter-from {
|
|
8
|
+
opacity: 0;
|
|
9
|
+
transform: scale(0.92);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.zoom-fade-leave-to {
|
|
13
|
+
opacity: 0;
|
|
14
|
+
transform: scale(1.06);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
/** zoom-out */
|
|
19
|
+
.zoom-out-enter-active,
|
|
20
|
+
.zoom-out-leave-active {
|
|
21
|
+
transition: opacity 0.1 ease-in-out, transform 0.15s ease-out;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.zoom-out-enter-from,
|
|
25
|
+
.zoom-out-leave-to {
|
|
26
|
+
opacity: 0;
|
|
27
|
+
transform: scale(0);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// fade
|
|
31
|
+
.fade-transition {
|
|
32
|
+
&-enter-active,
|
|
33
|
+
&-leave-active {
|
|
34
|
+
transition: opacity 0.2s ease-in-out;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&-enter-from,
|
|
38
|
+
&-leave-to {
|
|
39
|
+
opacity: 0;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.fade-leave-active {
|
|
44
|
+
position: absolute;
|
|
45
|
+
left: 0;
|
|
46
|
+
top: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.fade-enter-active,
|
|
50
|
+
.fade-leave-active {
|
|
51
|
+
transition: opacity 0.2s ease-in-out;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.fade-enter-from,
|
|
55
|
+
.fade-leave-to {
|
|
56
|
+
opacity: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* fade-slide */
|
|
60
|
+
.fade-slide-leave-active,
|
|
61
|
+
.fade-slide-enter-active {
|
|
62
|
+
transition: all 0.3s;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.fade-slide-enter-from {
|
|
66
|
+
opacity: 0;
|
|
67
|
+
transform: translateX(-30px);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.fade-slide-leave-to {
|
|
71
|
+
opacity: 0;
|
|
72
|
+
transform: translateX(30px);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/** fade-bottom */
|
|
76
|
+
.fade-bottom-enter-active,
|
|
77
|
+
.fade-bottom-leave-active {
|
|
78
|
+
transition: opacity 0.25s, transform 0.3s;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.fade-bottom-enter-from {
|
|
82
|
+
opacity: 0;
|
|
83
|
+
transform: translateY(-10%);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.fade-bottom-leave-to {
|
|
87
|
+
opacity: 0;
|
|
88
|
+
transform: translateY(10%);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// fade-scale
|
|
92
|
+
.fade-scale-leave-active,
|
|
93
|
+
.fade-scale-enter-active {
|
|
94
|
+
transition: all 0.28s;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.fade-scale-enter-from {
|
|
98
|
+
opacity: 0;
|
|
99
|
+
transform: scale(1.2);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.fade-scale-leave-to {
|
|
103
|
+
opacity: 0;
|
|
104
|
+
transform: scale(0.8);
|
|
105
|
+
}
|