@byteluck-fe/model-driven-controls 7.0.0-props.56 → 7.0.0-props.58
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/QrCode/designer.js +146 -22
- package/dist/esm/formControls/QrCode/property.js +1 -1
- package/dist/esm/formControls/QrCode/schema.json +84 -22
- package/dist/esm/formControls/RichText/designer.js +4 -2
- package/dist/esm/formControls/RichText/property.js +11 -12
- package/dist/index.umd.js +1 -1
- package/dist/types/formControls/QrCode/property.d.ts +8 -8
- package/dist/types/formControls/RichText/property.d.ts +7 -0
- package/package.json +2 -2
|
@@ -13,23 +13,23 @@ interface QrCodePropertyInterface extends BaseControlPropertyInterface {
|
|
|
13
13
|
*/
|
|
14
14
|
defaultValue: string;
|
|
15
15
|
/**
|
|
16
|
-
* 二维码版本;取值:auto:自动;1:V1;
|
|
16
|
+
* 二维码版本;取值:auto:自动;1~40:V1~V40;
|
|
17
17
|
* @defaultValue 'auto'
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
qrVersion: 'auto' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10';
|
|
20
|
+
qrVersion: 'auto' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15' | '16' | '17' | '18' | '19' | '20' | '21' | '22' | '23' | '24' | '25' | '26' | '27' | '28' | '29' | '30' | '31' | '32' | '33' | '34' | '35' | '36' | '37' | '38' | '39' | '40';
|
|
21
21
|
/**
|
|
22
|
-
* 容错级别;取值:L
|
|
22
|
+
* 容错级别;取值:L:低(约7%);M:中(约15%);Q:高(约25%);H:最高(约30%);
|
|
23
23
|
* @defaultValue 'M'
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
26
|
errorCorrectionLevel: 'L' | 'M' | 'Q' | 'H';
|
|
27
27
|
/**
|
|
28
|
-
* 码制;取值:
|
|
29
|
-
* @defaultValue '
|
|
28
|
+
* 码制;取值:qrCode:QR Code;hanxinCode:汉信码;pdf417:PDF417;dataMatrix:Data Matrix;
|
|
29
|
+
* @defaultValue 'qrCode'
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
|
-
codeMode: '
|
|
32
|
+
codeMode: 'qrCode' | 'hanxinCode' | 'pdf417' | 'dataMatrix';
|
|
33
33
|
/**
|
|
34
34
|
* 尺寸;单位 px
|
|
35
35
|
* @defaultValue 160
|
|
@@ -65,9 +65,9 @@ declare class QrCodeProperty extends BaseControlProperty implements QrCodeProper
|
|
|
65
65
|
static readonly Rules: typeof QrCodePropertyRules;
|
|
66
66
|
static readonly RuntimeRules: typeof QrCodePropertyRuntimeRules;
|
|
67
67
|
defaultValue: string;
|
|
68
|
-
qrVersion: 'auto' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10';
|
|
68
|
+
qrVersion: 'auto' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15' | '16' | '17' | '18' | '19' | '20' | '21' | '22' | '23' | '24' | '25' | '26' | '27' | '28' | '29' | '30' | '31' | '32' | '33' | '34' | '35' | '36' | '37' | '38' | '39' | '40';
|
|
69
69
|
errorCorrectionLevel: 'L' | 'M' | 'Q' | 'H';
|
|
70
|
-
codeMode: '
|
|
70
|
+
codeMode: 'qrCode' | 'hanxinCode' | 'pdf417' | 'dataMatrix';
|
|
71
71
|
size: number | '';
|
|
72
72
|
codeMargin: number | '';
|
|
73
73
|
backgroundColor: string;
|
|
@@ -26,6 +26,12 @@ interface RichTextPropertyInterface extends BaseControlPropertyInterface {
|
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
28
|
minLength: number;
|
|
29
|
+
/**
|
|
30
|
+
* 高度
|
|
31
|
+
* @defaultValue 400
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
height: number;
|
|
29
35
|
/**
|
|
30
36
|
* 默认值
|
|
31
37
|
* @defaultValue ''
|
|
@@ -68,6 +74,7 @@ declare class RichTextProperty extends BaseControlProperty implements RichTextPr
|
|
|
68
74
|
static readonly RuntimeRules: typeof RichTextControlPropertyRuntimeRules;
|
|
69
75
|
maxLength: number;
|
|
70
76
|
minLength: number;
|
|
77
|
+
height: number;
|
|
71
78
|
defaultValue: string;
|
|
72
79
|
aiContentSearch: boolean;
|
|
73
80
|
aiGeneration: 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.58",
|
|
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.49",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "03a5506f2852dc6b323ee540d5e778ed2f3ea309"
|
|
35
35
|
}
|