star-horse-lowcode 2.7.47 → 2.7.49
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 +7 -2
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +2769 -2642
- package/dist/types/index.d.ts +117 -116
- package/package.json +9 -9
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
|
-
:
|
|
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>
|
|
@@ -296,3 +295,9 @@ barcode 条形码组件
|
|
|
296
295
|
20. 2025-06-25 修复dialog-input,page-select 组件的bug,在所有表单组件中新增noPlaceholder属性,默认为false,
|
|
297
296
|
为true时,不显示默认提示文字,
|
|
298
297
|
使用实例:{label:"xx",fieldName:"xx",type:"number",preps:{noPlaceholder:true} }
|
|
298
|
+
21. 2025-06-27 优化事件绑定 由之前的一个属性只允许绑定一个事件改为多个事件,方法为
|
|
299
|
+
actions:{
|
|
300
|
+
click:()=>{},
|
|
301
|
+
change:()={}
|
|
302
|
+
},同时去掉了actionName 属性,
|
|
303
|
+
22. 2025-07-08 修复已知Bug
|