@byteluck-fe/model-driven-controls 7.0.0-props.74 → 7.0.0-props.76
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/dist/esm/formControls/Barcode/designer.js +7 -0
- package/dist/esm/formControls/Barcode/property.js +3 -2
- package/dist/esm/layoutControls/BlankContainer/property.js +7 -6
- package/dist/index.umd.js +1 -1
- package/dist/types/formControls/Barcode/property.d.ts +7 -0
- package/dist/types/layoutControls/BlankContainer/property.d.ts +7 -0
- package/package.json +2 -2
|
@@ -48,6 +48,12 @@ interface BarcodePropertyInterface extends BaseControlPropertyInterface {
|
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
50
|
align: 'left' | 'center' | 'right';
|
|
51
|
+
/**
|
|
52
|
+
* 是否显示条码值文本
|
|
53
|
+
* @defaultValue true
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
displayValue: boolean;
|
|
51
57
|
}
|
|
52
58
|
declare class BarcodeProperty extends BaseControlProperty implements BarcodePropertyInterface {
|
|
53
59
|
static readonly Rules: typeof BarcodePropertyRules;
|
|
@@ -59,6 +65,7 @@ declare class BarcodeProperty extends BaseControlProperty implements BarcodeProp
|
|
|
59
65
|
backgroundColor: string;
|
|
60
66
|
barcodeColor: string;
|
|
61
67
|
align: 'left' | 'center' | 'right';
|
|
68
|
+
displayValue: boolean;
|
|
62
69
|
constructor(props?: Partial<BarcodeProperty>);
|
|
63
70
|
}
|
|
64
71
|
export default BarcodeProperty;
|
|
@@ -15,6 +15,12 @@ interface BlankContainerPropertyInterface extends LayoutControlPropertyInterface
|
|
|
15
15
|
* @public
|
|
16
16
|
*/
|
|
17
17
|
caption: string;
|
|
18
|
+
/**
|
|
19
|
+
* 是否隐藏标题
|
|
20
|
+
* @defaultValue false
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
isHideCaption: boolean;
|
|
18
24
|
/**
|
|
19
25
|
* 标题大小
|
|
20
26
|
* @defaultValue ''
|
|
@@ -61,6 +67,7 @@ interface BlankContainerPropertyInterface extends LayoutControlPropertyInterface
|
|
|
61
67
|
declare class BlankContainerProperty extends LayoutControlProperty implements BlankContainerPropertyInterface {
|
|
62
68
|
static readonly Rules: typeof BlankContainerPropertyRules;
|
|
63
69
|
caption: string;
|
|
70
|
+
isHideCaption: boolean;
|
|
64
71
|
captionSize: string;
|
|
65
72
|
captionColor: string;
|
|
66
73
|
isCaptionItalic: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "7.0.0-props.
|
|
3
|
+
"version": "7.0.0-props.76",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"@byteluck-fe/model-driven-shared": "7.0.0-props.72",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "639d95f35799ed662d383070978013f8a18f0233"
|
|
35
35
|
}
|