@uf_lee/leeui 1.0.104 → 1.0.106

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/README.md CHANGED
@@ -127,6 +127,22 @@ npm uninstall @uf_lee/leeui
127
127
  npm install @uf_lee/leeui
128
128
  ```
129
129
 
130
+ ## 历史更新记录
131
+
132
+ ### 2026-03-25
133
+
134
+ 新增了:schema里的trigger和onTrigger参数,用于让表格列的触发事件能返回row和index
135
+
136
+ trigger参数可选值:change,update,blur
137
+
138
+ 案例:
139
+ ```
140
+ trigger: 'change',
141
+ onTrigger: (e:any) => {
142
+ console.log("",e.value,e.row,e.index)
143
+ }
144
+ ```
145
+
130
146
 
131
147
  ## 🤝 贡献指南
132
148