@jnrs/vue-core 1.2.26 → 1.2.28

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/AGENTS.md CHANGED
@@ -482,6 +482,8 @@ const tableRowClassName = ({ row }) => {
482
482
  | queryForm | `Record<string, unknown>` | — | 表单查询参数 |
483
483
  | initialParams | `Record<string, unknown>` | — | 初始查询参数 |
484
484
  | remoteFilterKey | `string` | `'name'` | 下拉框查询参数远程过滤参数的 key 值 |
485
+ | collapseTags | `boolean` | `true` | 是否折叠标签 |
486
+ | maxCollapseTags | `number` | `1` | 折叠时显示的最大标签数 |
485
487
 
486
488
  **使用示例:**
487
489
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # 发版日志
2
2
 
3
+ ## [1.2.28] - 2026-07-24 【latest】
4
+
5
+ ### Features
6
+
7
+ - `JnSelectTemplate` 新增 `collapseTags`(默认 `true`)和 `maxCollapseTags`(默认 `1`)props,将原硬编码的 `collapse-tags` 改为可配置,支持在非 query 表单中通过 `:collapse-tags="false"` 完整展示已选项
8
+
9
+ ### Documentation
10
+
11
+ - `AGENTS.md` 的 `JnSelectTemplate` Props 表格新增 `collapseTags` 和 `maxCollapseTags` 说明
12
+
13
+ ## [1.2.27] - 2026-07-20
14
+
15
+ ### Chore
16
+
17
+ - 版本同步更新
18
+
19
+ ## [1.2.26] - 2026-07-20
20
+
21
+ ### Chore
22
+
23
+ - 版本同步更新
24
+
25
+ ## [1.2.26] - 2026-07-20
26
+
27
+ ### Chore
28
+
29
+ - 版本同步更新
30
+
3
31
  ## [1.2.25] - 2026-07-17
4
32
 
5
33
  ### Features
@@ -130,6 +130,16 @@ export interface Props {
130
130
  * @default 'name'
131
131
  */
132
132
  remoteFilterKey?: string;
133
+ /**
134
+ * 是否折叠标签
135
+ * @default true
136
+ */
137
+ collapseTags?: boolean;
138
+ /**
139
+ * 折叠时显示的最大标签数
140
+ * @default 1
141
+ */
142
+ maxCollapseTags?: number;
133
143
  }
134
144
  declare function __VLS_template(): {
135
145
  attrs: Partial<{}>;