@vtj/ui 0.12.70 → 0.13.0
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 +1092 -1084
- package/dist/index.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/types/components/action/Action.d.ts +25 -0
- package/types/components/action/Trigger.d.ts +7 -0
- package/types/components/action/types.d.ts +3 -0
- package/types/components/action-bar/ActionBar.d.ts +12 -0
- package/types/components/attachment/Attachment.d.ts +6 -6
- package/types/components/data-item/DataItem.d.ts +12 -0
- package/types/components/dialog-form/DialogForm.d.ts +2295 -18
- package/types/components/form/Form.d.ts +2295 -18
- package/types/components/grid/renderers/components/DateEdit.d.ts +26 -8
- package/types/components/grid/renderers/components/PickerEdit.d.ts +63 -19
- package/types/components/mask/Mask.d.ts +12 -0
- package/types/components/picker/Picker.d.ts +63 -19
- package/types/components/query-form/QueryForm.d.ts +4587 -34
- package/types/components/tabs/Tabs.d.ts +6 -0
- package/types/version.d.ts +2 -2
@@ -266,6 +266,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
266
266
|
draggable: {
|
267
267
|
type: BooleanConstructor;
|
268
268
|
};
|
269
|
+
arrow: {
|
270
|
+
type: BooleanConstructor;
|
271
|
+
};
|
269
272
|
}>>>) => any;
|
270
273
|
actionCommand: (item: ActionMenuItem) => any;
|
271
274
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
@@ -478,6 +481,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
478
481
|
draggable: {
|
479
482
|
type: BooleanConstructor;
|
480
483
|
};
|
484
|
+
arrow: {
|
485
|
+
type: BooleanConstructor;
|
486
|
+
};
|
481
487
|
}>>>) => any) | undefined;
|
482
488
|
onActionCommand?: ((item: ActionMenuItem) => any) | undefined;
|
483
489
|
}>, {
|
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.12.
|
5
|
+
* @version 0.12.70
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.12.
|
8
|
+
export declare const version = "0.12.70";
|