@vtj/ui 0.13.25 → 0.13.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +939 -936
- package/dist/index.umd.js +3 -10
- package/package.json +4 -4
- package/types/components/action/Action.d.ts +91 -1
- package/types/components/action/hooks.d.ts +16 -1
- package/types/components/action-bar/ActionBar.d.ts +61 -1
- package/types/components/data-item/DataItem.d.ts +61 -1
- package/types/components/dialog/Dialog.d.ts +3 -0
- package/types/components/dialog-form/DialogForm.d.ts +8 -2
- package/types/components/dialog-grid/DialogGrid.d.ts +8 -2
- package/types/components/mask/Mask.d.ts +61 -1
- package/types/components/tabs/Tabs.d.ts +31 -1
- package/types/version.d.ts +2 -2
@@ -8,7 +8,7 @@ import { OnCleanup } from '@vue/reactivity';
|
|
8
8
|
import { ActionBarItems } from '../action-bar';
|
9
9
|
import { IconParam } from '../icon';
|
10
10
|
import { ActionMode } from '../action';
|
11
|
-
import { ElTooltipProps, BadgeProps, TooltipTriggerType, PopperEffect, ButtonProps } from 'element-plus';
|
11
|
+
import { ElTooltipProps, BadgeProps, TooltipTriggerType, Measurable, PopperEffect, ButtonProps } from 'element-plus';
|
12
12
|
import { BaseSize, BaseType } from '../shared';
|
13
13
|
declare function __VLS_template(): {
|
14
14
|
attrs: Partial<{}>;
|
@@ -398,6 +398,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
398
398
|
} & {
|
399
399
|
readonly default: () => string[];
|
400
400
|
};
|
401
|
+
readonly virtualTriggering: BooleanConstructor;
|
402
|
+
readonly virtualRef: {
|
403
|
+
readonly type: PropType<Measurable>;
|
404
|
+
readonly required: false;
|
405
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
406
|
+
__epPropKey: true;
|
407
|
+
};
|
401
408
|
readonly effect: {
|
402
409
|
readonly default: "light";
|
403
410
|
readonly type: PropType<PopperEffect>;
|
@@ -453,6 +460,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
453
460
|
} & {
|
454
461
|
readonly default: true;
|
455
462
|
};
|
463
|
+
readonly showArrow: {
|
464
|
+
readonly type: PropType<boolean>;
|
465
|
+
readonly required: false;
|
466
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
467
|
+
__epPropKey: true;
|
468
|
+
} & {
|
469
|
+
readonly default: true;
|
470
|
+
};
|
456
471
|
readonly showTimeout: {
|
457
472
|
readonly type: PropType<number>;
|
458
473
|
readonly required: false;
|
@@ -597,6 +612,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
597
612
|
} & {
|
598
613
|
readonly default: () => string[];
|
599
614
|
};
|
615
|
+
readonly virtualTriggering: BooleanConstructor;
|
616
|
+
readonly virtualRef: {
|
617
|
+
readonly type: PropType<Measurable>;
|
618
|
+
readonly required: false;
|
619
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
620
|
+
__epPropKey: true;
|
621
|
+
};
|
600
622
|
readonly effect: {
|
601
623
|
readonly default: "light";
|
602
624
|
readonly type: PropType<PopperEffect>;
|
@@ -652,6 +674,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
652
674
|
} & {
|
653
675
|
readonly default: true;
|
654
676
|
};
|
677
|
+
readonly showArrow: {
|
678
|
+
readonly type: PropType<boolean>;
|
679
|
+
readonly required: false;
|
680
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
681
|
+
__epPropKey: true;
|
682
|
+
} & {
|
683
|
+
readonly default: true;
|
684
|
+
};
|
655
685
|
readonly showTimeout: {
|
656
686
|
readonly type: PropType<number>;
|
657
687
|
readonly required: false;
|
@@ -851,6 +881,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
851
881
|
} & {
|
852
882
|
readonly default: () => string[];
|
853
883
|
};
|
884
|
+
readonly virtualTriggering: BooleanConstructor;
|
885
|
+
readonly virtualRef: {
|
886
|
+
readonly type: PropType<Measurable>;
|
887
|
+
readonly required: false;
|
888
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
889
|
+
__epPropKey: true;
|
890
|
+
};
|
854
891
|
readonly effect: {
|
855
892
|
readonly default: "light";
|
856
893
|
readonly type: PropType<PopperEffect>;
|
@@ -906,6 +943,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
906
943
|
} & {
|
907
944
|
readonly default: true;
|
908
945
|
};
|
946
|
+
readonly showArrow: {
|
947
|
+
readonly type: PropType<boolean>;
|
948
|
+
readonly required: false;
|
949
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
950
|
+
__epPropKey: true;
|
951
|
+
} & {
|
952
|
+
readonly default: true;
|
953
|
+
};
|
909
954
|
readonly showTimeout: {
|
910
955
|
readonly type: PropType<number>;
|
911
956
|
readonly required: false;
|
@@ -1050,6 +1095,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
1050
1095
|
} & {
|
1051
1096
|
readonly default: () => string[];
|
1052
1097
|
};
|
1098
|
+
readonly virtualTriggering: BooleanConstructor;
|
1099
|
+
readonly virtualRef: {
|
1100
|
+
readonly type: PropType<Measurable>;
|
1101
|
+
readonly required: false;
|
1102
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
1103
|
+
__epPropKey: true;
|
1104
|
+
};
|
1053
1105
|
readonly effect: {
|
1054
1106
|
readonly default: "light";
|
1055
1107
|
readonly type: PropType<PopperEffect>;
|
@@ -1105,6 +1157,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
1105
1157
|
} & {
|
1106
1158
|
readonly default: true;
|
1107
1159
|
};
|
1160
|
+
readonly showArrow: {
|
1161
|
+
readonly type: PropType<boolean>;
|
1162
|
+
readonly required: false;
|
1163
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
1164
|
+
__epPropKey: true;
|
1165
|
+
} & {
|
1166
|
+
readonly default: true;
|
1167
|
+
};
|
1108
1168
|
readonly showTimeout: {
|
1109
1169
|
readonly type: PropType<number>;
|
1110
1170
|
readonly required: false;
|
@@ -3,7 +3,7 @@ import { TabsItem } from './types';
|
|
3
3
|
import { IconParam } from '../icon';
|
4
4
|
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
5
5
|
import { ActionMode } from '../action';
|
6
|
-
import { ElTooltipProps, BadgeProps, TooltipTriggerType, PopperEffect, ButtonProps } from 'element-plus';
|
6
|
+
import { ElTooltipProps, BadgeProps, TooltipTriggerType, Measurable, PopperEffect, ButtonProps } from 'element-plus';
|
7
7
|
import { BaseSize, BaseType } from '../shared';
|
8
8
|
declare function __VLS_template(): {
|
9
9
|
attrs: Partial<{}>;
|
@@ -115,6 +115,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
115
115
|
} & {
|
116
116
|
readonly default: () => string[];
|
117
117
|
};
|
118
|
+
readonly virtualTriggering: BooleanConstructor;
|
119
|
+
readonly virtualRef: {
|
120
|
+
readonly type: PropType<Measurable>;
|
121
|
+
readonly required: false;
|
122
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
123
|
+
__epPropKey: true;
|
124
|
+
};
|
118
125
|
readonly effect: {
|
119
126
|
readonly default: "light";
|
120
127
|
readonly type: PropType<PopperEffect>;
|
@@ -170,6 +177,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
170
177
|
} & {
|
171
178
|
readonly default: true;
|
172
179
|
};
|
180
|
+
readonly showArrow: {
|
181
|
+
readonly type: PropType<boolean>;
|
182
|
+
readonly required: false;
|
183
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
184
|
+
__epPropKey: true;
|
185
|
+
} & {
|
186
|
+
readonly default: true;
|
187
|
+
};
|
173
188
|
readonly showTimeout: {
|
174
189
|
readonly type: PropType<number>;
|
175
190
|
readonly required: false;
|
@@ -330,6 +345,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
330
345
|
} & {
|
331
346
|
readonly default: () => string[];
|
332
347
|
};
|
348
|
+
readonly virtualTriggering: BooleanConstructor;
|
349
|
+
readonly virtualRef: {
|
350
|
+
readonly type: PropType<Measurable>;
|
351
|
+
readonly required: false;
|
352
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
353
|
+
__epPropKey: true;
|
354
|
+
};
|
333
355
|
readonly effect: {
|
334
356
|
readonly default: "light";
|
335
357
|
readonly type: PropType<PopperEffect>;
|
@@ -385,6 +407,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
385
407
|
} & {
|
386
408
|
readonly default: true;
|
387
409
|
};
|
410
|
+
readonly showArrow: {
|
411
|
+
readonly type: PropType<boolean>;
|
412
|
+
readonly required: false;
|
413
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
414
|
+
__epPropKey: true;
|
415
|
+
} & {
|
416
|
+
readonly default: true;
|
417
|
+
};
|
388
418
|
readonly showTimeout: {
|
389
419
|
readonly type: PropType<number>;
|
390
420
|
readonly required: false;
|
package/types/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/ui
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.13.
|
5
|
+
* @version 0.13.25
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.13.
|
8
|
+
export declare const version = "0.13.25";
|