@vtj/ui 0.8.32 → 0.8.34
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 +20415 -21099
- package/dist/index.umd.js +12 -12
- package/package.json +4 -4
- package/types/components/grid/renderers/cell/index.d.ts +1 -1
- package/types/components/grid/renderers/edit/index.d.ts +1 -1
- package/types/components/grid/renderers/filter/index.d.ts +1 -1
- package/types/components/grid/renderers/index.d.ts +1 -1
- package/types/components/grid/types.d.ts +2 -2
- package/types/components/grid/utils.d.ts +4 -2
- package/types/version.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtj/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.34",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=16.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@vueuse/core": "~10.9.0",
|
|
10
11
|
"element-plus": "~2.7.0",
|
|
11
12
|
"sortablejs": "~1.15.2",
|
|
12
13
|
"vxe-table": "~4.6.16",
|
|
13
14
|
"vxe-table-plugin-menus": "~4.0.3",
|
|
14
|
-
"@vtj/
|
|
15
|
-
"@vtj/
|
|
15
|
+
"@vtj/utils": "~0.8.34",
|
|
16
|
+
"@vtj/icons": "~0.8.34"
|
|
16
17
|
},
|
|
17
18
|
"devDependencies": {
|
|
18
19
|
"@types/qrcode": "^1.5.5",
|
|
19
20
|
"@types/sortablejs": "~1.15.8",
|
|
20
|
-
"@vueuse/core": "~10.9.0",
|
|
21
21
|
"qrcode": "~1.5.3",
|
|
22
22
|
"vue": "~3.4.15",
|
|
23
23
|
"vue-router": "~4.3.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
@@ -2,7 +2,7 @@ import { ComponentPropsType } from '../shared';
|
|
|
2
2
|
import { gridProps } from './props';
|
|
3
3
|
import { default as Sortable } from 'sortablejs';
|
|
4
4
|
import { default as Grid } from './Grid';
|
|
5
|
-
import { VxeGridInstance, VxeTableDefines, VxeGridPropTypes, VxeGridDefines, VxeColumnPropTypes, VxeGridEvents, VxeGridProps, VxeGlobalRendererHandles, VxeColumnSlotTypes, DefineRendererOption } from 'vxe-table';
|
|
5
|
+
import { VxeGridInstance, VxeTableDefines, VxeGridPropTypes, VxeGridDefines, VxeColumnPropTypes, VxeGridEvents, VxeGridProps, VxeGlobalRendererHandles, VxeColumnSlotTypes, DefineRendererOption, VxeGlobalInterceptorHandles } from 'vxe-table';
|
|
6
6
|
|
|
7
7
|
export type GridSortableOptions = Sortable.Options;
|
|
8
8
|
export type GridSortableRowInfo = {
|
|
@@ -41,4 +41,4 @@ export type GridEmits = {
|
|
|
41
41
|
cellSelected: [params: any];
|
|
42
42
|
};
|
|
43
43
|
export type GridInstance = InstanceType<typeof Grid>;
|
|
44
|
-
export type { VxeGridInstance, VxeTableDefines, VxeGridPropTypes, VxeColumnPropTypes, VxeGridEvents, VxeGridDefines, VxeGridProps, VxeGlobalRendererHandles, VxeColumnSlotTypes, DefineRendererOption };
|
|
44
|
+
export type { VxeGridInstance, VxeTableDefines, VxeGridPropTypes, VxeColumnPropTypes, VxeGridEvents, VxeGridDefines, VxeGridProps, VxeGlobalRendererHandles, VxeColumnSlotTypes, DefineRendererOption, VxeGlobalInterceptorHandles };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as Sortable } from 'sortablejs';
|
|
2
|
-
import {
|
|
2
|
+
import { RendererOptions, VxeTableDataRow } from 'vxe-table';
|
|
3
|
+
import { GridSortableOptions, VxeGridInstance, GridEmits, GridSortableEvent, VxeTableDefines, GridColumns, GridCustomInfo, VxeGlobalRendererHandles, VxeGlobalInterceptorHandles } from './types';
|
|
3
4
|
import { Emits } from '../shared';
|
|
4
|
-
import { VxeTableDataRow } from 'vxe-table';
|
|
5
5
|
|
|
6
6
|
export declare function createSortable(el: HTMLElement, options?: GridSortableOptions): Sortable;
|
|
7
7
|
export declare function createRowSortHandler(grid: VxeGridInstance, emit: Emits<GridEmits>): (e: Sortable.SortableEvent) => void;
|
|
@@ -16,3 +16,5 @@ export declare function createCellRenderProps(renderOpts: VxeGlobalRendererHandl
|
|
|
16
16
|
row: VxeTableDataRow;
|
|
17
17
|
column: VxeTableDefines.ColumnInfo< VxeTableDataRow>;
|
|
18
18
|
};
|
|
19
|
+
export declare function registerRender(name: string, options: RendererOptions): void;
|
|
20
|
+
export declare function registerInterceptor(name: VxeGlobalInterceptorHandles.Type, callback: VxeGlobalInterceptorHandles.InterceptorCallback): void;
|
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.33
|
|
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.33";
|