star-horse-lowcode 2.7.46 → 2.7.48

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
@@ -152,8 +152,7 @@ onMounted(() => {
152
152
  <star-horse-dialog
153
153
  :dialog-visible="dialogProps.viewVisible"
154
154
  :dialogProps="dialogProps"
155
- :title="'查看数据'"
156
- :is-view="true"
155
+ :source="3"
157
156
  >
158
157
  <star-horse-data-view :dataFormat="dataFormat" :field-list="tableFieldList" :compUrl="dataUrl"/>
159
158
  </star-horse-dialog>
@@ -293,3 +292,11 @@ barcode 条形码组件
293
292
  17. 2025-06-19 修复cron,number-range 组件的bug
294
293
  18. 2025-06-23 发布时去掉'cjs', 'umd'的支持,仅打包 es,以减小打包后的包体大小
295
294
  19. 2025-06-24 修复动态创建组件函数createComponent props 定义参数在模板中不生效问题,同时修复其它已知bug
295
+ 20. 2025-06-25 修复dialog-input,page-select 组件的bug,在所有表单组件中新增noPlaceholder属性,默认为false,
296
+ 为true时,不显示默认提示文字,
297
+ 使用实例:{label:"xx",fieldName:"xx",type:"number",preps:{noPlaceholder:true} }
298
+ 21. 2025-06-27 优化事件绑定 由之前的一个属性只允许绑定一个事件改为多个事件,方法为
299
+ actions:{
300
+ click:()=>{},
301
+ change:()={}
302
+ },同时去掉了actionName 属性