@wyfex/ivue 0.22.0 → 0.22.1

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.
@@ -44,6 +44,7 @@ export interface UseCrudState {
44
44
  formColumns: FormColumn[];
45
45
  tableColumns: TableColumn[];
46
46
  formModel: Record<string, any>;
47
+ formParams: Record<string, any>;
47
48
  tableLoading: boolean;
48
49
  tableData: any[];
49
50
  currentPage: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wyfex/ivue",
3
- "version": "0.22.0",
3
+ "version": "0.22.1",
4
4
  "description": "万有前端 X 体系下基于 Vite8 + Vue3 + Typescript6 + ElementPlus2 构建的以配置驱动视图组件库",
5
5
  "homepage": "https://wyfex.top/idocs/ivue",
6
6
  "type": "module",
@@ -50,19 +50,19 @@
50
50
  "vue": ">=3.2.0 <4.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@types/node": "^26.4.0",
53
+ "@types/node": "^26.4.1",
54
54
  "@vitejs/plugin-vue": "^6.0.8",
55
55
  "@vue/tsconfig": "^0.9.1",
56
- "@wyfex/iutils": "^0.80.0",
56
+ "@wyfex/iutils": "^0.95.0",
57
57
  "dayjs": "^1.11.23",
58
58
  "element-plus": "^2.14.5",
59
59
  "sass-embedded": "^1.103.1",
60
60
  "typescript": "~6.0.3",
61
61
  "unplugin-auto-import": "^21.1.0",
62
- "unplugin-dts": "^1.0.3",
62
+ "unplugin-dts": "^1.1.0",
63
63
  "unplugin-vue-components": "^32.1.0",
64
64
  "vite": "^8.2.2",
65
- "vite-svg-loader": "^5.1.2",
65
+ "vite-svg-loader": "^5.1.3",
66
66
  "vue": "^3.5.42",
67
67
  "vue-tsc": "^3.3.11"
68
68
  }
@@ -116,6 +116,8 @@ export interface UseCrudState {
116
116
  tableColumns: TableColumn[]
117
117
  /** 表单模型 */
118
118
  formModel: Record<string, any>
119
+ /** 表单查询参数 */
120
+ formParams: Record<string, any>
119
121
  /** 表格loading */
120
122
  tableLoading: boolean
121
123
  /** 表格数据 */