@jnrs/vue-core 1.2.21 → 1.2.23

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 ADDED
@@ -0,0 +1,13 @@
1
+ # 发版日志
2
+
3
+ ## [1.2.23] - 2026-07-08
4
+
5
+ ### Fixed
6
+
7
+ - `JnTable` 组件修复列表中存在 switch 组件时 MouseSelection 失效的问题
8
+
9
+ ## [1.2.22] - 2026-07-01
10
+
11
+ ### Features
12
+
13
+ - `JnImportAndExport` 组件优化错误信息提示
package/README.md CHANGED
@@ -32,3 +32,7 @@ import { useSystemStore } from '@jnrs/vue-core/pinia'
32
32
  ## 📋 API
33
33
 
34
34
  详细文档请查看 [AGENTS.md](./AGENTS.md)
35
+
36
+ ## 📌 发版日志
37
+
38
+ 详细文档请查看 [CHANGELOG.md](./CHANGELOG.md)
@@ -42,7 +42,7 @@ export interface Props {
42
42
  /**
43
43
  * 数据导出的 api 函数
44
44
  */
45
- exportApi?: (data: Record<string, unknown>) => Promise<IBlobItem>;
45
+ exportApi?: (data: any) => Promise<IBlobItem>;
46
46
  /**
47
47
  * 导出的参数
48
48
  */