@byteluck-fe/model-driven-core 6.1.0-1-beta.4 → 6.2.0-1-beta.1
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.
|
@@ -220,8 +220,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
220
220
|
function Control(props) {
|
|
221
221
|
var _this = this;
|
|
222
222
|
_class_call_check(this, Control);
|
|
223
|
-
_define_property(this, "id", void 0 // 唯一标识符
|
|
224
|
-
);
|
|
223
|
+
_define_property(this, "id", void 0); // 唯一标识符
|
|
225
224
|
_define_property(this, "name", void 0);
|
|
226
225
|
_define_property(this, "icon", void 0);
|
|
227
226
|
_define_property(this, "type", void 0);
|
|
@@ -44,8 +44,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
44
44
|
"use strict";
|
|
45
45
|
function Control(props) {
|
|
46
46
|
_class_call_check(this, Control);
|
|
47
|
-
_define_property(this, "id", void 0 // 唯一标识符
|
|
48
|
-
);
|
|
47
|
+
_define_property(this, "id", void 0); // 唯一标识符
|
|
49
48
|
_define_property(this, "type", void 0);
|
|
50
49
|
_define_property(this, "controlType", void 0);
|
|
51
50
|
_define_property(this, "props", void 0);
|
|
@@ -7,13 +7,13 @@ declare class ColumnControl extends DesignerControl {
|
|
|
7
7
|
children: DesignerControl[];
|
|
8
8
|
constructor(props?: Partial<ColumnControlSchema<ColumnControlsKeys>>);
|
|
9
9
|
toSchema(): {
|
|
10
|
-
children: import("../../type").BaseControlSchema<never, import("../BaseControl
|
|
10
|
+
children: import("../../type").BaseControlSchema<never, import("../BaseControl").Property>[];
|
|
11
11
|
id: string;
|
|
12
12
|
type: never;
|
|
13
|
-
props: import("../BaseControl
|
|
13
|
+
props: import("../BaseControl").Property;
|
|
14
14
|
controlType: import("../../type").BaseControlTypes;
|
|
15
|
-
fieldType?: import("@byteluck-fe/model-driven-shared
|
|
16
|
-
pageStatus?: import("../..").PAGE_STATUS
|
|
15
|
+
fieldType?: import("@byteluck-fe/model-driven-shared").FieldTypes;
|
|
16
|
+
pageStatus?: import("../..").PAGE_STATUS;
|
|
17
17
|
};
|
|
18
18
|
}
|
|
19
19
|
export default ColumnControl;
|
|
@@ -728,32 +728,32 @@ export declare class CalcValue {
|
|
|
728
728
|
constructor(props?: Partial<CalcValue>);
|
|
729
729
|
}
|
|
730
730
|
export declare enum AMOUNT_TYPE {
|
|
731
|
-
CNY = "CNY"
|
|
732
|
-
USD = "USD"
|
|
733
|
-
JPY = "JPY"
|
|
734
|
-
EUR = "EUR"
|
|
735
|
-
INR = "INR"
|
|
736
|
-
IDR = "IDR"
|
|
737
|
-
BRL = "BRL"
|
|
738
|
-
AED = "AED"
|
|
739
|
-
AUD = "AUD"
|
|
740
|
-
CAD = "CAD"
|
|
741
|
-
EGP = "EGP"
|
|
742
|
-
GBP = "GBP"
|
|
743
|
-
ZAR = "ZAR"
|
|
744
|
-
KRW = "KRW"
|
|
745
|
-
MAD = "MAD"
|
|
746
|
-
MXN = "MXN"
|
|
747
|
-
MYR = "MYR"
|
|
748
|
-
PHP = "PHP"
|
|
749
|
-
PLN = "PLN"
|
|
750
|
-
RUB = "RUB"
|
|
751
|
-
SGD = "SGD"
|
|
752
|
-
THB = "THB"
|
|
753
|
-
TRY = "TRY"
|
|
754
|
-
TWD = "TWD"
|
|
755
|
-
VND = "VND"
|
|
756
|
-
HKD = "HKD"
|
|
731
|
+
CNY = "CNY",// 人民币
|
|
732
|
+
USD = "USD",// 美元
|
|
733
|
+
JPY = "JPY",// 日元
|
|
734
|
+
EUR = "EUR",// 欧元
|
|
735
|
+
INR = "INR",// 印度卢比
|
|
736
|
+
IDR = "IDR",// 印度盾
|
|
737
|
+
BRL = "BRL",// 巴西雷亚尔
|
|
738
|
+
AED = "AED",// 迪拉姆
|
|
739
|
+
AUD = "AUD",// 澳大利亚元
|
|
740
|
+
CAD = "CAD",// 加元
|
|
741
|
+
EGP = "EGP",// 埃及镑
|
|
742
|
+
GBP = "GBP",// 英镑
|
|
743
|
+
ZAR = "ZAR",// 南非兰特
|
|
744
|
+
KRW = "KRW",// 韩元
|
|
745
|
+
MAD = "MAD",// 摩洛哥迪拉姆
|
|
746
|
+
MXN = "MXN",// 墨西哥比索
|
|
747
|
+
MYR = "MYR",// 马来西亚林吉特
|
|
748
|
+
PHP = "PHP",// 菲律宾比索
|
|
749
|
+
PLN = "PLN",// 波兰兹罗提
|
|
750
|
+
RUB = "RUB",// 俄罗斯卢布
|
|
751
|
+
SGD = "SGD",// 新加坡元
|
|
752
|
+
THB = "THB",// 泰铢
|
|
753
|
+
TRY = "TRY",// 新土耳其里拉
|
|
754
|
+
TWD = "TWD",// 新台币
|
|
755
|
+
VND = "VND",// 越南盾
|
|
756
|
+
HKD = "HKD",// 港币
|
|
757
757
|
IEP = "IEP"
|
|
758
758
|
}
|
|
759
759
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-core",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0-1-beta.1",
|
|
4
4
|
"description": "model engine core",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-shared": "6.
|
|
29
|
+
"@byteluck-fe/model-driven-shared": "6.2.0-1-beta.1",
|
|
30
30
|
"async-validator": "3.5.1",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "a1cab42eb582b1aa89e24e48ce92384cf5b2132f"
|
|
34
34
|
}
|