@vtj/ui 0.8.92 → 0.8.93
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 +3 -3
- package/dist/index.umd.js +3 -3
- package/package.json +4 -4
- package/types/components/action/Action.d.ts +52 -124
- package/types/components/action/Trigger.d.ts +7 -81
- package/types/components/action/hooks.d.ts +6 -6
- package/types/components/action/types.d.ts +3 -41
- package/types/components/action-bar/ActionBar.d.ts +37 -285
- package/types/components/action-bar/types.d.ts +5 -43
- package/types/components/attachment/Attachment.d.ts +10 -8
- package/types/components/container/Container.d.ts +10 -8
- package/types/components/container/types.d.ts +2 -2
- package/types/components/data-item/DataItem.d.ts +38 -36
- package/types/components/dialog/Dialog.d.ts +14 -16
- package/types/components/dialog/types.d.ts +2 -4
- package/types/components/dialog-form/DialogForm.d.ts +12 -11
- package/types/components/dialog-form/types.d.ts +2 -3
- package/types/components/dialog-grid/DialogGrid.d.ts +8 -6
- package/types/components/field/Field.d.ts +23 -25
- package/types/components/field/editors/SelectEditor.d.ts +8 -6
- package/types/components/field/types.d.ts +3 -5
- package/types/components/form/Form.d.ts +10 -8
- package/types/components/grid/Grid.d.ts +281 -295
- package/types/components/grid/hooks/useEditRender.d.ts +2 -2
- package/types/components/grid/hooks/useLoader.d.ts +251 -267
- package/types/components/grid/hooks/useProps.d.ts +44 -44
- package/types/components/grid/hooks/useState.d.ts +251 -267
- package/types/components/grid/props.d.ts +3 -4
- package/types/components/header/Header.d.ts +8 -6
- package/types/components/icon/Icon.d.ts +9 -11
- package/types/components/icon/types.d.ts +2 -4
- package/types/components/import-button/ImportButton.d.ts +6 -4
- package/types/components/input-unit/InputUnit.d.ts +4 -4
- package/types/components/input-unit/types.d.ts +1 -1
- package/types/components/list/List.d.ts +12 -10
- package/types/components/mask/Mask.d.ts +41 -39
- package/types/components/mask/components/Avatar.d.ts +4 -2
- package/types/components/mask/components/Brand.d.ts +7 -5
- package/types/components/mask/components/Content.d.ts +4 -2
- package/types/components/mask/components/Sidebar.d.ts +4 -2
- package/types/components/mask/components/Toolbar.d.ts +6 -4
- package/types/components/panel/Panel.d.ts +20 -328
- package/types/components/panel/types.d.ts +6 -170
- package/types/components/picker/Picker.d.ts +14 -341
- package/types/components/picker/props.d.ts +7 -176
- package/types/components/qr-code/QrCode.d.ts +6 -4
- package/types/components/query-form/QueryForm.d.ts +29 -27
- package/types/components/tabs/Tabs.d.ts +48 -222
- package/types/components/tabs/types.d.ts +1 -1
- package/types/components/test/Test.d.ts +36 -34
- package/types/install.d.ts +1 -1
- package/types/utils/util.d.ts +1 -1
- package/types/version.d.ts +2 -2
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { VxeGlobalRendererHandles } from '../types';
|
|
2
|
-
import { VxeTableDataRow } from 'vxe-table';
|
|
3
2
|
import { WritableComputedRef } from 'vue';
|
|
3
|
+
import { VxeTableDataRow } from 'vxe-table';
|
|
4
4
|
|
|
5
5
|
export declare function useEditRender(renderOpts: VxeGlobalRendererHandles.RenderEditOptions, params: VxeGlobalRendererHandles.RenderEditParams): {
|
|
6
6
|
renderProps: any;
|
|
7
7
|
renderEvents: {
|
|
8
|
-
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams
|
|
8
|
+
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams, ...args: any[]) => any;
|
|
9
9
|
};
|
|
10
10
|
cellValue: WritableComputedRef<any>;
|
|
11
11
|
row: VxeTableDataRow;
|