@vue-start/pro 0.5.66 → 0.5.67

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/CHANGELOG.md CHANGED
@@ -3,9 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 0.5.67
7
+
8
+ - fix: ProTable 支持虚拟表格,通过 virtual 字段配置;
9
+
6
10
  # 0.5.63
7
11
 
8
- - fix: ProUploaderText convertItem 方法参数添加fieldNames;
12
+ - fix: ProUploaderText convertItem 方法参数添加 fieldNames;
9
13
 
10
14
  # 0.5.58
11
15
 
package/dist/index.css CHANGED
@@ -532,11 +532,11 @@
532
532
  height: calc(100% - var(--pro-table-toolbar-hei));
533
533
  }
534
534
 
535
- .pro-page.curd-list:has(.pro-table-v2-wrapper) .pro-table {
535
+ .pro-page.curd-list .pro-curd-list.virtual .pro-table {
536
536
  flex: 1;
537
537
  }
538
538
 
539
- .pro-page.curd-list:has(.pro-table-v2-wrapper) .curd-list-grow {
539
+ .pro-page.curd-list .pro-curd-list.virtual .curd-list-grow {
540
540
  flex-grow: unset !important;
541
541
  }
542
542
 
package/dist/index.d.ts CHANGED
@@ -53,6 +53,8 @@ declare type TColumn = {
53
53
  formReadRender?: string | TRender;
54
54
  tableRender?: string | TRender;
55
55
  search?: boolean;
56
+ width?: number;
57
+ minWidth?: number;
56
58
  extra?: {
57
59
  desc?: Record<string, any>;
58
60
  col?: Record<string, any>;