@gx-design-vue/pro-table 0.0.8 → 0.0.10
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/components/ToolBar/index.d.ts +19 -3
- package/dist/hooks/useTableScroll.d.ts +1 -1
- package/dist/pro-table.mjs +594 -589
- package/dist/pro-table.umd.js +8 -8
- package/dist/props.d.ts +12 -1
- package/package.json +3 -3
package/dist/props.d.ts
CHANGED
|
@@ -259,6 +259,12 @@ export declare const proTableProps: {
|
|
|
259
259
|
default: any;
|
|
260
260
|
};
|
|
261
261
|
title: {
|
|
262
|
+
/**
|
|
263
|
+
* @Author gx12358
|
|
264
|
+
* @DateTime 2022/2/8
|
|
265
|
+
* @lastTime 2022/2/8
|
|
266
|
+
* @description 表格样式
|
|
267
|
+
*/
|
|
262
268
|
type: PropType<import("ant-design-vue/es/vc-table/interface").PanelRender<any>>;
|
|
263
269
|
default: any;
|
|
264
270
|
};
|
|
@@ -307,7 +313,12 @@ export declare const proTableProps: {
|
|
|
307
313
|
default: import("ant-design-vue/es/vc-table/interface").Key[];
|
|
308
314
|
};
|
|
309
315
|
expandedRowRender: {
|
|
310
|
-
type: PropType<import("ant-design-vue/es/vc-table/interface").ExpandedRowRender<any>>;
|
|
316
|
+
type: PropType<import("ant-design-vue/es/vc-table/interface").ExpandedRowRender<any>>; /**
|
|
317
|
+
* @Author gx12358
|
|
318
|
+
* @DateTime 2022/2/8
|
|
319
|
+
* @lastTime 2022/2/8
|
|
320
|
+
* @description 列设置额外的元素
|
|
321
|
+
*/
|
|
311
322
|
default: any;
|
|
312
323
|
};
|
|
313
324
|
expandRowByClick: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gx-design-vue/pro-table",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite",
|
|
6
6
|
"build": "vite build",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@vueuse/core": "^6.8.0",
|
|
30
|
-
"@gx-design-vue/pro-utils": "^0.0.
|
|
31
|
-
"@gx-design-vue/pro-hooks": "^0.0.
|
|
30
|
+
"@gx-design-vue/pro-utils": "^0.0.31",
|
|
31
|
+
"@gx-design-vue/pro-hooks": "^0.0.8",
|
|
32
32
|
"ant-design-vue": "^3.2.15",
|
|
33
33
|
"dayjs": "^1.11.0",
|
|
34
34
|
"lodash-unified": "^1.0.3",
|