star-horse-lowcode 2.7.27 → 2.7.29

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
@@ -191,5 +191,6 @@ onMounted(() => {
191
191
  7. 2025-05-08 增加qrcode组件,优化StarHorseFormList组件动态添加行,定位到最底部
192
192
  8. 2025-05-09 增加ShForm表单组件,在自定义表单中如果用到了本插件提供的组件,需要使用ShForm组件进行包裹,
193
193
  如果使用el-form表单属性的blur事件会失效,导致一直报字段未赋值.(也可能是本人才疏学浅没有找到根本原因,而使用此方法来解决),
194
- 修复已知bug
195
- 9. 2025-05-12 增加barcode 条形码组件,增加表单设计属性层级显示接口
194
+ 修复已知Bug
195
+ 9. 2025-05-12 增加barcode 条形码组件,增加表单设计属性层级显示接口,
196
+ 修复已知Bug
@@ -0,0 +1,84 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ isDesign: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ disabled: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ bareFlag: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ isSearch: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ field: {
19
+ type: ObjectConstructor;
20
+ default: {};
21
+ };
22
+ parentField: {
23
+ type: ObjectConstructor;
24
+ default: {};
25
+ };
26
+ formInfo: {
27
+ type: ObjectConstructor;
28
+ default: {};
29
+ };
30
+ formData: {
31
+ type: import('vue').PropType<any>;
32
+ };
33
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
34
+ selfFunc: (...args: any[]) => void;
35
+ selectItem: (...args: any[]) => void;
36
+ "update:formData": (value: any) => void;
37
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
+ isDesign: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ disabled: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ bareFlag: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ isSearch: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ field: {
55
+ type: ObjectConstructor;
56
+ default: {};
57
+ };
58
+ parentField: {
59
+ type: ObjectConstructor;
60
+ default: {};
61
+ };
62
+ formInfo: {
63
+ type: ObjectConstructor;
64
+ default: {};
65
+ };
66
+ formData: {
67
+ type: import('vue').PropType<any>;
68
+ };
69
+ }>> & Readonly<{
70
+ onSelfFunc?: (...args: any[]) => any;
71
+ onSelectItem?: (...args: any[]) => any;
72
+ "onUpdate:formData"?: (value: any) => any;
73
+ }>, {
74
+ isDesign: boolean;
75
+ disabled: boolean;
76
+ bareFlag: boolean;
77
+ isSearch: boolean;
78
+ field: Record<string, any>;
79
+ parentField: Record<string, any>;
80
+ formInfo: Record<string, any>;
81
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
82
+ barcodeRef: HTMLCanvasElement;
83
+ }, any>;
84
+ export default _default;
@@ -41,3 +41,4 @@ export { default as userItem } from './user-item.vue';
41
41
  export { default as usercompItem } from './usercomp-item.vue';
42
42
  export { default as viewMarkdownItem } from './view-markdown-item.vue';
43
43
  export { default as qrcodeItem } from './qrcode-item.vue';
44
+ export { default as barcodeItem } from './barcode-item.vue';