@vtj/ui 0.8.2 → 0.8.3
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 +1256 -1246
- package/dist/index.umd.js +7 -7
- package/package.json +5 -5
- package/types/components/action/Action.d.ts +373 -0
- package/types/components/action/Trigger.d.ts +7 -0
- package/types/components/action/types.d.ts +5 -0
- package/types/components/action-bar/ActionBar.d.ts +18 -0
- package/types/components/data-item/DataItem.d.ts +12 -0
- package/types/components/dialog/Dialog.d.ts +1 -1
- package/types/components/mask/Mask.d.ts +12 -0
- package/types/components/tabs/Tabs.d.ts +12 -0
- package/types/version.d.ts +2 -2
|
@@ -107,6 +107,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
107
107
|
circle: {
|
|
108
108
|
type: BooleanConstructor;
|
|
109
109
|
};
|
|
110
|
+
draggable: {
|
|
111
|
+
type: BooleanConstructor;
|
|
112
|
+
};
|
|
110
113
|
}>>>) => void;
|
|
111
114
|
actionCommand: (item: ActionMenuItem) => void;
|
|
112
115
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
@@ -210,6 +213,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
210
213
|
circle: {
|
|
211
214
|
type: BooleanConstructor;
|
|
212
215
|
};
|
|
216
|
+
draggable: {
|
|
217
|
+
type: BooleanConstructor;
|
|
218
|
+
};
|
|
213
219
|
}>>>) => any) | undefined;
|
|
214
220
|
onActionCommand?: ((item: ActionMenuItem) => any) | undefined;
|
|
215
221
|
}, {
|
|
@@ -311,6 +317,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
311
317
|
circle: {
|
|
312
318
|
type: BooleanConstructor;
|
|
313
319
|
};
|
|
320
|
+
draggable: {
|
|
321
|
+
type: BooleanConstructor;
|
|
322
|
+
};
|
|
314
323
|
}>>>[] | undefined;
|
|
315
324
|
component?: any;
|
|
316
325
|
props?: Record<string, any> | undefined;
|
|
@@ -409,6 +418,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
409
418
|
circle: {
|
|
410
419
|
type: BooleanConstructor;
|
|
411
420
|
};
|
|
421
|
+
draggable: {
|
|
422
|
+
type: BooleanConstructor;
|
|
423
|
+
};
|
|
412
424
|
}>>>[] | undefined;
|
|
413
425
|
component?: any;
|
|
414
426
|
props?: Record<string, any> | undefined;
|
package/types/version.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) 2024, VTJ.PRO All rights reserved.
|
|
3
3
|
* @name @vtj/ui
|
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
5
|
-
* @version 0.8.
|
|
5
|
+
* @version 0.8.2
|
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
7
7
|
*/
|
|
8
|
-
export declare const version = "0.8.
|
|
8
|
+
export declare const version = "0.8.2";
|